*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
}

:root{

--dark-green:#006837;

--green:#00894A;

--light-green:#7AC943;

--yellow:#F2C94C;

--white:#fff;

--bg:#f7fbf7;

}

body{

background:var(--bg);

overflow-x:hidden;

line-height:1.8;

}


.container{

width:90%;

max-width:1200px;

margin:auto;

}


/* Header */

.header{

position:fixed;

top:0;

right:0;

left:0;

z-index:999;

padding:15px 0;

background:rgba(0,0,0,.2);

backdrop-filter:blur(10px);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:70px;

}


.nav-links{

display:flex;

list-style:none;

gap:30px;

}

.nav-links a{

color:#fff;

text-decoration:none;

font-size:18px;

font-weight:600;

transition:.3s;

}

.nav-links a:hover{

color:var(--yellow);

}


.menu-btn{

display:none;

font-size:28px;

color:white;

cursor:pointer;

}



/* Hero */

.hero{

height:100vh;

background:url('../images/hero.jpg');

background-size:cover;

background-position:center;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.overlay{

position:absolute;

top:0;

left:0;

right:0;

bottom:0;

background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;

z-index:5;

color:white;

width:80%;

}

.hero h1{

font-size:70px;

font-weight:800;

}

.hero h2{

font-size:35px;

margin:20px 0;

}

.hero p{

font-size:22px;

max-width:700px;

margin:auto;

}


.hero-buttons{

margin-top:40px;

display:flex;

justify-content:center;

gap:20px;

}

.btn{

background:var(--green);

color:white;

padding:14px 35px;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.btn:hover{

background:var(--yellow);

color:#222;

}


.btn-outline{

background:transparent;

border:2px solid white;

}



/* Sections */

section{

padding:100px 0;

}

.section-title{

text-align:center;

font-size:40px;

margin-bottom:50px;

color:var(--dark-green);

}



/* About */

.about .container{

display:flex;

align-items:center;

gap:50px;

}

.about-image{

flex:1;

}

.about-image img{

width:100%;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.about-content{

flex:1;

}

.about-content h2{

font-size:40px;

color:var(--dark-green);

margin-bottom:20px;

}

.about-content p{

font-size:20px;

color:#444;

}


.features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:30px;

}

.feature{

background:white;

padding:20px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.1);

font-size:18px;

}

.feature i{

color:var(--green);

margin-left:10px;

}



/* Cards */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.1);

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

}

.card img{

width:100%;

height:250px;

object-fit:cover;

}

.card h3{

padding:20px;

color:var(--dark-green);

}

.card p{

padding:0 20px 20px;

color:#555;

}


.read-more{

display:inline-block;

margin:20px;

color:var(--green);

font-weight:bold;

text-decoration:none;

}



/* Stats */

.stats{

background:var(--dark-green);

color:white;

}

.stats .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

text-align:center;

}

.stat h2{

font-size:50px;

color:var(--yellow);

}

.stat p{

font-size:22px;

}



/* Gallery */

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.gallery-grid img{

width:100%;

height:300px;

object-fit:cover;

border-radius:20px;

cursor:pointer;

transition:.4s;

}

.gallery-grid img:hover{

transform:scale(1.05);

}



/* Partners */

.partner-slider{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.partner{

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,.1);

display:flex;

justify-content:center;

align-items:center;

}

.partner img{

max-width:100%;

height:100px;

object-fit:contain;

}



/* Contact */

.contact{

text-align:center;

background:white;

}

.contact h2{

font-size:40px;

margin-bottom:30px;

color:var(--dark-green);

}

.contact p{

font-size:22px;

margin-bottom:20px;

}

.contact i{

color:var(--green);

margin-left:10px;

}



/* Footer */

footer{

background:var(--dark-green);

padding:30px;

text-align:center;

color:white;

}



/* Whatsapp */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

color:white;

font-size:35px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.3);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}



/* Responsive */

@media(max-width:992px){

.about .container{

flex-direction:column;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.partner-slider{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.menu-btn{

display:block;

}

.nav-links{

display:none;

}

.hero h1{

font-size:45px;

}

.hero h2{

font-size:25px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.gallery-grid{

grid-template-columns:1fr;

}

.stats .container{

grid-template-columns:1fr;

}

.partner-slider{

grid-template-columns:1fr;

}

.features{

grid-template-columns:1fr;

}

.section-title{

font-size:32px;

}

}


.hidden{

opacity:0;

transform:translateY(50px);

transition:all .8s ease;

}


.show{

opacity:1;

transform:translateY(0);

}