:root {

    --primary: #002157;
    --primary-dark: #00163A;

    --secondary: #008C95;
    --secondary-dark: #00747B;
    --secondary-light: #E8F7F8;

    --heading: #12213A;
    --text: #4B5563;

    --white: #FFFFFF;

    --border: #E5EBEF;
}



/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    width: 100%;

    background: var(--primary);

    color: var(--white);

}


.topbar-inner {

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

}


.topbar-left {

    display: flex;
    align-items: center;

    gap: 35px;

}


.top-contact {

    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--white);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;

}


.top-contact i {

    color: #ffffff;

    font-size: 16px;

}


.top-contact:hover {

    color: #DDF7F8;

}



/* =========================================================
   SOCIAL ICONS
========================================================= */

.topbar-social {

    display: flex;
    align-items: center;

    gap: 30px;

}


.topbar-social a {

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    text-decoration: none;

    font-size: 14px;

    transition: .25s ease;

}


.topbar-social a:hover {

    color: #FF9B21;

    transform: translateY(-2px);

}



/* =========================================================
   MAIN HEADER
========================================================= */
/* =========================================================
   STICKY HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
}

/* Top Contact Bar */
.top-header {
    position: relative;
    z-index: 10000;
}

/* Main Navigation */
.main-header {
    position: relative;
    z-index: 9999;
    background: #ffffff;
}


/* Optional shadow when sticky */
.site-header {
    box-shadow: 0 2px 12px rgba(0, 33, 87, 0.08);
}

.main-header {

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    position: relative;

    z-index: 1000;

}


.header-inner {

    min-height: 90px;

    display: flex;
    align-items: center;

}



/* =========================================================
   LOGO
========================================================= */

.site-logo {

    width: 255px;

    flex-shrink: 0;

    display: flex;
    align-items: center;

    text-decoration: none;

}


.site-logo img {

    width: 190px;

    max-width: 100%;

    height: auto;

    display: block;

}



/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 2px;

}


.nav-link,
.mega-trigger {

    height: 90px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    background: transparent;

    border: 0;

    color: var(--primary);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition: .25s ease;

}


.nav-link:hover,
.mega-trigger:hover {

    color: var(--secondary);

}



/* =========================================================
   ACTIVE NAV
========================================================= */

.nav-link.active {

    color: var(--secondary);

}


.nav-link.active::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 18px;

    height: 3px;

    background: var(--secondary);

    border-radius: 10px;

}



/* =========================================================
   TREATMENT BUTTON
========================================================= */

.mega-nav {

    position: static;

}


.mega-trigger {

    gap: 7px;

}


.mega-trigger i {

    color: var(--secondary);

    font-size: 9px;

    transition: .25s ease;

}


.mega-nav:hover .mega-trigger i {

    transform: rotate(180deg);

}



/* =========================================================
   MEGA MENU
========================================================= */

.mega-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    width: min(1120px, calc(100vw - 40px));

    padding: 22px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    background: var(--white);

    border: 1px solid var(--border);

    border-top: 3px solid var(--secondary);

    border-radius: 0 0 12px 12px;

    box-shadow:
        0 20px 50px rgba(0, 33, 87, .14);

    opacity: 0;

    visibility: hidden;

    transform: translate(-50%, 12px);

    transition: .25s ease;

}


.mega-nav:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform: translate(-50%, 0);

}



/* =========================================================
   MEGA COLUMNS
========================================================= */

.mega-column {

    padding: 0 18px;

    border-right: 1px solid var(--border);

}


.mega-column:first-child {

    padding-left: 0;

}


.mega-column:last-child {

    padding-right: 0;

    border-right: 0;

}



/* =========================================================
   MEGA ITEMS
========================================================= */

.mega-column a {

    min-height: 76px;

    padding: 10px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: var(--heading);

    text-decoration: none;

    border-bottom: 1px dashed #DDE5E8;

    border-radius: 7px;

    transition: .25s ease;

}


.mega-column a:last-child {

    border-bottom: 0;

}


.mega-column a:hover {

    background: var(--secondary-light);

}



/* =========================================================
   MEGA ICON
========================================================= */

.mega-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--secondary-light);

    color: var(--secondary);

    border-radius: 7px;

    font-size: 15px;

    transition: .25s ease;

}


.mega-column a:hover .mega-icon {

    background: var(--secondary);

    color: var(--white);

}



/* =========================================================
   MEGA TEXT
========================================================= */

.mega-content {

    display: block;

}


.mega-content strong {

    display: block;

    margin-bottom: 4px;

    color: var(--heading);

    font-size: 12.5px;

    line-height: 1.35;

}


.mega-content small {

    display: block;

    color: var(--text);

    font-size: 10.5px;

    line-height: 1.45;

}



/* =========================================================
   APPOINTMENT BUTTON
========================================================= */

.appointment-btn {
    width: 205px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: .3s ease;
    gap: 10px;
}


.appointment-btn:hover {

    background: var(--primary);

    color: var(--white);

}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle {

    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    border-radius: 6px;

    background: var(--primary);

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;

}


.mobile-toggle span {

    width: 21px;
    height: 2px;

    background: var(--white);

    border-radius: 10px;

}



/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 21, 57, .60);

    z-index: 2000;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}


.mobile-overlay.active {

    opacity: 1;

    visibility: visible;

}



/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    top: 0;
    right: 0;

    width: 340px;

    max-width: 90%;

    height: 100vh;

    background: var(--white);

    z-index: 2001;

    transform: translateX(100%);

    transition: .35s ease;

    overflow-y: auto;

}


.mobile-menu.active {

    transform: translateX(0);

}



/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-menu-header {

    min-height: 78px;

    padding: 10px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);
    margin-top: 75px;

}


.mobile-menu-header img {

    width: 190px;

    height: auto;

}


.mobile-menu-header button {

    width: 36px;
    height: 36px;

    border: 0;

    border-radius: 50%;

    background: var(--secondary-light);

    color: var(--primary);

    font-size: 16px;

    cursor: pointer;

}



/* =========================================================
   MOBILE LINKS
========================================================= */

.mobile-menu-body {

    padding: 12px 18px 30px;

}


.mobile-link,
.mobile-treatment-btn {

    width: 100%;

    min-height: 50px;

    padding: 10px 3px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 0;

    border-bottom: 1px solid var(--border);

    background: transparent;

    color: var(--primary);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    text-align: left;

    cursor: pointer;

}


.mobile-link:hover,
.mobile-treatment-btn:hover {

    color: var(--secondary);

}



/* =========================================================
   MOBILE TREATMENT LIST
========================================================= */

.mobile-treatment-list {

    display: none;

    margin: 4px 0;

    background: #F7FAFB;

    border-radius: 7px;

    overflow: hidden;

}


.mobile-treatment-list.active {

    display: block;

}


.mobile-treatment-list a {

    display: block;

    padding: 10px 12px;

    color: var(--text);

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.45;

    border-bottom: 1px solid #E3EAEC;

}


.mobile-treatment-list a:last-child {

    border-bottom: 0;

}


.mobile-treatment-list a:hover {

    color: var(--secondary);

    background: var(--secondary-light);

}



/* =========================================================
   MOBILE BOOK BUTTON
========================================================= */

.mobile-book-btn {

    width: 100%;

    min-height: 48px;

    margin-top: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--secondary);

    color: var(--white);

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


.mobile-book-btn:hover {

    background: var(--primary);

    color: var(--white);

}



/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .site-logo {

        width: 275px;

    }

    .site-logo img {

        width: 250px;

    }

    .nav-link,
    .mega-trigger {

        padding: 0 16px;

    }

}



/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1250px) {

    .site-logo {

        width: 220px;

    }

    .site-logo img {

        width: 175px;

    }

    .nav-link,
    .mega-trigger {

        padding: 0 9px;

        font-size: 12px;

    }

    .appointment-btn {

        width: 175px;

        font-size: 11px;

    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav,
    .appointment-btn {

        display: none;

    }


    .mobile-toggle {

        display: flex;

        margin-left: auto;

    }


    .header-inner {

        min-height: 78px;

    }


    .site-logo {

        width: auto;

    }


    .site-logo img {

        width: 165px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .topbar {

        display: block;

    }


    .topbar-inner {

        min-height: 42px;

        justify-content: center;

    }


    .topbar-left {

        width: 100%;

        justify-content: center;

    }


    .top-contact {

        font-size: 11px;

    }


    .top-contact:nth-child(2) {

        display: none;

    }


    .topbar-social {

        display: none;

    }


    .header-inner {

        min-height: 72px;

    }


    .site-logo img {

        width: 145px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .topbar {

        display: none;

    }


    .header-inner {

        min-height: 68px;

    }


    .site-logo img {

        width: 190px;

    }


    .mobile-toggle {

        width: 40px;
        height: 40px;

    }


    .mobile-menu {

        width: 320px;

    }

}


/* =========================================================
   DR. SURESH SINGH HERO
========================================================= */

.suresh-hero {
    position: relative;
    width: 100%;
    overflow: hidden;

    background:
        linear-gradient(110deg,
            #f7fbfc 0%,
            #eef8f9 52%,
            #e5f5f7 100%);

    min-height: 650px;

    display: flex;
    align-items: center;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.suresh-hero-bg {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -220px;
    top: -170px;

    background: rgba(0, 143, 152, 0.08);

    border-radius: 50%;

    z-index: -1;
}

.suresh-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -240px;

    background: rgba(0, 33, 87, 0.035);

    border-radius: 50%;

    z-index: -1;
}


/* =========================================================
   HERO WRAPPER
========================================================= */

.suresh-hero-wrapper {
    min-height: 650px;

    display: grid;

    grid-template-columns: 55% 45%;

    align-items: center;

    position: relative;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.suresh-hero-content {
    padding: 70px 20px 65px 0;

    position: relative;

    z-index: 5;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.hero-small-title {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: var(--secondary, #008f98);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.hero-small-title::before {
    content: "";

    width: 30px;
    height: 3px;

    background: var(--primary);

    border-radius: 20px;
}


/* =========================================================
   HEADING
========================================================= */

.suresh-hero h1 {
    margin: 0;

    color: #002157;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.suresh-hero h1 span {
    display: block;

    color: #008f98;
}

.suresh-hero h1 small {
    display: inline;

    color: #002157;

    font-size: 0.65em;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    max-width: 650px;

    margin: 20px 0 27px;

    color: #4b5563;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 500;
}

.hero-description strong {
    color: #002157;

    font-weight: 800;
}


/* =========================================================
   STATS
========================================================= */

.suresh-stats {
    width: 100%;
    max-width: 680px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 24px;
}


/* =========================================================
   STAT BOX
========================================================= */

.suresh-stat-box {
    min-height: 82px;

    padding: 13px 16px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(0, 33, 87, 0.09);

    border-radius: 9px;

    box-shadow:
        0 5px 18px rgba(0, 33, 87, 0.07);

    transition: all 0.3s ease;
}

.suresh-stat-box:hover {
    transform: translateY(-3px);

    border-color: rgba(0, 143, 152, 0.35);

    box-shadow:
        0 10px 25px rgba(0, 33, 87, 0.10);
}


/* =========================================================
   STAT ICON
========================================================= */

.stat-icon {
    width: 43px;
    height: 43px;

    min-width: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e7f6f7;

    color: #008f98;

    font-size: 17px;

    border: 1px solid rgba(0, 143, 152, 0.10);
}


/* =========================================================
   STAT CONTENT
========================================================= */

.stat-content {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.stat-content strong {
    color: #002157;

    font-size: 22px;

    line-height: 1.1;

    font-weight: 800;
}

.stat-content span {
    color: #4b5563;

    font-size: 11px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.suresh-hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.hero-call-btn {
    min-width: 150px;

    height: 49px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: #002157;

    color: #fff;

    border: 1px solid #002157;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-call-btn i {
    color: #ffff;

    font-size: 13px;
}

.hero-call-btn:hover {
    background: #008f98;

    border-color: #008f98;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.hero-book-btn {
    min-width: 180px;

    height: 49px;

    padding: 0 7px 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background: #008f98;

    color: #fff;

    border: 1px solid #008f98;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-book-btn i {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    color: #008f98;

    border-radius: 50%;

    font-size: 11px;

    transition: all 0.3s ease;
}

.hero-book-btn:hover {
    background: #002157;

    border-color: #002157;

    color: #fff;

    transform: translateY(-2px);
}

.hero-book-btn:hover i {
    color: #002157;

    transform: translateX(2px);
}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.suresh-hero-image {
    height: 680px;

    position: relative;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    z-index: 2;
}


/* =========================================================
   IMAGE BACKGROUND
========================================================= */

.hero-image-bg {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 20px;
    bottom: 35px;

    background:
        radial-gradient(circle,
            rgba(0, 143, 152, 0.17) 0%,
            rgba(0, 143, 152, 0.08) 48%,
            rgba(0, 143, 152, 0) 72%);

    border-radius: 50%;
}


/* =========================================================
   IMAGE CIRCLE
========================================================= */

.hero-image-circle {
    position: absolute;

    width: 410px;
    height: 410px;

    right: 65px;
    bottom: 55px;

    border-radius: 50%;

    background: #dff3f4;

    border: 1px solid rgba(0, 143, 152, 0.12);
}


/* =========================================================
   DOCTOR IMAGE
========================================================= */

.doctor-image {
    position: relative;

    z-index: 4;

    height: 590px;

    width: auto;

    max-width: none;

    object-fit: contain;

    object-position: bottom center;

    filter: drop-shadow(0 20px 25px rgba(0, 33, 87, 0.12));
}


/* =========================================================
   ORANGE ACCENTS
========================================================= */

.image-accent {
    position: absolute;

    z-index: 3;

    border-radius: 50%;
}

.accent-one {
    width: 14px;
    height: 14px;

    right: 75px;
    top: 150px;

    background: var(--secondary);

    box-shadow:
        0 0 0 8px rgba(255, 155, 33, 0.12);
}

.accent-two {
    width: 9px;
    height: 9px;

    right: 350px;
    bottom: 150px;

    background: #008f98;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .suresh-hero-wrapper {
        grid-template-columns: 53% 47%;
    }

    .suresh-hero h1 {
        font-size: 35px;
    }

    .doctor-image {
        height: 620px;
    }

    .hero-image-circle {
        width: 440px;
        height: 440px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .suresh-hero {
        min-height: 600px;
    }

    .suresh-hero-wrapper {
        min-height: 600px;
    }

    .suresh-hero-content {
        padding-right: 10px;
    }

    .suresh-hero h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 14px;
    }

    .suresh-hero-image {
        height: 600px;
    }

    .doctor-image {
        height: 540px;
    }

    .hero-image-circle {
        width: 370px;
        height: 370px;

        right: 40px;
    }

    .hero-image-bg {
        width: 460px;
        height: 460px;

        right: -5px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .suresh-hero {
        min-height: auto;
    }

    .suresh-hero-wrapper {
        min-height: auto;

        grid-template-columns: 1fr;

        display: flex;

        flex-direction: column;
    }


    /* CONTENT FIRST */

    .suresh-hero-content {
        width: 100%;

        padding: 55px 0 20px;

        order: 1;
    }

    .suresh-hero h1 {
        font-size: 43px;
    }

    .hero-description {
        max-width: 700px;
    }


    /* IMAGE SECOND */

    .suresh-hero-image {
        width: 100%;

        height: 510px;

        order: 2;

        margin-top: 0;
    }

    .doctor-image {
        height: 500px;
    }

    .hero-image-circle {
        width: 360px;
        height: 360px;

        left: 50%;
        right: auto;

        transform: translateX(-50%);

        bottom: 35px;
    }

    .hero-image-bg {
        left: 50%;
        right: auto;

        transform: translateX(-50%);

        bottom: 10px;
    }


    /* STATS */

    .suresh-stats {
        max-width: 700px;
    }

    .suresh-hero-buttons {
        margin-bottom: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .suresh-hero {
        min-height: auto;
    }

    .suresh-hero-wrapper {
        display: flex;

        flex-direction: column;
    }


    /* CONTENT */

    .suresh-hero-content {
        padding: 40px 0 0;

        order: 1;
    }

    .hero-small-title {
        font-size: 10px;

        letter-spacing: .8px;

        margin-bottom: 12px;
    }

    .hero-small-title::before {
        width: 22px;
    }

    .suresh-hero h1 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }

    .suresh-hero h1 small {
        font-size: .68em;
    }

    .hero-description {
        margin: 16px 0 20px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* IMAGE */

    .suresh-hero-image {
        order: 2;

        height: 390px;

        margin-top: 0;
    }

    .hero-image-circle {
        width: 285px;
        height: 285px;

        bottom: 25px;
    }

    .hero-image-bg {
        width: 350px;
        height: 350px;

        bottom: 0;
    }

    .doctor-image {
        height: 385px;
    }

    .accent-one {
        right: calc(50% - 150px);

        top: 65px;
    }

    .accent-two {
        left: calc(50% - 140px);

        right: auto;

        bottom: 100px;
    }


    /* STATS */

    .suresh-stats {
        width: 100%;

        grid-template-columns: repeat(2, 1fr);

        gap: 8px;

        margin-top: 5px;

        margin-bottom: 18px;
    }

    .suresh-stat-box {
        min-height: 75px;

        padding: 10px;

        gap: 9px;

        border-radius: 7px;
    }

    .stat-icon {
        width: 34px;
        height: 34px;

        min-width: 34px;

        font-size: 13px;
    }

    .stat-content strong {
        font-size: 18px;
    }

    .stat-content span {
        font-size: 9px;
    }


    /* BUTTONS */

    .suresh-hero-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-bottom: 35px;
    }

    .hero-call-btn,
    .hero-book-btn {
        width: 100%;

        min-width: 0;

        height: 47px;

        font-size: 10px;
        text-decoration: none;
    }

    .hero-call-btn {
        padding: 0 10px;
    }

    .hero-book-btn {
        padding: 0 5px 0 10px;

        gap: 5px;
    }

    .hero-book-btn i {
        width: 32px;
        height: 32px;

        min-width: 32px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .suresh-hero-content {
        padding-top: 32px;
    }

    .suresh-hero h1 {
        font-size: 29px;
    }

    .hero-description {
        font-size: 12px;

        line-height: 1.65;
    }


    /* IMAGE */

    .suresh-hero-image {
        height: 340px;
    }

    .doctor-image {
        height: 335px;
    }

    .hero-image-circle {
        width: 245px;
        height: 245px;

        bottom: 20px;
    }

    .hero-image-bg {
        width: 300px;
        height: 300px;
    }


    /* STATS */

    .suresh-stat-box {
        min-height: 70px;

        padding: 8px;
    }

    .stat-icon {
        width: 30px;
        height: 30px;

        min-width: 30px;

        font-size: 11px;
    }

    .stat-content strong {
        font-size: 16px;
    }

    .stat-content span {
        font-size: 8px;
    }


    /* BUTTON */

    .hero-call-btn,
    .hero-book-btn {
        height: 45px;

        font-size: 9px;
    }

    .hero-book-btn i {
        width: 29px;
        height: 29px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .suresh-hero h1 {
        font-size: 26px;
    }

    .suresh-stats {
        gap: 6px;
    }

    .suresh-stat-box {
        padding: 7px;
    }

    .stat-content strong {
        font-size: 15px;
    }

    .stat-content span {
        font-size: 7.5px;
    }
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.suresh-about {
    width: 100%;

    padding: 90px 0;

    background: #ffffff;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.suresh-about::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    top: 20px;

    border-radius: 50%;

    background: rgba(0, 143, 152, 0.045);

    pointer-events: none;
}

.suresh-about::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -120px;

    border-radius: 50%;

    background: rgba(0, 33, 87, 0.035);

    pointer-events: none;
}


/* =========================================================
   WRAPPER
========================================================= */

.suresh-about-wrapper {
    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    gap: 75px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.suresh-about-image {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.about-image-main {
    width: 100%;

    max-width: 480px;

    height: 570px;

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background: #e8f7f8;

    z-index: 2;
}

.about-image-main::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 33, 87, 0.02),
            rgba(0, 143, 152, 0.08));

    pointer-events: none;
}

.about-image-main img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

.suresh-about-image:hover .about-image-main img {
    transform: scale(1.025);
}


/* =========================================================
   DECORATIVE BACK SHAPE
========================================================= */

.about-image-shape {
    position: absolute;

    width: 170px;
    height: 170px;

    left: -28px;
    bottom: 30px;

    background: #008f98;

    border-radius: 50%;

    opacity: 0.08;

    z-index: 1;
}


/* =========================================================
   ORANGE ACCENT
========================================================= */

.about-image-shape::after {
    content: "";

    position: absolute;

    width: 35px;
    height: 35px;

    right: -14px;
    top: -14px;

    border-radius: 50%;

    background: #ff9b21;

    opacity: 1;
}


/* =========================================================
   WATCH VIDEO CARD
========================================================= */

.about-video-card {
    position: absolute;

    right: -35px;

    bottom: 28px;

    min-width: 205px;

    height: 70px;

    padding: 8px 20px 8px 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 33, 87, 0.14);

    z-index: 5;

    color: #002157;

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   VIDEO PLAY
========================================================= */

.video-play {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f7f8;

    color: #008f98;

    border: 1px solid rgba(0, 143, 152, 0.15);

    transition: all 0.3s ease;
}

.about-video-card:hover .video-play {
    background: #008f98;

    color: #ffffff;

    transform: scale(1.05);
}

.video-play i {
    font-size: 12px;

    margin-left: 2px;
}


/* =========================================================
   CONTENT
========================================================= */

.suresh-about-content {
    padding: 20px 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.about-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #008f98;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";

    width: 30px;

    height: 3px;

    border-radius: 20px;

    background: var(--primary);
}


/* =========================================================
   HEADING
========================================================= */

.suresh-about-content h2 {
    max-width: 700px;

    margin: 0;

    color: #002157;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.3px;
}

.suresh-about-content h2 span {
    color: #008f98;
}


/* =========================================================
   LINE
========================================================= */

.about-line {
    width: 55px;

    height: 4px;

    margin: 18px 0 22px;

    background: var(--secondary);

    border-radius: 20px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.suresh-about-content p {
    max-width: 750px;

    margin: 0 0 15px;

    color: #4b5563;

    font-size: 14px;

    line-height: 1.8;

    font-weight: 500;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.about-highlights {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 25px;

    margin-bottom: 27px;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.about-highlight {
    min-height: 78px;

    padding: 12px;

    display: flex;

    align-items: center;

    gap: 12px;

    border: 1px solid #e2edef;

    background: #f8fcfc;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.about-highlight:hover {
    border-color: rgba(0, 143, 152, 0.3);

    background: #eef9fa;

    transform: translateY(-2px);
}


/* =========================================================
   HIGHLIGHT ICON
========================================================= */

.highlight-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #e4f5f6;

    color: #008f98;

    font-size: 16px;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.about-highlight strong {
    display: block;

    margin-bottom: 3px;

    color: #002157;

    font-size: 12px;

    font-weight: 800;
}

.about-highlight small {
    display: block;

    color: #6b7280;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.about-read-btn {
    min-width: 210px;

    height: 49px;

    padding: 0 7px 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background: #008f98;

    color: #ffffff;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 800;

    transition: all 0.3s ease;
    text-decoration: none;
}

.about-read-btn span {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #008f98;

    transition: all 0.3s ease;
}

.about-read-btn:hover {
    background: #002157;

    color: #ffffff;

    transform: translateY(-2px);
}

.about-read-btn:hover span {
    color: #002157;

    transform: translateX(2px);
}


.about-video-card {
    position: absolute;
    right: -35px;
    bottom: 28px;

    min-width: 205px;
    height: 70px;

    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(0, 33, 87, 0.14);

    z-index: 5;
}

.about-video-link {
    width: 100%;
    height: 100%;

    padding: 8px 20px 8px 10px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #002157;
    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
}

.video-play {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f7f8;
    color: #008f98;

    border: 1px solid rgba(0, 143, 152, 0.15);

    transition: all 0.3s ease;
}

.about-video-link:hover .video-play {
    background: #008f98;
    color: #ffffff;

    transform: scale(1.06);
}

.about-video-link:hover {
    color: #002157;
}

.video-play i {
    font-size: 12px;
    margin-left: 2px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .suresh-about {
        padding: 105px 0;
    }

    .suresh-about-wrapper {
        grid-template-columns: 43% 57%;

        gap: 85px;
    }

    .about-image-main {
        height: 590px;

        max-width: 500px;
    }

    .suresh-about-image {
        min-height: 590px;
    }

    .suresh-about-content h2 {
        font-size: 35px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .suresh-about-wrapper {
        grid-template-columns: 43% 57%;

        gap: 50px;
    }

    .about-image-main {
        height: 520px;
    }

    .suresh-about-image {
        min-height: 520px;
    }

    .suresh-about-content h2 {
        font-size: 43px;
    }

    .suresh-about-content p {
        font-size: 13px;
    }

    .about-video-card {
        right: -20px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .suresh-about {
        padding: 70px 0;
    }

    .suresh-about-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .suresh-about-image {
        width: 100%;

        min-height: auto;

        justify-content: center;
    }

    .about-image-main {
        width: 80%;

        max-width: 550px;

        height: 520px;
    }

    .about-video-card {
        right: calc(10% - 20px);

        bottom: 25px;
    }

    .suresh-about-content {
        padding: 0;
    }

    .suresh-about-content h2 {
        font-size: 42px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .suresh-about {
        padding: 55px 0;
    }

    /*
       MOBILE ORDER:
       IMAGE
       ↓
       CONTENT
    */

    .suresh-about-wrapper {
        display: flex;

        flex-direction: column;

        gap: 38px;
    }

    .suresh-about-image {
        order: 1;

        min-height: 0;

        width: 100%;

        padding-bottom: 0;
    }

    .suresh-about-content {
        order: 2;
    }


    /* IMAGE */

    .about-image-main {
        width: 100%;

        max-width: 100%;

        height: 430px;

        border-radius: 18px;
    }

    .about-image-shape {
        left: -15px;

        bottom: 10px;

        width: 110px;

        height: 110px;
    }

    .about-image-shape::after {
        width: 25px;

        height: 25px;

        right: -10px;

        top: -10px;
    }


    /* VIDEO */

    .about-video-card {
        right: 12px;

        bottom: -20px;

        min-width: 170px;

        height: 60px;

        padding-right: 14px;

        font-size: 10px;
    }

    .video-play {
        width: 40px;

        height: 40px;

        min-width: 40px;
    }


    /* CONTENT */

    .about-eyebrow {
        font-size: 10px;

        letter-spacing: 1px;
    }

    .about-eyebrow::before {
        width: 23px;
    }

    .suresh-about-content h2 {
        font-size: 32px;

        line-height: 1.15;

        letter-spacing: -0.7px;
    }

    .about-line {
        width: 45px;

        height: 3px;

        margin: 14px 0 18px;
    }

    .suresh-about-content p {
        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 13px;
    }


    /* HIGHLIGHTS */

    .about-highlights {
        grid-template-columns: 1fr;

        gap: 8px;

        margin-top: 20px;

        margin-bottom: 22px;
    }

    .about-highlight {
        min-height: 70px;
    }


    /* BUTTON */

    .about-read-btn {
        width: 100%;

        max-width: 260px;

        height: 47px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .suresh-about {
        padding: 45px 0;
    }

    .suresh-about-wrapper {
        gap: 35px;
    }

    .about-image-main {
        height: 350px;

        border-radius: 15px;
    }

    .about-video-card {
        min-width: 155px;

        height: 54px;

        bottom: -18px;

        right: 8px;

        font-size: 9px;
    }

    .video-play {
        width: 36px;

        height: 36px;

        min-width: 36px;

        font-size: 10px;
    }

    .suresh-about-content h2 {
        font-size: 29px;
    }

    .suresh-about-content p {
        font-size: 12px;

        line-height: 1.7;
    }

    .about-highlight {
        padding: 10px;

        min-height: 65px;
    }

    .highlight-icon {
        width: 37px;

        height: 37px;

        min-width: 37px;

        font-size: 14px;
    }

    .about-highlight strong {
        font-size: 11px;
    }

    .about-highlight small {
        font-size: 9px;
    }
}


/* =========================================================
   ABOUT SECTION SCROLL REVEAL ANIMATION
========================================================= */

/* Initial state - IMAGE comes from LEFT */
.suresh-about-image {
    opacity: 0;
    transform: translateX(-90px);
    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Initial state - CONTENT comes from RIGHT */
.suresh-about-content {
    opacity: 0;
    transform: translateX(90px);
    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   WHEN SECTION IS VISIBLE
========================================================= */

.suresh-about.is-visible .suresh-about-image {
    opacity: 1;
    transform: translateX(0);
}

.suresh-about.is-visible .suresh-about-content {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   SLIGHT DELAY FOR CONTENT
========================================================= */

.suresh-about.is-visible .suresh-about-content {
    transition-delay: 0.18s;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .suresh-about-image {
        transform: translateX(-55px);
        transition-duration: 1.1s;
    }

    .suresh-about-content {
        transform: translateX(55px);
        transition-duration: 1.1s;
        transition-delay: 0.12s;
    }

}


/* =========================================================
   KIDNEY SERVICES SECTION
========================================================= */

.kidney-services-section {
    position: relative;

    padding: 95px 0 100px;

    background: #f7fbfb;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.kidney-services-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    left: -180px;

    border-radius: 50%;

    background: rgba(0, 143, 152, 0.055);

    pointer-events: none;
}

.kidney-services-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(0, 33, 87, 0.035);

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.kidney-services-header {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 360px;

    gap: 60px;

    align-items: end;

    margin-bottom: 45px;
}


/* =========================================================
   EYEBROW
========================================================= */

.services-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #008f98;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.services-eyebrow::before {
    content: "";

    width: 32px;

    height: 2px;

    background: var(--primary);

    border-radius: 20px;
}


/* =========================================================
   HEADING
========================================================= */

.services-heading-wrap h2 {
    margin: 0;

    color: #002157;

    font-size: 35px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.services-heading-wrap h2 span {
    color: #008f98;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.services-header-right {
    padding-bottom: 3px;
}

.services-header-right p {
    margin: 0 0 22px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 500;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.services-view-btn {
    width: fit-content;

    min-width: 180px;

    height: 47px;

    padding: 0 7px 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    color: #002157;

    border: 1.5px solid #002157;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.services-view-btn span {
    width: 33px;
    height: 33px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #008f98;

    color: #ffffff;

    transition: all 0.3s ease;
}

.services-view-btn:hover {
    background: #002157;

    color: #ffffff;
}

.services-view-btn:hover span {
    background: #fff;

    color: var(--primary);

    transform: translateX(2px);
}


/* =========================================================
   GRID
========================================================= */

.kidney-services-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.kidney-service-card {
    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid #e4eeee;

    box-shadow: 0 5px 20px rgba(0, 33, 87, 0.035);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.kidney-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 143, 152, 0.25);

    box-shadow:
        0 18px 40px rgba(0, 33, 87, 0.11);
}


/* =========================================================
   IMAGE
========================================================= */

.service-image {
    position: relative;

    width: 100%;

    height: 195px;

    overflow: hidden;

    background: #e8f5f6;
}

.service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 33, 87, 0) 45%,
            rgba(0, 33, 87, 0.12)
        );

    pointer-events: none;
}

.service-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.kidney-service-card:hover .service-image img {
    transform: scale(1.06);
}


/* =========================================================
   CONTENT
========================================================= */

.service-content {
    min-height: 275px;

    padding: 19px 18px 20px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   ICON
========================================================= */

.service-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #e7f5f6;

    color: #008f98;

    font-size: 14px;

    transition: all 0.3s ease;
}

.kidney-service-card:hover .service-icon {
    background: #008f98;

    color: #ffffff;

    transform: rotate(-3deg);
}


/* =========================================================
   TITLE
========================================================= */

.service-content h3 {
    margin: 0 0 9px;

    color: #002157;

    font-size: 17px;

    line-height: 1.25;

    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.service-content p {
    margin: 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================================
   KNOW MORE
========================================================= */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-top: auto;

    padding-top: 17px;

    color: #008f98;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.service-link i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .kidney-services-section {
        padding: 105px 0 60px;
    }

    .kidney-services-header {
        grid-template-columns: 1fr 390px;

        margin-bottom: 50px;
    }

    .kidney-services-grid {
        gap: 22px;
    }

    .service-image {
        height: 205px;
    }

    .service-content {
        min-height: 280px;

        padding: 20px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .kidney-services-header {
        grid-template-columns: 1fr 320px;

        gap: 40px;
    }

    .services-heading-wrap h2 {
        font-size: 47px;
    }

    .kidney-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-image {
        height: 185px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .kidney-services-section {
        padding: 75px 0 80px;
    }

    .kidney-services-header {
        grid-template-columns: 1fr;

        gap: 20px;

        align-items: start;

        margin-bottom: 35px;
    }

    .services-heading-wrap h2 {
        font-size: 42px;
    }

    .services-header-right {
        max-width: 600px;
    }

    .kidney-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        min-height: 255px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .kidney-services-section {
        padding: 55px 0 60px;
    }

    .kidney-services-header {
        margin-bottom: 30px;
    }

    .services-eyebrow {
        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .services-eyebrow::before {
        width: 24px;
    }

    .services-heading-wrap h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }

    .services-header-right p {
        font-size: 12px;

        line-height: 1.7;

        margin-bottom: 18px;
    }

    .services-view-btn {
        height: 44px;

        min-width: 170px;
    }

    .kidney-services-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        min-height: 0;

        padding: 18px;

        display: block;
    }

    .service-icon {
        width: 40px;
        height: 40px;

        margin-bottom: 12px;
    }

    .service-content h3 {
        font-size: 18px;

        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 12px;

        line-height: 1.7;
    }

    .service-link {
        margin-top: 16px;

        padding-top: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kidney-services-section {
        padding: 45px 0 50px;
    }

    .services-heading-wrap h2 {
        font-size: 30px;
    }

    .service-image {
        height: 195px;
    }

    .service-content {
        padding: 17px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 11.5px;
    }
}


/* =========================================
   KIDNEY CONDITIONS MARQUEE
========================================= */

.kidney-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e2f0f2;
    border-bottom: 1px solid #e2f0f2;
    padding: 18px 0;
}

.kidney-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.kidney-marquee::before,
.kidney-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.kidney-marquee::before {
    left: 0;
    background: linear-gradient(
        to right,
        #f8fcfd,
        transparent
    );
}

.kidney-marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        #f8fcfd,
        transparent
    );
}

.kidney-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: kidneyMarquee 38s linear infinite;
}

/* Pause when mouse enters */
.kidney-marquee:hover .kidney-marquee-track {
    animation-play-state: paused;
}


/* =========================================
   CARD
========================================= */

.kidney-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 13px 32px;
    margin-right: 10px;

    white-space: nowrap;

    color: #002b63;
    font-size: 16px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.kidney-card i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #008b95;

    background: #e8f6f7;
    border-radius: 50%;

    flex-shrink: 0;
}

.kidney-card:hover {
    color: #008b95;
}

.kidney-card:hover i {
    background: #008b95;
    color: #ffffff;
    transform: scale(1.08);
}


/* =========================================
   MARQUEE ANIMATION
========================================= */

@keyframes kidneyMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .kidney-marquee-section {
        padding: 15px 0;
    }

    .kidney-card {
        padding: 10px 22px;
        font-size: 15px;
        gap: 10px;
    }

    .kidney-card i {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .kidney-marquee-section {
        padding: 12px 0;
    }

    .kidney-card {
        padding: 8px 16px;
        font-size: 14px;
        gap: 9px;
    }

    .kidney-card i {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .kidney-marquee-track {
        animation-duration: 30s;
    }

}



/*=========================================
        PATIENT JOURNEY SECTION
=========================================*/

.process-section {

    position: relative;

    overflow: hidden;

    padding: 80px 0;

    background: var(--secondary);
    padding-bottom: 0px;

}

/* Background Glow */

.process-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    bottom: -300px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 133, 0, .12) 0%,
            rgba(255, 133, 0, .05) 35%,
            transparent 70%);

}

/* Background Circle */

.process-section::after {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -220px;
    bottom: -180px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .05);

    box-shadow:
        0 0 0 40px rgba(255, 255, 255, .03),
        0 0 0 80px rgba(255, 255, 255, .025),
        0 0 0 120px rgba(255, 255, 255, .02),
        0 0 0 160px rgba(255, 255, 255, .018),
        0 0 0 200px rgba(255, 255, 255, .015);

}

.process-section .container {

    position: relative;

    z-index: 5;

}


/*=========================================
            LEFT SIDE
=========================================*/

.process-left {

    position: sticky;

    top: 120px;

    max-width: 430px;

}

.process-tag {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color:#fff;

    text-transform: uppercase;

    font-size: 14px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 25px;

}

.process-tag::before {

    content: "";

    width: 38px;

    height: 2px;

    background: #fff;

}


/* Heading */

.process-left h2 {
    color: #fff;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Paragraph */

.process-left p {

    color: rgba(255, 255, 255, .82);

    font-size: 16px;

    line-height: 2;

    margin-bottom: 45px;

}


/*=====================================
PROCESS GRID
=====================================*/

.process-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 100px;
    align-items: start;
}

/*=====================================
LEFT
=====================================*/

.process-left {
    position: sticky;
    top: 120px;
}

/*=====================================
RIGHT
=====================================*/

.process-right {
    position: relative;
    padding-left: 90px;
}

/* Vertical Line */

.process-line {
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 20px;
    width: 1px;
        background: rgb(255 255 255 / 46%);
}

/*=====================================
ITEM
=====================================*/

.process-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
}

/* Stair Layout */

.process-item:nth-child(even) {
    margin-left: 90px;
}

.process-item:nth-child(odd) {
    margin-left: 0;
}

/*=====================================
NUMBER
=====================================*/

.process-number {
    position: absolute;
    left: -8px;
    top: -18px;

    font-size: 82px;
    font-weight: 800;
    line-height: 1;

    color: rgba(255, 255, 255, .07);

    z-index: 1;
}

/*=====================================
DOT
=====================================*/

.process-dot {
    position: absolute;

    left: 12px;
    top: 12px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--secondary);

    border: 4px solid #fff;

    box-shadow: 0 0 0 8px rgba(255, 133, 0, .15);

    z-index: 5;
}

/*=====================================
CONTENT
=====================================*/

.process-content {
    margin-left: 95px;
    position: relative;
    z-index: 10;
    max-width: 520px;
}

.process-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.process-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.9;
}

/* Button */

.process-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 18px 38px;

    background: var(--primary);

    color: #fff;

    text-decoration: none;

    border-radius: 60px;

    font-size: 16px;

    font-weight: 700;

    transition: .35s;

    box-shadow: 0 20px 45px rgba(255, 133, 0, .35);

}

.process-btn i {

    transition: .35s;

}

.process-btn:hover {

    background: #fff;

    color: var(--primary);

    transform: translateY(-5px);

}

.process-btn:hover i {

    transform: translateX(6px);

}

/*=========================================
            RIGHT SIDE
=========================================*/

.process-wrapper {

    position: relative;

    padding-left: 90px;

}

/* Vertical Divider */

.process-wrapper::before {

    content: "";

    position: absolute;

    left: 35px;

    top: 0;

    width: 1px;

    height: 100%;

    background: rgba(255, 255, 255, .10);

}


/*=========================================
            PROCESS ITEM
=========================================*/

.process-item {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 35px;

    margin-bottom: 75px;

    transition: .4s;

}


/* Stair Layout */

.process-item:nth-child(even) {

    margin-left: 90px;

}

.process-item:nth-child(odd) {

    margin-left: 0;

}


/*=========================================
            BIG NUMBER
=========================================*/

.process-number {

    position: absolute;

    left: -5px;

    top: -32px;

    font-size: 82px;

    font-weight: 800;

    color: rgba(255, 255, 255, .06);

    line-height: 1;

    z-index: 1;

}


/* Orange Circle */

/* .process-number::after{

    content:"";

    position:absolute;

    left:16px;

    top:38px;

    width:14px;

    height:14px;

    border-radius:50%;

    background:var(--secondary);

    border:4px solid #fff;

    box-shadow:0 0 0 8px rgba(255,133,0,.18);

} */


/*=========================================
            CONTENT
=========================================*/

.process-content {

    position: relative;

    z-index: 5;

    padding-left: 70px;

}

.process-content h4 {

    color: #fff;

    font-size: 40px;

    font-weight: 700;

    margin-bottom: 18px;

    line-height: 1.25;

}

.process-content p {

    color: rgba(255, 255, 255, .82);

    font-size: 18px;

    line-height: 1.9;

    max-width: 520px;

}

/*=========================================
        HOVER EFFECT
=========================================*/

.process-item {

    transition: .45s ease;

}

.process-item:hover {

    transform: translateY(-8px);

}

.process-item:hover .process-number {

    color: rgba(255, 255, 255, .14);

}

/* .process-item:hover .process-number::after{

    transform:scale(1.25);

    box-shadow:0 0 0 12px rgba(255,133,0,.20);

} */

.process-item:hover h4 {

    color: #fff;

}

.process-item:hover p {

    color: rgba(255, 255, 255, .95);

}


/*=========================================
        BUTTON
=========================================*/

.process-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 38px;

    background: var(--primary);

    color: #fff;

    border-radius: 60px;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;

}

.process-btn i {

    transition: .35s;

}

.process-btn:hover {

    background: #fff;

    color: var(--primary);

}

.process-btn:hover i {

    transform: translateX(6px);

}


/*=========================================
        TABLET
=========================================*/

@media(max-width:1200px) {

    .process-left h2 {

        font-size: 48px;

    }

    .process-content h4 {

        font-size: 32px;

    }

    .process-content p {

        font-size: 17px;

    }

    .process-item:nth-child(even) {

        margin-left: 60px;

    }

}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:991px) {

    .process-section {

        padding: 90px 0;

    }

    .process-left {

        position: relative;

        top: auto;

        max-width: 100%;

        margin-bottom: 60px;

    }

    .process-left h2 {

        font-size: 42px;

    }

    .process-left p {

        font-size: 16px;

    }

    .process-wrapper {

        padding-left: 0;

    }

    .process-wrapper::before {

        display: none;

    }

    .process-item {

        margin: 0 0 55px !important;

    }

    .process-number {

        position: relative;

        left: auto;

        top: auto;

        font-size: 56px;

        margin-bottom: 12px;

    }

    .process-number::after {

        display: none;

    }

    .process-content {

        padding-left: 0;

    }

    .process-content h4 {

        font-size: 28px;

        margin-bottom: 12px;

    }

    .process-content p {

        font-size: 15px;

        line-height: 1.8;

    }

}


/*=========================================
        SMALL MOBILE
=========================================*/

@media(max-width:576px) {

    .process-section {

        padding: 70px 0;

    }

    .process-tag {

        font-size: 12px;

        letter-spacing: 2px;

    }

    .process-left h2 {

        font-size: 34px;

    }

    .process-left p {

        font-size: 15px;

    }

    .process-btn {

        width: 100%;

        justify-content: center;

        padding: 16px 20px;

    }

    .process-number {

        font-size: 48px;

    }

    .process-content h4 {

        font-size: 24px;

    }

    .process-content p {

        font-size: 14px;

    }

}


/*=========================================
        SCROLL ANIMATION
=========================================*/

.process-item {

    opacity: 0;

    transform: translateY(60px);

    animation: processFade .8s forwards;

}

.process-item:nth-child(1) {
    animation-delay: .1s;
}

.process-item:nth-child(2) {
    animation-delay: .25s;
}

.process-item:nth-child(3) {
    animation-delay: .4s;
}

.process-item:nth-child(4) {
    animation-delay: .55s;
}

.process-item:nth-child(5) {
    animation-delay: .7s;
}

.process-item:nth-child(6) {
    animation-delay: .85s;
}

@keyframes processFade {

    0% {

        opacity: 0;

        transform: translateY(60px);

    }

    100% {

        opacity: 1;

        transform: translateY(0);

    }

}

@media(max-width:991px) {

    .process-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .process-left {
        position: relative;
        top: auto;
    }

    .process-right {
        padding-left: 0;
    }

    .process-line {
        display: none;
    }

    .process-item,
    .process-item:nth-child(even),
    .process-item:nth-child(odd) {
        margin-left: 0;
        margin-bottom: 55px;
    }

    .process-number {
        position: relative;
        left: 0;
        top: 0;
        font-size: 56px;
    }

    .process-dot {
        display: none;
    }

    .process-content {
        margin-left: 0;
        margin-top: 10px;
    }

    .process-content h3 {
        font-size: 28px;
    }

    .process-content p {
        font-size: 15px;
    }

}

/* =========================================================
   WHY CHOOSE DR. SURESH SINGH
========================================================= */

.why-suresh-section {
    position: relative;
    padding: 85px 0;
    background: var(--primary);
    overflow: hidden;
}


/* Subtle background effect */

.why-suresh-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(0, 139, 149, 0.12);
    top: -220px;
    right: -120px;
    pointer-events: none;
}

.why-suresh-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    bottom: -180px;
    left: -120px;
    pointer-events: none;
}


.why-suresh-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;

    max-width: 1200px;
    margin: 0 auto;

    align-items: stretch;
}


/* =========================================================
   IMAGE
========================================================= */

.why-suresh-image-wrap {
    position: relative;
    min-height: 650px;

    border-radius: 16px;
    overflow: hidden;

    background: #e8f6f7;
}


.why-suresh-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}


.why-suresh-image-wrap:hover .why-suresh-image {
    transform: scale(1.025);
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.why-experience-badge {
    position: absolute;
    top: 0;
    right: 0;

    min-width: 185px;
    padding: 14px 22px 16px;

    background: #ffffff;

    border-radius: 0 0 0 18px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}


.why-experience-badge strong {
    display: block;

    color: var(--secondary);

    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
}


.why-experience-badge span {
    display: block;

    margin-top: 5px;

    color: #002b63;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.why-suresh-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px 0;
}


/* Small Label */

.why-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 17px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}


.why-label i {
    color: #55cbd0;

    font-size: 18px;
}


/* =========================================================
   HEADING
========================================================= */

.why-suresh-content h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 35px;
    line-height: 1.08;

    font-weight: 400;
    letter-spacing: -1.2px;
}


.why-suresh-content h2 strong {
    display: block;

    color: #ffffff;

    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.why-description {
    max-width: 650px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.why-feature-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 27px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    min-height: 145px;

    padding: 16px;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.why-feature-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}


/* Icon */

.why-feature-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--secondary);

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;

    transition: all 0.3s ease;
}


.why-feature-card:hover .why-feature-icon {
    background: #008b95;
    transform: scale(1.06);
}


/* Card Text */

.why-feature-text {
    flex: 1;
}


.why-feature-text h3 {
    margin: 1px 0 7px;

    color: #002b63;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 800;
}


.why-feature-text p {
    margin: 0;

    color: #4b647b;

    font-size: 12.5px;
    line-height: 1.5;
}


/* =========================================================
   APPOINTMENT BUTTON
========================================================= */

.why-appointment-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 13px 16px 13px 24px;

    background: #ffffff;

    color: #00575b;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition: all 0.3s ease;
}


.why-appointment-btn i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #008b95;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;

    transition: transform 0.3s ease;
}


.why-appointment-btn:hover {
    color: #002b63;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}


.why-appointment-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .why-suresh-section {
        padding: 65px 0;
    }

    .why-suresh-wrapper {
        gap: 28px;
    }

    .why-suresh-image-wrap {
        min-height: 600px;
    }

    .why-suresh-content h2 {
        font-size: 38px;
    }

    .why-feature-card {
        min-height: 155px;
        padding: 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-suresh-section {
        padding: 60px 20px;
    }

    .why-suresh-wrapper {
        grid-template-columns: 1fr;

        max-width: 700px;
    }

    .why-suresh-image-wrap {
        min-height: 560px;
        max-height: 650px;
    }

    .why-suresh-content {
        padding: 5px 0;
    }

    .why-suresh-content h2 {
        font-size: 40px;
    }

    .why-description {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .why-suresh-section {
        padding: 45px 15px;
    }

    .why-suresh-wrapper {
        gap: 30px;
    }

    .why-suresh-image-wrap {
        min-height: 480px;
        max-height: 540px;

        border-radius: 14px;
    }

    .why-experience-badge {
        min-width: 150px;

        padding: 11px 15px 13px;

        border-radius: 0 0 0 14px;
    }

    .why-experience-badge strong {
        font-size: 25px;
    }

    .why-experience-badge span {
        font-size: 9px;
    }

    .why-label {
        font-size: 14px;
    }

    .why-suresh-content h2 {
        margin-bottom: 17px;

        font-size: 32px;
        line-height: 1.12;
    }

    .why-description {
        font-size: 14px;
        line-height: 1.65;

        margin-bottom: 22px;
    }

    .why-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .why-feature-card {
        display: block;

        min-height: 190px;

        padding: 14px;
    }

    .why-feature-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        margin-bottom: 11px;

        font-size: 17px;
    }

    .why-feature-text h3 {
        font-size: 14px;
    }

    .why-feature-text p {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .why-appointment-btn {
        width: 100%;
        justify-content: space-between;

        padding-left: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-suresh-section {
        padding: 38px 12px;
    }

    .why-suresh-image-wrap {
        min-height: 420px;
        max-height: 470px;
    }

    .why-suresh-content h2 {
        font-size: 28px;
    }

    .why-description {
        font-size: 13.5px;
    }

    .why-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-feature-card {
        min-height: 185px;
        padding: 12px;
    }

    .why-feature-text h3 {
        font-size: 13px;
    }

    .why-feature-text p {
        font-size: 11px;
    }

    .why-experience-badge {
        min-width: 135px;
    }

}

/* =========================================================
   SLOW & SMOOTH CARD ANIMATION
========================================================= */

.why-feature-card {
    opacity: 0;
    will-change: transform, opacity;

    animation-duration: 1.3s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}


/* Card 1 - Left */
.why-feature-card:nth-child(1) {
    animation-name: whyCardLeft;
    animation-delay: 0.15s;
}


/* Card 2 - Right */
.why-feature-card:nth-child(2) {
    animation-name: whyCardRight;
    animation-delay: 0.40s;
}


/* Card 3 - Bottom */
.why-feature-card:nth-child(3) {
    animation-name: whyCardBottom;
    animation-delay: 0.65s;
}


/* Card 4 - Top */
.why-feature-card:nth-child(4) {
    animation-name: whyCardTop;
    animation-delay: 0.90s;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes whyCardLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes whyCardRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes whyCardBottom {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes whyCardTop {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   SUCCESS STORIES SECTION
========================================= */

.success-stories-section {
    position: relative;
    overflow: hidden;

    padding: 75px 0 80px;

    background: #f8f7fa;
}


/* =========================================
   CONTAINER
========================================= */

.success-stories-section .container {
    max-width: 1240px;
}


/* =========================================
   HEADER
========================================= */

.success-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


/* =========================================
   HEADING
========================================= */

.success-title-wrap h2 {
    margin: 0;

    color: #111827;

    font-size: 39px;
    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -1px;
}

.success-title-wrap h2 span {
    color: #00656A;
    font-weight: 600;
}


/* =========================================
   BUTTON
========================================= */

.success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 218px;

    padding: 14px 22px;

    border: 1.5px solid var(--secondary);
    border-radius: 30px;

    color: #00656A;

    background: #ffffff;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}

.success-btn span {
    font-size: 20px;
    line-height: 1;
}

.success-btn:hover {
    background: var(--primary);
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   VIDEO GRID
========================================= */

.success-video-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}


/* =========================================
   VIDEO CARD
========================================= */

.success-video-card {
    min-width: 0;
}


/* =========================================
   YOUTUBE
========================================= */

.youtube-box {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 18px;

    background: #111827;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}

.youtube-box iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* =========================================
   VIDEO TITLE
========================================= */

.success-video-card h3 {
    margin: 18px 4px 0;

    color: #111827;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 500;
}


/* =========================================
   HOVER EFFECT
========================================= */

.success-video-card {
    transition: transform 0.3s ease;
}

.success-video-card:hover {
    transform: translateY(-5px);
}

.success-video-card:hover .youtube-box {
    box-shadow:
        0 18px 38px rgba(0, 101, 106, 0.16);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .success-stories-section {
        padding: 60px 0;
    }

    .success-header {
        align-items: flex-start;
    }

    .success-title-wrap h2 {
        font-size: 32px;
    }

    .success-video-grid {
        gap: 20px;
    }

    .success-video-card h3 {
        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .success-stories-section {
        padding: 50px 0 55px;
    }

    .success-header {
        display: block;

        margin-bottom: 30px;
    }

    .success-title-wrap h2 {
        font-size: 28px;

        line-height: 1.2;

        letter-spacing: -0.5px;
    }

    .success-btn {
        margin-top: 22px;

        min-width: auto;

        padding: 12px 18px;

        font-size: 12px;
    }

    .success-video-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .youtube-box {
        border-radius: 14px;
    }

    .success-video-card h3 {
        margin-top: 13px;

        font-size: 17px;

        line-height: 1.4;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .success-title-wrap h2 {
        font-size: 25px;
    }

    .success-video-card h3 {
        font-size: 16px;
    }

}



/* Review Section  */
.review-sec {
    background: #fdfdfd;
    padding: 70px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.review-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--secondary-dark);
    font-weight: 600;
}

.review-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.review-header p {
    color: #64748b;
}

.review-btn {
    border: 1px solid var(--secondary);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s;
}

.review-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

.reviewSlider .swiper-slide {
    height: auto;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user span {
    width: 42px;
    height: 42px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-user h4 {
    margin: 0;
    font-size: 15px;
}

.review-user small {
    font-size: 12px;
    color: #777;
}

.g-icon {
    width: 22px;
}

.review-stars {
    color: #f59e0b;
    margin: 10px 0;
}

.review-card p {
    font-size: 14px;
    color: #555;
}

.review-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.review-prev,
.review-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary-dark);
    color: #fff;
}

@media (max-width: 991px) {
    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-header h2 {
        font-size: 26px;
    }
}


/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    position: relative;
    overflow: hidden;

    padding: 75px 0 85px;

   background: linear-gradient(115deg, #002157 0%, #002157 45%, #008c95 100%);
}


/* =========================================
   CONTAINER
========================================= */

.faq-section .container {
    max-width: 1050px;
}


/* =========================================
   FAQ HEADER
========================================= */

.faq-header {
    text-align: center;

    margin-bottom: 43px;
}


.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-bottom: 16px;
    border-radius: 30px;
    color: #ffffff;
    background: rgb(0 140 149);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Heading */

.faq-header h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 36px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* Description */

.faq-header p {
    max-width: 850px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    line-height: 1.6;

    font-weight: 400;
}


/* =========================================
   FAQ LIST
========================================= */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    overflow: hidden;

    border-radius: 12px;

    background: #ffffff;

    border: 1px solid rgba(255,255,255,.15);

    transition: all .3s ease;
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border: 0;
    outline: none;

    cursor: pointer;

    text-align: left;

    background: #ffffff;

    color: #1F2937;

    font-family: inherit;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 600;

    transition: all .3s ease;
}


/* Question hover */

.faq-question:hover {
    color: #00656A;
}


/* =========================================
   ICON
========================================= */

.faq-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: #00656A;

    font-size: 22px;
    line-height: 1;

    font-weight: 500;

    transition: transform .3s ease;
}


/* =========================================
   ACTIVE QUESTION
========================================= */

.faq-item.active .faq-question {
    color: #ffffff;

    background: var(--secondary);
}

.faq-item.active .faq-icon {
    color: #ffffff;
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    display: none;

    background: #ffffff;
}

.faq-item.active .faq-answer {
    display: block;
}


.faq-answer p {
    margin: 0;

    padding: 20px 22px 22px;

    color: #526174;

    font-size: 13px;
    line-height: 1.75;

    font-weight: 400;
}


/* =========================================
   ORANGE ACCENT
========================================= */

.faq-item.active {
    border-color: #00656A;
}


/* =========================================
   HOVER
========================================= */

.faq-item:not(.active):hover {
    border-color: rgba(0, 101, 106, .35);

    transform: translateY(-1px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .faq-section {
        padding: 60px 20px 70px;
    }

    .faq-section .container {
        max-width: 850px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 50px 15px 60px;
    }


    .faq-header {
        margin-bottom: 30px;
    }


    .faq-badge {
        padding: 8px 17px;

        font-size: 11px;

        margin-bottom: 13px;
    }


    .faq-header h2 {
        font-size: 27px;

        line-height: 1.25;
    }


    .faq-header p {
        font-size: 12px;

        line-height: 1.6;
    }


    .faq-list {
        gap: 10px;
    }


    .faq-question {
        padding: 17px 16px;

        font-size: 14px;

        gap: 12px;
    }


    .faq-icon {
        width: 24px;
        height: 24px;

        font-size: 20px;
    }


    .faq-answer p {
        padding: 16px;

        font-size: 12px;

        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-header p {
        font-size: 11px;
    }

    .faq-question {
        font-size: 13px;
    }

}


/* =========================================
   LATEST BLOGS SECTION
========================================= */

.latest-blogs-section {
    position: relative;

    padding: 65px 0 70px;

    background: #ffffff;
}

.latest-blogs-section .container {
    max-width: 1300px;
}


/* =========================================
   HEADING
========================================= */

.blogs-heading {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 28px;

    text-align: center;
}

.blogs-heading h2 {
    margin: 0;

    color: var(--primary);

    font-size: 30px;
    line-height: 1.2;

    font-weight: 700;
}

.blogs-heading h2 span {
    color: var(--secondary);
}

.blogs-heading-line {
    display: block;

    width: 30px;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;
}


/* =========================================
   BLOG GRID
========================================= */

.blogs-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #E5E7EB;

    border-radius: 12px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 101, 106, .30);

    box-shadow:
        0 12px 28px rgba(0, 101, 106, .12);
}


/* =========================================
   BLOG IMAGE
========================================= */

.blog-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #f3f4f6;
}

.blog-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE ACCENT
========================================= */

.blog-image::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #00656A,
        #FF8500
    );

    opacity: 0;

    transition: opacity .3s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}


/* =========================================
   CONTENT
========================================= */

.blog-content {
    padding: 17px 15px 18px;
}


/* =========================================
   BLOG TITLE
========================================= */

.blog-content h3 {
    min-height: 50px;

    margin: 0 0 15px;

    color: var(--primary);

    font-size: 17px;
    line-height: 1.45;

    font-weight: 600;
}


/* =========================================
   READ MORE
========================================= */

.blog-read-more {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: var(--primary);

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.blog-read-more span {
    color: var(--secondary);

    font-size: 16px;

    transition: transform .3s ease;
}

.blog-read-more:hover {
    color: var(--secondary);
}

.blog-read-more:hover span {
    transform: translateX(4px);
}


/* =========================================
   VIEW MORE
========================================= */

.blogs-view-more {
    display: flex;
    justify-content: center;

    margin-top: 28px;
}

.blogs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 115px;

    padding: 11px 22px;

    border-radius: 6px;

    color: #ffffff;

    background: var(--secondary);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 5px 14px rgba(0, 101, 106, .20);

    transition: all .3s ease;
}

.blogs-btn:hover {
    color: #ffffff;

    background: var(--primary);

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(255, 133, 0, .25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .latest-blogs-section {
        padding: 55px 20px 60px;
    }

    .blogs-grid {
        gap: 15px;
    }

    .blog-content h3 {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .latest-blogs-section {
        padding: 45px 15px 55px;
    }

    .blogs-heading {
        gap: 10px;

        margin-bottom: 24px;
    }

    .blogs-heading h2 {
        font-size: 25px;
    }

    .blogs-heading-line {
        width: 22px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .blog-card {
        border-radius: 10px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h3 {
        min-height: auto;

        font-size: 16px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .blogs-heading h2 {
        font-size: 23px;
    }

    .blog-content h3 {
        font-size: 15px;
    }

}


/* =========================================
   PREMIUM EXPERIENCE SECTION
========================================= */

.premium-experience-section {
    position: relative;
    overflow: hidden;

    padding: 45px 0 18px;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(0, 101, 106, 0.07),
            transparent 18%
        ),
        radial-gradient(
            circle at 95% 55%,
            rgba(255, 133, 0, 0.06),
            transparent 20%
        ),
        #f9fbfa;
}


/* =========================================
   DECORATIVE CIRCLES
========================================= */

.experience-circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    pointer-events: none;

    opacity: .45;

    background:
        repeating-radial-gradient(
            circle,
            rgba(0, 101, 106, .09) 0,
            rgba(0, 101, 106, .09) 1px,
            transparent 1px,
            transparent 9px
        );
}

.experience-circle-left {
    left: -210px;
    top: -210px;
}

.experience-circle-right {
    right: -250px;
    bottom: 100px;

    opacity: .22;

    background:
        repeating-radial-gradient(
            circle,
            rgba(255, 133, 0, .10) 0,
            rgba(255, 133, 0, .10) 1px,
            transparent 1px,
            transparent 10px
        );
}


/* =========================================
   TOP CONTENT
========================================= */

.experience-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================
   BADGE
========================================= */

.experience-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    margin-bottom: 20px;

    border: 1px solid rgba(0, 101, 106, .22);

    border-radius: 30px;

    color: #00656A;

    background: rgba(0, 101, 106, .05);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================
   HEADING
========================================= */

.experience-content h2 {
    margin: 0;

    color: #222222;

    font-size: 48px;

    line-height: 1.12;

    font-weight: 500;

    letter-spacing: -1.5px;
}

.experience-content h2 span {
    display: block;

    margin-top: 4px;

    color: #00656A;

    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.experience-content p {
    max-width: 700px;

    margin: 23px auto 27px;

    color: #596466;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.experience-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 180px;

    padding: 14px 23px;

    border-radius: 30px;

    color: #ffffff;

    background: var(--secondary);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0, 101, 106, .20);

    transition: all .3s ease;
}

.experience-btn span {
    font-size: 20px;

    line-height: 1;
}

.experience-btn:hover {
    color: #ffffff;

    background: var(--primary);

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(255, 133, 0, .25);
}


/* =========================================
   IMAGE MARQUEE
========================================= */

.experience-marquee {
    position: relative;
    z-index: 3;

    width: 100%;

    overflow: hidden;

    margin-top: 48px;

    /*
       Allows touch horizontal scrolling
    */
    touch-action: pan-x;
}


/* =========================================
   TRACK
========================================= */

.experience-track {
    display: flex;

    width: max-content;

    align-items: flex-end;

    gap: 16px;

    animation: experienceScroll 30s linear infinite;

    will-change: transform;
}


/* =========================================
   IMAGE CARD
========================================= */

.experience-image {
    flex: 0 0 225px;

    width: 225px;
    height: 290px;

    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.experience-image:nth-child(even) {
    height: 255px;
}

.experience-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;

    -webkit-user-drag: none;

    transition: transform .5s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.experience-image:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 101, 106, .16);
}

.experience-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   INFINITE SCROLL
========================================= */

@keyframes experienceScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
    }

}


/* =========================================
   PAUSE ON HOVER
========================================= */

.experience-marquee:hover .experience-track {
    animation-play-state: paused;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .premium-experience-section {
        padding-top: 40px;
    }

    .experience-content h2 {
        font-size: 40px;
    }

    .experience-image {
        flex-basis: 200px;

        width: 200px;
        height: 260px;
    }

    .experience-image:nth-child(even) {
        height: 230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .premium-experience-section {
        padding: 35px 0 12px;
    }


    .experience-content {
        padding: 0 18px;
    }


    .experience-badge {
        font-size: 9px;

        padding: 7px 14px;

        margin-bottom: 15px;
    }


    .experience-content h2 {
        font-size: 31px;

        line-height: 1.16;

        letter-spacing: -.7px;
    }


    .experience-content p {
        margin: 18px auto 22px;

        font-size: 12px;

        line-height: 1.65;
    }


    .experience-btn {
        padding: 12px 20px;

        min-width: 165px;

        font-size: 12px;
    }


    .experience-marquee {
        margin-top: 35px;
    }


    .experience-track {
        gap: 11px;

        animation-duration: 23s;
    }


    .experience-image {
        flex: 0 0 155px;

        width: 155px;
        height: 215px;

        border-radius: 14px;
    }


    .experience-image:nth-child(even) {
        height: 190px;
    }


    .experience-circle {
        width: 280px;
        height: 280px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .experience-content h2 {
        font-size: 27px;
    }

    .experience-image {
        flex-basis: 140px;

        width: 140px;
        height: 195px;
    }

    .experience-image:nth-child(even) {
        height: 175px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}


/* ================= MAIN FOOTER ================= */

.footer-main {
    position: relative;
    background: #062d67;
    padding: 65px 0 55px;
    overflow: hidden;
}

/* Decorative circles */

.footer-main::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(0, 151, 160, 0.10);
    right: -120px;
    top: -180px;
}

.footer-main::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 151, 160, 0.08);
    left: -180px;
    bottom: -190px;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}


/* ================= LOGO ================= */

.footer-logo-box {
    width: 300px;
    /* height: 290px; */
    /* background: #ffffff; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    margin-bottom: 0px;
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12); */
}

.footer-logo-box img {
    width: 100%;
    max-width: 270px;
    height: auto;
    object-fit: contain;
}


.footer-about {
    max-width: 440px;
    color: #d9e8ff;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 28px;
}


/* ================= BUTTON ================= */

.footer-appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 22px;
    background: #0796a0;
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-appointment-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-appointment-btn:hover {
    background: #ffffff;
    color: #062d67;
    transform: translateY(-2px);
}

.footer-appointment-btn:hover i {
    transform: translateX(5px);
}


/* ================= FOOTER HEADINGS ================= */

.footer-widget h3 {
    position: relative;
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.footer-line {
    display: block;
    width: 52px;
    height: 4px;
    background: #0796a0;
    border-radius: 5px;
    margin-bottom: 30px;
}


/* ================= LINKS ================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 19px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #d9e8ff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.25s ease;
}

.footer-links a i {
    color: #0796a0;
    font-size: 10px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: #ffffff;
}


/* ================= CONTACT ================= */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 23px;
}

.footer-contact-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 151, 160, 0.18);
    color: #fff;
    font-size: 18px;
}

.footer-contact-item span {
    display: block;
    color: #7fa0cb;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer-contact-item a,
.footer-contact-item p {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.footer-contact-item a:hover {
    color: #54dce2;
}


/* ================= SOCIAL ================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
}

.footer-social a {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0796a0;
    border-color: #0796a0;
    transform: translateY(-4px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    background: #052656;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright {
    margin: 0;
    color: #a9c0df;
    font-size: 14px;
}

.copyright strong {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    color: #8fa9ca;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #a9c0df;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.developed-by {
    color: #a9c0df;
}

.developed-by a {
    color: #fff;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-main {
        padding: 55px 0 45px;
    }

    .footer-logo-box {
        width: 270px;
        height: 260px;
    }

    .footer-widget h3 {
        font-size: 21px;
    }

    .footer-about {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 15px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-main {
        padding: 45px 0 35px;
    }

    .footer-logo-box {
        width: 240px;
        height: 230px;
        margin: 0 auto 25px;
    }

    .footer-about {
        max-width: 100%;
        text-align: center;
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-appointment-btn {
        padding: 14px 20px;
    }

    .footer-widget {
        margin-top: 12px;
    }

    .footer-widget h3 {
        font-size: 20px;
    }

    .footer-line {
        margin-bottom: 22px;
    }

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact-item {
        gap: 13px;
        margin-bottom: 18px;
    }

    .footer-contact-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .footer-social {
        margin-top: 22px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .copyright {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-bottom-links {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-bottom-links span:not(.developed-by) {
        display: inline-block;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .footer-logo-box {
        width: 210px;
        height: 205px;
    }

    .footer-social {
        gap: 8px;
    }

    .footer-social a {
        width: 43px;
        height: 43px;
        font-size: 15px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 4px;
    }

    .footer-bottom-links > span:not(.developed-by) {
        display: none;
    }
}


/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-contact {
    position: fixed;

    bottom: 50px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    z-index: 9999;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    animation: floatingPulse 2.8s infinite;
}


/* =========================================================
   CALL BUTTON - LEFT
========================================================= */

.floating-call {
    left: 18px;

    background: var(--secondary);

    color: #ffffff;

    /* border: 4px solid #ffffff; */

    box-shadow:
        0 4px 15px rgba(105, 168, 47, 0.35),
        0 0 0 1px rgba(105, 168, 47, 0.18);
}

.floating-call i {
    font-size: 22px;
}


/* =========================================================
   WHATSAPP BUTTON - RIGHT
========================================================= */

.floating-whatsapp {
    right: 18px;

    background: #25d366;

    color: #ffffff;

    /* border: 4px solid #ffffff; */

    box-shadow:
        0 4px 15px rgba(37, 211, 102, 0.35),
        0 0 0 1px rgba(37, 211, 102, 0.18);
}

.floating-whatsapp i {
    font-size: 25px;
}


/* =========================================================
   HOVER
========================================================= */

.floating-contact:hover {
    color: #ffffff;

    text-decoration: none;

    transform: scale(1.10);
}

.floating-call:hover {
    background: var(--primary);

    box-shadow:
        0 8px 25px rgba(105, 168, 47, 0.45);
}

.floating-whatsapp:hover {
    background: #1ebe5d;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.45);
}


/* =========================================================
   SOFT PULSE
========================================================= */

@keyframes floatingPulse {

    0% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.12),
            0 0 0 0 rgba(105, 168, 47, 0.30);
    }

    70% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.12),
            0 0 0 10px rgba(105, 168, 47, 0);
    }

    100% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.12),
            0 0 0 0 rgba(105, 168, 47, 0);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .floating-contact {
        width: 52px;
        height: 52px;

        bottom: 14px;
    }

    .floating-call {
        left: 12px;
    }

    .floating-whatsapp {
        right: 12px;
    }

    .floating-call i {
        font-size: 19px;
    }

    .floating-whatsapp i {
        font-size: 22px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .floating-contact {
        width: 48px;
        height: 48px;

        bottom: 12px;

        border-width: 3px;
    }

    .floating-call {
        left: 10px;
    }

    .floating-whatsapp {
        right: 10px;
    }

    .floating-call i {
        font-size: 17px;
    }

    .floating-whatsapp i {
        font-size: 20px;
    }
}

/* =========================================================
   FOOTER APPOINTMENT
========================================================= */

.footer-appointment {
    position: relative;
    z-index: 20;
    margin-bottom: -125px;
}

.footer-appointment-box {
    width: 100%;
    max-width: 1025px;
    margin: 0 auto;

    padding: 34px 40px 36px;

    background: #ffffff;
    border-radius: 20px;

    box-shadow: 0 18px 45px rgba(0, 33, 87, 0.12);
}


/* =========================================================
   HEADING
========================================================= */

.footer-form-heading {
    text-align: center;
    margin-bottom: 24px;
}

.footer-form-heading h2 {
    margin: 0;

    color: #111827;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.footer-form-heading h2 span {
    color: var(--secondary);
}

.footer-form-heading p {
    margin: 12px 0 0;

    color: #7b8492;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.footer-appointment-form {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;
}


/* =========================================================
   INPUT + SELECT
========================================================= */

.footer-appointment-form input,
.footer-appointment-form select {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid #d9d9d9;
    border-radius: 8px;

    background: #ffffff;
    color: #111827;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    box-sizing: border-box;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-appointment-form input::placeholder {
    color: #8a8f98;
}

.footer-appointment-form input:focus,
.footer-appointment-form select:focus {
    border-color: #55979a;

    box-shadow:
        0 0 0 3px rgba(85, 151, 154, 0.10);
}


/* =========================================================
   BUTTON
========================================================= */

.footer-appointment-form button {
    grid-column: 1 / -1;

    width: 100%;
    height: 50px;

    margin-top: 2px;

    border: none;
    border-radius: 28px;

    background: var(--primary);
    color: #ffffff;

    cursor: pointer;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-appointment-form button:hover {
    background: var(--secondary);

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(67, 132, 135, 0.25);
}


/* =========================================================
   FOOTER SPACE
========================================================= */

.footer-appointment + footer {
    position: relative;
    z-index: 1;

    padding-top: 105px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .footer-appointment-box {
        max-width: 1050px;

        padding: 38px 42px 40px;
    }

    .footer-form-heading h2 {
        font-size: 35px;
    }

    .footer-form-heading p {
        font-size: 16px;
    }

    .footer-appointment-form input,
    .footer-appointment-form select {
        height: 50px;
        font-size: 15px;
    }

    .footer-appointment-form button {
        height: 52px;
        font-size: 17px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-appointment {
        margin-bottom: -100px;
    }

    .footer-appointment-box {
        max-width: 760px;

        padding: 30px 28px 32px;

        border-radius: 18px;
    }

    .footer-form-heading h2 {
        font-size: 31px;
    }

    .footer-form-heading p {
        font-size: 15px;
    }

    .footer-appointment-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-appointment-form input,
    .footer-appointment-form select {
        height: 47px;
    }

    .footer-appointment-form button {
        height: 49px;
    }

    .footer-appointment + footer {
        padding-top: 90px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-appointment {
        margin-bottom: -65px;
    }

    .footer-appointment-box {
        width: calc(100% - 24px);

        padding: 27px 18px 29px;

        border-radius: 16px;

        box-sizing: border-box;
    }

    .footer-form-heading {
        margin-bottom: 20px;
    }

    .footer-form-heading h2 {
        font-size: 26px;
    }

    .footer-form-heading p {
        margin-top: 10px;

        font-size: 13px;
    }

    .footer-appointment-form {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .footer-appointment-form input,
    .footer-appointment-form select {
        height: 46px;

        padding: 0 13px;

        font-size: 13px;
    }

    .footer-appointment-form button {
        height: 48px;

        margin-top: 2px;

        font-size: 13px;
    }

    .footer-appointment + footer {
        padding-top: 75px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-appointment {
        margin-bottom: -55px;
    }

    .footer-appointment-box {
        width: calc(100% - 18px);

        padding: 24px 14px 26px;

        border-radius: 14px;
    }

    .footer-form-heading {
        margin-bottom: 18px;
    }

    .footer-form-heading h2 {
        font-size: 23px;
    }

    .footer-form-heading p {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-appointment-form {
        gap: 9px;
    }

    .footer-appointment-form input,
    .footer-appointment-form select {
        height: 44px;

        font-size: 12px;
    }

    .footer-appointment-form button {
        height: 46px;

        font-size: 12px;
    }
}



/* =========================================================
   CONSULTATION MODAL - COMPACT
========================================================= */

.consultation-modal {
    z-index: 99999 !important;
}

.consultation-modal + .modal-backdrop,
.modal-backdrop {
    z-index: 99998 !important;
}


/* MODAL WIDTH */

.consultation-modal .modal-dialog {
    width: calc(100% - 30px);
    max-width: 520px;

    margin: 1.75rem auto;
}


/* MODAL BOX */

.consultation-modal .modal-content {
    position: relative;

    width: 100%;

    padding: 30px 32px 28px;

    border: none;
    border-radius: 24px;

    background: #ffffff;

    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}


/* BODY */

.consultation-modal .modal-body {
    padding: 0;
}


/* =========================================================
   TITLE
========================================================= */

.consultation-modal .modal-title {
    margin: 0 0 20px;

    padding-right: 35px;

    color: #222;

    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
}


/* =========================================================
   FORM
========================================================= */

.consultation-modal .modal-form-fix {
    width: 100%;
}

.consultation-modal .modal-form-fix form {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
}


/* Bootstrap row */

.consultation-modal .modal-form-fix .row {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
}


/* All columns */

.consultation-modal .modal-form-fix .row > *,
.consultation-modal .modal-form-fix [class*="col-"] {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    flex: none !important;

    padding: 0 !important;

    margin: 0 !important;
}


/* =========================================================
   INPUT + SELECT
========================================================= */

.consultation-modal .modal-form-fix input,
.consultation-modal .modal-form-fix select,
.consultation-modal .modal-form-fix textarea {

    display: block !important;

    width: 100% !important;

    height: 46px;

    margin: 0 0 14px !important;

    padding: 0 15px;

    border: 1px solid #e1e3e6;

    border-radius: 14px;

    background: #f8f9fb;

    color: #222;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    box-sizing: border-box;

    transition: all 0.25s ease;
}


/* Placeholder */

.consultation-modal .modal-form-fix input::placeholder {
    color: #8d95a2;
}


/* Focus */

.consultation-modal .modal-form-fix input:focus,
.consultation-modal .modal-form-fix select:focus,
.consultation-modal .modal-form-fix textarea:focus {

    background: #ffffff;

    border-color: #008f98;

    box-shadow: 0 0 0 3px rgba(0, 143, 152, 0.08);
}


/* Select */

.consultation-modal .modal-form-fix select {
    height: 46px;

    appearance: auto;
    -webkit-appearance: auto;
}


/* =========================================================
   BUTTON
========================================================= */

.consultation-modal .modal-form-fix button,
.consultation-modal .modal-form-fix input[type="submit"] {

    display: block !important;

    width: 100% !important;

    height: 48px;

    margin: 2px 0 0 !important;

    padding: 0 20px;

    border: none;

    border-radius: 28px;

    background: #008f98;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.consultation-modal .modal-form-fix button:hover,
.consultation-modal .modal-form-fix input[type="submit"]:hover {

    background: #002157;

    transform: translateY(-1px);

    box-shadow: 0 7px 18px rgba(0, 143, 152, 0.20);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.consultation-modal .modal-close-btn {

    position: absolute;

    top: 17px;
    right: 18px;

    z-index: 10;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;

    background: transparent;

    color: #111;

    font-size: 25px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .consultation-modal .modal-dialog {

        width: calc(100% - 24px);

        max-width: 440px;

        margin: 1rem auto;
    }

    .consultation-modal .modal-content {

        padding: 27px 24px 25px;

        border-radius: 22px;
    }

    .consultation-modal .modal-title {

        font-size: 23px;

        margin-bottom: 18px;
    }

    .consultation-modal .modal-form-fix input,
    .consultation-modal .modal-form-fix select {

        height: 45px;

        margin-bottom: 12px !important;

        font-size: 13px;
    }

    .consultation-modal .modal-form-fix button,
    .consultation-modal .modal-form-fix input[type="submit"] {

        height: 46px;

        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .consultation-modal .modal-dialog {

        width: calc(100% - 30px);

        max-width: 390px;

        margin: 12px auto;
    }

    .consultation-modal .modal-content {

        padding: 25px 18px 22px;

        border-radius: 20px;
    }

    .consultation-modal .modal-title {

        font-size: 21px;

        margin-bottom: 17px;
    }

    .consultation-modal .modal-form-fix input,
    .consultation-modal .modal-form-fix select {

        height: 44px;

        padding: 0 14px;

        border-radius: 13px;

        font-size: 12px;
    }

    .consultation-modal .modal-form-fix button,
    .consultation-modal .modal-form-fix input[type="submit"] {

        height: 45px;

        font-size: 12px;
    }

    .consultation-modal .modal-close-btn {

        top: 13px;
        right: 14px;

        font-size: 23px;
    }
}