* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


body {

    font-family: Arial, Helvetica, sans-serif;

}


/* Navbar */

nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #111;
   padding: 20px 80px;
}


.logo {

    text-align: center;

}


.logo h2 {

    color: white;

    font-size: 36px;

}


.logo span {

    color: #d4a017;

}


.logo p {

    color: #d4a017;

    font-size: 14px;

}


nav ul {

    display: flex;

    list-style: none;

    gap: 35px;

}


nav ul li a{

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

    font-size: 18px;

}

nav ul li a:hover,

nav ul li a.active{

    color:#D4A63E;

}

.btn {

    background: #d4a017;

    color: white;

    padding: 12px 25px;

    text-decoration: none;

    border-radius: 6px;

}


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

body{

    background:#fff;

    color:#222;

}

/* Hero */

.hero{

    width:100%;

    height:70vh;

    background:

    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),

    url(images/hero.png);

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    padding:0 10% ;

}

.hero-content{

    max-width:512px;
    align-items:center;
}

.hero h4{

    color:#d4a017;

    font-size:18px;

    margin-bottom:6px;

    margin-top:90px;

    letter-spacing:1.6px;

}

.hero h1{

    color:#fff;

    font-size:48px;

    line-height:1.2;

    margin-bottom:15px;

}

.hero p{

    color:#ddd;

    font-size:14px;

    line-height:1.8;

    margin-bottom:25px;

}

.hero-buttons{

    display:flex;

    gap:16px;

}

.btn{

    text-decoration:none;

    background:#d4a017;

    color:#fff;

    padding:12px 35px;

    border-radius:5px;

    transition:.4s;

}

.btn:hover{

    background:#111;

}

.services-btn{
    text-decoration:none;
    padding:12px 35px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
}

.services-btn:hover{

    background:#111;

}

.whatsapp-btn{
   text-decoration:none;
   padding:12px 35px;
   background:#20b958;
   border:2px solid #25D366;
   color:white;
   border-radius:5px;
    transition:.4s;
}
.whatsapp-btn:hover{
   background:#111;
   border:2px solid #111;
}
.whatsapp-btn i{
   margin-right:8px;
   font-size:20px;
}


.about-btn{
    text-decoration:none;
    padding:12px 35px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
}

.about-btn:hover{

    background:#111;

}

.gallery-btn{
    text-decoration:none;
    padding:12px 35px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
     margin-top:10px;
}

.gallery-btn:hover{

    background:#111;

}

/* ================= TITLE ================= */

.title{

    text-align:center;

    margin-bottom:30px;

}

.title h4{

    color:#d4a017;

    letter-spacing:2px;

    margin-bottom:5px;

}

.title h2{

    font-size:38px;

}

/* ================= SERVICES ================= */

.services{

    width:85%;

    margin:50px auto;

}

.service-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap: 12px;

}

.card{
    border: 1px solid #e7e7e7;
   border-radius: 15px;

    background:#fff;

    text-align:center;

    padding:25px 12px;

    border-radius:6px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

}

.card i{

    font-size:32px;

    color:#d4a017;

    margin-bottom:12px;

}

.card h3{

    margin-bottom:17px;

}

.card p{
    font-size:12px;

    color:#666;

    

    line-height:1.8;

}

.card-3{
    border: 1px solid #e7e7e7;
   border-radius: 15px;

    background:#fff;

    text-align:center;

    padding:25px 12px;

    border-radius:6px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.4s;

}

.card-3:hover{

    transform:translateY(-10px);

}

.card-3 i{

    font-size:31px;

    color:#d4a017;

    margin-bottom:12px;

}

.card-3 h3{

    margin-bottom:0px;

}

.card-3 p{
    font-size:12px;

    color:#666;

    

    line-height:1.8;

}

/* ================= ABOUT ================= */

.about{

    width:85%;

    margin:65px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

     transform: scale(0.97); /* يصغر القسم إلى 85% من حجمه */
    transform-origin: left center; /* يحدد نقطة الأصل للتصغير من اليسار */

}

.about-image img{

    width:100%;

    

    border-radius:15px;

}

.about-content h4{

    color:#d4a017;

    letter-spacing:2px;

    margin-bottom:15px;

}

.about-content h2{

    font-size:38px;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.about-content ul{

    list-style:none;

    margin-bottom:35px;

}

.about-content ul li{

    margin:10px 0;

    color:#444;

}

.about-content i{

    color:#D4A63E;

    margin-right:8px;

}
 
/* ================= GALLERY ================= */



.gallery{

    width:90%;

    margin:60px auto;

    text-align:center;

}

.gallerytitle h4{

    text-align:center;

    color:#d4a017;

    letter-spacing:2px;

    margin-bottom:10px;
}


.gallerytitle h2{

    font-size:38px;

    margin-bottom:22px;
}

.gallery-container{

    display:grid;

    grid-template-columns:repeat(6, 1fr);

    gap:10px;

}

.gallery-item img{

    width:100%;

    height:150px;

    object-fit:cover;

    border-radius:15px;
    margin-bottom: 20px;

}


/* Footer */


footer {
    background: #111;
    color: white;
    padding: 40px 100px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #D4A63E;
    font-size: 25px;
}

.footer-item h3 {
    color: #D4A63E;
    margin: 0 0 5px;
}

.footer-item p {
    color: white;
    margin: 0;
}
.footer-item .footr-text {
    color: rgb(170, 164, 164);
    font-size: 15px;
    margin: 0;
}
.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
}

/* ================= MOBILE NAVBAR ================= */

.menu-btn{

    display:none;

}

@media(max-width:768px){

nav{

    padding:15px 20px;

    position:fixed;

}

.menu-btn{

    display:block;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

nav{

    display:grid;

    grid-template-columns:40px 1fr 40px;

    align-items:center;

}

.logo{

    justify-self:center;

    text-align:center;

}

.logo h2{

    font-size:28px;

}

.logo p{

    font-size:11px;

}



.nav-links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#111;

    display:none;

    flex-direction:column;

    text-align:center;

    padding:25px 0;

    gap:20px;

}

.nav-links.active{

    display:flex;

}
.call-btn{
 
    width:40px;
 
    height:40px;
 
    padding:0;
 
    display:flex;
 
    justify-content:center;
 
    align-items:center;
 
    border-radius:50%;
 
    font-size:0;
 
}
 
.call-btn::before{
 
    content:"\f095";
 
    font-family:"Font Awesome 6 Free";
 
    font-weight:900;
 
    font-size:16px;
 
}

.services-btn{
    text-decoration:none;
    padding:12px 20px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
     font-size:13.5px;
     
}

.services-btn:hover{

    background:#111;

}

.whatsapp-btn{
   text-decoration:none;
   padding:12px 20px;
   background:#20b958;
   border:2px solid #25D366;
   color:white;
   border-radius:5px;
    transition:.4s;
    font-size:13.5px;
}
.whatsapp-btn:hover{
   background:#111;
   border:2px solid #111;
}
.whatsapp-btn i{
   margin-right:8px;
   font-size:20px;
}


.about-btn{
    text-decoration:none;
    padding:12px 18px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
     font-size:13.5px;
}

.about-btn:hover{

    background:#111;

}

.gallery-btn{
    text-decoration:none;
    margin-top:10px;
    padding:12px 18px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
     font-size:13.5px;
}

.gallery-btn:hover{

    background:#111;

}

/* ================= HERO MOBILE ================= */



.hero{

    height:60vh;

    padding: 0 20px;

    text-align:left;

}

.hero-content{

    max-width:100%;

}

.hero h4{

    margin-top:72px;

    font-size:12px;

}

.hero h1{

    font-size:28px;

    line-height:1.3;

}

.hero p{

    font-size:12px;

    margin-bottom:20px;

}

.hero-buttons{

    justify-content:left;

    gap:10px;

}

.hero-buttons .btn{

    padding:10px 18px;

    font-size:14px;

}


/* ================= SERVICES ================= */

.services{

    width:95%;

    margin:40px auto;

}

.title h2{

    font-size:30px;

}

.service-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:2px;

}

.card{

    padding:12px 6px;

    border-radius:10px;

}

.card i{

    font-size:20px;

    margin-bottom:8px;

}

.card h3{

    font-size:11px;

    margin-bottom:8px;

}

.card p{

    display:none;

}

.card-3{

    padding:12px 6px;

    border-radius:10px;

}

.card-3 i{

    font-size:20px;

    margin-bottom:8px;

}

.card-3 h3{

    font-size:11px;

    margin-bottom:8px;

}

.card-3 p{

    display:none;

}


/* ================= ABOUT ================= */

.about{

    width:95%;

    margin:45px auto;

    display:flex;

    flex-direction:column-reverse;

    gap:20px;

    transform:none;

}

.about-image img{

    width:100%;

    border-radius:12px;

}

.about-content{

    text-align:left;

}

.about-content h4{

    font-size:14px;

}

.about-content h2{

    font-size:28px;

}

.about-content p{

    font-size:14px;

}

.about-content ul{

    text-align:left;

    margin-bottom:25px;

    font-size:12.5px;

}

.about-content .btn{

    display:inline-block;

}

/* ================= GALLERY MOBILE ================= */



.gallery{

    width:95%;

    margin:40px auto;

}

.gallerytitle h2{

    font-size:30px;

}

.gallery-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:5px;

}

.gallery-item img{

    width:100%;

    height:85%;

    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:15px;

}

.gallery-button{

    margin-top:20px;

}

.gallery-item {
   overflow: hidden;
}


/* ================= FOOTER ================= */

footer{

    padding:35px 20px 15px;

}

.footer-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:17px;

}

.footer-item{

    align-items:flex-start;

    gap:10px;

}

.icon-box i{

    font-size:20px;

}

.footer-item h3{

    font-size:13px;

}

.footer-item p{

    font-size:11px;

}

.footer-item .footr-text{

    font-size:11px;

}

.copyright{

    grid-column:1/-1;

    text-align:center;

    margin-top:25px;

    padding-top:15px;

    font-size:13px;

}

}
 
 
 