*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#F7F5F1;
color:#222;
overflow-x:hidden;
}

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

/* HEADER */

.header{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.logo h2{
font-size:28px;
font-weight:700;
color:#274E2E;
}
.logo{ width: 300px; }
.logo span{
color:#B88A2A;
}
.logo img { width: 100%; }

/* BUTTON */

.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
background:#B88A2A;
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.4s;
}
header .btn-primary{
    box-shadow: 0 0 0 rgba(212,175,55,.4);
    animation: floatZoom 3s ease-in-out infinite,
               glowPulse 2s infinite;
}

@keyframes glowPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(212,175,55,.4);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(212,175,55,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}
header .btn-primary:hover{
    transform: translateY(-3px) scale(1.05);
}



.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 15px 25px rgba(49,95,45,.25);
}

.btn-outline{
padding:14px 28px;
border:2px solid #315F2D;
border-radius:50px;
text-decoration:none;
color:#315F2D;
font-weight:600;
transition:.3s;
}

.btn-outline:hover{
border:#B88A2A solid 1px;
    color: #B88A2A; background: #f2ece4;
}
.btn-primary,
.btn-outline{
    transition:all .35s ease;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(49,95,45,.25);
    background: #4e3707;
}

.btn-outline:hover{
    transform:translateY(-4px);
}
/* HERO */

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    padding:80px 0 100px;
    background:#F7F5F1;
    background: url(../images/bg.jpg) no-repeat center center; background-size: cover;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;

    border:1px solid #D7B879;

    border-radius:50px;

    background:#fff;

    font-size:15px;
    font-weight:500;

    margin-bottom:30px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-2px;

    margin-bottom:25px;
}

.hero-content h1 span{
    color:#516534;
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    color:#666;

    max-width:650px;

    margin-bottom:35px;
}

.hero-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;

    margin-bottom:40px;
}

.hero-features div{
    color:#666;
    font-size:16px;
}

.hero-buttons{
    display:flex;
    gap:18px;
}

.hero-image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content{
    animation:fadeUp 1s ease forwards;
}
@keyframes floatImage{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

.hero-image-wrapper img{
    animation:floatImage 5s ease-in-out infinite;
}

.circle-bg {
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    background: #EEEBDD;
    right: -256px;
    top: -64px;
    z-index: 0;
    opacity: 0.6;
}
.hero-image-wrapper img{
    position:relative;
    z-index:2;

    width:100%;
    max-width:560px;

    border-radius:40px;
}

/* GLASS CARD */

.hero-badge{
    position:absolute;

    width:135px;
    height:135px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border-radius:22px;

    background:rgba(255,255,255,0.35);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.5);

    box-shadow:
    0 8px 32px rgba(0,0,0,.08);

    z-index:5;

    transition:.4s ease;
}

.hero-badge:hover{
    transform:translateY(-6px);
}

.hero-badge h3{
    font-size:38px;
    color:#315F2D;
    line-height:1;
    font-weight:700;
}

.hero-badge p{
  
    text-align:center;
    font-size:16px;
    color:#000;
    line-height:1.2;
}
@keyframes floatCard{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

.hero-badge{
    animation:floatCard 4s ease-in-out infinite;
}

.success-card{
    top:-30px;
    right:-25px;
}

.client-card{
    left:-30px;
    bottom:-25px;
}

/* DECORATIVE LEAF BACKGROUNDS */

.hero-bg-left{
    position:absolute;
    left:0;
    top:0;

    width:300px;
    height:300px;

    background:url("../images/leaf-left.png")
    no-repeat center;

    background-size:contain;

    opacity:.08;
}

.hero-bg-right{
    position:absolute;
    right:0;
    bottom:0;

    width:350px;
    height:350px;

    background:url("../images/leaf-right.png")
    no-repeat center;

    background-size:contain;

    opacity:.08;
}







/* FLOAT EFFECT */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* STATS */

/* =========================
   STATS SECTION
========================= */

.stats-section{
    padding:80px 0; background: #fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:all .4s ease;

    position:relative;
    overflow:hidden;
}

.stat-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#315F2D;

    transform:scaleX(0);

    transition:.4s ease;
}

.stat-card:hover{
    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.stat-card:hover::before{
    transform:scaleX(1);
}

.stat-card h3{
    font-size:48px;
    font-weight:700;

    color:#315F2D;

    margin-bottom:12px;

    line-height:1;
}

.counter{
    display:inline-block;
}

.stat-card p{
    font-size:17px;
    color:#666;
    margin:0;
}



/* ABOUT */

.about{
padding:120px 0;
}

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

.about-image img{
width:100%;
border-radius:24px;
transition:.4s;
}

.about-image img:hover{
transform:scale(1.03);
}

.about-content h2{
font-size:48px;
margin-bottom:20px;
line-height:1.2;
}

.about-content p{
color:#666;
line-height:1.9;
margin-bottom:30px;
}

.about-content ul{
list-style:none;
margin-bottom:35px;
}

.about-content ul li{
margin-bottom:15px;
position:relative;
padding-left:28px;
}

.about-content ul li::before{
content:"✓";
position:absolute;
left:0;
color:#315F2D;
font-weight:700;
}
.tag{
    border: 1px solid #D7B879;  color:#bf9540;   align-items: center; padding:5px 22px; display: inline-flex; gap: 8px; margin-bottom: 10px; border-radius: 25px;}
/* SECTION HEADING */

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading h2{
font-size:48px;
font-weight:700;
margin-bottom:15px;
}

.section-heading p{
color:#666;
max-width:600px;
margin:auto;
}

.section-tag{
display:inline-block;
padding:8px 20px;
background:#EEF3E8;
border-radius:50px;
color:#315F2D;
margin-bottom:15px;
font-weight:600;
}

/* SERVICES */

.services{
padding:120px 0;
background:#fff;
}

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

.service-card{
background:#fff;
padding:35px 25px;
border-radius:20px;
border:1px solid #ececec;
transition:.4s;
position:relative;
overflow:hidden;
}

.service-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#315F2D;
transform:scaleX(0);
transition:.4s;
}

.service-card:hover::before{
transform:scaleX(1);
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

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

.service-card h3{
margin-bottom:12px;
}

.service-card p{
color:#666;
line-height:1.8;
margin-bottom:20px;
}

.service-card a{
text-decoration:none;
color:#315F2D;
font-weight:600;
}

/* JOURNEY */

.journey{
position:relative;
padding:120px 0;
background:url('../images/journey-bg.jpg') center/cover;
overflow:hidden;
}

.journey-overlay{
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(30,70,30,.85),
rgba(70,120,40,.75)
);
}

.journey .container{
position:relative;
z-index:2;
}

.light h2{
color:#fff;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    margin-top:60px;
}

/* Main Line */

.timeline::before{
    content:"";
    position:absolute;
    top:40px;
    left:12%;
    width:76%;
    height:2px;
    background:rgba(255,255,255,.25);
}

.timeline-step{
    text-align:center;
    position:relative;
    z-index:2;
}

.step-number{
    width:80px;
    height:80px;

    border-radius:50%;

    background:#DCCB96;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    font-size:32px;
    font-weight:700;
    color:#315F2D;

    position:relative;
}

/* Animated Dot */

.step-number::after{
    content:"";

    position:absolute;

    top:50%;
    left:100%;

    width:14px;
    height:14px;

    background:#D4AF37;

    border-radius:50%;

    transform:translateY(-50%);

    animation:pulseDot 2s infinite;
}

.timeline-step:last-child .step-number::after{
    display:none;
}

@keyframes pulseDot{

    0%{
        transform:translateY(-50%) scale(1);
        opacity:1;
    }

    50%{
        transform:translateY(-50%) scale(1.5);
        opacity:.6;
    }

    100%{
        transform:translateY(-50%) scale(1);
        opacity:1;
    }

}

.timeline-step h4{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.timeline-step p{
    color:rgba(255,255,255,.85);
    line-height:1.7;
    max-width:220px;
    margin:0 auto;
}
@keyframes journeyMove{

    0%{
        left:12%;
    }

    20%{
        left:12%;
    }

    30%{
        left:36%;
    }

    45%{
        left:36%;
    }

    55%{
        left:60%;
    }

    70%{
        left:60%;
    }

    80%{
        left:84%;
    }

    95%{
        left:84%;
    }

    100%{
        left:12%;
    }

}



/* TRANSFORMATIONS */

.transformations{
padding:120px 0;
background:#F7F5F1;
}
.transformation-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.transformation-card{
    background:#fff;
    border-radius:20px;
    padding:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    text-align:center;
    transition:.3s;
}

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

.image-wrapper{
    overflow:hidden;
    border-radius:16px;
}

.image-wrapper img{
    width:100%;
    display:block;
    object-fit:cover;
}

.transformation-card h4{
    margin-top:15px;
    font-size:18px;
    font-weight:600;
    color:#222;
}

.transformation-card span{
    color:#777;
    font-size:14px;
}

.btn-wrapper{
    text-align:center;
    margin-top:40px;
}

.view-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 34px;
    border:1px solid #d7b77b;
    border-radius:12px;
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

.view-btn:hover{
    background:#d7b77b;
    color:#fff;
}

.view-btn span{
    transition:.3s;
}

.view-btn:hover span{
    transform:translateX(4px);
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.gallery-item{
overflow:hidden;
border-radius:16px;
cursor:pointer;
}

.gallery-item img{
width:100%;
display:block;
transition:.6s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

.gallery-item{
position:relative;
}

.gallery-item::after{
content:'';
position:absolute;
inset:0;
background:rgba(49,95,45,.25);
opacity:0;
transition:.4s;
}

.gallery-item:hover::after{
opacity:1;
}

/* SCROLL ANIMATION */

.service-card,
.timeline-step,
.gallery-item{
animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* TESTIMONIALS */

.testimonials{
padding:120px 0;
background:#fff;
}

.testimonial-slider{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:#F7F5F1;
padding:35px;
border-radius:24px;
transition:.4s;
}

.testimonial-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.quote{
font-size:50px;
color:#315F2D;
margin-bottom:15px;
}

.testimonial-card p{
line-height:1.9;
margin-bottom:25px;
color:#555;
}

.testimonial-card h4{
margin-bottom:5px;
}

.testimonial-card span{
font-size:14px;
color:#777;
}

/* PRICING */

.pricing{
padding:120px 0;
background:#F7F5F1;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
align-items:center;
}

.pricing-card{
background:#fff;
padding:45px 35px;
border-radius:24px;
text-align:center;
position:relative;
transition:.4s;
border:1px solid #ececec;
}

.pricing-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.featured{
transform:scale(1.05);
border:2px solid #315F2D;
box-shadow:0 25px 50px rgba(49,95,45,.15);
}

.featured:hover{
transform:scale(1.08);
}

.popular-badge{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#315F2D;
color:#fff;
padding:8px 20px;
border-radius:50px;
font-size:13px;
font-weight:600;
}

.price{
font-size:48px;
font-weight:700;
color:#315F2D;
margin:25px 0;
}

.pricing-card ul{
list-style:none;
margin-bottom:35px;
}

.pricing-card li{
padding:10px 0;
border-bottom:1px solid #f0f0f0;
}

/* FAQ */

/* FAQ SECTION */

.faq{
    padding:120px 0;
    background:#fff;
}
.faq-wrapper-main{
    padding: 120px 0;
    background: #fff;
}
.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #cccccc;
    border-radius:50px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.3s ease;
}

.faq-item:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:22px;
    font-weight:600;
    color:#222;
}

.faq-icon{
    width:12px;
    height:12px;
    border-right:2px solid #999;
    border-bottom:2px solid #999;
    transform:rotate(45deg);
    transform-origin:center;
    will-change:transform;

    transition: transform 0.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-icon{
    transform:rotate(225deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .5s ease;
}

.faq-answer p{
    padding:0 28px 25px;
    color:#666;
    line-height:1.9;
}

/* ACTIVE STATE */

.faq-item.active{
    border-color:#315F2D;
}

/* BLOG */

.blog{
padding:120px 0;
background:#F7F5F1;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.blog-card{
background:#fff;
border-radius:24px;
overflow:hidden;
transition:.4s;
}

.blog-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.blog-image{
overflow:hidden;
}

.blog-image img{
width:100%;
display:block;
transition:.6s;
}

.blog-card:hover img{
transform:scale(1.08);
}

.blog-content{
padding:25px;
}

.blog-content span{
font-size:13px;
color:#315F2D;
font-weight:600;
}

.blog-content h3{
margin:15px 0;
line-height:1.5;
}

.blog-content a{
text-decoration:none;
color:#315F2D;
font-weight:600;
}

/* CTA */

.cta{
padding:120px 0;
background:#fff;
}

.cta-box{
background:linear-gradient(
135deg,
#315F2D,
#5C8A43
);

padding:80px;
border-radius:30px;
text-align:center;
color:#fff;
}

.cta-box h2{
font-size:48px;
margin-bottom:20px;
}

.cta-box p{
max-width:650px;
margin:auto;
margin-bottom:35px;
line-height:1.8;
}

/* FOOTER */

.footer{
background:#18321A;
color:#fff;
padding:80px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr 2fr;
gap:50px;
}

.footer h4{
margin-bottom:20px;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:12px;
}

.footer a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

.footer a:hover{
color:#fff;
}

.footer p{
line-height:1.8;
color:#ddd;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: #ddd;
    line-height: 1.8;
}

.footer-bottom .developer a {
    color: #ece0be; /* Change to your brand color */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom .developer a:hover {
    color: #ffffff;
}

/* SCROLL TOP */

#scrollTop{
position:fixed;
bottom:30px;
right:30px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#315F2D;
color:#fff;
font-size:22px;
cursor:pointer;
opacity:0;
visibility:hidden;
transition:.4s;
z-index:999;
}

#scrollTop.show{
opacity:1;
visibility:visible;
}

/* MOBILE MENU */

.mobile-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* =========================
   NAV FIX
========================= */
.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:20px 0;
}
.nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;

    list-style:none;
    margin:0;
    padding:0;

    flex:1;
}

.nav-menu li{
    list-style:none;
}

.nav-menu a{
    position:relative;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    transition:.3s ease;
    padding:8px 0;
}

/* Hover Border Effect */

.nav-menu a::after{
    content:"";
    position:absolute;

    left:50%;
    bottom:-6px;

    width:0;
    height:2px;

    background:#315F2D;

    transform:translateX(-50%);
    transition:.35s ease;
}

.nav-menu a:hover{
    color:#315F2D;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}

.nav-btn{
    white-space:nowrap;
}

/* HAMBURGER */

.hamburger{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
}

.hamburger span{
    display:block;
    width:28px;
    height:3px;
    background:#222;
    margin:5px 0;
    transition:.3s;
}


.contact-section{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;

    display:flex;
    gap:50px;
    align-items:flex-start;
}

.contact-info{
    flex:0.9;
    background:#fff;
    padding:50px 40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-form-wrapper{
    flex:1.3;
    background:#fff;
    padding:50px 40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sub-title{
    display:inline-block;
    color:#2f6b3f;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-info h2,
.contact-form-wrapper h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    color:#222;
}

.contact-info p{
    color:#666;
    line-height:1.8;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-top:30px;
}

.icon{
    width:55px;
    height:55px;
    background:#b88924;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    font-size:20px;
    flex-shrink:0;
}

.info-box h4{
    margin-bottom:5px;
    color:#222;
    font-size:18px;
}

.info-box p{
    margin:0;
    color:#666;
}

/* Form */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-row input{
    width:50%;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #e5e5e5;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#b88924;
}

.contact-form button{
    width:220px;
    padding:16px;

    border:none;
    border-radius:50px;

    background:#b88924;
    color:#fff;

    font-size:15px;
    font-weight:600;
    cursor:pointer;

    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}
/* Generic Page Banner */

/* Page Banner */

.page-banner{
    position: relative;
    height: 350px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner Image */

.banner-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */

.page-banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Content */

.page-banner-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-content h1{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 16px;
}

.breadcrumb a,
.breadcrumb span{
    color: #fff;
    text-decoration: none;
}

.map-section{
    padding: 0;
}

.map-container{
    width: 100%;
    overflow: hidden;
}

.map-container iframe{
    width: 100%;
    height: 450px;
    display: block;
}


.nutrition-programs{
    padding:40px 0;
    background:#f9fdf8;
}

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

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.sub-title{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    color:#6fbf73;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-heading h2{
    font-size:48px;
    line-height:1.2;
    color:#1d2b1f;
    margin-bottom:20px;
}

.section-heading p{
    font-size:17px;
    line-height:1.8;
    color:#6b7280;
}

.program-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.program-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    transition:.4s ease;
    border:1px solid #eef2ee;
    position:relative;
    overflow:hidden;
}

.program-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#79d279,#b7e86d);
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.program-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.program-icon{
    width:40px;
    height:40px;
    border-radius:18px;
    background:linear-gradient(135deg,#79d279,#d6f7a1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
}

.program-icon i{
    font-size:18px;
    color:#fff;
}

.program-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#1d2b1f;
}

.program-card p{
    font-size:15px;
    line-height:1.8;
}

.program-card ul{ margin:0px; padding: 0px; } 
.program-card ul b{ display: block; margin-top: 15px; margin-bottom: 10px; color: #2e7d32; }
.program-card li{  list-style: none; margin-left: 0px;     line-height: 26px; margin-bottom: 10px; margin-top: 10px;  }
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:65px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#25D366;
    color:#fff;
    text-decoration:none;

    padding:14px 22px;
    border-radius:50px;

    font-size:15px;
    font-weight:600;

    box-shadow:0 8px 25px rgba(37,211,102,.35);
    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(37,211,102,.45);
}

.whatsapp-btn svg{
    flex-shrink:0;
}

/* Mobile */
@media(max-width:767px){

    .whatsapp-btn{
        width:60px;
        height:60px;
        padding:0;
        justify-content:center;
        border-radius:50%;
        right:15px;
        bottom:15px;
    }

    .whatsapp-btn span{
        display:none;
    }

    .whatsapp-btn svg{
        width:30px;
        height:30px;
    }
    
}

@media(max-width:991px){

    .program-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .nutrition-programs{
        padding:70px 0;
    }

    .program-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .program-card{
        padding:28px;
    }
}

/* Mobile */

@media(max-width:768px){
     .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 30px;
    }
.whatsapp-btn{ display: none !important; }
    .page-banner{
        height: 250px;
    }

    .page-banner-content h1{
        font-size: 38px;
    }

    .breadcrumb{
        font-size: 14px;
    }

}

.why-programs{
    padding:10px 0;
    background:#f8fbf7;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    color:#7dbd65;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    font-size:48px;
    color:#1f2c22;
    margin-bottom:18px;
    line-height:1.2;
}

.section-title p{
    color:#667085;
    font-size:16px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border-radius:24px;
    padding:35px 28px;
    text-align:center;
    border:1px solid #edf2ed;
    transition:.4s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.icon-box{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#8fd16a,#c8f29a);
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    color:#fff;
    font-size:30px;
}

.why-card h3{
    font-size:22px;
    color:#1f2c22;
    margin-bottom:12px;
}

.why-card p{
    color:#667085;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:991px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .why-programs{
        padding:70px 0;
    }

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

    .section-title h2{
        font-size:30px;
    }
}

/* Mobile */

@media(max-width:768px){

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

    .contact-info,
    .contact-form-wrapper{
        width:100%;
    }

    .contact-info h2,
    .contact-form-wrapper h2{
        font-size:32px;
    }

    .form-row{
        flex-direction:column;
    }

    .form-row input{
        width:100%;
    }

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


/* MOBILE */


/* =========================
   RESPONSIVE
========================= */
@media(max-width:1200px){

    .hero-content h1{
        font-size:68px;
    }

}

@media(max-width:992px){

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

    .hero-content{
        text-align:center;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:60px;
    }

    .circle-bg{
        width:650px;
        height:650px;
        right:-120px;
    }
      .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
.hero-grid,
.about-grid{
grid-template-columns:1fr;
}

.hero-content{
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.hero-content p{
margin:auto;
margin-bottom:20px;
}

 .hamburger{
        display:block;
        z-index:9999;
    }

    .nav-btn{
        display:none;
    }

    /* override old display:none */


  .nav-menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;

    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 90px 30px 40px;
    gap: 8px;

    text-align: left;
    transition: all 0.4s ease;

    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    z-index: 9998;
}
.nav-menu li {
    list-style: none;
    display: block;
    width: 100%;
}
.nav-menu a{
    width: 100%;
    display: block;
    padding: 14px 0;

    font-size: 18px;
    font-weight: 500;
    color: #222;
    text-decoration: none;

            border-bottom: 1px solid #b5b5b5;
    transition: all 0.3s ease;
}
.nav-menu a:hover{
    color: #B88924;
    padding-left: 8px;
}
.nav-menu a::after {    bottom: -2px;}

    .nav-menu.active{
        right:0;
    }

    .hamburger.active span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2){
        opacity:0;
    }

    .hamburger.active span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

.stats-grid{
grid-template-columns:repeat(2,1fr);
}
.services-grid{
grid-template-columns:repeat(2,1fr);
}

.timeline{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}
.testimonial-slider{
grid-template-columns:1fr;
}

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

.featured{
transform:none;
}
.blog-grid{
grid-template-columns:1fr;
}

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

.cta-box{
padding:50px 30px;
}
 }


@media(max-width:768px){
.faq-question { font-size: 18px; }
.faq-item {    width: 90%; margin-left:auto ; margin-right:auto ;  margin-bottom: 20px; gap: 20px}
    .hero{
        padding:60px 0;
    }

    .hero-content h1{
        font-size:44px;
        letter-spacing:-1px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
    }

    .hero-features{
        flex-direction:row;
        gap:10px;     margin-bottom: 20px;
    }

    .hero-badge{
        width:110px;
        height:110px;
    }

    .hero-badge h3{
        font-size:38px;
    }

    .hero-badge p{
        font-size:13px;
    }

    .success-card{
        right:0;
        top:-20px;
    }

    .client-card{
        left:0;
        bottom:-20px;
    }
    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card{
        padding:30px 20px;
    }

    .stat-card h3{
        font-size:44px;
    }
    .hero-content h1{
font-size:32px;
}

.about-content h2{
font-size:34px;
}

.stats-grid{
grid-template-columns: repeat(2, 1fr);
}
.stats-section { padding: 20px 0;}

.hero-buttons{
flex-direction:column;
}
.about, .services, .journey, .testimonials, .pricing, .blog, .faq-wrapper-main { padding: 60px 0;} .about-grid {gap: 20px;}
.section-heading { margin-bottom: 20px; }
.btn-primary,
.btn-outline{
width:100%;
}
.section-heading h2{
font-size:34px;
}

.services-grid,
.timeline,
.gallery-grid{
grid-template-columns:1fr;
}

.timeline-step{
padding:20px;
}
.price{
font-size:40px;
}

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

.cta-box h2{
font-size:34px;
}
 .timeline{
        grid-template-columns:1fr;
        gap:50px;
    }

    .timeline::before{
        display:none;
    }

    .step-number::after{
        display:none;
    }
    .transformation-grid {    grid-template-columns: 1fr;}
}

.mobile-cta a
{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;}
.mobile-cta a i{font-size:18px;}

 .mobile-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:none;
    z-index:9999;
    background:#fff;
    box-shadow:0 -2px 15px rgba(0,0,0,.1);
}

.mobile-cta a{
    flex:1;
    text-align:center;
    padding:14px 10px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    font-size:14px;
}

.mobile-cta a:nth-child(1){
    background:#2c3e50;
}

.mobile-cta a:nth-child(2){
    background:#25D366;
}

.mobile-cta a:nth-child(3){
    background:#2e7d32;
}

@media(max-width:768px){
    .mobile-cta{
        display:flex;
    }
