*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#fff;

}


.container{

width:90%;
max-width:1400px;
margin:auto;

}


/*================ HEADER ================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:9999;
transition:.4s;

}


header.active{

box-shadow:0 8px 30px rgba(0,0,0,.08);

}


header .container{

display:flex;
justify-content:space-between;
align-items:center;
height:90px;

}


.logo img{

height:80px;

}


nav ul{

display:flex;
list-style:none;
gap:40px;

}


nav ul li a{

text-decoration:none;
color:#333;
font-size:16px;
font-weight:500;
transition:.3s;

}


nav ul li a:hover{

color:#C89A3D;

}


.header-btns{

display:flex;
gap:15px;

}


.call-btn{

background:#4A2512;
color:#fff;
padding:12px 22px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;

}


.call-btn:hover{

background:#C89A3D;

}


.whatsapp-btn{

background:#25D366;
color:#fff;
padding:12px 22px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;

}


.whatsapp-btn:hover{

transform:translateY(-3px);

}


.call-btn i,
.whatsapp-btn i{

margin-right:8px;

}



.menu-btn{

display:none;
font-size:28px;
cursor:pointer;

}



/*================ Responsive ================*/


@media(max-width:991px){

.header-btns{

display:none;

}

nav{

position:fixed;
top:90px;
left:-100%;
background:#fff;
width:100%;
padding:40px;

transition:.4s;

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;

gap:25px;

}

.menu-btn{

display:block;

}

}


/*================ HERO =================*/

.hero{

padding-top:150px;
padding-bottom:90px;

background:linear-gradient(to right,#ffffff,#fcf8f2);

overflow:hidden;

}


.hero-container{

display:flex;
align-items:center;
justify-content:space-between;
gap:70px;

}


.hero-content{

flex:1;

}


.hero-tag{

display:inline-block;

background:#fff4df;

color:#A9771F;

padding:10px 22px;

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}


.hero h1{

font-size:65px;

line-height:78px;

font-weight:800;

color:#2B2B2B;

margin-bottom:25px;

}


.hero h1 span{

color:#C89A3D;

}


.hero p{

font-size:18px;

line-height:34px;

color:#666;

margin-bottom:35px;

max-width:620px;

}



.hero-buttons{

display:flex;

gap:20px;

margin-bottom:35px;

}



.primary-btn{

background:#4A2512;

padding:18px 36px;

color:white;

border-radius:60px;

text-decoration:none;

font-weight:600;

transition:.4s;

}


.primary-btn:hover{

background:#C89A3D;

transform:translateY(-5px);

}



.secondary-btn{

background:#25D366;

padding:18px 36px;

color:white;

border-radius:60px;

text-decoration:none;

font-weight:600;

transition:.4s;

}


.secondary-btn:hover{

transform:translateY(-5px);

}



.hero-features{

display:flex;

gap:35px;

flex-wrap:wrap;

font-weight:600;

}


.hero-features div{

display:flex;

align-items:center;

gap:10px;

}


.hero-features i{

color:#C89A3D;

font-size:18px;

}



.hero-image{

flex:1;

text-align:center;

}


.hero-image img{

width:100%;

max-width:620px;

animation:float 5s ease-in-out infinite;

filter:drop-shadow(0 25px 45px rgba(0,0,0,.15));

}


@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}



@media(max-width:991px){

.hero{

padding-top:130px;

}

.hero-container{

flex-direction:column-reverse;

text-align:center;

}

.hero h1{

font-size:42px;

line-height:55px;

}

.hero p{

margin:auto;

margin-top:20px;

margin-bottom:30px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-features{

justify-content:center;

margin-top:20px;

}

}


/*==========================
      ABOUT SECTION
==========================*/

.about-section{

padding:90px 8%;
background:#ffffff;

}

.container{

display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
flex-wrap:wrap;

}

.about-image{

flex:1;
position:relative;

}

.about-image img{

width:100%;
border-radius:18px;
display:block;
box-shadow:0 20px 60px rgba(0,0,0,.12);

transition:.5s;

}

.about-image img:hover{

transform:scale(1.03);

}

.experience-box{

position:absolute;

bottom:25px;
right:-25px;

background:#f58220;
color:white;

padding:25px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

text-align:center;

}

.experience-box h2{

font-size:42px;
margin-bottom:5px;

}

.experience-box p{

font-size:15px;

}

.about-content{

flex:1;

}

.section-tag{

display:inline-block;

padding:8px 20px;

background:#f58220;

color:white;

border-radius:30px;

font-weight:600;

letter-spacing:1px;

margin-bottom:20px;

}

.about-content h2{

font-size:48px;

line-height:1.2;

color:#0c2340;

margin-bottom:25px;

}

.about-content h2 span{

color:#f58220;

}

.about-content p{

font-size:17px;

line-height:30px;

color:#666;

margin-bottom:22px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin:35px 0;

}

.feature-box{

background:#f8f8f8;

padding:18px;

border-radius:12px;

font-weight:600;

transition:.3s;

border-left:5px solid #f58220;

}

.feature-box:hover{

background:#0c2340;

color:white;

transform:translateY(-5px);

}

.about-btn{

display:inline-block;

padding:16px 40px;

background:#f58220;

color:white;

text-decoration:none;

font-size:18px;

font-weight:600;

border-radius:50px;

transition:.4s;

}

.about-btn:hover{

background:#0c2340;

}


/*===================
Responsive
===================*/

@media(max-width:991px){

.container{

flex-direction:column;

}

.about-content h2{

font-size:38px;

}

.experience-box{

right:20px;

bottom:20px;

}

}

@media(max-width:768px){

.about-section{

padding:70px 20px;

}

.about-content h2{

font-size:32px;

}

.about-features{

grid-template-columns:1fr;

}

}


.about-section{

opacity:0;

transform:translateY(80px);

transition:1s ease;

}

.about-section.show{

opacity:1;

transform:translateY(0);

}


/*=========================
OUR SERVICES
==========================*/

.services-section{
    padding:100px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#c18a36;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#183153;
    font-weight:700;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.services-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    transition:.4s;

    border:1px solid #ececec;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#183153,#c18a36);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    background:linear-gradient(135deg,#183153,#c18a36);

    color:#fff;

    font-size:32px;

}

.service-card h3{

    font-size:26px;

    color:#183153;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#c18a36;

    font-weight:700;

    transition:.3s;

}

.service-card:hover a{

    color:#183153;

}

.service-card a i{

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(6px);

}

/* Responsive */

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.services-section{

padding:70px 20px;

}

}


/*=========================
WHY SECTION
==========================*/

.why-section{

padding:90px 0;
background:#f9fbfc;

}

.why-section .container{

width:90%;
max-width:1300px;
margin:auto;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

color:#F59E0B;
font-weight:600;
font-size:18px;
letter-spacing:1px;

}

.section-title h2{

font-size:46px;
margin:15px 0;
line-height:1.2;
color:#0D4F3C;
font-weight:700;

}

.section-title p{

max-width:750px;
margin:auto;
font-size:18px;
line-height:30px;
color:#666;

}

.why-wrapper{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.why-image img{

width:100%;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.why-content{

display:grid;
grid-template-columns:1fr;
gap:22px;

}

.why-box{

display:flex;
align-items:flex-start;
gap:20px;
padding:22px;
background:#fff;
border-radius:18px;
transition:.4s;
box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.why-box:hover{

transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.icon{

min-width:70px;
height:70px;
background:linear-gradient(135deg,#0D4F3C,#1D9C73);
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:28px;
color:#fff;

}

.why-box h3{

font-size:24px;
margin-bottom:10px;
color:#0D4F3C;

}

.why-box p{

font-size:16px;
line-height:28px;
color:#666;

}

/*=====================
Responsive
=====================*/

@media(max-width:992px){

.why-wrapper{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

}

@media(max-width:576px){

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:16px;
line-height:28px;

}

.why-box{

flex-direction:column;
text-align:center;
align-items:center;

}

}

/*==============================
WORK PROCESS
==============================*/

.work-process{

padding:90px 8%;
background:#f8faf8;

}

.work-process .container{

max-width:1250px;
margin:auto;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

display:inline-block;
padding:8px 18px;
background:#0E5C36;
color:#fff;
font-size:14px;
font-weight:600;
border-radius:50px;
letter-spacing:1px;
margin-bottom:18px;

}

.section-title h2{

font-size:42px;
font-weight:700;
color:#222;
margin-bottom:15px;

}

.section-title p{

max-width:650px;
margin:auto;
color:#666;
font-size:17px;
line-height:1.8;

}

.process-wrapper{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
position:relative;

}

.process-card{

background:#fff;
padding:40px 30px;
text-align:center;
border-radius:18px;
box-shadow:0 12px 35px rgba(0,0,0,.07);
position:relative;
transition:.4s;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-card:hover .icon{

background:#FF8A00;
color:#fff;

}

.step-number{

position:absolute;
top:18px;
right:20px;
font-size:45px;
font-weight:800;
color:#e9f2ea;
line-height:1;

}

.icon{

width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:#0E5C36;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
transition:.4s;
margin-bottom:25px;

}

.process-card h3{

font-size:24px;
margin-bottom:15px;
color:#222;

}

.process-card p{

color:#666;
font-size:16px;
line-height:1.8;

}

/* Arrow Line */

.process-wrapper::before{

content:'';
position:absolute;
top:110px;
left:13%;
width:74%;
height:3px;
background:linear-gradient(to right,#0E5C36,#FF8A00);
z-index:0;

}

.process-card{

z-index:2;

}

/* Tablet */

@media(max-width:992px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

.process-wrapper::before{

display:none;

}

}

/* Mobile */

@media(max-width:768px){

.work-process{

padding:70px 20px;

}

.section-title h2{

font-size:32px;

}

.process-wrapper{

grid-template-columns:1fr;

}

.process-card{

padding:35px 25px;

}

}


.hidden-process{

opacity:0;
transform:translateY(60px);
transition:1s;

}

.show-process{

opacity:1;
transform:translateY(0);

}

/*============================
CUSTOMER REVIEWS
============================*/

.reviews-section{

padding:90px 8%;
background:#fff;

}

.review-slider{

overflow:hidden;
position:relative;

}

.review-track{

display:flex;
gap:30px;
animation:reviewSlider 28s linear infinite;

}

.review-card{

min-width:360px;
background:#ffffff;
border-radius:20px;
padding:35px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
border-top:5px solid #0E5C36;
transition:.4s;

}

.review-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.stars{

font-size:28px;
color:#FFB400;
margin-bottom:18px;
letter-spacing:3px;

}

.review-card p{

font-size:16px;
line-height:1.9;
color:#666;
margin-bottom:25px;

}

.review-card h4{

font-size:22px;
color:#0E5C36;
margin-bottom:6px;

}

.review-card span{

font-size:15px;
color:#999;

}

@keyframes reviewSlider{

0%{

transform:translateX(0);

}

100%{

transform:translateX(calc(-390px * 3));

}

}

.review-slider:hover .review-track{

animation-play-state:paused;

}

@media(max-width:768px){

.reviews-section{

padding:70px 20px;

}

.review-card{

min-width:300px;

}

}

/*=========================
FAQ SECTION
==========================*/

.faq-section{

padding:90px 8%;
background:#f8faf8;

}

.faq-wrapper{

max-width:950px;
margin:60px auto 0;

}

.faq-item{

background:#fff;
margin-bottom:20px;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.4s;

}

.faq-item:hover{

box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.faq-question{

display:flex;
justify-content:space-between;
align-items:center;
padding:25px 30px;
cursor:pointer;

}

.faq-question h3{

font-size:22px;
font-weight:600;
color:#222;

}

.faq-question span{

width:42px;
height:42px;
background:#0E5C36;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
transition:.4s;

}

.faq-answer{

max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 30px;

}

.faq-answer p{

padding-bottom:25px;
line-height:1.9;
color:#666;
font-size:16px;

}

.faq-item.active .faq-answer{

max-height:220px;

}

.faq-item.active span{

background:#FF8A00;
transform:rotate(45deg);

}

@media(max-width:768px){

.faq-section{

padding:70px 20px;

}

.faq-question{

padding:20px;

}

.faq-question h3{

font-size:18px;
padding-right:15px;

}

.faq-question span{

width:35px;
height:35px;
font-size:22px;

}

.faq-answer{

padding:0 20px;

}

}

/*=========================
CTA SECTION
==========================*/

.cta-banner{

position:relative;
padding:100px 8%;

background:url("../images/cta-bg.png") center center/cover no-repeat;

overflow:hidden;

}

.cta-overlay{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:linear-gradient(90deg,
rgba(14,92,54,.95),
rgba(14,92,54,.88),
rgba(255,138,0,.75));

}

.cta-content{

position:relative;
z-index:2;

max-width:760px;

color:#fff;

}

.cta-tag{

display:inline-block;

background:#ffffff22;

padding:10px 22px;

border-radius:30px;

font-size:15px;

margin-bottom:25px;

backdrop-filter:blur(6px);

}

.cta-content h2{

font-size:52px;

line-height:1.2;

margin-bottom:20px;

font-weight:700;

}

.cta-content p{

font-size:18px;

line-height:1.9;

margin-bottom:40px;

color:#f4f4f4;

}

.cta-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-call{

background:#FF8A00;

padding:18px 38px;

color:#fff;

font-size:18px;

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.btn-call:hover{

background:#fff;

color:#0E5C36;

transform:translateY(-5px);

}

.btn-whatsapp{

background:#25D366;

padding:18px 38px;

color:#fff;

font-size:18px;

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.btn-whatsapp:hover{

background:#fff;

color:#25D366;

transform:translateY(-5px);

}

@media(max-width:991px){

.cta-content h2{

font-size:42px;

}

}

@media(max-width:768px){

.cta-banner{

padding:80px 20px;

text-align:center;

}

.cta-content{

margin:auto;

}

.cta-content h2{

font-size:34px;

}

.cta-content p{

font-size:16px;

}

.cta-buttons{

justify-content:center;

}

.btn-call,
.btn-whatsapp{

width:100%;

text-align:center;

}

}

/*=========================
CONTACT INFO
==========================*/

.contact-info{

padding:90px 8%;

background:#f8f9fb;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

color:#ff8a00;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

}

.section-title h2{

font-size:42px;

margin:15px 0;

color:#0e5c36;

}

.section-title p{

max-width:700px;

margin:auto;

color:#666;

line-height:1.8;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.contact-card{

background:#fff;

padding:40px 30px;

border-radius:18px;

text-align:center;

transition:.35s;

box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-icon{

width:80px;

height:80px;

background:#0e5c36;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

margin:auto auto 25px;

}

.contact-icon.whatsapp{

background:#25D366;

}

.contact-icon.email{

background:#ff8a00;

}

.contact-icon.location{

background:#1b74e4;

}

.contact-card h3{

font-size:24px;

margin-bottom:15px;

color:#222;

}

.contact-card p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.contact-btn{

display:inline-block;

padding:13px 30px;

background:#0e5c36;

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.contact-btn:hover{

background:#ff8a00;

}



/*=========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.contact-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-info{

padding:70px 20px;

}

.section-title h2{

font-size:34px;

}

.contact-grid{

grid-template-columns:1fr;

}

}

/*=========================
FOOTER
==========================*/

.footer{

background:#0E5C36;

color:#fff;

padding:80px 8% 20px;

position:relative;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:45px;

}

.footer-logo{

width:230px;

margin-bottom:20px;

}

.footer-col p{

line-height:1.8;

color:#e5e5e5;

margin-bottom:15px;

}

.footer-col h3{

margin-bottom:22px;

font-size:24px;

position:relative;

}

.footer-col h3::after{

content:"";

position:absolute;

left:0;

bottom:-10px;

width:55px;

height:3px;

background:#FF8A00;

}

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:15px;

color:#e5e5e5;

transition:.3s;

}

.footer-col ul li a{

color:#e5e5e5;

text-decoration:none;

transition:.3s;

}

.footer-col ul li:hover{

transform:translateX(8px);

}

.footer-col ul li a:hover{

color:#FF8A00;

}

.footer-col i{

color:#FF8A00;

margin-right:10px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:45px;

height:45px;

background:#ffffff20;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:18px;

color:#fff;

transition:.35s;

text-decoration:none;

}

.footer-social a:hover{

background:#FF8A00;

transform:translateY(-6px);

}

.footer-bottom{

margin-top:60px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.15);

text-align:center;

}

.footer-bottom p{

margin:0;

font-size:15px;

color:#ddd;

}



/*=========================
TOP BUTTON
==========================*/

#topBtn{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#FF8A00;

color:#fff;

font-size:20px;

cursor:pointer;

display:none;

z-index:999;

transition:.3s;

box-shadow:0 8px 25px rgba(0,0,0,.3);

}

#topBtn:hover{

background:#0E5C36;

transform:translateY(-6px);

}



/*=========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer{

padding:70px 20px 20px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-col h3::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

.footer-logo{

margin:auto auto 20px;

display:block;

}

}


/*=========================
FLOATING BUTTONS
==========================*/

.floating-buttons{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:99999;

}

.float-btn{

width:60px;

height:60px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

font-size:23px;

color:#fff;

box-shadow:0 12px 30px rgba(0,0,0,.25);

transition:.35s;

cursor:pointer;

border:none;

}

.float-btn:hover{

transform:translateY(-6px) scale(1.08);

}

/* Call */

.call-btn{

background:#0E5C36;

}

/* WhatsApp */

.whatsapp-btn{

background:#25D366;

animation:whatsappPulse 1.8s infinite;

}

/* Location */

.map-btn{

background:#ff8a00;

}

/* Top */

.top-btn{

background:#1b74e4;

display:none;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.7);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

@media(max-width:768px){

.floating-buttons{

right:15px;

bottom:20px;

}

.float-btn{

width:55px;

height:55px;

font-size:21px;

}

}