*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Cairo',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   GENERAL
========================= */

.section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#2f7d32;
    margin-bottom:60px;
    font-weight:800;
    animation:fadeIn 1s ease;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(135deg, rgba(18,60,25,.92), rgba(47,125,50,.88)),
    radial-gradient(circle at top right, rgba(255,255,255,.15), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.08), transparent 30%);

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-250px;
    left:-250px;
    filter:blur(10px);
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    bottom:-180px;
    right:-180px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.015),
        rgba(255,255,255,.015) 2px,
        transparent 2px,
        transparent 12px
    );
}

/* =========================
   NAVBAR
========================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;
    position:relative;
    z-index:100;
}

/* =========================
   LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    background:#fff;
    padding:6px;
    border:4px solid rgba(255,255,255,.3);
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

/* =========================
   NAV LINKS
========================= */

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
    margin-left:-60px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    font-size:17px;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#9be15d;
    bottom:-6px;
    right:0;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#d8ffab;
}

/* =========================
   LANGUAGE BUTTON
========================= */

#langToggle{
    border:none;
    background:#fff;
    color:#2f7d32;
    padding:11px 22px;
    border-radius:50px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

#langToggle:hover{
    transform:scale(1.08);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
    position:relative;
    z-index:2;

    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:#fff;

    width:90%;
    max-width:1000px;

    margin:auto;
    padding-top:120px;

    animation:fadeIn 1s ease;
}

.hero-badge{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);

    padding:12px 26px;
    border-radius:50px;

    margin-bottom:30px;

    font-size:15px;
    font-weight:700;

    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.hero-content h1{
    font-size:clamp(36px,5vw,78px);
    margin-bottom:28px;
    line-height:1.4;
    font-weight:800;
    text-shadow:0 5px 20px rgba(0,0,0,.25);
}

.hero-content p{
    font-size:clamp(17px,2vw,24px);
    margin-bottom:45px;
    line-height:2;
    max-width:850px;
    color:#f1f1f1;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-btn{
    background:#fff;
    color:#2f7d32;
    padding:18px 42px;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
    display:inline-block;
    font-weight:800;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-btn:hover{
    transform:translateY(-5px);
}

.secondary-btn{
    background:transparent;
    border:2px solid rgba(255,255,255,.4);
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#2f7d32;
}

/* =========================
   HERO WAVE
========================= */

.hero-wave{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    line-height:0;
}

.hero-wave svg{
    display:block;
    width:100%;
    height:120px;
}

.hero-wave path{
    fill:#fff;
}

/* =========================
   ABOUT
========================= */

.about{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about img{
    width:100%;
    max-width:500px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.5s;
}

.about img:hover{
    transform:scale(1.03);
}

.about-text{
    flex:1;
}

.about-text h2{
    color:#2f7d32;
    font-size:42px;
    margin-bottom:20px;
    font-weight:800;
}

.about-text p{
    line-height:2.1;
    font-size:18px;
}

/* =========================
   SERVICES
========================= */

.service-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:45px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.5s;
}

.service-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-card i{
    font-size:50px;
    color:#2f7d32;
    margin-bottom:20px;
}

.service-card h3{
    font-size:21px;
    font-weight:700;
}

/* =========================
   GALLERY
========================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    border-radius:22px;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.5s;
}

.gallery-grid img:hover{
    transform:translateY(-12px) scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

/* =========================
   COUNTERS
========================= */

.counter-section{
    background:#2f7d32;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    text-align:center;
    padding:90px 8%;
    gap:30px;
}

.counter-box{
    background:rgba(255,255,255,.08);
    padding:40px;
    border-radius:25px;
    backdrop-filter:blur(8px);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.counter-box h2{
    font-size:60px;
    margin-bottom:10px;
}

.counter-box p{
    font-size:21px;
}

/* =========================
   PARTNERS
========================= */

.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.partners-grid div{
    background:#f3f3f3;
    padding:35px;
    border-radius:18px;
    text-align:center;
    font-weight:bold;
    transition:.4s;
}

.partners-grid div:hover{
    background:#2f7d32;
    color:#fff;
    transform:translateY(-8px);
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.testimonial:hover{
    transform:translateY(-8px);
}

.testimonial p{
    line-height:2;
    font-size:17px;
}

/* =========================
   MAP
========================= */

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

/* =========================
   CONTACT
========================= */

.contact-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-bottom:45px;
}

.info-box{
    background:#f8f8f8;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
}

.info-box:hover{
    transform:translateY(-8px);
    background:#2f7d32;
    color:#fff;
}

.info-box:hover i{
    color:#fff;
}

.info-box:hover a{
    color:#fff;
}

.info-box i{
    font-size:38px;
    color:#2f7d32;
    margin-bottom:15px;
    transition:.3s;
}

.info-box a{
    text-decoration:none;
    color:#222;
    font-weight:700;
    transition:.3s;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:18px;
    border:1px solid #ddd;
    border-radius:14px;
    font-family:'Cairo',sans-serif;
    font-size:16px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#2f7d32;
    outline:none;
    box-shadow:0 0 12px rgba(47,125,50,.18);
}

.contact-form textarea{
    height:170px;
    resize:none;
}

.contact-form button{
    background:#2f7d32;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:14px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.contact-form button:hover{
    background:#9be15d;
    color:#111;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:25px;
    font-size:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-content{
        padding-top:100px;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
        margin-left:0;
    }

    .nav-links a{
        font-size:15px;
    }

    .logo img{
        width:85px;
        height:85px;
    }

    .hero-content{
        width:95%;
        padding-top:80px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-btn{
        width:100%;
        text-align:center;
    }

    .section{
        padding:70px 6%;
    }

    .section-title{
        font-size:32px;
    }

    .counter-box h2{
        font-size:42px;
    }

}
