*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Tajawal',sans-serif;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1350px;
margin:auto;
}

.header{
position:fixed;
top:20px;
left:0;
width:100%;
z-index:1000;
}

.header .container{
background:#fff;
height:90px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 35px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.logo img{height:60px;}

.menu{
display:flex;
gap:40px;
}

.menu a{
text-decoration:none;
color:#222;
font-size:17px;
font-weight:700;
transition:.3s;
}

.menu a:hover{color:#2E7D32;}

.start-btn{
background:#2E7D32;
color:#fff;
padding:15px 30px;
border-radius:12px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.start-btn:hover{background:#1B5E20;}

@media(max-width:991px){
.menu{display:none;}
.logo img{height:50px;}
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("images/hero.jpg") center/cover;
color:#fff;
}

.hero-content{max-width:900px;padding:20px;}

.tag,.section-tag{
display:inline-block;
background:#2E7D32;
color:#fff;
padding:10px 22px;
border-radius:50px;
font-weight:700;
margin-bottom:25px;
}

.hero h1{
font-size:70px;
line-height:1.3;
margin-bottom:25px;
font-weight:800;
}

.hero p{
font-size:22px;
line-height:2;
margin-bottom:45px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.hero-btn,.start-btn{
background:#2E7D32;
color:#fff;
text-decoration:none;
}

.hero-btn,.hero-btn-outline{
padding:18px 35px;
border-radius:12px;
font-weight:700;
transition:.3s;
}

.hero-btn:hover{background:#1B5E20;}
.hero-btn-outline{
border:2px solid #fff;
color:#fff;
text-decoration:none;
}
.hero-btn-outline:hover{background:#fff;color:#2E7D32;}

.about,.why-us{padding:120px 0;background:#fff;}
.services,.areas{padding:120px 0;background:#F7F9F7;}

.about-container{
display:flex;
align-items:center;
gap:70px;
}

.about-image,.about-content{flex:1;}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-content h2{
font-size:46px;
margin-bottom:25px;
line-height:1.5;
}

.about-content p{
color:#666;
line-height:2;
font-size:18px;
margin-bottom:35px;
}

.section-title{
text-align:center;
font-size:42px;
margin:20px 0 60px;
}

.services,
.why-us,
.areas{
text-align:center;
}

.services-grid,
.why-grid,
.areas-grid{
display:grid;
gap:30px;
}

.services-grid,
.why-grid{
grid-template-columns:repeat(3,1fr);
}

.areas-grid{
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.service-card,
.why-card,
.area-card{
background:#fff;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
overflow:hidden;
}

.service-card,
.why-card{padding:40px;}

.service-card:hover,
.why-card:hover,
.area-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-number{
width:60px;
height:60px;
margin:0 auto 25px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:#2E7D32;
color:#fff;
font-weight:bold;
}

.area-card img{
width:100%;
height:260px;
object-fit:cover;
transition:.4s;
}

.area-card:hover img{transform:scale(1.08);}

.area-content{padding:25px;}

.area-content h3{margin-bottom:10px;}

.area-content p,
.service-card p,
.about-content p,
.why-card p{
color:#666;
line-height:1.9;
}

@media(max-width:991px){
.about-container{flex-direction:column;}
.about-content{text-align:center;}
.services-grid,
.why-grid,
.areas-grid{grid-template-columns:1fr;}
.hero h1{font-size:42px;}
.hero p{font-size:18px;}
}/* ===== Stats ===== */

.stats{
    padding:120px 0;
    background:#fff;
}

.stats-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.stats-content{
    flex:1;
}

.stats-content h2{
    font-size:46px;
    margin:20px 0;
    color:#222;
}

.stats-content p{
    color:#666;
    line-height:2;
    font-size:18px;
    margin-bottom:35px;
}

.stats-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.stat-box h3{
    font-size:42px;
    color:#2E7D32;
    margin-bottom:10px;
}

.stat-box span{
    color:#666;
    font-size:18px;
    font-weight:700;
}

@media(max-width:991px){

    .stats-container{
        flex-direction:column;
    }

    .stats-content{
        text-align:center;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .stats-grid{
        grid-template-columns:1fr;
    }

}

/* ===== CTA ===== */

.cta{
    padding:120px 20px;
    margin:120px auto;
    width:90%;
    max-width:1300px;
    border-radius:30px;
    background:linear-gradient(135deg,#2E7D32,#1B5E20);
    text-align:center;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.cta::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    left:-120px;
}

.cta::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-120px;
    right:-100px;
}

.cta .container{
    position:relative;
    z-index:2;
}

.cta .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    color:#fff;
    margin-bottom:20px;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
    font-weight:800;
}

.cta p{
    max-width:720px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:2;
    color:rgba(255,255,255,.9);
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta .hero-btn{
    background:#fff;
    color:#2E7D32;
    padding:16px 34px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.cta .hero-btn:hover{
    transform:translateY(-5px);
}

.cta .hero-btn-outline{
    padding:16px 34px;
    border:2px solid #fff;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta .hero-btn-outline:hover{
    background:#fff;
    color:#2E7D32;
}

@media (max-width:768px){

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:34px;
    }

    .cta p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta .hero-btn,
    .cta .hero-btn-outline{
        width:100%;
        max-width:280px;
    }

}

/* ===== Team ===== */

.team{
    padding:120px 0;
    background:#f8f9fa;
}

.team-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.team-heading .section-tag{
    display:inline-block;
    margin-bottom:20px;
}

.team-heading .section-title{
    font-size:48px;
    margin-bottom:20px;
    color:#222;
}

.team-heading .section-description{
    color:#666;
    line-height:2;
    font-size:18px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.team-card{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.team-card h3{
    color:#2E7D32;
    font-size:28px;
    margin-bottom:15px;
}

.team-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.team-btn{
    display:inline-block;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.team-btn:hover{
    background:#1B5E20;
}

@media(max-width:991px){

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-heading .section-title{
        font-size:36px;
    }

}

/* ===== Locations ===== */

.locations{
    padding:120px 0;
    background:#fff;
}

.locations-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.locations-header .section-tag{
    display:inline-block;
    margin-bottom:20px;
}

.locations-header .section-title{
    font-size:48px;
    color:#222;
    margin-bottom:20px;
}

.locations-header .section-description{
    color:#666;
    line-height:2;
    font-size:18px;
}

.locations-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.location-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.location-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.location-card h3{
    font-size:28px;
    color:#2E7D32;
    margin-bottom:15px;
}

.location-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

@media (max-width:991px){

    .locations-grid{
        grid-template-columns:1fr;
    }

    .locations-header .section-title{
        font-size:36px;
    }

}

/* ===== Footer ===== */

.footer{
    background:#111827;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer p{
    color:#cfcfcf;
    line-height:2;
}

.footer h3{
    margin-bottom:20px;
    color:#fff;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer li{
    margin-bottom:15px;
}

.footer a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#2E7D32;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#9ca3af;
}

@media (max-width:991px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        margin:0 auto 20px;
    }

}