/********** Template CSS **********/
:root {
    --primary: #1DB853;
    --secondary: #166E39;
    --light: #E8F8EE;
    --dark: #1D2A4D;
}

body {
    font-family: 'Inter', sans-serif;
    color: #304056;
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.display-4 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.display-6 {
    font-size: clamp(1.15rem, 2.1vw, 1.65rem);
    line-height: 1.7;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.btn-primary {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #178d46 !important;
    border-color: #178d46 !important;
}

.bg-dark {
    background-color: #000 !important;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.bg-black {
    background-color: #000 !important;
}

.navbar-light .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.navbar-dark .navbar-brand {
    color: var(--primary) !important;
}

.hero-header {
    background-image: url(../img/hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1960px 700px;
    background-color: #000;
    width: 100%;
    max-width: 1960px;
    height: 700px;
    margin: 0 auto;
    border-bottom: none;
}

.hero-header .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-header .col-lg-8 {
    max-width: 760px;
}

.hero-header h4 {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.hero-text {
    font-size: clamp(1.12rem, 2vw, 1.55rem);
    max-width: 660px;
    text-align: left;
    line-height: 1.8;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767.98px) {
    .hero-header {
        background-image: url(../img/hero-mobile.png);
        background-position: center;
        background-size: cover;
    }
}

.gallery-collage img,
.gallery-slide img {
    object-fit: cover;
}

.gallery-collage .col-6 {
    min-height: 220px;
}

.gallery-collage img {
    width: 100%;
    height: 100%;
}

.gallery-slide {
    border-radius: 20px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 420px;
}

@media (max-width: 991.98px) {
    .hero-header .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .gallery-slide img {
        height: 300px;
    }
}

.service-item {
    position: relative;
    min-height: 360px;
    padding: 40px 30px 80px;
    border-radius: 22px;
    transition: .5s;
    box-shadow: 0 14px 36px rgba(18, 48, 84, 0.08);
}

.service-item .service-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}

.service-item a.btn {
    margin-top: 24px;
    opacity: 1;
    transition: .3s;
}

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

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 200px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-item {
    background: #f7f9fb;
    padding: 18px 20px;
    border-radius: 22px;
    min-height: 230px;
    min-width: 0;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    gap: 10px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(16, 34, 51, 0.08);
}

.testimonial-item h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-stars {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.testimonial-stars i {
    font-size: 0.9rem;
}

.testimonial-item p {
    font-size: 12px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}
.footer-logo {
    max-height: 60px;
    width: auto;
    display: inline-block;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-copy p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}
.testimonial-placeholder {
    font-size: 0.95rem;
}

.faq-accordion .accordion-item {
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    padding: 1.1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: #f7fbf8;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 1.25rem 1.2rem;
    color: #516074;
}

@media (min-width: 1200px) {
    .testimonial-item {
        min-height: 240px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-item {
        min-height: auto;
        padding: 16px;
    }

    .testimonial-item p {
        font-size: 0.88rem;
    }
}

.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.testimonial-carousel .owl-item img {
    width: 350px;
    height: 150px;
}
.wa-icon{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.wa-icon:hover{
    transform:scale(1.08);
}

.wa-popup{
    position:fixed;
    bottom:100px;
    right:25px;
    width:330px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:9999;
    display:none;
    animation:popup .4s ease;
}

@keyframes popup{
from{
transform:translateY(30px);
opacity:0;
}
to{
transform:translateY(0);
opacity:1;
}
}

.wa-header{
    background:#25D366;
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wa-close{
    font-size:24px;
    cursor:pointer;
}

.wa-body{
    padding:18px;
}

.wa-body p{
    margin-bottom:10px;
    color:#555;
    line-height:1.5;
}

.wa-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:13px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.wa-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

@media(max-width:480px){

.wa-popup{
width:90%;
right:5%;
bottom:90px;
}

.wa-icon{
right:18px;
bottom:18px;
}

}
.services-section{
    padding:90px 0;
    background:#f6fbfd;
}

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

.section-title span{
    color:#1db6a4;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#16395f;
    margin:15px 0;
}

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

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

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.service-image{
    position:relative;
}

.service-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.service-title{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;          /* Makes the title box wider */
    background: #1DB853;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 20px;      /* Slightly smaller */
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;  /* Keep text in one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-content{
    padding:30px;
}

.service-content p{
    color:#555;
    margin-bottom:22px;
    line-height:1.7;
}

.service-content ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.service-content li{
    margin-bottom:12px;
    color:#444;
    position:relative;
    padding-left:28px;
}

.service-content li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#1DB853;
    font-weight:bold;
}

.service-btn{
    text-decoration:none;
    color:#1579b5;
    font-weight:700;
    letter-spacing:.5px;
}

.service-btn:hover{
    color:#1DB853;
}

@media(max-width:991px){

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

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

    .service-title{
        font-size:20px;
    }

}

@media(max-width:767px){

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

    .service-image img{
        height:220px;
    }

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

}
.hero-highlights{
    display:grid;
    grid-template-columns:repeat(2, max-content);
    gap:18px 20px;
    margin-top:20px;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.highlight-item:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,.18);
}

.highlight-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1DB853;
    color:#fff;
    font-size:18px;
}


.header-wrapper{
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.topbar-sticky{
    background: #fff;
}

.container-fluid.bg-black{
    background: #000 !important;
}

/*=====================================================
                WHY CHOOSE US
=====================================================*/

.why-section{
    padding:100px 0;
    background:#f7fbfd;
}

.section-subtitle{
    color:#1DB853;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-section h2{
    color:#183b63;
    font-weight:700;
    margin-bottom:15px;
}

.why-section p{
    color:#667085;
}

/*=====================================================
                MIND MAP
=====================================================*/

.mindmap{
    display:grid;
    grid-template-columns:1fr 300px 1fr;
    align-items:center;
    gap:55px;
    margin-top:60px;
}

/* LEFT & RIGHT */

.mind-column{
    display:flex;
    flex-direction:column;
    gap:35px;
}

/* CARDS */

.mind-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.mind-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(29,184,83,.15);
}

.mind-card h5{
    color:#183b63;
    font-weight:700;
    margin-bottom:6px;
}

.mind-card p{
    margin:0;
    color:#667085;
    line-height:1.6;
}

/* ICON */

.mind-icon{
    width:68px;
    height:68px;
    min-width:68px;
    border-radius:50%;
    background:#1DB853;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* CENTER */

.mind-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.center-circle{
    width:260px;
    height:260px;
    border-radius:50%;
    background:#000000;
    border:8px solid #1DB853;

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

    box-shadow:0 15px 40px rgba(29,184,83,.18);
}

.center-circle img{
    width:240px;
    height:auto;
    object-fit:contain;
}

/* CONNECTOR LINES */

.mind-column:first-child .mind-card::after{
    content:"";
    position:absolute;
    top:50%;
    right:-55px;
    width:55px;
    height:2px;
    background:#1DB853;
}

.mind-column:last-child .mind-card::before{
    content:"";
    position:absolute;
    top:50%;
    left:-55px;
    width:55px;
    height:2px;
    background:#1DB853;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mindmap{
        grid-template-columns:1fr;
        gap:35px;
    }

    .mind-center{
        order:-1;
        margin-bottom:10px;
    }

    .mind-column:first-child .mind-card::after,
    .mind-column:last-child .mind-card::before{
        display:none;
    }

}

@media(max-width:576px){

    .center-circle{
        width:200px;
        height:200px;
    }

    .center-circle img{
        width:110px;
    }

    .mind-card{
        padding:18px;
    }

    .mind-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:22px;
    }

}
.position-relative iframe{
    display:block;
    width:100%;
    max-width:1000px;
    height:500px;
    margin:0 auto;
    border-radius:20px;
}
/*====================================================
            MOBILE HERO FIX
=====================================================*/

@media (max-width: 768px){

    .hero-header{
        height:auto !important;
        min-height:100vh;
        background-size:cover;
        background-position:center;
        padding:90px 0 60px;
    }

    .hero-header .container{
        padding-top:0 !important;
        padding-bottom:0 !important;
    }

    .hero-header .row{
        justify-content:center;
    }

    .hero-header .col-lg-8{
        max-width:100%;
        text-align:center;
    }

    .hero-header h4{
        font-size:14px;
        line-height:1.6;
        margin-bottom:18px;
    }

    .hero-text{
        font-size:18px;
        line-height:1.7;
        text-align:center;
        margin:auto;
    }

    /* CTA Buttons */

    .hero-header .d-flex.gap-3{
        justify-content:center;
        gap:14px !important;
    }

    .hero-header .btn{
        width:100%;
        max-width:320px;
        padding:16px 20px;
        font-size:18px;
    }

    /* Trust badges */

    .hero-highlights{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
        margin-top:30px;
    }

    .highlight-item{
        width:100%;
        padding:14px 18px;
        border-radius:60px;
        backdrop-filter:none;
    }

    .highlight-item span{
        font-size:17px;
    }

    .highlight-item i{
        width:52px;
        height:52px;
        font-size:20px;
        flex-shrink:0;
    }

}

/*====================================================
            HERO MOBILE REDESIGN
=====================================================*/

@media (max-width:768px){

/* Hero */

.hero-header{

    background-image:url("../img/hero-mobile.png");

    background-size:cover;

    background-position:center;

    height:auto !important;

    padding:110px 0 50px;

}

.hero-header .container{

    padding-top:0;

    padding-bottom:0;

}

.hero-header .col-lg-8{

    max-width:100%;

    text-align:center;

}

.hero-header h1{

    font-size:38px;

    line-height:1.15;

}

.hero-text{

    text-align:center;

    font-size:18px;

    line-height:1.7;

}

/* Buttons */

.hero-header .d-flex.gap-3{

    flex-direction:column;

    align-items:center;

    gap:15px !important;

}

.hero-header .btn{

    width:100%;

    max-width:320px;

}

/* Trust Cards */

.hero-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    margin-top:35px;

}

.highlight-item{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:rgba(18,26,36,.82);

    backdrop-filter:blur(6px);

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

    border-radius:18px;

    padding:20px 12px;

    min-height:145px;

}

.highlight-item i{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#1DB853;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:12px;

    font-size:22px;

}

.highlight-item span{

    font-size:15px;

    font-weight:600;

    line-height:1.4;

}

/* Reduce doctor image dominance */

.hero-header::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to bottom,
        rgba(0,0,0,.35),
        rgba(0,0,0,.15));

    pointer-events:none;

}

}