*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:#fff;
border-bottom:1px solid #ddd;
position:sticky;
top:0;
z-index:100;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-size:22px;
font-weight:bold;
color:#1f8f4c;
}

nav a{
margin-left:15px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#1f8f4c;
}

/* BUTTON */

.btn{
background:#1f8f4c;
color:#fff;
padding:10px 16px;
border-radius:4px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}

.btn.secondary{
background:#0b5ed7;
}

/* HERO */

.hero{
background-size:cover;
background-position:center;
padding:120px 0;
color:#fff;
}

.hero-text{
background:rgba(0,0,0,0.55);
padding:35px;
max-width:600px;
border-radius:6px;
}

.hero h2{
font-size:32px;
margin-bottom:10px;
}

.hero-text p{
margin-bottom:15px;
line-height:1.6;
}

/* SERVICES SECTION */

.services{
padding:70px 0;
background:#f5f7fa;
}

.section-title{
text-align:center;
font-size:28px;
margin-bottom:40px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:#fff;
padding:30px;
border-radius:8px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:transform .3s ease;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-icon{
font-size:40px;
margin-bottom:15px;
}

.service-card h4{
margin-bottom:10px;
}

.service-card p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

.service-card a{
text-decoration:none;
color:#1f8f4c;
font-weight:600;
}
/* SECTION TITLE */

.section-title{
text-align:center;
margin-bottom:40px;
font-size:28px;
font-weight:600;
}

/* GALLERY SECTION */

.gallery{
padding:70px 0;
background:#f5f7fa;
}

/* GRID */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

/* IMAGE CARD */

.gallery-card{
overflow:hidden;
border-radius:8px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
background:#fff;
}

/* IMAGE */

.gallery-card img{
width:100%;
height:240px;
object-fit:cover;
display:block;
transition:transform .4s ease;
}

/* HOVER EFFECT */

.gallery-card:hover img{
transform:scale(1.05);
}

/* EXECUTION CAPABILITY */

.capability{
padding:70px 0;
background:#ffffff;
}

.capability-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.capability-card{
background:#f5f7fa;
padding:30px;
border-radius:8px;
border-left:5px solid #1f8f4c;
}

.capability-card h4{
margin-bottom:10px;
color:#1f8f4c;
}

.capability-card p{
color:#555;
line-height:1.6;
}
/* ABOUT COMPANY */

.about-company{
padding:70px 0;
background:#f5f7fa;
}

.about-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
align-items:center;
}

.about-text h3{
margin-bottom:15px;
}

.about-text p{
margin-bottom:15px;
color:#555;
line-height:1.6;
}

.about-points{
margin-top:10px;
padding-left:20px;
}

.about-points li{
margin-bottom:8px;
}

.about-highlight{
background:#ffffff;
padding:30px;
border-radius:8px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.about-highlight h4{
margin-bottom:10px;
color:#1f8f4c;
}

.about-highlight p{
margin-bottom:15px;
color:#555;
}

@media (max-width:768px){

.about-grid{
grid-template-columns:1fr;
}

}

/* FOOTER */

footer{
background:#222;
color:#fff;
padding:40px 0 20px;
margin-top:60px;
text-align:center;
}

/* MOBILE */

@media (max-width:768px){

.header-flex{
flex-direction:column;
align-items:flex-start;
}

nav{
margin-top:10px;
}

}

/* CONTACT PAGE */

.contact-section{
padding:60px 0;
}

.contact-layout{
display:flex;
gap:40px;
align-items:flex-start;
}

.contact-left{
flex:1;
background:#f5f7fa;
padding:30px;
border-radius:6px;
}

.contact-left h3{
margin-bottom:15px;
}

.contact-left p{
margin-bottom:15px;
color:#444;
}

.contact-right{
flex:1;
background:#fff;
padding:30px;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.contact-right h3{
margin-bottom:15px;
}

.contact-right input,
.contact-right select,
.contact-right textarea{
width:100%;
padding:10px;
margin-bottom:14px;
border:1px solid #ccc;
border-radius:4px;
}

.contact-right button{
width:100%;
}

/* MOBILE */

@media (max-width:768px){

.contact-layout{
flex-direction:column;
}

}

/* PROJECTS SECTION */

.projects{
padding:70px 0;
background:#ffffff;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.project-card{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:transform .3s ease;
}

.project-card:hover{
transform:translateY(-5px);
}

.project-card img{
width:100%;
height:220px;
object-fit:cover;
}

.project-info{
padding:20px;
}

.project-info h4{
margin-bottom:5px;
}

.project-info p{
color:#666;
font-size:14px;
margin-bottom:10px;
}

.status{
font-size:12px;
padding:4px 10px;
border-radius:20px;
color:#fff;
}

.completed{
background:#1f8f4c;
}

.ongoing{
background:#ff9800;
}
/* COMPANY STATS */

.stats{
background:#1f8f4c;
color:#fff;
padding:70px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
}

.stat-card h2{
font-size:40px;
margin-bottom:10px;
}

.stat-card p{
font-size:16px;
}
/* PROJECTS PAGE */

.projects-page{
padding:60px 0;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.project-card{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:transform .3s ease;
}

.project-card:hover{
transform:translateY(-5px);
}

.project-card img{
width:100%;
height:220px;
object-fit:cover;
}

.project-info{
padding:20px;
}

.project-info h4{
margin-bottom:6px;
}

.project-info p{
font-size:14px;
color:#666;
margin-bottom:10px;
}

.status{
font-size:12px;
padding:4px 10px;
border-radius:20px;
color:#fff;
}

.completed{
background:#1f8f4c;
}

.ongoing{
background:#ff9800;
}
/* WHY CHOOSE US */

.why-us{
padding:60px 0;
background:#ffffff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.why-card{
background:#f5f7fa;
padding:25px;
border-radius:6px;
}

.why-card h4{
margin-bottom:10px;
color:#1f8f4c;
}

.why-card p{
color:#555;
line-height:1.5;
}