*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#1f2937;
    overflow-x:hidden;
}

/*header{

    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 6px 20px rgba(0,0,0,.08);

}

/* NAVBAR */

.navbar{

    max-width:1320px;

    height: 120px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 30px;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width: 110px;

    height:auto;

    display:block;

}

/* NAV */

.nav-links{

    display:flex;

    list-style:none;

    gap:38px;

    margin:0;

    padding:0;

}

.nav-links a{

    text-decoration:none;

    color:#222;

    font-size:18px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#0e763f;

}

/* BUTTONS */

.nav-buttons{

    display:flex;

    gap:15px;

}

.whatsapp-nav{

    background:#25D366;

    color:#fff;

    text-decoration:none;

    padding:13px 25px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.whatsapp-nav:hover{

    background:#1EBE5D;

    transform:translateY(-2px);

}

.consult-btn-nav{

    background:#21683E;

    color:#120202;

    text-decoration:none;

    padding:13px 24px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.consult-btn-nav:hover{

    background:#2F8F5B;

    transform:translateY(-2px);

}

/* MENU */

.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

}
.top-bar{

    background:#165C35;

    color:#fff;

    padding:12px 0;

    font-size:15px;

}

.top-bar .container{

    max-width:1320px;

    height: 40px;
    
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.left-content,
.right-content{

    display:flex;

    align-items:center;

    gap:18px;

}

.offer{

    background:rgba(255,255,255,.12);

    padding:8px 18px;

    border-radius:40px;

    color:#C8FFB7;

    font-weight:600;

}

.left-content a,
.right-content a{

    color:#fff;

    text-decoration:none;

}

.whatsapp-btn{

    background:#25D366;

    padding:10px 22px;

    border-radius:30px;

    color:#fff;

    font-weight:600;

}

.divider{

    opacity:.5;

}
/* HERO SECTION */


/* ===========================
Hero
=========================== */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    padding:120px 20px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Video */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;

   filter: brightness(1.10) contrast(1.05) saturate(1.08);
}

/* Overlay */

.video-overlay{
    position:absolute;
    inset:0;

    background: linear-gradient(
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.22)
    );

    pointer-events:none;
}

/* Glass */

.glass-card{

    position:relative;

    z-index:10;

    width:100%;
    
    max-width:820px;

    padding:60px 55px;

    border-radius:38px;

    background: #ffffff;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 30px 80px rgba(0,0,0,.18);

    text-align:center;

}

/* Badge */

.hero-badge{

    display:inline-block;

    background:#EDF7EE;

    border:1px solid #CFE7D1;

    color:#2E7D32;

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:30px;

    backdrop-filter:blur(20px);

}

/* Heading */

.glass-card h1{
    color:#102b18;
    font-size:60px;
    font-weight:800;
    line-height:1.15;
    margin:20px 0;
}

.glass-card h1 span{
    display:block;
    margin-top:10px;
    color:#1f6b3a;
}

/* Paragraph */

.glass-card p{

    color:#3d3d3d;

    max-width:640px;

    margin:auto;

    line-height:1.8;

    font-size:18px;

    margin-bottom:35px;

}

/* Services */

.services{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

    margin:40px 0 10px;

}

.service{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    background:#eef4ef;

    border:1px solid #c4d4c7;

    border-radius:14px;

    color:#2E7D32;

    transition:.35s;
}
.service i{

    font-size:18px;

    color:#1b5e20;

}
.service p{

    margin:0;

    color:#1d1d1d;

    font-size:15px;

    font-weight:700;

}
.service:hover{

    transform:translateY(-3px);

    background:#2E7D32;

    border-color:#2E7D32;

}
.service:hover i,
.service:hover p{

    color:#ffffff;

}

.hero-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    margin:40px auto 0;
    padding:18px 42px;

    background:#1F8A4C;
    color:#fff;
    text-decoration:none;

    border-radius:50px;
    font-size:17px;
    font-weight:600;
}
.hero-btn:hover{

    background:#59b567;

    color:white;

    transform:translateY(-4px);

}


/* Counter Section */

.counter-section{
    background:#fff;
    padding:70px 20px;
}

.counter-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.counter-item{
    flex:1;
    text-align:center;
}

.counter-item h2{
    font-size:64px;
    font-weight:700;
    color:#1F6B3A;
    line-height:1;
    margin-bottom:15px;
}

.counter-item p{
    font-size:20px;
    color:#34495e;
    font-weight:500;
}

.counter-divider{
    width:1px;
    height:70px;
    background:#D7E8DA;
}

/* Tablet */

@media(max-width:992px){

.counter-container{
    flex-wrap:wrap;
    gap:40px;
}

.divider{
    display:none;
}

.counter-item{
    width:45%;
    flex:none;
}

.counter-item h2{
    font-size:52px;
}

.counter-item p{
    font-size:18px;
}

}

/* Mobile */

@media (max-width:768px){

    .counter-container{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .counter-item{
        width:100%;
    }

    .counter-divider{
        display:none;
    }

    .counter-item h2{
        font-size:42px;
    }

    .counter-item p{
        font-size:16px;
    }
}
/* ==========================================
   LAPTOPS (1200px)
========================================== */

@media (max-width:1200px){

.hero{
    gap:40px;
}

.glass-card h1{
    font-size:48px;
}

.glass-card p{
    font-size:17px;
}

}


/* ==========================================
   TABLETS (992px)
========================================== */

@media (max-width:992px){

.hero{
    min-height:100vh;
    padding:90px 30px;
}
}



/* ==========================================
   MOBILE (768px)
========================================== */

@media (max-width:768px){

/* Header */

.navbar{
    padding:15px 20px;
}

.logo img{
    width:42px;
    height:42px;
}

.logo h2{
    font-size:24px;
}

.nav-links{
    top:75px;
}

.top-bar{
    font-size:13px;
}

.top-bar .container{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.left-content{
    justify-content:center;
}

.divider{
    display:none;
}

/* Hero */

.hero{
    padding:90px 20px;
}

.glass-card h1{
    font-size:36px;
}

.glass-card p{
    font-size:16px;
    line-height:1.7;
}


.services{
    flex-direction:column;
    align-items:center;
}

.service{
    width:100%;
    max-width:360px;
    padding:15px;
}

}


/* ==========================================
   SMALL MOBILE (576px)
========================================== */

@media (max-width:576px){

.hero{
    padding:50px 18px;
}

.glass-card h1{
    font-size:30px;
}

.glass-card p{
    font-size:15px;
}


.service{
    max-width:100%;
}

.whatsapp-btn{
    width:100%;
    text-align:center;
}

}


/* ==========================================
   EXTRA SMALL DEVICES (400px)
========================================== */

@media (max-width:400px){

.logo h2{
    font-size:20px;
}

.hero{
    padding:40px 15px;
}

.glass-card h1{
    font-size:26px;
    line-height:1.3;
}

.glass-card p{
    font-size:14px;
}

.service{
    padding:12px;
}

.service p{
    font-size:14px;
}

}


/* ==========================================
   UNIVERSAL RESPONSIVE FIXES
========================================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

html{
    scroll-behavior:smooth;
}

.hero,
.hero-card,
.card,
.navbar,
.top-bar .container{
    width:100%;
}


/* ----------------------------------------About Section------------------------------------------------ */

.about-section{

overflow:hidden;
background-color: #f1f1f1f1;

}

.section-tag{

display:inline-block;

padding:8px 18px;

background:#e7f7ed;

color:#0a7a42;

font-weight:600;

border-radius:50px;

margin-bottom:18px;

}

.section-title{

font-size:48px;

font-weight:700;

line-height:1.2;

color:#1d2a24;

margin-bottom:25px;

}

.section-title span{

color:#15803d;

}

.about-section p{

font-size:17px;

line-height:1.9;

color:#666;

}

.image-box{

position:relative;

}

.image-box img{

width:100%;
height: 80%;
border-radius:35px;

box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.qualification-card{

position:absolute;

left:30px;

bottom:-170px;

background:#fff;

width:90%;

padding:30px;

border-radius:25px;

box-shadow:0 15px 50px rgba(0,0,0,.12);

}

.qualification-card h5{

font-weight:700;

margin-bottom:20px;

color:#15803d;

text-transform:uppercase;

letter-spacing:2px;

}

.qualification-card ul{

padding:0;

margin:0;

list-style:none;

}

.qualification-card li{

margin-bottom:14px;

font-size:16px;

}

.qualification-card i{

color:#16a34a;

margin-right:10px;

}

.stat-box{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

border-left:5px solid #16a34a;

transition:.4s;

height:100%;

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box h2{

font-size:46px;

font-weight:700;

color:#15803d;

margin-bottom:10px;

}

.stat-box p{

margin:0;

font-size:18px;

font-weight:500;

}

.quote-box{

background:#edf9f1;

padding:35px;

border-left:6px solid #16a34a;

border-radius:20px;

}

.quote-box p{

font-style:italic;

font-size:22px;

color:#333;

margin-bottom:20px;

}

.quote-box h6{

color:#15803d;

font-weight:700;

}

@media(max-width:992px){

.section-title{

font-size:36px;

}

.qualification-card{

position:relative;

left:0;

bottom:0;

width:100%;

margin-top:20px;

}

}

@media(max-width:576px){

.section-title{

font-size:30px;

}

.stat-box{

text-align:center;

}

.quote-box p{

font-size:18px;

}

}
/* journey section */
/*==========================
    Journey Section
==========================*/

.journey-section{

    background:#a5c057;
    padding:100px 0;
}

.section-tag{

    display:inline-block;
    padding:8px 22px;
    background:#eaf6ea;
    color:#2f7d32;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:2px;
}

.section-title{

    font-size:3rem;
    font-weight:700;
    color:#18372b;
}

.title-line{

    width:80px;
    height:4px;
    background:#2f7d32;
    border-radius:5px;
    margin-top:15px;
}

.section-desc{

    max-width:700px;
    margin:auto;
    color:#5c6b63;
    font-size:1.15rem;
    line-height:1.8;
}

.timeline{

    position:relative;
    margin-top:80px;
}

.timeline-line{

    position:absolute;
    top:45px;
    left:8%;
    width:84%;
    height:3px;
    background:#9fd2ae;
    z-index:0;
}

.step-number{

    width:95px;
    height:95px;
    background:#fff;
    border:3px solid #2f7d32;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:2rem;
    font-weight:700;
    color:#2f7d32;
    position:relative;
    z-index:2;
    transition:.4s;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.step-number.active{

    background:#2f7d32;
    color:#fff;
}

.timeline h4{

    margin-top:35px;
    font-weight:700;
    color:#23352c;
    font-size:1.4rem;
}

.timeline p{

    color:#66746d;
    line-height:1.8;
    margin-top:15px;
    font-size:1rem;
}

.journey-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:40px;

    padding:16px 34px;

    background:linear-gradient(135deg,#2E7D32,#43A047);
    color:#fff;

    text-decoration:none;
    font-size:17px;
    font-weight:600;

    border-radius:50px;

    box-shadow:0 12px 30px rgba(46,125,50,.25);

    transition:all .3s ease;
}

.journey-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(46,125,50,.35);
}

.journey-btn i{
    transition:transform .3s ease;
}

.journey-btn:hover i{
    transform:translateX(6px);
}
.journey-btn:hover{

    background:#25652a;
    transform:translateY(-3px);
}

@media(max-width:991px){

    .timeline-line{

        display:none;
    }

    .step-number{

        margin-bottom:20px;
    }

    .timeline .col-lg-3{

        margin-bottom:40px;
    }

    .section-title{

        font-size:2.2rem;
    }

}

@media(max-width:576px){

    .section-title{

        font-size:1.8rem;
    }

    .section-desc{

        font-size:1rem;
    }

    .step-number{

        width:80px;
        height:80px;
        font-size:1.6rem;
    }

}
/*==============================
   SPECIALISATIONS SECTION
===============================*/

/*====================================
        SERVICES SECTION
====================================*/

.services-section{
    background: linear-gradient(180deg,#fcfdfb,#f4faf6,#ffffff);
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.services-section::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:450px;
    height:450px;
    background:rgba(46,125,50,.05);
    border-radius:50%;
    filter:blur(80px);
}

.services-section::after{
    content:"";
    position:absolute;
    bottom:-200px;
    left:-150px;
    width:380px;
    height:380px;
    background:rgba(46,125,50,.04);
    border-radius:50%;
    filter:blur(90px);
}

.section-heading{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.section-heading h2{
    font-size:54px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1px;
    background: linear-gradient(90deg, #17352a, #2E7D32);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section-heading p{
    font-size:19px;
    color: #61706a;
    line-height:1.9;
    max-width:760px;
    margin:25px auto 0;
}

/*====================
        CARD
=====================*/

.service-card{
    position:relative;
    background:rgba(255,255,255,.96);
    border-radius:28px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    border:1px solid rgba(255,255,255,.8);
    backdrop-filter:blur(15px);
    box-shadow:0 18px 50px rgba(18,60,40,.08);
    transition:all .45s cubic-bezier(.22,1,.36,1);
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transition:.8s;
}

.service-card:hover{
    transform:translateY(-14px) scale(1.02);
    box-shadow:0 35px 80px rgba(20,70,45,.18);
}

.service-card:hover::before{
    left:120%;
}

/*====================
        IMAGE
=====================*/

.service-img{
    overflow:hidden;
    position:relative;
}

.service-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:transform .8s ease;
}

.service-card:hover .service-img img{
    transform:scale(1.1);
}

/*====================
        TAG
=====================*/

.service-tag{
    position:absolute;
    left:20px;
    bottom:18px;
    background:linear-gradient(135deg,#1F8A4C,#2FBF71);
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
}

/*====================
      CONTENT
=====================*/

.service-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-content h3{
    font-size:20px;
    font-weight:800;
    color:#20362c;
    margin-bottom:18px;
    line-height:1.2;
}

.service-content p{
    font-size:17px;
    color:#5d6865;
    line-height:1.95;
    margin-bottom:28px;
    flex-grow:1;
}

.service-content a{
    color:#19763b;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.service-content a:hover{
    letter-spacing:1px;
    transform:translateX(5px);
}

/*====================
    RESPONSIVE
=====================*/

@media(max-width:991px){

    .section-heading h2{
        font-size:42px;
    }

    .service-content h3{
        font-size:28px;
    }
}

@media(max-width:767px){

    .section-heading h2{
        font-size:34px;
    }

    .service-content{
        padding:24px;
    }

    .service-img img{
        height:220px;
    }
}

.section-badge{

    background:#e8f5e9;
    color:#2E7D32;
    padding:10px 24px;
    border-radius:40px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:2px;

}

.section-title{

    font-size:3rem;
    font-weight:700;
    color:#1d3528;

}

.title-divider{

    width:70px;
    height:4px;
    background:#2E7D32;
    border-radius:20px;
    margin:18px auto;

}

.section-subtitle{

    max-width:760px;
    margin:auto;
    color:#5d6d64;
    line-height:1.8;
    font-size:1.1rem;

}

/* Cards */

.program-card{

    border:none;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    background:#fff;

}

.program-card:hover{

    transform:translateY(-10px);

}

.program-card img{

    height:230px;
    width:100%;
    object-fit:cover;

}

.program-body{

    padding:28px;

}

.program-tag{

    display:inline-block;
    padding:8px 18px;
    background:#2E7D32;
    color:#fff;
    font-size:.75rem;
    border-radius:30px;
    margin-bottom:18px;
    font-weight:600;
    letter-spacing:1px;

}

.program-body h4{

    font-size:1.55rem;
    font-weight:700;
    color:#21352a;

}

.program-body p{

    color:#64736b;
    margin:18px 0;
    line-height:1.8;

}

.program-body a{

    text-decoration:none;
    color:#2E7D32;
    font-weight:600;

}

.program-body a:hover{

    color:#1B5E20;

}

.consultation-btn{

    border:2px solid #2E7D32;
    color:#2E7D32;
    padding:15px 42px;
    border-radius:12px;
    font-weight:600;

}

.consultation-btn:hover{

    background:#2E7D32;
    color:#fff;

}

@media(max-width:992px){

.section-title{

font-size:2.4rem;

}

}

@media(max-width:576px){

.section-title{

font-size:1.8rem;

}

.section-subtitle{

font-size:1rem;

}

}

.journey-section{

background:#f4f9fd;

}

.section-badge{

display:inline-block;

padding:8px 22px;

background:#e8f7ee;

color:#2f855a;

border-radius:30px;

font-size:13px;

font-weight:600;

letter-spacing:2px;

}

.section-title{

font-size:50px;

font-weight:700;

color:#1d2d25;

}

.section-title span{

color:#2f855a;

}

.section-text{

max-width:700px;

margin:auto;

margin-top:20px;

font-size:18px;

color:#6b7280;

line-height:1.8;

}


.journey-image{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:330px;
}

.journey-image img{

width:100%;

border-radius:30px;

transition:.5s;

}

.journey-image:hover img{

transform:scale(1.05);

}

/* Two Images Left Side */
.journey-images{
    display:flex;
    flex-direction:column;
    gap:25px;
    height:100%;
}

.journey-images .journey-image{
    flex:1;
}

.journey-images .journey-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}



.floating-card h2{

font-size:38px;

font-weight:700;

color:#2f855a;

margin-bottom:5px;

}

.floating-card p{

margin:0;

color:#666;

}

.content-title{

font-size:44px;

font-weight:700;

color:#1d2d25;

}

.content-title span{

color:#2f855a;

}

.content-text{

margin-top:20px;

color:#6b7280;

line-height:1.9;

font-size:17px;

}

.feature-box{

background:#fff;

padding:30px;

border-radius:20px;

height:100%;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature-box:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.icon-box{

height:65px;

width:65px;

background:#e8f7ee;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:18px;

}

.icon-box i{

font-size:28px;

color:#2f855a;

}

.feature-box h5{

font-weight:600;

margin-bottom:15px;

color:#222;

}

.feature-box p{

color:#666;

line-height:1.7;

margin:0;

}

.journey-btn{

padding:16px 38px;

background:#2f855a;

color:#fff;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.journey-btn:hover{

background:#236846;

color:#fff;

transform:translateY(-3px);

}

@media(max-width:991px){

.section-title{

font-size:38px;

}

.content-title{

font-size:34px;

}

}

@media(max-width:768px){

.section-title{

font-size:30px;

}

.content-title{

font-size:28px;

}

.section-text{

font-size:16px;

}

.content-text{

font-size:16px;

}

.floating-card{

padding:15px 20px;

}

.floating-card h2{

font-size:28px;

}

}

.custom-faq .accordion-button{

    display:flex;
    align-items:center;
    gap:18px;
    text-align:left;
    justify-content:flex-start;

}

.custom-faq .accordion-button::before{

    content:"+";

    width:38px;
    height:38px;

    background:#EAF7EF;
    color:#2E8B57;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    order:-1;

    margin-left:0;
    margin-right:0;

}

/*==========================================
      TESTIMONIAL SECTION
==========================================*/

.testimonials-section{
    background:linear-gradient(to bottom,#ffffff,#f7fcf8);
    padding:100px 0;
    overflow:hidden;
}

.section-tag{

    display:inline-block;
    padding:10px 24px;
    background:#EAF8EF;
    color:#2E8B57;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

}

.section-title{

    font-size:52px;
    font-weight:700;
    color:#1F2D2A;
    margin-top:20px;

}

.section-title span{

    color:#2E8B57;

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    margin-top:20px;
    color:#6C757D;
    font-size:18px;
    line-height:1.8;

}

/*===========================*/

.testimonial-wrapper{

    position: relative;

    display: flex;

    align-items: center;

}
.testimonial-slider{

    display:flex;

    gap:30px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding:10px;

    flex:1;

}
.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#2E8B57;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    z-index:10;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    transition:.3s;

}

.slider-btn:hover{

    background:#1d6d43;

    transform:translateY(-50%) scale(1.08);

}

.prev-btn{

    left:-28px;

}

.next-btn{

    right:-28px;

}
.testimonial-slider{

    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:10px;

}

.testimonial-slider::-webkit-scrollbar{

    display:none;

}

/*===========================*/

.testimonial-card{

    min-width:380px;
    max-width:380px;

    background:#F7FCF8;

    border:1px solid #DCEFE4;

    border-radius:24px;

    padding:35px;

    position:relative;

    transition:.35s;

    flex-shrink:0;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(46,139,87,.15);

}

/* Large quotation mark */

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:15px;

    right:25px;

    font-size:90px;

    color:#D8ECE0;

    line-height:1;

}

/*===========================*/

.category{

    display:inline-block;

    background:#EAF8EF;

    color:#2E8B57;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:18px;

}

.stars{

    color:#FFB400;

    font-size:20px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.review{

    font-size:17px;

    color:#495057;

    line-height:1.9;

    margin-bottom:35px;

    min-height:190px;

    font-style:italic;

}

/*===========================*/

.client{

    display:flex;

    align-items:center;

    gap:15px;

    padding-top:20px;

    border-top:1px solid #DDEDE3;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #fff;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

}

.client h5{

    margin:0;

    font-size:20px;

    font-weight:600;

    color:#1F2D2A;

}

.client span{

    color:#6c757d;

    font-size:14px;

}

/*===========================*/

.result{

    display:inline-block;

    margin-top:18px;

    background:#2E8B57;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:500;

}

.program-card{

    background:#fff;

    border:1px solid #d7ead8;

    border-radius:24px;

    overflow:hidden;

    transition:.35s ease;

    height:100%;

    display:flex;

    flex-direction:column;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

}

.program-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.program-image{

    position:relative;

    overflow:hidden;

}

.program-image img{

    width:100%;

    height:230px;

    object-fit:cover;

    display:block;

}

.program-tag{

    position:absolute;

    left:18px;

    bottom:16px;

    background:#2e7d32;

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.6px;

    text-transform:uppercase;

}

.program-body{

    padding:26px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.program-body h3{

    font-size:2rem;

    font-weight:700;

    color:#24352c;

    margin-bottom:14px;

    line-height:1.2;

}

.program-body p{

    color:#5e6665;

    font-size:16px;

    line-height:1.8;

    margin-bottom:28px;

    flex-grow:1;

}

.program-body a{

    text-decoration:none;

    color:#19763b;

    font-weight:700;

    font-size:18px;

    transition:.3s;

}

.program-body a:hover{

    color:#145b2d;

    letter-spacing:.4px;

}

@media(max-width:992px){

.program-image img{

    height:220px;

}

}

@media(max-width:768px){

.program-image img{

    height:250px;

}

.program-body{

    padding:22px;

}

}
/*==========================================
            FAQ SECTION
==========================================*/

.faq-section{
    background:#f8f5ef;
    padding:100px 0;
}

.faq-header{
    margin-bottom:60px;
}

.faq-badge{
    display:inline-block;
    padding:10px 28px;
    background:#dcefdc;
    color:#2e7d32;
    border-radius:40px;
    font-family:"Times New Roman", serif;
    font-size:13px;
    font-weight:bold;
    letter-spacing:3px;
    text-transform:uppercase;
}

.faq-heading{
    font-family:"Times New Roman", serif;
    font-size:46px;
    font-weight:bold;
    color:#173b2d;
    margin-top:20px;
}

.faq-line{
    width:80px;
    height:4px;
    background:#43a047;
    margin:20px auto;
    border-radius:50px;
}

.faq-text{
    max-width:700px;
    margin:auto;
    font-family:"Times New Roman", serif;
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/*===========================
      FAQ WRAPPER
===========================*/

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

/*===========================
      FAQ CARD
===========================*/

.faq-card{

    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.35s;

}

.faq-card:hover{

    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

/*===========================
      QUESTION
===========================*/

.faq-question{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px;
    cursor:pointer;

}

.faq-question h4{

    margin:0;
    width:88%;
    font-family:"Times New Roman", serif;
    font-size:24px;
    color:#173b2d;
    transition:.3s;

}

.faq-card:hover h4{

    color:#2e7d32;

}

/*===========================
      BUTTON
===========================*/

.faq-toggle{

    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#e8f5e9;
    color:#2e7d32;
    font-size:28px;
    font-weight:bold;
    cursor:pointer;
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;

}

.faq-toggle:hover{

    transform:scale(1.08);

}

.faq-card.active .faq-toggle{

    background:#2e7d32;
    color:#fff;

}

/*===========================
      ANSWER
===========================*/

.faq-content{

    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
    padding:0 28px;

}

.faq-content p{

    padding-bottom:25px;
    margin:0;
    font-family:"Times New Roman", serif;
    font-size:18px;
    line-height:1.9;
    color:#555;

}

/*===========================
      RESPONSIVE
===========================*/

@media(max-width:992px){

.faq-heading{

    font-size:38px;

}

.faq-question h4{

    font-size:21px;

}

}

@media(max-width:768px){

.faq-section{

    padding:70px 0;

}

.faq-heading{

    font-size:32px;

}

.faq-text{

    font-size:16px;

}

.faq-question{

    padding:18px;

}

.faq-question h4{

    font-size:18px;
    width:80%;

}

.faq-toggle{

    width:40px;
    height:40px;
    font-size:24px;

}

.faq-content{

    padding:0 18px;

}

.faq-content p{

    font-size:16px;

}

}

/*=========================================
      GOOGLE FONT & RESET
=========================================*/


/*=========================================
      SECTION
=========================================*/

.consultation-section{

    background:linear-gradient(180deg,#FCFCF8,#F3F8F5);
    position:relative;
    overflow:hidden;
    padding:100px 0;

}

.consultation-section::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#d9efe4;
    border-radius:50%;
    top:-120px;
    right:-100px;
    opacity:.35;

}

.consultation-section::after{

    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:#cfe8dc;
    border-radius:50%;
    bottom:-120px;
    left:-100px;
    opacity:.25;

}


/*=========================================
      HEADER
=========================================*/

.section-header{

    max-width:850px;
    margin:auto;

}

.section-badge{

    display:inline-block;
    padding:10px 28px;
    border-radius:50px;
    background:#e7f6ef;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;

}

.section-title{

    font-size:3rem;
    font-weight:700;
    color:#1d312c;
    margin-top:20px;

}

.title-divider{

    width:90px;
    height:5px;
    border-radius:30px;
    margin:25px auto;
    background:linear-gradient(90deg,#2F5D50,#79b08f);

}

.section-subtitle{

    color:var(--text);
    font-size:18px;
    line-height:1.8;
}


/*=========================================
      LEFT PANEL
=========================================*/

.contact-left{

    padding-right:20px;

}

.contact-left h3{

    font-size:38px;
    color:#1d312c;
    font-weight:700;
    margin-bottom:18px;

}

.contact-text{

    color:var(--text);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;

}


/*=========================================
      CONTACT CARDS
=========================================*/

.contact-card{

    display:flex;
    gap:20px;
    align-items:flex-start;

    background:#fff;

    border:1px solid #dbe9df;

    border-radius:20px;

    padding:22px;

    margin-bottom:20px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.03);

}

.contact-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:#eef9f2;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--primary);

    font-size:26px;

    flex-shrink:0;

}

.contact-icon.whatsapp{

    background:#ebfff1;
    color:#1EBE5D;

}

.contact-icon.phone{

    background:#edf6ff;
    color:#3174ff;

}

.contact-icon.mail{

    background:#fff5e7;
    color:#ff9800;

}

.contact-card h5{

    margin-bottom:8px;
    font-size:22px;
    font-weight:600;
    color:#1f312b;

}

.contact-card p{

    color:var(--text);
    margin:0;
    line-height:1.7;

}


/*=========================================
      LIMITED BOX
=========================================*/

.limited-box{

    background:#ecfaf3;

    border-left:5px solid var(--primary);

    border-radius:18px;

    padding:25px;

    margin-top:30px;

}

.limited-box h5{

    font-size:22px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:12px;

}

.limited-box p{

    margin:0;
    color:var(--text);
    line-height:1.8;

}


/*=========================================
      FORM BOX
=========================================*/

.consultation-form{

    background:rgba(255,255,255,.96);

    border-radius:35px;

    padding:55px;

    box-shadow:var(--shadow);

    position:relative;

    border:1px solid rgba(255,255,255,.4);

}

.floating-badge{

    position:absolute;

    top:-22px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(135deg,#2F5D50,#4d8c69);

    color:#fff;

    padding:12px 35px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 15px 30px rgba(47,93,80,.25);

}

.consultation-form h3{

    margin-top:10px;

    font-size:40px;

    color:#1d312c;

    font-weight:700;

}

.form-subtitle{

    color:var(--text);

    margin-bottom:35px;

    font-size:18px;

}


/*=========================================
      FORM
=========================================*/

.form-label{

    font-weight:600;

    color:#27463a;

    margin-bottom:10px;

}

.form-control,
.form-select{

    height:60px;

    border-radius:15px;

    border:2px solid #dbe9df;

    padding:15px 20px;

    font-size:16px;

    box-shadow:none;

    transition:.35s;

}

textarea.form-control{

    height:130px;

    resize:none;

    padding-top:18px;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(47,93,80,.08);

}


/*=========================================
      BUTTON
=========================================*/

.consult-btn{

    width:100%;

    height:65px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,#2F5D50,#4F8A6A);

    color:#fff;

    font-size:20px;

    font-weight:600;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    cursor:pointer;

    transition:.4s;

}

.privacy-text{

    margin-top:22px;

    text-align:center;

    color:#6f7777;

    font-size:15px;

}

.privacy-text i{

    color:#2F5D50;

    margin-right:8px;

}

/* ==========================================
        NUTRIPATH CONTACT SECTION
========================================== */

:root{

    --np-primary:#2F5D50;
    --np-secondary:#6FAF8C;
    --np-light:#F8FCF9;
    --np-white:#ffffff;
    --np-text:#5f6b6d;
    --np-border:#dbe9df;
    --np-shadow:0 20px 50px rgba(47,93,80,.12);

}

/* ==========================================
        SECTION
========================================== */

.np-contact-section{

    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:linear-gradient(180deg,#FCFDFB,#F2F8F4);

}

.np-contact-section::before{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#dff3e8;
    top:-120px;
    right:-100px;
    opacity:.45;

}

.np-contact-section::after{

    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:#d8ede2;
    bottom:-120px;
    left:-100px;
    opacity:.35;

}

/* ==========================================
        HEADER
========================================== */

.np-contact-header{

    max-width:850px;
    margin:auto;

}

.np-contact-badge{

    display:inline-block;

    padding:10px 28px;

    border-radius:50px;

    background:#EAF8F0;

    color:var(--np-primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.np-contact-title{

    font-size:3rem;

    font-weight:700;

    color:#1D312C;

    margin-top:20px;

}

.np-contact-divider{

    width:90px;

    height:5px;

    border-radius:30px;

    margin:25px auto;

    background:linear-gradient(90deg,var(--np-primary),var(--np-secondary));

}

.np-contact-subtitle{

    font-size:18px;

    color:var(--np-text);

    line-height:1.8;

}

/* ==========================================
        LEFT PANEL
========================================== */

.np-contact-left{

    padding-right:20px;

}

.np-contact-left h3{

    font-size:36px;

    font-weight:700;

    color:#1D312C;

    margin-bottom:18px;

}

.np-left-description{

    color:var(--np-text);

    line-height:1.8;

    font-size:17px;

    margin-bottom:35px;

}

/* ==========================================
        CONTACT CARD
========================================== */

.np-contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    border-radius:20px;

    background:#fff;

    border:1px solid var(--np-border);

    margin-bottom:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

    transition:.4s ease;

}

.np-contact-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:#EEF9F2;

    color:var(--np-primary);

    font-size:24px;

    transition:.4s;

}

.np-whatsapp-icon{

    background:#EAFBF0;

    color:#25D366;

}

.np-phone-icon{

    background:#EEF6FF;

    color:#3478F6;

}

.np-email-icon{

    background:#FFF7E7;

    color:#FF9800;

}

.np-contact-card h5{

    font-size:20px;

    margin-bottom:8px;

    font-weight:600;

    color:#24332D;

}

.np-contact-card p{

    margin:0;

    color:var(--np-text);

    line-height:1.7;

}

/* ==========================================
        LIMITED BOX
========================================== */

.np-limited-box{

    margin-top:30px;

    background:#ECFAF4;

    border-left:5px solid var(--np-primary);

    padding:25px;

    border-radius:18px;

}

.np-limited-box h5{

    color:var(--np-primary);

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.np-limited-box p{

    margin:0;

    color:var(--np-text);

    line-height:1.8;

}

/* ==========================================
        FORM BOX
========================================== */

.np-contact-form{

    position:relative;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(10px);

    border-radius:35px;

    padding:55px;

    box-shadow:var(--np-shadow);

    border:1px solid rgba(255,255,255,.5);

}

.np-floating-badge{

    position:absolute;

    top:-22px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(135deg,var(--np-primary),var(--np-secondary));

    color:#fff;

    padding:12px 32px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 15px 30px rgba(47,93,80,.25);

}

.np-contact-form h3{

    font-size:38px;

    font-weight:700;

    color:#1D312C;

    margin-top:15px;

}

.np-form-subtitle{

    color:var(--np-text);

    margin-bottom:35px;

    font-size:17px;

}

/* ==========================================
        FORM
========================================== */

.np-contact-form .form-label{

    font-weight:600;

    color:#27463A;

    margin-bottom:10px;

}

.np-contact-form .form-control,
.np-contact-form .form-select{

    height:58px;

    border-radius:15px;

    border:2px solid var(--np-border);

    box-shadow:none;

    padding:14px 18px;

    transition:.35s;

}

.np-contact-form textarea.form-control{

    height:130px;

    resize:none;

    padding-top:16px;

}

.np-contact-form .form-control:focus,
.np-contact-form .form-select:focus{

    border-color:var(--np-primary);

    box-shadow:0 0 0 4px rgba(47,93,80,.08);

}

/* ==========================================
        BUTTON
========================================== */

.np-whatsapp-btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,var(--np-primary),var(--np-secondary));

    color:#fff;

    font-size:19px;

    font-weight:600;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    cursor:pointer;

    transition:.4s;

}

.np-privacy-text{

    text-align:center;

    margin-top:22px;

    color:#6B7575;

    font-size:15px;

}

.np-privacy-text i{

    color:var(--np-primary);

    margin-right:6px;

}

/*=========================================
      PREMIUM HOVER EFFECTS
=========================================*/

.np-contact-card{

    position:relative;
    overflow:hidden;

}

.np-contact-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(47,93,80,.08),
        transparent
    );

    transition:.8s;

}

.np-contact-card:hover::before{

    left:100%;

}

.np-contact-card:hover{

    transform:translateY(-10px);

    border-color:var(--np-primary);

    box-shadow:0 25px 50px rgba(47,93,80,.18);

}

.np-contact-card:hover .np-contact-icon{

    transform:rotate(8deg) scale(1.1);

}

.np-contact-icon{

    transition:.4s;

}

.np-contact-icon i{

    transition:.4s;

}

.np-contact-card:hover i{

    transform:scale(1.2);

}


/*=========================================
      FORM EFFECTS
=========================================*/

.np-contact-form{

    transition:.45s;

}

.np-contact-form:hover{

    transform:translateY(-8px);

    box-shadow:
    0 35px 80px rgba(47,93,80,.18);

}


/*=========================================
      INPUT EFFECTS
=========================================*/

.np-contact-form .form-control,
.np-contact-form .form-select{

    transition:.35s;

}

.np-contact-form .form-control:hover,
.np-contact-form .form-select:hover{

    border-color:var(--np-secondary);

}

.np-contact-form .form-control:focus,
.np-contact-form .form-select:focus{

    transform:scale(1.01);

}


/*=========================================
      BUTTON
=========================================*/

.np-whatsapp-btn{

    position:relative;

    overflow:hidden;

}

.np-whatsapp-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:55%;
    height:100%;

    background:rgba(255,255,255,.28);

    transform:skewX(-25deg);

}

.np-whatsapp-btn:hover::before{

    animation:npShine .9s forwards;

}

.np-whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(47,93,80,.35);

}

.np-whatsapp-btn:active{

    transform:scale(.98);

}


/*=========================================
      BADGE ANIMATION
=========================================*/

.np-floating-badge{

    animation:npFloating 3s ease-in-out infinite;

}

.np-contact-badge{

    animation:npPulse 2.5s infinite;

}


/*=========================================
      DIVIDER
=========================================*/

.np-contact-divider{

    position:relative;

    overflow:hidden;

}

.np-contact-divider::after{

    content:"";

    position:absolute;

    width:40px;
    height:100%;

    left:-40px;

    background:rgba(255,255,255,.6);

    animation:npDividerMove 3s infinite;

}


/*=========================================
      LIMITED BOX
=========================================*/

.np-limited-box{

    transition:.4s;

}

.np-limited-box:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(47,93,80,.12);

}


/*=========================================
      SCROLL REVEAL
=========================================*/

.np-contact-header,
.np-contact-left,
.np-contact-form{

    opacity:0;

    transform:translateY(60px);

    transition:1s ease;

}

.np-show{

    opacity:1 !important;

    transform:translateY(0) !important;

}


/*=========================================
      KEYFRAMES
=========================================*/

@keyframes npFloating{

0%{

transform:translateX(-50%) translateY(0);

}

50%{

transform:translateX(-50%) translateY(-8px);

}

100%{

transform:translateX(-50%) translateY(0);

}

}


@keyframes npPulse{

0%{

box-shadow:0 0 0 0 rgba(47,93,80,.35);

}

70%{

box-shadow:0 0 0 14px rgba(47,93,80,0);

}

100%{

box-shadow:0 0 0 0 rgba(47,93,80,0);

}

}


@keyframes npDividerMove{

from{

left:-40px;

}

to{

left:120px;

}

}


@keyframes npShine{

from{

left:-120%;

}

to{

left:130%;

}

}


/*=========================================
      RESPONSIVE
=========================================*/

@media (max-width:992px){

.np-contact-section{

padding:80px 0;

}

.np-contact-title{

font-size:42px;

}

.np-contact-left{

padding-right:0;

margin-bottom:40px;

}

.np-contact-form{

padding:40px;

}

.np-contact-left h3{

font-size:32px;

}

.np-contact-form h3{

font-size:32px;

}

}


@media (max-width:768px){

.np-contact-title{

font-size:34px;

}

.np-contact-subtitle{

font-size:16px;

}

.np-contact-left h3{

font-size:28px;

}

.np-contact-card{

padding:18px;

gap:15px;

}

.np-contact-icon{

width:55px;

height:55px;

font-size:22px;

}

.np-contact-card h5{

font-size:18px;

}

.np-contact-form{

padding:25px;

border-radius:25px;

}

.np-contact-form h3{

font-size:28px;

}

.np-contact-form .form-control,
.np-contact-form .form-select{

height:55px;

}

.np-whatsapp-btn{

height:58px;

font-size:17px;

}

}


@media (max-width:576px){

.np-contact-title{

font-size:30px;

}

.np-contact-badge{

font-size:11px;

padding:8px 18px;

letter-spacing:2px;

}

.np-floating-badge{

width:90%;

font-size:11px;

text-align:center;

}

.np-contact-card{

flex-direction:column;

align-items:center;

text-align:center;

}

.np-limited-box{

padding:20px;

}

}

/*=========================================
        NUTRIPATH PREMIUM FOOTER
=========================================*/

.np-footer{

    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#0D3B2A,#124B35,#1B5E42);

    color:#fff;

    padding:90px 0 25px;

}

/*=========================================
        FLOATING CIRCLES
=========================================*/

.np-footer-bg-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    filter:blur(2px);

}

.np-circle-1{

    width:300px;
    height:300px;

    top:-150px;
    right:-100px;

}

.np-circle-2{

    width:220px;
    height:220px;

    bottom:-80px;
    left:-80px;

}


/*=========================================
        ABOUT
=========================================*/

.np-footer-about img{

    width:220px;

    background:#fff;

    border-radius:14px;

    margin-bottom:25px;

}

.np-footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:28px;

    font-size:16px;

}


/*=========================================
        BUTTONS
=========================================*/

.np-footer-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.np-footer-buttons a{

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 22px;

    border-radius:12px;

    font-weight:600;

    transition:.4s;

}

.np-footer-whatsapp{

    background:#25D366;

    color:#fff;

}

.np-footer-call{

    background:rgba(255,255,255,.12);

    color:#fff;

}


/*=========================================
        SOCIAL ICONS
=========================================*/

.np-footer-social{

    display:flex;

    gap:15px;

    margin-top:28px;

}

.np-footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.10);

    color:#fff;

    text-decoration:none;

    transition:.4s;

}


/*=========================================
        HEADINGS
=========================================*/

.np-footer h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    font-weight:700;

}


/*=========================================
        LINKS
=========================================*/

.np-footer-links ul,
.np-footer-contact ul{

    list-style:none;

    padding:0;

    margin:0;

}

.np-footer-links li{

    margin-bottom:15px;

}

.np-footer-links a{

    text-decoration:none;

    color:rgba(255,255,255,.75);

    transition:.35s;

}


/*=========================================
        CONTACT
=========================================*/

.np-footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:18px;

    color:rgba(255,255,255,.80);

    line-height:1.7;

}

.np-footer-contact i{

    color:#76D39A;

    margin-top:5px;

}

.np-footer-contact a{

    color:rgba(255,255,255,.80);

    text-decoration:none;

}


/*=========================================
        DIVIDER
=========================================*/

.np-footer-divider{

    width:100%;

    height:1px;

    background:rgba(255,255,255,.12);

    margin:55px 0 25px;

}


/*=========================================
        BOTTOM
=========================================*/

.np-footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.np-footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

}

.np-footer-bottom-links{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.np-footer-bottom-links a{

    text-decoration:none;

    color:rgba(255,255,255,.70);

    transition:.35s;

}


/*=========================================
        BACK TO TOP
=========================================*/

#npBackToTop{
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: #4CAF74;
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    padding: 0;

    z-index: 9999;

    transition: all .3s ease;
}

/*=========================================
      HOVER EFFECTS
=========================================*/

.np-footer-buttons a:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.np-footer-whatsapp:hover{

    background:#1EBE5D;

}

.np-footer-call:hover{

    background:#ffffff;

    color:#0D3B2A;

}

.np-footer-social a:hover{

    transform:translateY(-6px) rotate(360deg);

    background:#25D366;

    color:#fff;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

}

.np-footer-links a{

    position:relative;

    display:inline-block;

}

.np-footer-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:0;

    height:2px;

    background:#76D39A;

    transition:.35s;

}

.np-footer-links a:hover{

    color:#76D39A;

    padding-left:8px;

}

.np-footer-links a:hover::after{

    width:100%;

}

.np-footer-contact a:hover{

    color:#76D39A;

}

.np-footer-bottom-links a:hover{

    color:#76D39A;

}


/*=========================================
      LOGO EFFECT
=========================================*/

.np-footer-about img{

    transition:.4s;

}

.np-footer-about img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}


/*=========================================
      FLOATING BACKGROUND
=========================================*/

.np-circle-1{

    animation:npFloat1 8s ease-in-out infinite;

}

.np-circle-2{

    animation:npFloat2 10s ease-in-out infinite;

}


/*=========================================
      FOOTER REVEAL
=========================================*/

.np-footer{

    opacity:0;

    transform:translateY(60px);

    transition:1s ease;

}

.np-footer.np-footer-show{

    opacity:1;

    transform:translateY(0);

}


/*=========================================
      BACK TO TOP
=========================================*/

#npBackToTop i{
    margin: 0;
    padding: 0;
    line-height: 1;
}


/*=========================================
      KEYFRAMES
=========================================*/

@keyframes npFloat1{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

@keyframes npFloat2{

0%{

transform:translateY(0);

}

50%{

transform:translateY(15px);

}

100%{

transform:translateY(0);

}

}


/*=========================================
      RESPONSIVE
=========================================*/

@media(max-width:992px){

.np-footer{

padding:70px 0 20px;

}

.np-footer-about{

text-align:center;

}

.np-footer-buttons{

justify-content:center;

}

.np-footer-social{

justify-content:center;

}

.np-footer-bottom{

flex-direction:column;

text-align:center;

}

}

@media(max-width:768px){

.np-footer{

text-align:center;

}

.np-footer h4{

margin-top:10px;

}

.np-footer-contact li{

justify-content:center;

}

.np-footer-links ul{

margin-bottom:20px;

}

.np-footer-bottom-links{

justify-content:center;

}

#npBackToTop{

right:20px;

bottom:20px;

width:50px;

height:50px;

}

}

@media(max-width:576px){

.np-footer-about img{

width:180px;

}

.np-footer-buttons{

flex-direction:column;

}

.np-footer-buttons a{

justify-content:center;

width:100%;

}

.np-footer-social{

gap:10px;

}

.np-footer-social a{

width:42px;

height:42px;

}

.np-footer h4{

font-size:20px;

}

.np-footer-about p{

font-size:15px;

}

}

/* ===============================
   RESPONSIVE NAVBAR
================================ */

@media (max-width:991px){

header{
    position:relative;
    z-index:9999;
}

.top-bar{
    display:none;
}

.navbar{

    height:80px;
    padding:15px 20px;
    position:relative;
}

.logo img{
    width:70px;
}

.logo h2{
    font-size:24px;
}

.menu-btn{

    display:block;
    font-size:28px;
    cursor:pointer;
    color:#1f6b3a;
    z-index:1001;
}

.nav-links{

    position:absolute;

    top:80px;

    left:-100%;

    width:100%;

    background:#fff;

    flex-direction:column;

    text-align:center;

    gap:0;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.nav-links li{

    width:100%;
}

.nav-links li a{

    display:block;

    padding:18px;

    border-bottom:1px solid #eee;

}

.nav-links.active{

    left:0;
}

}

@media(max-width:768px){

    .slider-btn{

        width:45px;
        height:45px;
        font-size:18px;

    }

    .prev-btn{

        left:5px;

    }

    .next-btn{

        right:5px;

    }

}