/* =========================================================
   ROOT / BRAND COLORS
========================================================= */
:root {
    --primary: #0756c9;
    --primary-dark: #063b91;
    --cyan: #08bce8;
    --cyan-light: #e9faff;

    --text-dark: #14213d;
    --text-muted: #64748b;

    --white: #ffffff;
    --border: #e5eaf1;

    --shadow: 0 8px 30px rgba(7, 86, 201, 0.10);
    --shadow-hover: 0 15px 40px rgba(7, 86, 201, 0.16);

    --navbar-height: 82px;
}


/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: relative;
    z-index: 9999;
}


/* =========================================================
   TOPBAR
========================================================= */
.topbar {
    background: #061b3a;
    color: #fff;
    min-height: 40px;
    font-size: 13px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar-item i {
    color: var(--cyan);
    font-size: 16px;
}

.topbar-item strong {
    color: #fff;
    font-weight: 700;
}

.topbar-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;

    transition: all .3s ease;
}

.topbar-icon:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   MAIN NAVBAR
   FIXED NAVBAR
========================================================= */
.main-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;

    height: var(--navbar-height);

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(7, 86, 201, 0.08);

    box-shadow: var(--shadow);

    z-index: 9999;
}



.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1500px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================================
   BRAND / LOGO
========================================================= */
.brand {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
    flex-shrink: 0;

    height: 65px;
}

.brand-logo {
    display: block;

    width: auto;
    max-width: 250px;
    max-height: 62px;

    object-fit: contain;

    transition: transform .3s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.02);
}


/* Fallback brand */
.brand-mark {
    width: 42px;
    height: 42px;

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

    border-radius: 12px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--cyan));

    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.brand-text {
    margin-left: 10px;

    color: var(--text-dark);
    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.main-nav {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 4px;
    margin-left: auto;
    margin-right: 25px;
}


/* =========================================================
   NAV LINK
========================================================= */
.nav-link {
    position: relative;

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

    height: 100%;
    padding: 0 15px;

    color: #26364d;
    text-decoration: none;

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

    white-space: nowrap;

    transition:
        color .3s ease,
        background .3s ease;
}


/*
   Animated cyan underline
*/
.nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 17px;

    height: 3px;

    border-radius: 10px;

    background: linear-gradient(90deg,
            var(--primary),
            var(--cyan));

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .3s ease;
}


/* Hover */
.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
}


/* Active */
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */
.nav-dropdown-toggle {
    gap: 4px;
}

.nav-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;

    transition: transform .3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle .material-symbols-outlined {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */
.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


/*
   Hidden menu
*/
.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 50%;

    transform:
        translateX(-50%) translateY(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow: var(--shadow-hover);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/*
   Dropdown hover bridge
*/
.nav-dropdown::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -10px;

    height: 12px;
}


/* Show dropdown */
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%) translateY(0);
}


/* =========================================================
   MEGA MENU
========================================================= */
.nav-mega-menu {
    width: 850px;

    padding: 0;

    overflow: hidden;

    display: grid;
    grid-template-columns: 230px 1fr;
}


/* Intro section */
.nav-mega-intro {
    padding: 28px 22px;

    background:
        linear-gradient(145deg,
            #eefaff,
            #f7fbff);

    border-right: 1px solid var(--border);
}

.nav-mega-intro strong {
    display: block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* Category tags */
.nav-mega-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mega-tags a {
    display: block;

    padding: 9px 11px;

    color: #42526a;
    text-decoration: none;

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

    border-radius: 8px;

    transition: all .25s ease;
}

.nav-mega-tags a:hover {
    color: var(--primary);
    background: #fff;

    transform: translateX(4px);
}


/* =========================================================
   MEGA MENU LIST
========================================================= */
.nav-mega-list {
    padding: 28px;

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

.nav-mega-column {
    min-width: 0;
}

.nav-mega-section-title {
    display: block;

    margin-bottom: 13px;

    color: var(--text-dark);

    font-size: 14px;
    font-weight: 800;
}


/* Service item */
.nav-mega-column>a {
    position: relative;

    display: block;

    padding: 9px 10px;
    margin: 0 -10px;

    border-radius: 9px;

    text-decoration: none;

    transition: all .25s ease;
}

.nav-mega-column>a:hover {
    background: var(--cyan-light);
    transform: translateX(4px);
}

.nav-mega-column>a span {
    display: block;

    color: #27364b;

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

    transition: color .2s ease;
}

.nav-mega-column>a:hover span {
    color: var(--primary);
}

.nav-mega-column>a small {
    display: block;

    margin-top: 2px;

    color: #8a97a8;

    font-size: 11px;
}


/* =========================================================
   VIEW ALL
========================================================= */
.dropdown-all {
    grid-column: 1 / -1;

    display: block;

    padding: 13px 20px;

    color: #fff !important;

    background: linear-gradient(90deg,
            var(--primary),
            var(--cyan));

    text-align: center;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all .3s ease;
}

.dropdown-all:hover {
    letter-spacing: .3px;

    filter: brightness(.95);
}


/* =========================================================
   HEADER ACTION
========================================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Call button */
.header-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 45px;

    padding: 0 17px;

    color: #fff;
    background: linear-gradient(135deg,
            var(--primary),
            var(--cyan));

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 7px 18px rgba(7, 86, 201, .20);

    transition: all .3s ease;
}

.header-contact-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(7, 86, 201, .28);
}

.header-contact-btn i {
    font-size: 18px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.menu-toggle {
    width: 44px;
    height: 44px;

    display: none;

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

    border: 1px solid var(--border);
    border-radius: 10px;

    background: #fff;

    color: var(--primary);

    cursor: pointer;

    transition: all .3s ease;
}

.menu-toggle:hover {
    background: var(--cyan-light);
    border-color: var(--cyan);
}

.menu-toggle .material-symbols-outlined {
    font-size: 25px;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */
.mobile-overlay {
    position: fixed;

    inset: 0;

    background: rgba(2, 16, 36, .55);

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

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;

    z-index: 10000;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MOBILE SIDEBAR
========================================================= */
.mobile-sidebar {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 90vw);
    height: 100vh;

    background: #fff;

    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);

    transform: translateX(100%);

    transition: transform .35s cubic-bezier(.4, 0, .2, 1);

    z-index: 10001;

    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}


/* =========================================================
   MOBILE SIDEBAR HEADER
========================================================= */
.mobile-sidebar-header {
    min-height: 78px;

    padding: 14px 18px;

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

    border-bottom: 1px solid var(--border);
}

.mobile-logo {
    display: flex;
    align-items: center;

    max-width: 230px;

    text-decoration: none;
}

.mobile-logo img {
    max-width: 210px;
    max-height: 55px;

    object-fit: contain;
}

.mobile-logo span {
    color: var(--text-dark);

    font-size: 18px;
    font-weight: 800;
}


/* Close */
.sidebar-close {
    width: 42px;
    height: 42px;

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

    border: 0;
    border-radius: 10px;

    background: #f1f5f9;

    color: #334155;

    cursor: pointer;

    transition: all .25s ease;
}

.sidebar-close:hover {
    background: #fee2e2;
    color: #dc2626;
}


/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
    padding: 15px 18px 30px;
}

.mobile-menu>a,
.mobile-dropdown-btn {
    width: 100%;

    min-height: 52px;

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

    padding: 0 14px;

    color: #26364d;

    background: transparent;

    border: 0;
    border-bottom: 1px solid #eef1f5;

    text-decoration: none;

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

    text-align: left;

    cursor: pointer;

    transition: all .25s ease;
}


/* Mobile hover */
.mobile-menu>a:hover,
.mobile-dropdown-btn:hover {
    color: var(--primary);

    background: var(--cyan-light);

    padding-left: 19px;
}


/* Mobile active */
.mobile-menu>a.active {
    color: var(--primary);

    background: var(--cyan-light);

    border-left: 3px solid var(--primary);
}


/* =========================================================
   MOBILE DROPDOWN
========================================================= */
.mobile-dropdown-content {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    background: #f8fbff;

    transition:
        max-height .35s ease,
        opacity .25s ease;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 700px;
    opacity: 1;
}


/* Arrow */
.mobile-dropdown-btn .material-symbols-outlined {
    transition: transform .3s ease;
}

.mobile-dropdown.active .mobile-dropdown-btn .material-symbols-outlined {
    transform: rotate(180deg);
}


/* Mobile dropdown links */
.mobile-dropdown-content a {
    display: block;

    padding: 11px 18px 11px 28px;

    color: #526176;

    border-bottom: 1px solid #edf1f5;

    text-decoration: none;

    font-size: 13px;

    transition: all .2s ease;
}

.mobile-dropdown-content a:hover {
    color: var(--primary);

    background: #eefaff;

    padding-left: 34px;
}


/* Labels */
.mobile-menu-label {
    display: block;

    padding: 15px 18px 7px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .7px;
}


/* View all */
.mobile-dropdown-content .view-all {
    color: var(--primary);

    font-weight: 700;

    background: #eafaff;
}


/* =========================================================
   MOBILE CONTACT
========================================================= */
.mobile-contact {
    padding: 18px;

    border-top: 1px solid var(--border);
}

.mobile-contact a {
    min-height: 52px;

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

    gap: 9px;

    color: #fff;

    background: linear-gradient(135deg,
            var(--primary),
            var(--cyan));

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    box-shadow: 0 8px 20px rgba(7, 86, 201, .20);
}


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

    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand-logo {
        max-width: 210px;
    }

    .main-nav {
        margin-right: 12px;
    }

    .nav-link {
        padding: 0 10px;
        font-size: 14px;
    }

    .nav-link::after {
        left: 10px;
        right: 10px;
    }

    .header-contact-btn {
        padding: 0 13px;
    }

    .header-contact-btn span {
        display: none;
    }

    .nav-mega-menu {
        width: 760px;
    }
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 991px) {

    /*
       Navbar remains fixed
    */
    .main-navbar {
        height: 115px;
    }


    body {
        padding-top: 72px;
    }

    .header-inner {
        padding: 0 16px;
    }


    /* Logo */
    .brand {
        height: 58px;
    }

    .brand-logo {
        max-width: 190px;
        max-height: 55px;
    }


    /* Hide desktop nav */
    .main-nav {
        display: none;
    }


    /* Hide desktop phone button */
    .header-contact-btn {
        display: none;
    }


    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }


    /* Topbar */
    .topbar {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 575px) {

    .main-navbar {
        height: 115px;
    }

    body {
        padding-top: 68px;
    }

    .header-inner {
        padding: 0 13px;
    }

    .brand-logo {
        max-width: 200px;
        max-height:100px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-sidebar {
        width: 92vw;
    }

    .mobile-sidebar-header {
        min-height: 70px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */
@media (max-width: 380px) {

    .brand-logo {
        max-width: 145px;
    }

    .mobile-sidebar {
        width: 95vw;
    }

    .mobile-menu {
        padding-left: 12px;
        padding-right: 12px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */
.nav-link:focus-visible,
.mobile-menu a:focus-visible,
.mobile-dropdown-btn:focus-visible,
.menu-toggle:focus-visible,
.sidebar-close:focus-visible {
    outline: 3px solid rgba(8, 188, 232, .35);
    outline-offset: 2px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}






/* ----- buttons & badges ----- */
.btn-primary {
    background: linear-gradient(135deg, #0878D1 0%, #08B9D8 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(8, 120, 209, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(8, 120, 209, 0.35);
    background: linear-gradient(135deg, #066bb8 0%, #07a5c7 100%);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #0878D1;
    color: #0878D1;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}


.white-outline {
    background: transparent;
    border: 1.5px solid #0878D1;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.btn-outline:hover {
    background: #0878D1;
    color: white;
    box-shadow: 0 8px 16px rgba(8, 120, 209, 0.2);
}

.badge {
    background: #E5F1FB;
    color: #0878D1;
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
}

/* ----- header ----- */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(220, 234, 244, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-symbol {
    background: linear-gradient(145deg, #0A4B7A, #0878D1);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #082B55;
}

.logo-text small {
    display: block;
    font-weight: 400;
    font-size: 0.65rem;
    color: #526579;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #1f3a57;
    font-size: 0.9rem;
    transition: 0.15s;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.nav-links a:hover {
    color: #0878D1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #082B55;
    cursor: pointer;
}

/* hero */
.hero {
    padding: 100px 0 130px;
    background: linear-gradient(180deg, #F8FCFF 0%, #F0F8FF 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    background: #E1EFF9;
    color: #0878D1;
    padding: 6px 22px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #082B55;
    margin-bottom: 18px;
}

.expert-care-text {

    font-weight: 800;
    line-height: 0.95;

    margin: 0;

    background: linear-gradient(
        90deg,
        #075aaa 0%,
        #117fc4 35%,
        #27a6dc 65%,
        #45cae8 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: inline-block;
}
.hero-desc {
    font-size: 1.1rem;
    color: #3c5a78;
    max-width: 540px;
    margin-bottom: 24px;
}

.credentials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    font-weight: 500;
    color: #1f3a57;
}

.trust-badge {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-badge span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #1f3a57;
}

.trust-badge i {
    color: #0878D1;
}

.hero-image {

    display: flex;
    justify-content: center;
}


.doctor-frame {
    position: absolute;
  top: -100px;   

    overflow: hidden;
}
.doctor-frame img {
    width: 114%;


}
.shape-360 {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
     position: absolute ;
    top: -100px;
    perspective: 20000px;
}

.shape-360 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    transform-style: preserve-3d;

    animation: rotate360 8s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.float-card {
    position: absolute;
    background: white;
    padding: 10px 18px;
    border-radius: 40px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    font-weight: 500;
    font-size: 0.8rem;
    color: #082B55;
    border: 1px solid #e6f0f7;
    display: flex;
    align-items: center;
    gap: 6px;
    bottom: 0px;
    right:  20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
}

.float-card i {
    color: #0878D1;
}

/* stats */
.stats {
    padding: 40px 0 30px;
    background: white;
    border-bottom: 1px solid #EBF3FA;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #082B55;
    letter-spacing: -1px;
}

.stat-label {
    color: #526579;
    font-weight: 500;
}

/* =========================================
   SKIN & HAIR CLINIC - ACHIEVEMENT SECTION
========================================= */

.home-achievement-section {
    position: relative;
    width: 100%;
    background: #031a3a;
    padding: 40px 0px;
    overflow: hidden;
    color: #fff;
}

.home-achievement-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(53, 191, 241, 0.07),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 50%,
            rgba(53, 191, 241, 0.05),
            transparent 32%
        );
}

.home-achievement-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   MAIN GRID
========================================= */

.home-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 25px;
}

/*
   Your Blade has two wrapper divs around
   the foreach loops. Make those wrappers
   transparent to the grid.
*/

.home-achievement-grid > div {
    display: contents;
}


/* =========================================
   CARD
========================================= */

.home-achievement-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;

    padding: 0 10px;
}


/* =========================================
   ICON BOX
========================================= */

.home-achievement-card > i {
    width: 48px;
    height: 48px;

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

    margin-bottom: 22px;

    border-radius: 20px;

    background: rgba(50, 82, 123, 0.55);

    color: #42d5ff;

    font-size:25px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.home-achievement-card:hover > i {
    transform: translateY(-5px);

    background: rgba(60, 96, 140, 0.7);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* =========================================
   NUMBER
========================================= */

.home-achievement-card strong {
    display: block;

    margin: 0 0 9px;

    color: #ffffff;

    font-size: 46px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: -2px;
}


/* =========================================
   TITLE
========================================= */

.home-achievement-card p {
    margin: 0;

    max-width: 230px;

    color: #c7d7ec;

    font-size: 17px;
    line-height: 1.4;

    font-weight: 400;
}


/* =========================================
   HIDDEN CONTENT
   Your heading section is not required
   for the screenshot-style counter row.
========================================= */


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 991px) {

    .home-achievement-section {
        padding: 45px 0 50px;
    }

    .home-achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .home-achievement-card {
        min-height: 190px;
    }

    .home-achievement-card strong {
        font-size: 50px;
    }

    .home-achievement-card p {
        font-size: 16px;
    }
}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 575px) {

    .home-achievement-section {
        padding: 40px 15px 42px;
    }

    .home-achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .home-achievement-card {
        min-height: 165px;
        padding: 0 5px;
    }

    .home-achievement-card > i {
        width: 56px;
        height: 56px;

        margin-bottom: 15px;

        border-radius: 16px;

        font-size: 25px;
    }

    .home-achievement-card strong {
        font-size: 38px;
        letter-spacing: -1px;
        margin-bottom: 7px;
    }

    .home-achievement-card p {
        max-width: 160px;

        font-size: 13px;
        line-height: 1.35;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .home-achievement-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-achievement-grid {
        gap: 25px 5px;
    }

    .home-achievement-card > i {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }

    .home-achievement-card strong {
        font-size: 34px;
    }

    .home-achievement-card p {
        font-size: 12px;
    }
}



/* =========================================================
   ABOUT / DOCTOR SECTION
========================================================= */

.about-section {
    position: relative;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-section .container {
    max-width: 1320px;
}


/* =========================================================
   MAIN GRID
========================================================= */

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


/* =========================================================
   LEFT IMAGE
========================================================= */

.about-images {
    width: 100%;
}

.image-card {
    position: relative;
    padding: 9px;
    border-radius: 30px;

    background: #dcecff;
}

.image-card > img {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 22px;
}


/* =========================================================
   DOCTOR INFO CARD
========================================================= */

.doctor-info-card {
    position: relative;

    margin-top: 10px;

    padding: 17px 20px;

    background: #ffffff;

    border-radius: 17px;

    text-align: center;
}

.doctor-badge {
    display: inline-flex;

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

    gap: 7px;

    padding: 7px 14px;

    margin-bottom: 8px;

    border-radius: 30px;

    background: #e3efff;

    color: #0869bd;

    font-size: 13px;

    font-weight: 700;
}

.doctor-badge i {
    font-size: 16px;
}

.doctor-info-card p {
    margin: 0;

    color: #5f6670;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-content {
    padding: 5px 0;
}


/* =========================================================
   SUBTITLE
========================================================= */

.about-content .subtitle {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: #0870c9;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}

.about-content .subtitle i {
    font-size: 15px;
}


/* =========================================================
   HEADING
========================================================= */

.about-content h2 {
    max-width: 760px;

    margin: 0 0 22px;

    color: #071d41;

    font-size: 44px;

    line-height: 1.13;

    font-weight: 700;

    letter-spacing: -1.3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.about-content > p {
    max-width: 760px;

    margin: 0 0 30px;

    color: #5c626b;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.about-feature-grid {
    display: grid;

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

    gap: 16px;

    margin-bottom: 30px;
}


/* =========================================================
   FEATURE BOX
========================================================= */

.feature-box {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    min-height: 125px;

    padding: 20px 18px;

    background: #edf4ff;

    border: 1px solid #dce9fb;

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);

    background: #e8f2ff;

    box-shadow: 0 12px 30px rgba(7, 48, 94, 0.08);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-box .icon {
    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0872c9;

    font-size: 25px;

    line-height: 1;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.feature-box h5 {
    margin: 0 0 7px;

    color: #10284d;

    font-size: 17px;

    line-height: 1.25;

    font-weight: 700;
}

.feature-box p {
    margin: 0;

    color: #626a75;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-buttons {
    display: flex;

    align-items: center;

    gap: 14px;
}

.about-buttons .btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 11px;

    background: #07305e;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-buttons .btn-primary:hover {
    background: #0a4788;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(7, 48, 94, 0.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .about-grid {
        grid-template-columns: 430px 1fr;

        gap: 40px;
    }

    .image-card > img {
        height: 470px;
    }

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

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-images {
        max-width: 620px;

        margin: 0 auto;
    }

    .image-card > img {
        height: 520px;
    }

    .about-content h2 {
        max-width: 700px;

        font-size: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-section {
        padding: 55px 0;
    }

    .about-grid {
        gap: 35px;
    }

    .image-card {
        padding: 7px;

        border-radius: 23px;
    }

    .image-card > img {
        height: 430px;

        border-radius: 17px;
    }

    .doctor-info-card {
        padding: 15px;
    }

    .about-content .subtitle {
        font-size: 13px;
    }

    .about-content h2 {
        margin-bottom: 17px;

        font-size: 32px;

        letter-spacing: -0.8px;
    }

    .about-content > p {
        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 25px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 25px;
    }

    .feature-box {
        min-height: auto;

        padding: 17px;
    }

    .about-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .about-buttons .btn-primary {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding: 45px 0;
    }

    .image-card > img {
        height: 390px;
    }

    .doctor-badge {
        font-size: 11px;

        padding: 6px 10px;
    }

    .doctor-info-card p {
        font-size: 13px;
    }

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

    .about-content > p {
        font-size: 14px;
    }

    .feature-box {
        gap: 12px;

        padding: 15px;
    }

    .feature-box h5 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 12px;
    }

}


/* =========================================================
   SKIN & HAIR SERVICES
   DR. N.K. YADAV CLINIC
========================================================= */

.home-service-section {
    position: relative;
    padding: 70px 0px;
    background: #f7f9fd;
    overflow: hidden;
}


/* Soft background decoration */

.home-service-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -120px;

    border-radius: 50%;

    background: rgba(30, 111, 190, 0.035);

    pointer-events: none;
}

.home-service-section::after {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    bottom: -160px;
    left: -100px;

    border-radius: 50%;

    background: rgba(30, 111, 190, 0.035);

    pointer-events: none;
}


.home-service-overlay {
    display: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.home-service-section .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.home-service-section .section-title {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}


/* Subtitle */

.home-service-section .subtitle {
    display: inline-flex;

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

    gap: 8px;

    margin-bottom: 13px;

    color: #0870c9;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.home-service-section .subtitle i {
    font-size: 14px;
}


/* Heading */

.home-service-section .section-title h2 {
    margin: 0;

    color: #071d41;

    font-size: 43px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.1px;
}

.home-service-section .section-title h2 span {
    display: inline;
}


/* Description */

.home-service-section .section-title p {
    max-width: 700px;

    margin: 12px auto 0;

    color: #5d6570;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.home-service-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d7e5f7;

    border-radius: 18px;

    text-decoration: none;

    box-shadow: 0 5px 18px rgba(11, 45, 82, 0.035);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #bcd8f6;

    box-shadow: 0 18px 40px rgba(7, 48, 94, .10);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    position: relative;

    height: 205px;

    overflow: hidden;

    background: #eaf2fc;
}

.service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.055);
}


/* Image overlay */

.service-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(5, 35, 70, 0.02) 20%,
            rgba(5, 35, 70, 0.18) 100%
        );

    pointer-events: none;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    position: absolute;

    left: 17px;
    bottom: 16px;

    width: 47px;
    height: 47px;

    display: flex;

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

    border-radius: 13px;

    background: rgba(255, 255, 255, .95);

    color: #086cc1;

    font-size: 23px;

    box-shadow:
        0 7px 20px rgba(0, 31, 67, .12);

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.service-card:hover .service-icon {
    background: #086cc1;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 20px 20px 19px;
}


/* Title */

.service-card h3 {
    margin: 0 0 9px;

    color: #0a2143;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;

    transition: color .25s ease;
}

.service-card:hover h3 {
    color: #0870c9;
}


/* Description */

.service-card p {
    margin: 0;

    color: #626b77;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   LEARN MORE
========================================================= */

.service-btn {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: auto;
    padding-top: 18px;

    color: #076abe;

    font-size: 13px;

    font-weight: 600;

    line-height: 1;
}

.service-btn i {
    font-size: 15px;

    transition:
        transform .25s ease;
}

.service-card:hover .service-btn i {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.services-bottom-cta {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;

    padding: 19px 22px;

    background: #e8f2ff;

    border: 1px solid #cfe2fa;

    border-radius: 17px;
}


/* CTA Icon */

.services-cta-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 11px;

    background: #0870c9;

    color: #ffffff;

    font-size: 20px;
}


/* CTA Content */

.services-cta-content {
    flex: 1;
}

.services-cta-content strong {
    display: block;

    margin-bottom: 3px;

    color: #10284d;

    font-size: 15px;

    line-height: 1.3;
}

.services-cta-content p {
    margin: 0;

    color: #596675;

    font-size: 12px;

    line-height: 1.45;
}


/* CTA Button */

.services-cta-btn {
    display: inline-flex;

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

    gap: 7px;

    min-height: 45px;

    padding: 0 20px;

    border-radius: 9px;

    background: #07305e;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background .3s ease,
        transform .3s ease;
}

.services-cta-btn:hover {
    background: #086cc1;

    color: #ffffff;

    transform: translateY(-2px);
}

.services-cta-btn i {
    font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-service-section {
        padding: 80px 0;
    }

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

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-service-section {
        padding: 60px 0;
    }

    .home-service-section .section-title {
        margin-bottom: 32px;
    }

    .home-service-section .subtitle {
        font-size: 11px;

        letter-spacing: .5px;
    }

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

        line-height: 1.18;

        letter-spacing: -.6px;
    }

    .home-service-section .section-title h2 span {
        display: block;
    }

    .home-service-section .section-title p {
        margin-top: 11px;

        font-size: 13px;

        line-height: 1.6;
    }

    .home-service-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-image {
        height: 190px;
    }

    .service-content {
        padding: 17px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 12px;
    }

    .services-bottom-cta {
        align-items: flex-start;

        flex-wrap: wrap;

        padding: 17px;
    }

    .services-cta-content {
        min-width: calc(100% - 60px);
    }

    .services-cta-btn {
        width: 100%;

        margin-top: 4px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-service-section {
        padding: 40px 0;
    }

    .home-service-section .section-title h2 {
        font-size: 27px;
    }

    .service-image {
        height: 180px;
    }

    .service-icon {
        width: 43px;
        height: 43px;

        left: 14px;
        bottom: 14px;

        font-size: 20px;
    }

    .service-content {
        padding: 16px;
    }

    .service-btn {
        padding-top: 15px;
    }

}

/* =========================================
   DR. N.K. YADAV CLINIC
   CONTACT PAGE THEME
========================================= */

.contact-page-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
    max-width: 1320px;
}


/* =========================================
   SECTION HEADER
========================================= */

.contact-cards-section {
    margin-bottom: 80px;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;

    color: #0875c9;
    margin-bottom: 14px;
}

.sub-heading i {
    font-size: 17px;
}

.main-heading {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 750;

    color: #071d41;
    letter-spacing: -1.5px;
}

.section-description {
    max-width: 650px;
    margin: 18px auto 0;

    font-size: 16px;
    line-height: 1.7;

    color: #667085;
}


/* =========================================
   CONTACT GRID
========================================= */

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


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 250px;
    padding: 28px 25px;

    background: #ffffff;

    border: 1px solid #dce8f7;
    border-radius: 18px;

    text-decoration: none;

    box-shadow:
        0 8px 30px rgba(15, 53, 94, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-7px);

    border-color: #a9d3f5;

    box-shadow:
        0 20px 45px rgba(15, 71, 125, 0.12);
}


/* =========================================
   CARD TOP
========================================= */

.contact-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.icon-box {
    width: 52px;
    height: 52px;

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

    border-radius: 14px;

    background: #edf6ff;
    border: 1px solid #d4eaff;

    color: #0875c9;

    font-size: 23px;

    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: #0875c9;
    color: #ffffff;

    transform: scale(1.05);
}

.card-label {
    padding: 6px 10px;

    border-radius: 30px;

    background: #f0f7ff;
    color: #0875c9;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.7px;
}


/* =========================================
   CARD CONTENT
========================================= */

.contact-card h3 {
    margin: 0 0 9px;

    font-size: 20px;
    font-weight: 700;

    color: #0a2347;
}

.contact-card .value {
    margin: 0;

    font-size: 14px;
    line-height: 1.65;

    word-break: break-word;
}

.primary-link {
    color: #0875c9;
    font-weight: 600;
}

.accent-link {
    color: #0875c9;
    font-weight: 650;
}

.muted-text {
    color: #667085;
}

.text-small {
    font-size: 13px !important;
}


/* =========================================
   CARD ACTION
========================================= */

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-top: auto;
    padding-top: 20px;

    font-size: 12px;
    font-weight: 700;

    color: #0875c9;
}

.card-action i {
    font-size: 15px;

    transition: transform 0.25s ease;
}

.contact-card:hover .card-action i {
    transform: translate(3px, -3px);
}


/* =========================================
   WHATSAPP CARD
========================================= */

.contact-card-whatsapp:hover {
    border-color: #b8dfd0;
}

.contact-card-whatsapp:hover .icon-box {
    background: #128c7e;
}

.contact-card-whatsapp .icon-box {
    color: #128c7e;
    background: #effaf7;
    border-color: #d4f0e8;
}


/* =========================================
   CONSULTATION CTA
========================================= */

.consultation-cta-banner {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    border-radius: 28px;

    background:
        linear-gradient(
            115deg,
            #092e5c 0%,
            #075fa5 52%,
            #0875c9 100%
        );

    box-shadow:
        0 25px 60px rgba(5, 54, 101, 0.18);
}


/* =========================================
   CTA DECORATIONS
========================================= */

.cta-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.cta-decoration-one {
    width: 330px;
    height: 330px;

    right: -130px;
    top: -150px;

    border: 1px solid rgba(255,255,255,0.12);
}

.cta-decoration-two {
    width: 480px;
    height: 480px;

    right: -230px;
    bottom: -320px;

    border: 1px solid rgba(255,255,255,0.08);
}


/* =========================================
   CTA CONTENT
========================================= */

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 17px;
    padding: 8px 14px;

    border-radius: 50px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.13);

    color: #bde9ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.cta-eyebrow i {
    font-size: 16px;
}


.consultation-cta-banner h2 {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -1.5px;
}

.consultation-cta-banner h2 span {
    display: block;
    color: #bde9ff;
}


.consultation-cta-banner p {
    max-width: 760px;

    margin: 20px 0 30px;

    color: rgba(255,255,255,0.82);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   CTA BUTTONS
========================================= */

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-actions .btn {
    min-height: 54px;

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

    gap: 9px;

    padding: 0 24px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.btn-filled {
    background: #ffffff;
    color: #08274e;

    border: 1px solid #ffffff;
}

.btn-filled:hover {
    background: #eaf7ff;
    color: #08274e;

    transform: translateY(-2px);
}





.cta-actions .btn i {
    font-size: 18px;
}


/* =========================================
   TRUST POINTS
========================================= */

.cta-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;

    margin-top: 42px;
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.18);
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,0.88);

    font-size: 13px;
    font-weight: 600;
}

.trust-point i {
    color: #65d9ff;

    font-size: 17px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

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

    .consultation-cta-banner {
        padding: 55px 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-page-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact-cards-section {
        margin-bottom: 55px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .main-heading {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-card {
        min-height: 220px;
        padding: 23px 21px;
    }

    .consultation-cta-banner {
        padding: 42px 24px;

        border-radius: 22px;
    }

    .consultation-cta-banner h2 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .consultation-cta-banner p {
        font-size: 14px;
        line-height: 1.65;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cta-trust-points {
        flex-direction: column;
        gap: 13px;

        margin-top: 30px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .contact-page-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-heading {
        font-size: 30px;
    }

    .consultation-cta-banner {
        padding: 35px 20px;
    }

    .consultation-cta-banner h2 {
        font-size: 30px;
    }

}

/* =========================================
   SKIN CLINIC FAQ SECTION
========================================= */

.faq-section {
    position: relative;
    background: #f7f9fe;
    padding: 70px 0;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(14, 103, 190, 0.035);
    top: -180px;
    right: -150px;
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.025);
    bottom: -160px;
    left: -130px;
    pointer-events: none;
}


/* =========================================
   LAYOUT
========================================= */

.faq-layout {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.faq-sticky {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}


/* =========================================
   LABEL
========================================= */

.faq-sticky .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    color: #0769bd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.faq-sticky .section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: #0875ce;
}


/* =========================================
   HEADING
========================================= */

.faq-sticky h2 {
    margin: 0 0 12px;

    color: #071d3b;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -1.5px;
}

.faq-sticky p {
    max-width: 760px;
    margin: 0 auto;

    color: #586272;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   ACCORDION
========================================= */

.custom-faq {
    width: 100%;
}

.custom-faq .accordion-item {
    position: relative;

    margin-bottom: 16px;

    border: 1px solid #d7e4f7 !important;
    border-radius: 16px !important;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(21, 68, 116, 0.035);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.custom-faq .accordion-item:hover {
    border-color: #b9d4f5 !important;

    box-shadow:
        0 10px 28px rgba(21, 68, 116, 0.08);

    transform: translateY(-1px);
}


/* =========================================
   QUESTION BUTTON
========================================= */

.custom-faq .accordion-button {
    position: relative;

    min-height: 72px;

    padding: 20px 62px 20px 25px;

    color: #071d3b;

    background: #ffffff !important;

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

    line-height: 1.45;

    border: 0 !important;
    box-shadow: none !important;
}


/* Remove bootstrap default arrow */

.custom-faq .accordion-button::after {
    display: none;
}


/* =========================================
   CUSTOM ARROW
========================================= */

.faq-arrow {
    position: absolute;

    right: 24px;
    top: 50%;

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

    width: 30px;
    height: 30px;

    transform: translateY(-50%);

    border-radius: 50%;

    color: #0769bd;
    background: #edf5ff;

    font-size: 17px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed) .faq-arrow {
    transform: translateY(-50%) rotate(180deg);

    color: #ffffff;
    background: #0875ce;
}


/* =========================================
   OPEN QUESTION
========================================= */

.custom-faq .accordion-button:not(.collapsed) {
    color: #075fae;

    background: #ffffff !important;
}


/* =========================================
   ANSWER
========================================= */

.custom-faq .accordion-body {
    padding: 0 62px 24px 25px;

    color: #5c6572;

    font-size: 15px;
    line-height: 1.75;
}

.custom-faq .accordion-body p {
    margin-bottom: 8px;
}

.custom-faq .accordion-body p:last-child {
    margin-bottom: 0;
}


/* =========================================
   OPEN ITEM ACCENT
========================================= */

.custom-faq .accordion-item:has(
    .accordion-button:not(.collapsed)
) {
    border-color: #bcd8f8 !important;

    box-shadow:
        0 12px 32px rgba(12, 91, 163, 0.08);
}


/* =========================================
   BOOTSTRAP COLLAPSE
========================================= */

.custom-faq .accordion-collapse {
    background: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 40px 0;
    }

    .faq-sticky {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .faq-sticky h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .faq-sticky p {
        font-size: 14px;
        line-height: 1.65;
    }

    .custom-faq .accordion-item {
        margin-bottom: 12px;
        border-radius: 13px !important;
    }

    .custom-faq .accordion-button {
        min-height: 64px;

        padding: 18px 52px 18px 18px;

        font-size: 15px;
        line-height: 1.45;
    }

    .custom-faq .accordion-body {
        padding:
            0
            50px
            20px
            18px;

        font-size: 14px;
        line-height: 1.65;
    }

    .faq-arrow {
        right: 17px;

        width: 28px;
        height: 28px;

        font-size: 15px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 40px 0;
    }

    .faq-sticky h2 {
        font-size: 28px;
    }

    .faq-sticky .section-label {
        font-size: 12px;
    }

    .custom-faq .accordion-button {
        font-size: 14px;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #051532;
    color: #ffffff;
    padding: 80px 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(126, 183, 255, 0.12);
}

.site-footer .container {
    width: min(100% - 40px, 1800px);
    margin: 0 auto;
}

/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
    gap: 70px;
    padding-bottom: 65px;
}

/* =========================================================
   ABOUT
========================================================= */

.footer-about {
    max-width: 570px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 22px;
    padding: 14px 22px;
    min-height: 100px;
    transition: all 0.3s ease;
}

.footer-brand img {
    display: block;
    width: auto;
    max-width: 235px;
    max-height: 72px;
    object-fit: contain;
}

.footer-brand h2 {
    margin: 0;
    color: #087bc1;
    font-size: 26px;
    font-weight: 700;
}

.footer-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.footer-about > p {
    color: #8fa9d2;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    max-width: 570px;
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    position: relative;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
    margin: 3px 0 24px;
    letter-spacing: -0.2px;
}

.footer-links a {
    position: relative;
    width: fit-content;
    color: #8fa9d2;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 13px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

/* Link hover */

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Small animated underline */

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #7dd3fc;
    transition: width 0.25s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #8fa9d2;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-item i {
    flex: 0 0 24px;
    width: 24px;
    font-size: 23px;
    line-height: 1;
    color: #9ee8ff;
    margin-top: 2px;
}

.footer-contact-item span {
    display: block;
}

.footer-contact-item a {
    color: #8fa9d2;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

/* Divider before clinic timing */

.footer-contact-item:last-child {
    border-top: 1px solid rgba(126, 183, 255, 0.15);
    padding-top: 18px;
    margin-top: 2px;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.social-icons a {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0b315e;
    color: #a7eaff;

    border-radius: 50%;
    text-decoration: none;

    font-size: 21px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.social-icons a:hover {
    background: #ffffff;
    color: #07558f;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 100px;
    border-top: 1px solid rgba(126, 183, 255, 0.13);

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

    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #8fa9d2;
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-bottom a {
    color: #8fa9d2;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.25s ease;
}

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

/* =========================================================
   OPTIONAL BOTTOM LINKS
   Add these inside footer-bottom if required:

   <div class="footer-legal-links">
       <a href="#">Patient Safety Protocols</a>
       <a href="#">Privacy Policy</a>
       <a href="#">Terms of Care</a>
   </div>
========================================================= */

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 32px;
}

.footer-legal-links a {
    position: relative;
    color: #8fa9d2;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* =========================================================
   SUBTLE BACKGROUND EFFECT
========================================================= */

.site-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;

    width: 400px;
    height: 400px;

    background: rgba(24, 116, 190, 0.06);
    border-radius: 50%;

    filter: blur(80px);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -250px;

    width: 500px;
    height: 500px;

    background: rgba(22, 132, 190, 0.05);
    border-radius: 50%;

    filter: blur(100px);
    pointer-events: none;
}

/* Keep content above effects */

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

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 45px;
    }

    .footer-about {
        grid-column: span 3;
        max-width: 750px;
    }

    .footer-bottom {
        padding: 25px 0;
    }
}

/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 992px) {

    .site-footer {
        padding-top: 65px;
    }

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

    .footer-about {
        grid-column: span 2;
        max-width: 100%;
    }

    .footer-links h4 {
        font-size: 19px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 25px 0;
    }

    .footer-bottom > div,
    .footer-legal-links {
        justify-content: flex-start;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .site-footer {
        padding-top: 50px;
    }

    .site-footer .container {
        width: min(100% - 30px, 600px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 45px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-brand {
        margin-bottom: 24px;
        padding: 12px 18px;
        min-height: 85px;
        border-radius: 18px;
    }

    .footer-brand img {
        max-width: 205px;
        max-height: 62px;
    }

    .footer-about > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-links h4 {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .footer-links a {
        font-size: 15px;
        margin-bottom: 11px;
    }

    .footer-contact {
        margin-top: 22px;
    }

    .footer-contact-item {
        font-size: 15px;
        margin-bottom: 17px;
    }

    .social-icons {
        margin-top: 25px;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .footer-bottom {
        min-height: auto;
        padding: 22px 0 28px;
        gap: 15px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-legal-links {
        gap: 12px 20px;
    }

    .footer-legal-links a {
        font-size: 13px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-brand {
        width: fit-content;
    }

    .footer-brand img {
        max-width: 180px;
    }

    .footer-contact-item {
        gap: 12px;
    }

    .footer-contact-item i {
        flex-basis: 21px;
        width: 21px;
        font-size: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
    }
}




/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-choose-section {
    position: relative;

    padding: 70px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-choose-section .container {
    width: min(100% - 40px, 1450px);

    margin: 0 auto;
}


/* =========================================================
   MAIN 50 / 50 LAYOUT
========================================================= */

.why-choose-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 550px;

    align-items: center;
    
}


/* =========================================================
   LEFT SIDE
========================================================= */

.why-choose-content {
    padding: 10px 55px 10px 0;
}


/* =========================================================
   HEADING
========================================================= */

.why-choose-heading {
    margin-bottom: 38px;
}


.why-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

    color: #1677d2;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


.why-eyebrow i {
    font-size: 15px;
}


.why-choose-heading h2 {
    margin: 0 0 12px;

    color: #073b73;

    font-size: clamp(34px, 3vw, 46px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;
}


.why-choose-heading h2 span {
    color: #147ed1;
}


.why-choose-heading p {
    max-width: 620px;

    margin: 0;

    color: #7893b4;

    font-size: 17px;

    line-height: 1.6;
}


/* =========================================================
   BENEFITS GRID
========================================================= */

.why-benefits {
    display: grid;

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

}


/* =========================================================
   BENEFIT CARD
========================================================= */

.why-benefit-card {
    position: relative;

    min-height: 180px;

    padding: 0 25px 25px 0;

    margin-bottom: 30px;
}


/* Vertical separator */

.why-benefit-card:not(:nth-child(3n + 1)) {
    padding-left: 30px;

    border-left: 1px solid #e2edf7;
}


/* =========================================================
   ICON
========================================================= */

.why-icon {
    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background: #edf8ff;

    color: #1682e5;

    font-size: 23px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.why-benefit-card:hover .why-icon {
    background: #1682e5;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   CARD TITLE
========================================================= */

.why-benefit-card h3 {
    margin: 0 0 7px;

    color: #164d83;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.why-benefit-card p {
    max-width: 185px;

    margin: 0 0 12px;

    color: #8ca6c3;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   LEARN MORE
========================================================= */

.why-benefit-card a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #1682e5;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: gap 0.25s ease;
}


.why-benefit-card a i {
    font-size: 11px;
}


.why-benefit-card a:hover {
    gap: 11px;

    color: #075da9;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.why-choose-image {
    position: relative;
    min-height:650px;
    overflow: hidden;

}


/* =========================================================
   IMAGE
========================================================= */

.why-choose-image > img {
    position: absolute;

   border-radius: 30px !important;

    width: 100%;


    object-position: center;

 
}

/* =========================================================
   BLUE DECORATIVE SHAPE
========================================================= */

.why-image-shape {
    position: absolute;

    width: 420px;

    height: 420px;

    left: -100px;

    top: 60px;

    background: rgba(71, 178, 242, 0.18);

    border-radius: 50%;

    z-index: 3;

    pointer-events: none;

    filter: blur(1px);
}


/* =========================================================
   IMAGE MESSAGE
========================================================= */

.why-image-message {
    position: absolute;

    z-index: 5;

    left: 55px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    color: #1682e5;

    pointer-events: none;
}


.why-image-message span,
.why-image-message strong {
    font-family: "Brush Script MT", "Segoe Script", cursive;

    font-size: clamp(34px, 3vw, 52px);

    line-height: 1.05;

    font-weight: 500;

    transform: rotate(-4deg);
}


.why-image-message strong {
    margin-left: 30px;

    margin-top: 7px;
}


.message-line {
    position: relative;

    width: 145px;

    height: 3px;

    margin-top: 12px;

    margin-left: 45px;

    background: #1682e5;

    border-radius: 100%;

    transform: rotate(-7deg);
}


.message-line::after {
    content: "";

    position: absolute;

    right: -8px;

    bottom: -3px;

    width: 22px;

    height: 3px;

    background: #1682e5;

    transform: rotate(-8deg);
}


/* =========================================================
   SUBTLE OVERLAY
========================================================= */

.why-choose-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 4;

    background:
        linear-gradient(
            90deg,
            rgba(235, 249, 255, 0.95) 0%,
            rgba(235, 249, 255, 0.55) 18%,
            rgba(235, 249, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%
        );

    pointer-events: none;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .why-choose-content {
        padding-right: 35px;
    }


    .why-benefit-card {
        padding-right: 18px;
    }


    .why-benefit-card:not(:nth-child(3n + 1)) {
        padding-left: 20px;
    }


    .why-benefit-card p {
        max-width: 160px;
    }


    .why-image-message {
        left: 35px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 75px 0;
    }


    .why-choose-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .why-choose-content {
        padding-right: 0;
    }


    .why-choose-image {
        min-height: 520px;

        border-radius: 30px;
    }


    .why-benefit-card p {
        max-width: 200px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 40px 0;
    }


    .why-choose-section .container {
        width: min(100% - 30px, 600px);
    }


    .why-choose-heading {
        margin-bottom: 30px;
    }


    .why-choose-heading h2 {
        font-size: 34px;

        letter-spacing: -0.5px;
    }


    .why-choose-heading p {
        font-size: 15px;
    }


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


    .why-benefit-card {
        min-height: 185px;

        padding: 0 15px 25px 0;
    }


    .why-benefit-card:not(:nth-child(3n + 1)) {
        padding-left: 15px;

        border-left: none;
    }


    /* Vertical divider for second column */

    .why-benefit-card:nth-child(even) {
        padding-left: 20px;

        border-left: 1px solid #e2edf7;
    }


    .why-benefit-card h3 {
        font-size: 16px;
    }


    .why-benefit-card p {
        max-width: 170px;

        font-size: 13px;
    }


    .why-icon {
        width: 50px;

        height: 50px;

        font-size: 20px;
    }


    .why-choose-image {
        min-height: 420px;

        border-radius: 25px;
    }


    .why-image-message {
        left: 25px;
    }


    .why-image-message span,
    .why-image-message strong {
        font-size: 36px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

     .why-choose-layout{
        gap: 0px;
     }
    .why-benefits {
        grid-template-columns: 1fr;
    }


    .why-benefit-card,
    .why-benefit-card:nth-child(even),
    .why-benefit-card:not(:nth-child(3n + 1)) {
        min-height: auto;

        padding: 20px 0;

        border-left: none;

        border-bottom: 1px solid #e7eff6;
    }


    .why-benefit-card:first-child {
        padding-top: 0;
    }


    .why-benefit-card:last-child {
        border-bottom: none;
    }


    .why-benefit-card p {
        max-width: 100%;
    }


    .why-choose-image {
        min-height: 350px;
    }


    .why-image-message {
        left: 20px;
    }


    .why-image-message span,
    .why-image-message strong {
        font-size: 30px;
    }


    .message-line {
        width: 110px;

        margin-left: 30px;
    }
}

/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    position: relative;
    padding: 70px 0;
    background: #f7fbff;
    overflow: hidden;
}

.gallery-section .container {
    width: min(100% - 40px, 1450px);
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLE
========================================================= */

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

.gallery-section .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #1682e5;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.gallery-section .subtitle i {
    font-size: 15px;
}

.gallery-section .section-title h2 {
    margin: 0;

    color: #073b73;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1px;
}

.gallery-section .section-title h2 span {
    color: #1682e5;
}

.gallery-section .section-title p {
    margin: 15px auto 0;

    max-width: 650px;

    color: #7e99b8;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY WRAPPER
========================================================= */

.hospitalGallery {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 10px 0 25px;

    /* Fade edges */

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 4%,
        #000 96%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 4%,
        #000 96%,
        transparent 100%
    );
}


/* =========================================================
   GALLERY TRACK
========================================================= */

.gallery-track {
    display: flex;
    align-items: stretch;

    width: max-content;

    gap: 22px;

    animation: galleryScroll 35s linear infinite;

    will-change: transform;
}


/* =========================================================
   PAUSE ON HOVER
========================================================= */

.hospitalGallery:hover .gallery-track {
    animation-play-state: paused;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-card {
    flex: 0 0 auto;

    width: 390px;
    border-radius: 24px;

    overflow: hidden;


    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);

    
}


/* =========================================================
   GALLERY LINK
========================================================= */

.gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    text-decoration: none;
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

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


/* =========================================================
   OVERLAY
========================================================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(2, 27, 58, .88) 0%,
            rgba(2, 27, 58, .45) 28%,
            rgba(2, 27, 58, 0) 65%
        );

    opacity: 0;

    transition: opacity .35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}


/* =========================================================
   TITLE TAG
========================================================= */

.gallery-title-tag {
    display: inline-flex;

    align-items: center;

    min-height: 40px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .95);

    color: #0b4b82;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .12);

    transform: translateY(15px);

    transition:
        transform .35s ease;
}

.gallery-card:hover .gallery-title-tag {
    transform: translateY(0);
}


/* =========================================================
   ALWAYS VISIBLE TITLE ON TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .gallery-overlay {
        opacity: 1;

        background:
            linear-gradient(
                to top,
                rgba(2, 27, 58, .80) 0%,
                rgba(2, 27, 58, .15) 40%,
                transparent 65%
            );
    }

    .gallery-title-tag {
        transform: translateY(0);
    }
}


/* =========================================================
   INFINITE ANIMATION
========================================================= */

@keyframes galleryScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(
            calc(-50% - 11px)
        );
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gallery-track {
        animation: none;
    }

    .gallery-item img {
        transition: none;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gallery-section {
        padding: 75px 0;
    }

    .gallery-section .section-title {
        margin-bottom: 40px;
    }

    .gallery-card {
        width: 285px;
        height: 350px;
    }

    .gallery-track {
        gap: 18px;

        animation-duration: 30s;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gallery-section {
        padding: 40px 0px 20px !important;
    }

    .gallery-section .container {
        width: min(100% - 30px, 600px);
    }

    .gallery-section .section-title {
        margin-bottom: 30px;
    }

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

    .gallery-section .section-title p {
        font-size: 14px;
    }

    .hospitalGallery {
        padding: 5px 0 20px;

        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 5%,
            #000 95%,
            transparent 100%
        );

        mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 5%,
            #000 95%,
            transparent 100%
        );
    }

    .gallery-card {
        width: 250px;
        height: 320px;

        border-radius: 20px;
    }

    .gallery-track {
        gap: 15px;

        animation-duration: 27s;
    }

    .gallery-overlay {
        padding: 18px;
    }

    .gallery-title-tag {
        min-height: 36px;

        padding: 7px 13px;

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gallery-card {
        width: 225px;
        height: 290px;

        border-radius: 18px;
    }

    .gallery-track {
        gap: 13px;

        animation-duration: 24s;
    }

    .gallery-section .subtitle {
        font-size: 13px;
    }

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

}

/* =========================================================
   PATIENT REVIEWS
========================================================= */

.home-review-section {
    position: relative;
    padding: 70px 0px;
    background: #f7faff;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.home-review-wrap {
    width: min(100% - 40px, 1450px);
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.home-review-section .section-title {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.home-review-section .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #1677d2;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
}

.home-review-section .subtitle i {
    font-size: 15px;
}

.home-review-section .section-title h2 {
    margin: 0;

    color: #073b73;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1px;
}

.home-review-section .section-title h2 span {
    color: #1682e5;
}

.home-review-section .section-title p {
    max-width: 680px;

    margin: 16px auto 0;

    color: #7d96b4;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CAROUSEL
========================================================= */

.home-review-carousel {
    position: relative;

    padding: 8px 5px 65px;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.home-review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 335px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5edf5;

    border-radius: 18px;

    box-shadow:
        0 2px 5px rgba(20, 50, 80, .03),
        0 10px 30px rgba(20, 70, 110, .07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.home-review-card:hover {
    transform: translateY(-6px);

    border-color: #d5e7f7;

    box-shadow:
        0 5px 12px rgba(20, 50, 80, .05),
        0 18px 40px rgba(20, 70, 110, .11);
}


/* =========================================================
   GOOGLE VERIFIED STYLE TOP
========================================================= */

.home-review-card::before {
    content: "Google Review";

    position: absolute;

    top: 25px;
    right: 25px;

    color: #7c92a9;

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

    letter-spacing: .2px;
}


/* =========================================================
   QUOTE ICON
========================================================= */

.home-review-quote {
    display: flex;

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

    width: 45px;
    height: 45px;

    margin-bottom: 22px;

    border-radius: 12px;

    background: #edf7ff;

    color: #1682e5;

    font-size: 22px;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.home-review-card .blockquote {
    margin: 0 0 22px;

    color: #405d7c;

    font-size: 16px;

    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   STARS
========================================================= */

.home-review-stars {
    display: flex;

    align-items: center;

    gap: 3px;

    margin-bottom: 24px;
}

.home-review-stars i {
    color: #d6dee7;

    font-size: 18px;

    transition: color .2s ease;
}

.home-review-stars i.is-active {
    color: #fbbc04;
}


/* =========================================================
   AUTHOR
========================================================= */

.home-review-author {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid #edf1f5;
}


/* =========================================================
   AUTHOR IMAGE
========================================================= */

.home-review-author img {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #eef6fc;

    box-shadow:
        0 3px 10px rgba(30, 70, 110, .08);
}


/* =========================================================
   AUTHOR DETAILS
========================================================= */

.home-review-author > div {
    display: flex;

    flex-direction: column;

    min-width: 0;
}

.home-review-author strong {
    color: #173f69;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.home-review-author span {
    margin-top: 3px;

    color: #8ca0b5;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   GOOGLE G STYLE
========================================================= */

.home-review-card .home-review-author::after {
    content: "G";

    display: flex;

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

    width: 30px;
    height: 30px;

    margin-left: auto;

    border-radius: 50%;

    color: #4285f4;

    background: #f5f9ff;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   OWL ITEM
========================================================= */

.home-review-carousel .owl-stage {
    display: flex;
}

.home-review-carousel .owl-item {
    display: flex;
    padding: 5px;
}

.home-review-carousel .owl-item .home-review-card {
    width: 100%;
}


/* =========================================================
   OWL NAVIGATION
========================================================= */

.home-review-carousel .owl-nav {
    position: absolute;

    left: 50%;

    bottom: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    transform: translateX(-50%);

    margin: 0;
}

.home-review-carousel .owl-nav button.owl-prev,
.home-review-carousel .owl-nav button.owl-next {
    display: flex;

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

    width: 44px;
    height: 44px;

    margin: 0;

    border: 1px solid #dce8f3;

    border-radius: 50%;

    background: #ffffff !important;

    color: #176da9 !important;

    font-size: 18px !important;

    box-shadow:
        0 5px 15px rgba(20, 70, 110, .07);

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

.home-review-carousel .owl-nav button:hover {
    background: #1682e5 !important;

    border-color: #1682e5;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   OWL DOTS
========================================================= */

.home-review-carousel .owl-dots {
    position: absolute;

    bottom: 14px;

    left: 50%;

    display: flex;

    align-items: center;

    gap: 5px;

    transform: translateX(-50%);
}

.home-review-carousel .owl-dots button.owl-dot {
    margin: 0;

    padding: 0 !important;
}

.home-review-carousel .owl-dots button.owl-dot span {
    display: block;

    width: 7px;
    height: 7px;

    margin: 0;

    border-radius: 50%;

    background: #cbd9e7;

    transition:
        width .25s ease,
        background .25s ease;
}

.home-review-carousel .owl-dots button.owl-dot.active span {
    width: 22px;

    border-radius: 20px;

    background: #1682e5;
}


/* =========================================================
   REMOVE DEFAULT OWL OUTLINE
========================================================= */

.home-review-carousel .owl-nav button:focus,
.home-review-carousel .owl-dots button:focus {
    outline: none;
}


/* =========================================================
   SUBTLE BACKGROUND DECORATION
========================================================= */

.home-review-section::before {
    content: "";

    position: absolute;

    top: -180px;
    left: -180px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(22, 130, 229, .035);

    filter: blur(50px);

    pointer-events: none;
}

.home-review-section::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(71, 185, 242, .035);

    filter: blur(60px);

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .home-review-section {
        padding: 75px 0 90px;
    }

    .home-review-section .section-title {
        margin-bottom: 40px;
    }

    .home-review-card {
        min-height: 325px;

        padding: 27px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-review-section {
        padding: 40px 0 40px;
    }

    .home-review-wrap {
        width: min(100% - 30px, 600px);
    }

    .home-review-section .section-title {
        margin-bottom: 30px;
    }

    .home-review-section .section-title h2 {
        font-size: 33px;
    }

    .home-review-section .section-title p {
        font-size: 14px;

        line-height: 1.65;
    }

    .home-review-carousel {
        padding-bottom: 60px;
    }

    .home-review-card {
        min-height: 315px;

        padding: 25px;

        border-radius: 16px;
    }

    .home-review-card::before {
        top: 22px;
        right: 22px;

        font-size: 10px;
    }

    .home-review-card .blockquote {
        font-size: 15px;

        line-height: 1.7;
    }

    .home-review-stars i {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-review-card {
        min-height: 300px;

        padding: 22px;
    }

    .home-review-quote {
        width: 42px;
        height: 42px;

        margin-bottom: 18px;

        font-size: 20px;
    }

    .home-review-card .blockquote {
        font-size: 14px;

        line-height: 1.65;
    }

    .home-review-author img {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .home-review-author strong {
        font-size: 14px;
    }

    .home-review-author::after {
        width: 27px !important;
        height: 27px !important;

        font-size: 15px !important;
    }

    .home-review-carousel .owl-nav button.owl-prev,
    .home-review-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   CLINIC BRANCHES SECTION
========================================================= */

.gmp-clinic-section {
    position: relative;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.gmp-clinic-wrap {
    width: min(100% - 40px, 1400px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.gmp-clinic-head {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.gmp-clinic-head::before {
    content: "CONVENIENT ACCESSIBILITY";

    display: block;

    margin-bottom: 14px;

    color: #0876c9;

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

    letter-spacing: .5px;
}

.gmp-clinic-head h2 {
    margin: 0;

    color: #071d40;

    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.gmp-clinic-head p {
    max-width: 850px;

    margin: 14px auto 0;

    color: #5e6570;

    font-size: 17px;
    line-height: 1.65;
}

.gmp-clinic-head span {
    display: none;
}


/* =========================================================
   CAROUSEL
========================================================= */

.gmp-clinic-carousel {
    position: relative;

    padding: 5px 5px 25px;
}

.gmp-clinic-carousel .owl-stage {
    display: flex;
}

.gmp-clinic-carousel .owl-item {
    display: flex;
}

.gmp-clinic-carousel .owl-item > .gmp-clinic-card {
    width: 100%;
}


/* =========================================================
   CLINIC CARD
========================================================= */

.gmp-clinic-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 440px;

    padding: 36px;

    background: #f8faff;

    border: 1px solid #dce8f7;

    border-radius: 25px;

    box-shadow:
        0 8px 25px rgba(22, 73, 125, .05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.gmp-clinic-card:hover {
    transform: translateY(-5px);

    border-color: #cbdff3;

    box-shadow:
        0 18px 45px rgba(22, 73, 125, .10);
}


/* =========================================================
   HIDE IMAGE
   Screenshot design is content-first
========================================================= */

.gmp-clinic-media {
    display: none;
}


/* =========================================================
   CONTENT
========================================================= */

.gmp-clinic-content {
    display: flex;
    flex-direction: column;

    height: 100%;
}


/* =========================================================
   CLINIC TITLE
========================================================= */

.gmp-clinic-content h3 {
    margin: 0 0 10px;

    color: #071d40;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -.5px;
}


/* =========================================================
   GOOGLE RATING
========================================================= */

.gmp-clinic-topline {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 25px;
}

.gmp-google-mark {
    display: flex;

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

    width: 27px;
    height: 27px;

    margin-right: 3px;

    border-radius: 50%;

    background: #ffffff;

    color: #4285f4;

    font-family: Arial, sans-serif;

    font-size: 17px;
    font-weight: 700;

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

.gmp-stars {
    display: flex;

    align-items: center;

    gap: 2px;
}

.gmp-stars i {
    color: #d8e0e9;

    font-size: 16px;
}

.gmp-stars i.is-active {
    color: #fbbc04;
}

.gmp-clinic-topline strong {
    color: #243b55;

    font-size: 14px;

    font-weight: 700;
}

.gmp-clinic-topline > span:last-child {
    color: #718096;

    font-size: 13px;
}


/* =========================================================
   ADDRESS
========================================================= */

.gmp-address {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin: 0 0 18px;

    color: #5e6570;

    font-size: 15px;

    line-height: 1.55;
}

.gmp-address > i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #0876c9;

    font-size: 20px;
}

.gmp-address span {
    display: block;
}

.gmp-address strong {
    color: #394b61;

    font-weight: 700;
}


/* =========================================================
   BADGES
========================================================= */

.gmp-clinic-badges {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 18px;
}

.gmp-clinic-badges span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    min-height: 31px;

    padding: 5px 11px;

    border-radius: 50px;

    background: #eaf4ff;

    color: #0870bd;

    font-size: 12px;

    font-weight: 600;
}

.gmp-clinic-badges span i {
    font-size: 14px;
}

.gmp-clinic-badges .is-open {
    background: #edf9f2;

    color: #22834b;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.gmp-description {
    margin: 0 0 20px;

    color: #697586;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   TREATMENTS
========================================================= */

.gmp-treatment-title {
    display: block;

    margin-bottom: 10px;

    color: #1d3553;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .4px;
}

.gmp-treatment-list {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 25px;
}

.gmp-treatment-list span {
    display: inline-flex;

    align-items: center;

    padding: 6px 11px;

    border: 1px solid #dce7f2;

    border-radius: 50px;

    background: #ffffff;

    color: #53657a;

    font-size: 12px;

    line-height: 1.3;
}


/* =========================================================
   ACTIONS
========================================================= */

.gmp-clinic-actions {
    display: flex;

    gap: 12px;

    margin-top: auto;

    padding-top: 22px;

    border-top: 1px solid #dce7f3;
}

.gmp-clinic-actions a {
    display: inline-flex;

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

    gap: 8px;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 13px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


/* Primary */

.gmp-primary-action {
    flex: 1;

    background: #092f5b;

    border: 1px solid #092f5b;

    color: #ffffff;
}

.gmp-primary-action:hover {
    background: #06477f;

    border-color: #06477f;

    color: #ffffff;

    transform: translateY(-2px);
}

.gmp-primary-action i {
    font-size: 18px;
}


/* Secondary */

.gmp-secondary-action {
    min-width: 145px;

    background: #ffffff;

    border: 1px solid #d6e4f3;

    color: #24384f;
}

.gmp-secondary-action:hover {
    background: #edf6ff;

    border-color: #bcd8f0;

    color: #0876c9;

    transform: translateY(-2px);
}


/* =========================================================
   OWL NAVIGATION
========================================================= */

.gmp-clinic-carousel .owl-nav {
    position: absolute;

    bottom: 0;
    left: 50%;

    display: flex;

    gap: 10px;

    margin: 0;

    transform: translateX(-50%);
}

.gmp-clinic-carousel .owl-nav button.owl-prev,
.gmp-clinic-carousel .owl-nav button.owl-next {
    display: flex;

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

    width: 44px;
    height: 44px;

    margin: 0;

    border: 1px solid #d7e4f1;

    border-radius: 50%;

    background: #ffffff !important;

    color: #17456e !important;

    font-size: 18px !important;

    box-shadow:
        0 4px 14px rgba(22, 73, 125, .08);

    transition: all .25s ease;
}

.gmp-clinic-carousel .owl-nav button:hover {
    background: #092f5b !important;

    border-color: #092f5b;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   OWL DOTS
========================================================= */

.gmp-clinic-carousel .owl-dots {
    position: absolute;

    bottom: 15px;
    left: 50%;

    display: flex;

    align-items: center;

    gap: 5px;

    transform: translateX(-50%);
}

.gmp-clinic-carousel .owl-dots button.owl-dot {
    margin: 0;

    padding: 0 !important;
}

.gmp-clinic-carousel .owl-dots button.owl-dot span {
    display: block;

    width: 7px;
    height: 7px;

    margin: 0;

    border-radius: 50%;

    background: #cbd9e8;

    transition: all .25s ease;
}

.gmp-clinic-carousel .owl-dots button.owl-dot.active span {
    width: 22px;

    border-radius: 20px;

    background: #0876c9;
}


/* =========================================================
   FOCUS
========================================================= */

.gmp-clinic-carousel button:focus,
.gmp-clinic-actions a:focus {
    outline: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) {

    .gmp-clinic-carousel .owl-item {
        padding: 5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gmp-clinic-section {
        padding: 40px 0 40px;
    }

    .gmp-clinic-wrap {
        width: min(100% - 30px, 600px);
    }

    .gmp-clinic-head {
        margin-bottom: 35px;
    }

    .gmp-clinic-head::before {
        font-size: 12px;
    }

    .gmp-clinic-head h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .gmp-clinic-head p {
        font-size: 14px;
    }

    .gmp-clinic-card {
        min-height: 430px;

        padding: 25px;

        border-radius: 20px;
    }

    .gmp-clinic-content h3 {
        font-size: 23px;
    }

    .gmp-address {
        font-size: 14px;
    }

    .gmp-clinic-actions {
        gap: 8px;
    }

    .gmp-clinic-actions a {
        min-height: 48px;

        padding: 0 14px;

        font-size: 13px;
    }

    .gmp-secondary-action {
        min-width: 105px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gmp-clinic-card {
        padding: 22px;

        border-radius: 18px;
    }

    .gmp-clinic-content h3 {
        font-size: 21px;
    }

    .gmp-clinic-topline {
        margin-bottom: 20px;
    }

    .gmp-address {
        font-size: 13px;
    }

    .gmp-clinic-badges span {
        font-size: 11px;
    }

    .gmp-treatment-list span {
        font-size: 11px;

        padding: 5px 9px;
    }

    .gmp-clinic-actions a {
        min-height: 46px;

        padding: 0 10px;

        font-size: 12px;
    }

    .gmp-primary-action span,
    .gmp-secondary-action span {
        display: inline;
    }

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    position: relative;
    padding: 100px 0 110px;
    background: #ffffff;
    overflow: hidden;
}

.contact-page::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(22, 119, 190, 0.045);
    top: -250px;
    right: -180px;
    pointer-events: none;
}

.contact-page .container {
    position: relative;
    z-index: 1;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.contact-page-head {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-page-head .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #1677be;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-page-head .section-label i {
    font-size: 17px;
}

.contact-page-head h1 {
    margin: 0;
    color: #09254a;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.contact-page-head h1 span {
    display: block;
    color: #1677be;
}

.contact-page-head p {
    max-width: 700px;
    margin: 22px auto 0;
    color: #66758a;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT INFO CARDS
========================================================= */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 125px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e4edf5;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(9, 37, 74, 0.055);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1677be;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #cfe4f4;
    box-shadow: 0 18px 45px rgba(9, 37, 74, 0.09);
}

.contact-info-card:hover::before {
    transform: scaleY(1);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf7fd;
    color: #1677be;
    border-radius: 14px;
    font-size: 23px;
}

.contact-info-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-content span {
    color: #718096;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.contact-info-content strong {
    color: #102b50;
    font-size: 15px;
    line-height: 1.45;
    word-break: break-word;
}

.contact-info-content small {
    color: #8995a5;
    font-size: 12px;
}

.contact-card-arrow {
    margin-left: auto;
    color: #9aabba;
    font-size: 19px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-arrow {
    color: #1677be;
    transform: translate(3px, -3px);
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.contact-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.contact-location-card,
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e3ebf3;
    border-radius: 24px;
    box-shadow: 0 14px 50px rgba(9, 37, 74, 0.06);
}

.contact-location-card {
    padding: 30px;
}

.contact-form-head {
    margin-bottom: 24px;
}

.contact-form-head .section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1677be;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.contact-form-head .section-label i {
    font-size: 16px;
}

.contact-form-head h2 {
    margin: 0;
    color: #09254a;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-form-head h2 span {
    color: #1677be;
}

.contact-form-head p {
    margin: 12px 0 0;
    color: #6d7c8e;
    font-size: 14px;
    line-height: 1.7;
}


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

.contact-map-wrap {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 17px;
    border: 1px solid #e3ebf3;
    background: #f4f8fb;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
   LOCATION FOOTER
========================================================= */

.clinic-location-footer {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 18px;
    padding: 16px 17px;
    border-radius: 14px;
    background: #f5f9fc;
}

.clinic-location-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e4f2fb;
    color: #1677be;
    font-size: 19px;
}

.clinic-location-footer div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.clinic-location-footer strong {
    color: #193456;
    font-size: 13px;
}

.clinic-location-footer span {
    color: #748296;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    padding: 35px;
}

.contact-form-card .contact-form-head {
    margin-bottom: 28px;
}


/* =========================================================
   ALERTS
========================================================= */

.contact-alert,
.contact-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    margin-bottom: 20px;
    border-radius: 11px;
    font-size: 13px;
    line-height: 1.5;
}

.contact-alert {
    color: #176a45;
    background: #ecf9f2;
    border: 1px solid #ccebdc;
}

.contact-alert i {
    font-size: 18px;
}

.contact-error {
    color: #a62d36;
    background: #fff2f3;
    border: 1px solid #f3d2d5;
}

.contact-error i {
    font-size: 18px;
}


/* =========================================================
   FORM GRID
========================================================= */

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-email-field,
.contact-message-field {
    grid-column: 1 / -1;
}

.contact-form-grid label > span {
    color: #263e5d;
    font-size: 13px;
    font-weight: 650;
}

.contact-form-grid label em {
    color: #e05252;
    font-style: normal;
}

.input-wrap {
    position: relative;
}

.input-wrap > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8da0b3;
    font-size: 18px;
    pointer-events: none;
    transition: color 0.25s ease;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    border: 1px solid #dce6ef;
    outline: none;
    background: #fafdff;
    color: #193456;
    border-radius: 11px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.25s ease;
}

.input-wrap input {
    height: 53px;
    padding: 0 15px 0 45px;
}

.input-wrap textarea {
    min-height: 125px;
    padding: 15px 15px 15px 45px;
    resize: vertical;
    line-height: 1.6;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #a3afbc;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    background: #ffffff;
    border-color: #1677be;
    box-shadow: 0 0 0 4px rgba(22, 119, 190, 0.08);
}

.input-wrap:focus-within > i {
    color: #1677be;
}

.textarea-wrap > i {
    top: 19px;
    transform: none;
}

.contact-form-grid label small {
    color: #d64a53;
    font-size: 11px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    width: 100%;
    min-height: 56px;
    margin-top: 25px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 0;
    border-radius: 12px;
    background: #092e59;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 650;
    transition: all 0.3s ease;
}

.contact-submit-btn span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact-submit-btn span i {
    font-size: 19px;
}

.contact-submit-btn > i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover {
    background: #1677be;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(22, 119, 190, 0.2);
}

.contact-submit-btn:hover > i {
    transform: translateX(4px);
}


/* =========================================================
   FORM PRIVACY NOTE
========================================================= */

.contact-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    color: #8997a7;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.contact-form-note i {
    color: #1677be;
    font-size: 16px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.contact-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 28px;
    padding: 7px;
    background: #e7eef5;
    border: 1px solid #e0e9f1;
    border-radius: 18px;
    overflow: hidden;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    background: #f8fbfd;
}

.contact-trust-item:first-child {
    border-radius: 12px 0 0 12px;
}

.contact-trust-item:last-child {
    border-radius: 0 12px 12px 0;
}

.contact-trust-item > div {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e8f4fb;
    color: #1677be;
    font-size: 19px;
}

.contact-trust-item span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #7a8999;
    font-size: 11px;
    line-height: 1.4;
}

.contact-trust-item strong {
    color: #193456;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-location-card {
        order: 2;
    }

    .contact-form-card {
        order: 1;
    }

}


@media (max-width: 850px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 105px;
    }

    .contact-trust-strip {
        grid-template-columns: 1fr;
    }

    .contact-trust-item:first-child,
    .contact-trust-item:last-child {
        border-radius: 0;
    }

}


@media (max-width: 600px) {

    .contact-page {
        padding: 65px 0 75px;
    }

    .contact-page-head {
        margin-bottom: 35px;
        padding: 0 8px;
    }

    .contact-page-head h1 {
        font-size: 35px;
        letter-spacing: -0.8px;
    }

    .contact-page-head p {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-info-card {
        padding: 18px;
        border-radius: 15px;
    }

    .contact-info-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .contact-info-content strong {
        font-size: 13px;
    }

    .contact-location-card,
    .contact-form-card {
        padding: 21px;
        border-radius: 18px;
    }

    .contact-form-head h2 {
        font-size: 25px;
    }

    .contact-map-wrap {
        height: 320px;
        border-radius: 13px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-email-field,
    .contact-message-field {
        grid-column: auto;
    }

    .contact-submit-btn {
        min-height: 53px;
        font-size: 13px;
    }

    .clinic-location-footer {
        padding: 13px;
    }

    .contact-trust-item {
        padding: 14px;
    }

}


@media (max-width: 400px) {

    .contact-page-head h1 {
        font-size: 31px;
    }

    .contact-info-content small {
        display: none;
    }

    .contact-card-arrow {
        display: none;
    }

    .contact-location-card,
    .contact-form-card {
        padding: 17px;
    }

}

/* =========================================
   INNER BREADCRUMB
========================================= */

.inner-breadcrumb {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    isolation: isolate;
}

/* =========================================
   DARK MEDICAL OVERLAY
========================================= */

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(10, 35, 67, 0.96) 0%,
            rgba(15, 54, 98, 0.88) 45%,
            rgba(20, 74, 126, 0.50) 100%
        );
}

/* =========================================
   BACKGROUND PATTERN
========================================= */

.breadcrumb-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;

    background-image:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.10) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 75% 65%,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 32px 32px, 42px 42px;
    opacity: 0.45;
}

/* Decorative circles */

.inner-breadcrumb::before,
.inner-breadcrumb::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.inner-breadcrumb::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -160px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 0 0 50px rgba(255, 255, 255, 0.025),
        0 0 0 100px rgba(255, 255, 255, 0.02);
}

.inner-breadcrumb::after {
    width: 260px;
    height: 260px;
    right: 18%;
    bottom: -170px;

    background: rgba(76, 168, 255, 0.10);
    filter: blur(5px);
}

/* =========================================
   CONTAINER
========================================= */

.inner-breadcrumb .container {
    position: relative;
    width: 100%;
}

/* =========================================
   CONTENT
========================================= */

.breadcrumb-content {
    max-width: 820px;
    padding: 65px 0;
}

/* =========================================
   SUBTITLE
========================================= */

.breadcrumb-subtitle {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 9px 18px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;

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

    color: #9fd5ff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* =========================================
   PAGE TITLE
========================================= */

.breadcrumb-content h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;

    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

/* =========================================
   BREADCRUMB NAVIGATION
========================================= */

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    background: rgba(5, 25, 48, 0.30);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.breadcrumb-nav a,
.breadcrumb-nav span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-nav a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #8fd0ff;
}

.breadcrumb-nav a i {
    font-size: 17px;
}

.breadcrumb-nav .divider {
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
}

.breadcrumb-nav span {
    color: #9fc5e8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .inner-breadcrumb {
        min-height: 340px;
    }

    .breadcrumb-content {
        padding: 55px 0;
    }

    .breadcrumb-content h1 {
        font-size: 48px;
    }
}


@media (max-width: 767px) {

    .inner-breadcrumb {
        min-height: 300px;
        background-position: center;
    }

    .breadcrumb-content {
        padding: 45px 0;
    }

    .breadcrumb-subtitle {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .breadcrumb-content h1 {
        margin-bottom: 18px;
        font-size: 38px;
        line-height: 1.15;
    }

    .breadcrumb-nav {
        gap: 8px;
        padding: 10px 13px;
        max-width: 100%;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav span {
        font-size: 12px;
    }

    .inner-breadcrumb::before {
        width: 280px;
        height: 280px;
        right: -130px;
        top: -100px;
    }
}


@media (max-width: 480px) {

    .inner-breadcrumb {
        min-height: 270px;
    }

    .breadcrumb-content h1 {
        font-size: 32px;
        letter-spacing: -0.7px;
    }

    .breadcrumb-subtitle {
        margin-bottom: 14px;
    }

    .breadcrumb-nav {
        width: fit-content;
    }

    .breadcrumb-nav span {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
/* =========================================================
   TEAM PAGE
========================================================= */

.team-page {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.team-page-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}


/* =========================================================
   HEADER
========================================================= */

.team-page-head {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    border-radius: 50px;
    background: #eef7ff;
    color: #0878d1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 18px;
}

.team-page-head h1 {
    margin: 0;
    color: #09264c;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.team-page-head h1 span {
    display: block;
    color: #1689df;
}

.team-page-head p {
    max-width: 720px;
    margin: 22px auto 0;
    color: #66758a;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   VALUE STRIP
========================================================= */

.team-value-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 85px;
}

.team-value-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #f7fbff;
    border: 1px solid #e1edf7;
    border-radius: 18px;
    transition: .3s ease;
}

.team-value-card:hover {
    transform: translateY(-5px);
    border-color: #b9ddf7;
    box-shadow: 0 15px 40px rgba(17, 102, 160, .08);
}

.team-value-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e7f5ff;
    color: #087bd1;
    font-size: 20px;
}

.team-value-card strong {
    display: block;
    margin-bottom: 7px;
    color: #09264c;
    font-size: 17px;
}

.team-value-card span {
    display: block;
    color: #738297;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.team-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 38px;
}

.team-section-heading > div {
    max-width: 600px;
}

.team-section-heading span {
    display: block;
    margin-bottom: 10px;
    color: #1689df;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section-heading h2 {
    margin: 0;
    color: #09264c;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.team-section-heading h2 strong {
    color: #1689df;
    font-weight: 800;
}

.team-section-heading p {
    max-width: 480px;
    margin: 0;
    color: #748196;
    line-height: 1.7;
    font-size: 15px;
}


/* =========================================================
   TEAM GRID
========================================================= */

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

.team-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3ebf3;
    border-radius: 22px;
    transition: .35s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: #c9e5f8;
    box-shadow: 0 20px 50px rgba(9, 56, 95, .11);
}


/* =========================================================
   IMAGE
========================================================= */

.team-card-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #eef6fb;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.04);
}

.team-card-overlay {
    position: absolute;
    left: 18px;
    bottom: 18px;
}

.team-card-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .94);
    color: #0878d1;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}


/* =========================================================
   CARD BODY
========================================================= */

.team-card-body {
    padding: 24px 25px 27px;
}

.team-speciality {
    display: block;
    margin-bottom: 7px;
    color: #1485d7;
    font-size: 13px;
    font-weight: 700;
}

.team-card-body h3 {
    margin: 0 0 14px;
    color: #09264c;
    font-size: 23px;
    font-weight: 800;
}

.team-experience {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #edf1f5;
    color: #68788d;
    font-size: 13px;
}

.team-experience i {
    color: #1689df;
}


/* =========================================================
   EMPTY
========================================================= */

.team-empty {
    grid-column: 1 / -1;
    padding: 70px 30px;
    text-align: center;
    border: 1px dashed #cbdce9;
    border-radius: 20px;
    background: #f8fbfd;
}

.team-empty-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9f6ff;
    color: #1689df;
    font-size: 25px;
}

.team-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #09264c;
    font-size: 18px;
}

.team-empty span {
    display: block;
    max-width: 500px;
    margin: auto;
    color: #78879a;
    line-height: 1.6;
    font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.team-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    padding: 45px 50px;
    border-radius: 24px;
    background: #092f59;
    position: relative;
    overflow: hidden;
}

.team-cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -130px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
}

.team-cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.team-cta-content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #7dc7fa;
    font-size: 13px;
    font-weight: 700;
}

.team-cta h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.3;
}

.team-cta p {
    margin: 0;
    color: #b9d0e5;
    font-size: 15px;
    line-height: 1.7;
}

.team-cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 15px 23px;
    border-radius: 10px;
    background: #ffffff;
    color: #092f59;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.team-cta-btn:hover {
    background: #1689df;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .team-page-wrap {
        padding: 0 35px;
    }

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

    .team-value-strip {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 768px) {

    .team-page {
        padding: 70px 0;
    }

    .team-page-wrap {
        padding: 0 18px;
    }

    .team-page-head {
        margin-bottom: 45px;
    }

    .team-page-head h1 {
        font-size: 38px;
    }

    .team-page-head p {
        font-size: 15px;
    }

    .team-section-heading {
        display: block;
    }

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

    .team-section-heading p {
        margin-top: 18px;
    }

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

    .team-card-image {
        height: 360px;
    }

    .team-cta {
        display: block;
        padding: 32px 25px;
    }

    .team-cta h2 {
        font-size: 25px;
    }

    .team-cta-btn {
        margin-top: 25px;
    }

}


@media (max-width: 480px) {

    .team-page-head h1 {
        font-size: 32px;
    }

    .team-value-card {
        padding: 21px;
    }

    .team-card-image {
        height: 330px;
    }

    .team-card-body {
        padding: 21px;
    }

    .team-cta {
        border-radius: 18px;
    }

}
/* =========================================================
   SERVICES PAGE
========================================================= */

.services-page-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-page-wrap {
    max-width: 1440px;
    margin: auto;
    padding: 0 65px;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.services-page-head {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 50px;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: #edf8ff;
    color: #087bcf;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.services-eyebrow i {
    font-size: 14px;
}

.services-page-head h1 {
    max-width: 720px;
    margin: 0;
    color: #09284d;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.services-page-head h1 span {
    display: block;
    color: #1389df;
}

.services-page-head > p {
    margin: 0;
    color: #718096;
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.services-page-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 60px;
}

.services-page-highlights > div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 22px;
    border: 1px solid #e2edf5;
    border-radius: 15px;
    background: #f8fcff;
}

.services-page-highlights i {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e8f6ff;
    color: #0b82d5;
    font-size: 19px;
}

.services-page-highlights span {
    color: #173957;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CATEGORY NAV
========================================================= */

.service-category-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 65px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8eef3;
    overflow-x: auto;
    scrollbar-width: none;
}

.service-category-nav::-webkit-scrollbar {
    display: none;
}

.service-category-nav a {
    flex-shrink: 0;
    padding: 10px 17px;
    border: 1px solid #dce8f1;
    border-radius: 50px;
    color: #52677b;
    background: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.service-category-nav a:hover {
    background: #0d83d7;
    border-color: #0d83d7;
    color: #ffffff;
}


/* =========================================================
   CATEGORY BLOCK
========================================================= */

.service-category-block {
    margin-bottom: 75px;
}

.service-category-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.service-category-head .section-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #1689df;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-category-head h2 {
    margin: 0;
    color: #09284d;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.service-category-head > p {
    max-width: 440px;
    margin: 0;
    color: #78879a;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.services-page-wrap .service-card {
    display: block;
    overflow: hidden;
    border: 1px solid #e1eaf1;
    border-radius: 20px;
    background: #ffffff;
    text-decoration: none;
    transition: .35s ease;
}

.services-page-wrap .service-card:hover {
    transform: translateY(-7px);
    border-color: #c7e3f5;
    box-shadow: 0 20px 45px rgba(15, 71, 111, .10);
}


/* =========================================================
   IMAGE
========================================================= */

.service-image {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: #edf6fb;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0, 31, 58, .42)
    );
}

.service-icon {
    position: absolute;
    left: 20px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ffffff;
    color: #087fd2;
    font-size: 20px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, .13);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    padding: 22px 22px 24px;
}

.service-card-category {
    display: block;
    margin-bottom: 8px;
    color: #1689df;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.service-card-content h3 {
    margin: 0;
    color: #09284d;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.service-card-content p {
    margin: 11px 0 18px;
    color: #738296;
    font-size: 13px;
    line-height: 1.7;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #087fd2;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.service-btn i {
    transition: transform .25s ease;
}

.service-card:hover .service-btn i {
    transform: translateX(5px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.service-empty {
    padding: 75px 30px;
    text-align: center;
    border: 1px dashed #cddde8;
    border-radius: 20px;
    background: #f8fbfd;
}

.service-empty-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f6ff;
    color: #1287dc;
    font-size: 25px;
}

.service-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #09284d;
    font-size: 18px;
}

.service-empty span {
    display: block;
    max-width: 520px;
    margin: auto;
    color: #78879a;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.services-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 10px;
    padding: 42px 48px;
    border-radius: 22px;
    background: #092f59;
}

.services-bottom-cta > div {
    max-width: 760px;
}

.services-bottom-cta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #82cdfb;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.services-bottom-cta h2 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.3;
}

.services-bottom-cta p {
    margin: 0;
    color: #b7cde0;
    font-size: 14px;
    line-height: 1.7;
}

.services-bottom-cta > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 15px 22px;
    border-radius: 9px;
    background: #ffffff;
    color: #092f59;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .3s ease;
}

.services-bottom-cta > a:hover {
    background: #1389df;
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-page-wrap {
        padding: 0 35px;
    }

    .services-page-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-page-section {
        padding: 70px 0;
    }

    .services-page-wrap {
        padding: 0 18px;
    }

    .services-page-head h1 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .services-page-head > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .services-page-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 45px;
    }

    .services-page-highlights > div {
        padding: 16px;
    }

    .service-category-nav {
        margin-bottom: 45px;
    }

    .service-category-head {
        display: block;
    }

    .service-category-head h2 {
        font-size: 28px;
    }

    .service-category-head > p {
        margin-top: 12px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-image {
        height: 230px;
    }

    .service-category-block {
        margin-bottom: 55px;
    }

    .services-bottom-cta {
        display: block;
        padding: 30px 24px;
    }

    .services-bottom-cta h2 {
        font-size: 24px;
    }

    .services-bottom-cta > a {
        margin-top: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .services-page-head h1 {
        font-size: 32px;
    }

    .services-eyebrow {
        font-size: 11px;
    }

    .service-card-content {
        padding: 19px;
    }

    .service-card-content h3 {
        font-size: 19px;
    }

}
/* =========================================================
   DR NEERAJ CLINIC - SERVICE DETAIL
   Skin & Dermatology Theme
========================================================= */

.service-detail-page {
    position: relative;
    overflow: hidden;
    padding: 70px 0 100px;
    background: #f7f8fa;
}

.service-detail-bg {
    position: absolute;
    top: -250px;
    right: -180px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(236, 30, 36, 0.055);
    pointer-events: none;
}

.service-detail-wrap {
    position: relative;
    z-index: 2;
}


/* =========================
   HERO
========================= */

.service-detail-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    overflow: hidden;
    min-height: 470px;
    margin-bottom: 35px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(20, 30, 50, .08);
}

.service-detail-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.service-detail-eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 15px;
    border-radius: 50px;
    background: #f7f8fa;
    color: #061b3a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: #031a3a;
    color: #fff;
    font-size: 29px;
    box-shadow: 0 12px 28px rgba(236, 30, 36, .20);
}

.service-detail-hero h1 {
    max-width: 650px;
    margin: 0 0 15px;
    color: #172033;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.service-hero-intro {
    max-width: 610px;
    margin: 0 0 30px;
    color: #687386;
    font-size: 17px;
    line-height: 1.7;
}

.service-detail-hero-media {
    position: relative;
    min-height: 470px;
    overflow: hidden;
}

.service-detail-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.12),
        transparent 35%
    );
    pointer-events: none;
}

.service-detail-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-detail-primary,
.service-detail-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.service-detail-primary {
    background: #031a3a;
    color: #fff;
    box-shadow: 0 10px 25px rgba(236, 30, 36, .18);
}

.service-detail-primary:hover {
    background: #c9181d;
    color: #fff;
    transform: translateY(-2px);
}

.service-detail-secondary {
    border: 1px solid #e4e7ec;
    background: #fff;
    color: #252d3d;
}

.service-detail-secondary:hover {
    border-color: #ec1e24;
    color: #ec1e24;
    transform: translateY(-2px);
}


/* =========================
   CONTENT LAYOUT
========================= */

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.service-detail-main {
    min-width: 0;
}

.service-detail-card {
    margin-bottom: 24px;
    padding: 36px;
    border: 1px solid #e9ebef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(20, 30, 50, .045);
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #063b91;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.service-detail-card h2 {
    margin: 0 0 18px;
    color: #172033;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -.6px;
}

.service-detail-overview p,
.service-detail-overview > div,
.service-card-intro {
    color: #687386;
    font-size: 16px;
    line-height: 1.8;
}

.service-detail-overview > div p {
    margin-bottom: 12px;
}

.service-detail-overview > div p:last-child {
    margin-bottom: 0;
}


/* =========================
   BENEFITS
========================= */

.service-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.service-benefit-grid article {
    padding: 24px;
    border: 1px solid #edf0f3;
    border-radius: 17px;
    background: #fafbfc;
    transition: .25s ease;
}

.service-benefit-grid article:hover {
    border-color: rgba(236, 30, 36, .22);
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 30, 50, .07);
    transform: translateY(-3px);
}

.service-benefit-grid article > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
    border-radius: 13px;
    background: rgba(236, 30, 36, .09);
    color: #031a3a;
    font-size: 22px;
}

.service-benefit-grid h3 {
    margin: 0 0 8px;
    color: #20283a;
    font-size: 17px;
    font-weight: 700;
}

.service-benefit-grid p {
    margin: 0;
    color: #748093;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================
   CONDITIONS
========================= */

.service-condition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.service-condition-grid span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 14px 15px;
    border-radius: 12px;
    background: #f8f9fb;
    color: #4e596b;
    font-size: 14px;
    line-height: 1.5;
}

.service-condition-grid i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #031a3a;
    font-size: 17px;
}


/* =========================
   PROCESS
========================= */

.service-process-card {
    background: #172033;
}

.service-process-card .service-section-label {
    color: white;
}

.service-process-card h2 {
    color: #fff;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.service-process-grid article {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
}

.service-process-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 17px;
    border-radius: 10px;
    background: #063b91;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.service-process-grid h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
}

.service-process-grid p {
    margin: 0;
    color: #aeb6c5;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================
   LOCATION
========================= */

.service-location-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 22px 24px;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 30, 50, .05);
}

.service-location-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(236, 30, 36, .09);
    color: #063b91;
    font-size: 23px;
}

.service-location-card div {
    flex: 1;
}

.service-location-card span {
    display: block;
    margin-bottom: 4px;
    color: #8791a0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.service-location-card strong {
    display: block;
    color: #252d3d;
    font-size: 14px;
    line-height: 1.5;
}

.service-location-card a {
    color: #031a3a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}


/* =========================
   SIDEBAR
========================= */

.service-detail-side {
    position: sticky;
    top: 25px;
}

.service-info-card,
.service-inquiry-card,
.service-related-card {
    margin-bottom: 20px;
    padding: 26px;
    border: 1px solid #e8ebef;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(20, 30, 50, .05);
}

.service-info-card h3,
.service-related-card h3 {
    margin: 0 0 20px;
    color: #172033;
    font-size: 20px;
    font-weight: 750;
}

.service-info-card dl {
    margin: 0;
}

.service-info-card dl > div {
    padding: 14px 0;
    border-bottom: 1px solid #edf0f3;
}

.service-info-card dl > div:first-child {
    padding-top: 0;
}

.service-info-card dl > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.service-info-card dt {
    margin-bottom: 4px;
    color: #929aa8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.service-info-card dd {
    margin: 0;
    color: #343d4e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================
   INQUIRY CARD
========================= */

.service-inquiry-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 0;
    background: #063b91;
    color: #fff;
}

.service-inquiry-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    border: 25px solid rgba(255,255,255,.08);
}

.service-inquiry-card > * {
    position: relative;
    z-index: 2;
}

.service-inquiry-card span {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 600;
}

.service-inquiry-card strong {
    display: block;
    margin-bottom: 13px;
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
}

.service-inquiry-card p {
    margin: 0 0 22px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.65;
}

.service-inquiry-card a {
    display: block;
    padding: 12px 15px;
    margin-top: 9px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.service-inquiry-card a:first-of-type {
    background: #fff;
    color: #ec1e24;
}

.service-inquiry-card a:hover {
    transform: translateY(-2px);
}


/* =========================
   RELATED SERVICES
========================= */

.service-related-list {
    display: flex;
    flex-direction: column;
}

.service-related-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f3;
    color: #3b4557;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.service-related-list a:first-child {
    padding-top: 0;
}

.service-related-list a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.service-related-list a:hover {
    color: #ec1e24;
}

.service-related-list a i {
    color: #9aa2af;
    transition: .2s ease;
}

.service-related-list a:hover i {
    color: #ec1e24;
    transform: translateX(3px);
}

.service-related-list p {
    margin: 0;
    color: #858e9d;
    font-size: 14px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .service-detail-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .service-detail-hero-copy {
        padding: 42px;
    }

}

@media (max-width: 991px) {

    .service-detail-page {
        padding: 50px 0 70px;
    }

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

    .service-detail-hero-media {
        min-height: 360px;
        order: -1;
    }

    .service-detail-hero-copy {
        padding: 38px;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-side {
        position: static;
    }

    .service-info-card,
    .service-inquiry-card,
    .service-related-card {
        margin-bottom: 20px;
    }

}

@media (max-width: 767px) {

    .service-detail-page {
        padding: 30px 0 50px;
    }

    .service-detail-hero {
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .service-detail-hero-media {
        min-height: 270px;
    }

    .service-detail-hero-copy {
        padding: 28px 22px;
    }

    .service-detail-eyebrow {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .service-detail-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
        border-radius: 14px;
        font-size: 23px;
    }

    .service-detail-hero h1 {
        font-size: 32px;
        letter-spacing: -.8px;
    }

    .service-hero-intro {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .service-detail-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-primary {
        grid-column: 1 / -1;
    }

    .service-detail-primary,
    .service-detail-secondary {
        min-height: 45px;
        padding: 0 12px;
        font-size: 12px;
    }

    .service-detail-card {
        padding: 24px 19px;
        margin-bottom: 18px;
        border-radius: 17px;
    }

    .service-detail-card h2 {
        font-size: 24px;
    }

    .service-detail-overview p,
    .service-detail-overview > div,
    .service-card-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-benefit-grid,
    .service-condition-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-benefit-grid {
        margin-top: 20px;
    }

    .service-benefit-grid article {
        padding: 19px;
    }

    .service-process-grid {
        margin-top: 20px;
    }

    .service-process-grid article {
        padding: 20px;
    }

    .service-location-card {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 19px;
        gap: 12px;
    }

    .service-location-card div {
        min-width: calc(100% - 65px);
    }

    .service-location-card a {
        width: 100%;
        margin-left: 60px;
    }

    .service-info-card,
    .service-inquiry-card,
    .service-related-card {
        padding: 22px;
        border-radius: 17px;
    }

}

@media (max-width: 480px) {

    .service-detail-hero-media {
        min-height: 235px;
    }

    .service-detail-hero-copy {
        padding: 24px 18px;
    }

    .service-detail-hero h1 {
        font-size: 28px;
    }

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

    .service-detail-primary {
        grid-column: auto;
    }

    .service-detail-card {
        padding: 21px 17px;
    }

    .service-condition-grid span {
        font-size: 13px;
    }

}



/* =========================================================
   DR. NEERAJ CLINIC - GALLERY
   Theme: Navy / Blue / Cyan
   ========================================================= */

.gallery-section {
    position: relative;
    padding: 70px 0px;
    background: #F4FAFF;
    overflow: hidden;
}

.gallery-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -150px;
    border-radius: 50%;
    background: rgba(22, 181, 221, 0.07);
    pointer-events: none;
}

.gallery-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -170px;
    left: -130px;
    border-radius: 50%;
    background: rgba(8, 120, 209, 0.05);
    pointer-events: none;
}

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


/* =========================================================
   GALLERY HEADING
   ========================================================= */

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 38px;
}

.gallery-heading-content {
    flex: 1;
}

.gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 17px;

    margin-bottom: 18px;

    background: #E4F4FF;
    border: 1px solid #D8ECF9;

    border-radius: 50px;

    color: #0878D1;

    font-size: 14px;
    font-weight: 700;
}

.gallery-eyebrow i {
    font-size: 17px;
    color: #0878D1;
}


/* Heading */

.gallery-heading h1 {
    margin: 0;

    color: #09244A;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.gallery-heading h1 span {
    background: linear-gradient(
        100deg,
        #0878D1 0%,
        #16B5DD 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* Description */

.gallery-heading > p {
    flex: 0 0 410px;

    margin: 0;

    color: #526D89;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   GALLERY FEATURES
   ========================================================= */

.gallery-features {
    display: grid;

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

    gap: 18px;

    margin-bottom: 35px;
}

.gallery-feature {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 22px;

    background: #FFFFFF;

    border: 1px solid #DCEBF7;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(9, 36, 74, 0.05);

    transition: all 0.3s ease;
}

.gallery-feature:hover {
    transform: translateY(-4px);

    border-color: #BBDDF2;

    box-shadow:
        0 15px 35px rgba(8, 120, 209, 0.10);
}


/* Feature Icon */

.gallery-feature-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

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

    background: #EAF6FF;

    border-radius: 14px;

    color: #0878D1;

    font-size: 23px;
}

.gallery-feature:hover .gallery-feature-icon {
    color: #FFFFFF;

    background: linear-gradient(
        135deg,
        #0878D1,
        #16B5DD
    );
}


/* Feature Text */

.gallery-feature strong {
    display: block;

    margin-bottom: 4px;

    color: #09244A;

    font-size: 16px;

    font-weight: 700;
}

.gallery-feature span {
    display: block;

    color: #71869B;

    font-size: 13px;

    line-height: 1.4;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-grid {
    display: grid;

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

    gap: 22px;
}


/* =========================================================
   GALLERY ITEM
   ========================================================= */

.gallery-item {
    position: relative;

    display: block;

    height: 310px;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid #DCEBF7;

    border-radius: 22px;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(9, 36, 74, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-7px);

    border-color: #B8DDF3;

    box-shadow:
        0 20px 45px rgba(8, 120, 209, 0.15);
}


/* =========================================================
   GALLERY IMAGE
   ========================================================= */

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.5s ease;
}

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

    filter: brightness(0.78);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 22px;

    opacity: 0;

    background:
        linear-gradient(
            180deg,
            rgba(9, 36, 74, 0.15) 0%,
            rgba(9, 36, 74, 0.72) 100%
        );

    transition: opacity 0.4s ease;
}

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


/* =========================================================
   VIEW ICON
   ========================================================= */

.gallery-view-icon {
    width: 48px;
    height: 48px;

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

    align-self: flex-end;

    color: #FFFFFF;

    background: rgba(8, 120, 209, 0.90);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 14px;

    font-size: 20px;

    backdrop-filter: blur(8px);

    transform: translateY(-10px);

    transition:
        transform 0.4s ease,
        background 0.3s ease;
}

.gallery-item:hover .gallery-view-icon {
    transform: translateY(0);
}

.gallery-view-icon:hover {
    background: #16B5DD;
}


/* =========================================================
   OVERLAY BOTTOM CONTENT
   ========================================================= */

.gallery-overlay-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    color: #FFFFFF;

    font-size: 15px;

    font-weight: 700;

    transform: translateY(15px);

    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    width: 32px;
    height: 32px;

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

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

    border-radius: 50%;

    font-size: 17px;
}


/* =========================================================
   EMPTY GALLERY
   ========================================================= */

.gallery-empty {
    max-width: 650px;

    margin: 30px auto 0;

    padding: 65px 35px;

    text-align: center;

    background: #FFFFFF;

    border: 1px solid #DCEBF7;

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(9, 36, 74, 0.06);
}

.gallery-empty-icon {
    width: 75px;
    height: 75px;

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

    margin: 0 auto 20px;

    color: #0878D1;

    background: #EAF6FF;

    border-radius: 20px;

    font-size: 34px;
}

.gallery-empty h4 {
    margin-bottom: 10px;

    color: #09244A;

    font-size: 22px;

    font-weight: 700;
}

.gallery-empty p {
    max-width: 480px;

    margin: 0 auto;

    color: #71869B;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   GLIGHTBOX CUSTOM THEME
   ========================================================= */

.glightbox-clean .gslide-description {
    background: #FFFFFF;
}

.glightbox-clean .gslide-description .gslide-title {
    color: #09244A;
}

.glightbox-clean .gslide-description .gslide-desc {
    color: #526D89;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
    width: 48px;
    height: 48px;

    background: rgba(8, 120, 209, 0.90);

    border-radius: 50%;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: #16B5DD;
}

.glightbox-clean .gclose {
    background: #0878D1;

    border-radius: 50%;
}

.glightbox-clean .gclose:hover {
    background: #16B5DD;
}


/* =========================================================
   GENERAL PAGE COLOR OVERRIDES
   ========================================================= */

.gallery-section a {
    color: inherit;
}

.gallery-section a:hover {
    color: inherit;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .gallery-section {
        padding: 75px 0 85px;
    }

    .gallery-heading {
        gap: 30px;
    }

    .gallery-heading > p {
        flex: 0 0 350px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 18px;
    }

    .gallery-item {
        height: 280px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .gallery-heading {
        display: block;

        margin-bottom: 30px;
    }

    .gallery-heading > p {
        max-width: 650px;

        margin-top: 18px;
    }

    .gallery-features {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 25px;
    }

    .gallery-feature {
        padding: 17px 20px;
    }

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

        gap: 16px;
    }

    .gallery-item {
        height: 270px;
    }
}


@media (max-width: 767px) {

    .gallery-section {
        padding: 55px 0 65px;
    }

    .gallery-heading h1 {
        font-size: 38px;

        letter-spacing: -1.2px;
    }

    .gallery-heading > p {
        font-size: 15px;
    }

    .gallery-eyebrow {
        font-size: 13px;

        padding: 7px 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .gallery-item {
        height: 300px;

        border-radius: 19px;
    }

    .gallery-overlay {
        opacity: 1;

        background:
            linear-gradient(
                180deg,
                rgba(9, 36, 74, 0) 40%,
                rgba(9, 36, 74, 0.70) 100%
            );
    }

    .gallery-view-icon {
        transform: translateY(0);
    }

    .gallery-overlay-content {
        transform: translateY(0);
    }
}


@media (max-width: 480px) {

    .gallery-heading h1 {
        font-size: 32px;
    }

    .gallery-feature {
        gap: 12px;

        padding: 15px;
    }

    .gallery-feature-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        font-size: 20px;
    }

    .gallery-feature strong {
        font-size: 15px;
    }

    .gallery-feature span {
        font-size: 12px;
    }

    .gallery-item {
        height: 260px;
    }

    .gallery-empty {
        padding: 45px 22px;
    }
}

/* =========================================================
   DR. DEEPAK CLINIC - FAQ PAGE
   Navy + Blue + Cyan Medical Theme
   ========================================================= */

.faq-page {
    position: relative;

    padding: 85px 0 100px;

    background: #F5F9FF;

    overflow: hidden;
}


/* Background decoration */

.faq-page::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -150px;

    border-radius: 50%;

    background: rgba(22, 181, 221, 0.06);

    pointer-events: none;
}

.faq-page::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -190px;
    left: -140px;

    border-radius: 50%;

    background: rgba(8, 120, 209, 0.04);

    pointer-events: none;
}

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


/* =========================================================
   FAQ HEADER
   ========================================================= */

.faq-page-head {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.faq-page-head .section-label {
    display: inline-flex;

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

    padding: 9px 19px;

    margin-bottom: 18px;

    background: #E5F4FF;

    border: 1px solid #D6EBF8;

    border-radius: 50px;

    color: #0878D1;

    font-size: 14px;

    font-weight: 700;
}

.faq-page-head h1 {
    margin: 0 0 18px;

    color: #09244A;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.faq-page-head p {
    max-width: 720px;

    margin: 0 auto;

    color: #607A95;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   FAQ LAYOUT
   ========================================================= */

.faq-page-layout {
    display: grid;

    grid-template-columns: 320px minmax(0, 1fr);

    gap: 32px;

    align-items: start;
}


/* =========================================================
   LEFT HELP CARD
   ========================================================= */

.faq-help-card {
    position: sticky;

    top: 30px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F7FCFF 100%
        );

    border: 1px solid #D7E8F5;

    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(9, 36, 74, 0.07);

    overflow: hidden;
}

.faq-help-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -75px;

    border-radius: 50%;

    background: rgba(22, 181, 221, 0.08);

    pointer-events: none;
}


/* Help badge */

.faq-help-card .section-label {
    display: inline-flex;

    padding: 7px 14px;

    margin-bottom: 18px;

    background: #E5F4FF;

    border-radius: 50px;

    color: #0878D1;

    font-size: 12px;

    font-weight: 700;
}


/* Help heading */

.faq-help-card > strong {
    display: block;

    margin-bottom: 14px;

    color: #09244A;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 800;
}


/* Help paragraph */

.faq-help-card > p {
    margin: 0 0 22px;

    color: #617A94;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   HELP LIST
   ========================================================= */

.faq-help-list {
    list-style: none;

    padding: 0;
    margin: 0 0 25px;
}

.faq-help-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #294A6C;

    font-size: 14px;

    font-weight: 500;
}

.faq-help-list li:last-child {
    margin-bottom: 0;
}

.faq-help-list li i {
    width: 20px;
    height: 20px;

    display: inline-flex;

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

    flex: 0 0 20px;

    color: #FFFFFF;

    background: #0878D1;

    border-radius: 50%;

    font-size: 11px;
}


/* =========================================================
   HELP BUTTON
   ========================================================= */

.faq-help-btn {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    width: 100%;

    min-height: 53px;

    padding: 0 20px;

    color: #FFFFFF !important;

    background:
        linear-gradient(
            100deg,
            #0878D1 0%,
            #16B5DD 100%
        );

    border-radius: 14px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(8, 120, 209, 0.20);

    transition: all 0.3s ease;
}

.faq-help-btn:hover {
    color: #FFFFFF !important;

    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(8, 120, 209, 0.28);
}

.faq-help-btn i {
    font-size: 19px;

    transition: transform 0.3s ease;
}

.faq-help-btn:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.faq-page-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-page-item {
    margin: 0 !important;

    background: #FFFFFF !important;

    border: 1px solid #D6E6F5 !important;

    border-radius: 21px !important;

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(9, 36, 74, 0.035);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.faq-page-item:hover {
    border-color: #B9DDF4 !important;

    box-shadow:
        0 12px 32px rgba(8, 120, 209, 0.07);
}


/* =========================================================
   FAQ QUESTION
   ========================================================= */

.faq-page-item .accordion-header {
    margin: 0;
}


/* Bootstrap accordion button */

.faq-page-item .accordion-button {
    position: relative;

    display: flex;

    align-items: center;


    padding: 22px 75px 22px 30px;

    color: #09244A;

    background: #FFFFFF !important;

    border: 0 !important;

    box-shadow: none !important;

    font-size: 19px;

    line-height: 1.45;

    font-weight: 700;

    text-align: left;
}

.faq-page-item .accordion-button:not(.collapsed) {
    color: #0878D1;

    background: #FFFFFF !important;
}


/* Remove bootstrap arrow */

.faq-page-item .accordion-button::after {
    display: none;
}


/* =========================================================
   CUSTOM ARROW CIRCLE
   ========================================================= */

.faq-page-item .accordion-button span {
    display: block;

    padding-right: 10px;
}

.faq-page-item .accordion-button::before {
    content: "\ea5f";

    position: absolute;

    right: 30px;
    top: 50%;

    width: 42px;
    height: 42px;

    display: flex;

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

    transform: translateY(-50%);

    color: #0878D1;

    background: #EEF6FF;

    border-radius: 50%;

    font-family: "tabler-icons" !important;

    font-size: 20px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* Open arrow */

.faq-page-item .accordion-button:not(.collapsed)::before {
    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            #0878D1,
            #16B5DD
        );

    transform: translateY(-50%) rotate(180deg);
}


/* =========================================================
   FAQ ANSWER
   ========================================================= */

.faq-page-answer {
    padding: 0 75px 28px 30px;

    color: #5C748D;

    background: #FFFFFF;

    font-size: 15px;

    line-height: 1.8;

    border-top: 1px solid #EDF3F8;
}

.faq-page-answer p {
    margin-bottom: 10px;

    color: #5C748D;
}

.faq-page-answer p:last-child {
    margin-bottom: 0;
}

.faq-page-answer ul,
.faq-page-answer ol {
    margin-top: 10px;

    padding-left: 20px;
}

.faq-page-answer li {
    margin-bottom: 6px;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.faq-empty {
    padding: 60px 35px;

    text-align: center;

    background: #FFFFFF;

    border: 1px solid #D6E6F5;

    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(9, 36, 74, 0.05);
}

.faq-empty-icon {
    width: 70px;
    height: 70px;

    display: flex;

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

    margin: 0 auto 18px;

    color: #0878D1;

    background: #EAF6FF;

    border-radius: 18px;

    font-size: 32px;
}

.faq-empty strong {
    display: block;

    margin-bottom: 10px;

    color: #09244A;

    font-size: 21px;

    font-weight: 700;
}

.faq-empty span {
    display: block;

    max-width: 550px;

    margin: 0 auto;

    color: #6B8198;

    font-size: 14px;

    line-height: 1.7;
}

.faq-empty .faq-help-btn {
    width: auto;

    display: inline-flex;

    justify-content: center;

    padding: 0 28px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .faq-page {
        padding: 75px 0 85px;
    }

    .faq-page-layout {
        grid-template-columns: 290px minmax(0, 1fr);

        gap: 25px;
    }

    .faq-help-card {
        padding: 25px;
    }

    .faq-page-item .accordion-button {
        font-size: 17px;

        min-height: 90px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .faq-page {
        padding: 60px 0 70px;
    }

    .faq-page-head {
        margin-bottom: 35px;
    }

    .faq-page-head h1 {
        font-size: 42px;
    }

    .faq-page-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .faq-help-card {
        position: relative;

        top: auto;

        order: 2;
    }

    .faq-page-list {
        order: 1;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .faq-page {
        padding: 50px 0 60px;
    }

    .faq-page-head h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }

    .faq-page-head p {
        font-size: 15px;
    }

    .faq-page-item {
        border-radius: 17px !important;
    }

    .faq-page-list {
        gap: 14px;
    }

    .faq-page-item .accordion-button {
        min-height: 78px;

        padding: 18px 60px 18px 20px;

        font-size: 16px;

        line-height: 1.4;
    }

    .faq-page-item .accordion-button::before {
        right: 18px;

        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .faq-page-answer {
        padding: 0 20px 22px;

        font-size: 14px;

        line-height: 1.7;
    }

    .faq-help-card {
        padding: 24px 20px;

        border-radius: 20px;
    }

    .faq-help-card > strong {
        font-size: 22px;
    }
}


/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media (max-width: 480px) {

    .faq-page-head h1 {
        font-size: 31px;
    }

    .faq-page-head .section-label {
        font-size: 12px;
    }

    .faq-page-item .accordion-button {
        padding: 17px 55px 17px 17px;

        font-size: 15px;
    }

    .faq-page-item .accordion-button::before {
        right: 14px;

        width: 34px;
        height: 34px;
    }

    .faq-page-answer {
        padding-left: 17px;
        padding-right: 17px;
    }

    .faq-help-btn {
        min-height: 50px;

        font-size: 13px;
    }
}

/* =========================================================
   DR. DEEPAK CLINIC
   BLOG PAGE
   Navy + Blue + Cyan Medical Theme
   ========================================================= */

.blogs-page {
    position: relative;

    padding: 85px 0 100px;

    background: #F5F9FF;

    overflow: hidden;
}


/* Background Decoration */

.blogs-page::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -220px;
    right: -160px;

    border-radius: 50%;

    background: rgba(22, 181, 221, 0.06);

    pointer-events: none;
}

.blogs-page::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    bottom: -200px;
    left: -160px;

    border-radius: 50%;

    background: rgba(8, 120, 209, 0.045);

    pointer-events: none;
}

.blogs-page .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   BLOG HEADER
   ========================================================= */

.blog-page-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;
}

.blog-page-copy {
    max-width: 850px;
}

.blog-page-copy .section-label {
    display: inline-flex;

    align-items: center;

    padding: 9px 18px;

    margin-bottom: 18px;

    color: #0878D1;

    background: #E5F4FF;

    border: 1px solid #D6EBF8;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;
}

.blog-page-copy h1 {
    max-width: 800px;

    margin: 0 0 18px;

    color: #09244A;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.blog-page-copy p {
    max-width: 720px;

    margin: 0;

    color: #607A95;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   BLOG BODY
   ========================================================= */

.blog-page-body {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 315px;

    gap: 32px;

    align-items: start;
}


/* =========================================================
   BLOG GRID
   ========================================================= */

.blog-list-grid {
    display: grid;

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

    gap: 25px;
}


/* =========================================================
   BLOG CARD
   ========================================================= */

.blog-list-card {
    position: relative;

    display: flex;

    flex-direction: column;

    background: #FFFFFF;

    border: 1px solid #DCEAF6;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 8px 28px rgba(9, 36, 74, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.blog-list-card:hover {
    transform: translateY(-6px);

    border-color: #BBDDF3;

    box-shadow:
        0 18px 40px rgba(8, 120, 209, 0.11);
}


/* =========================================================
   BLOG IMAGE
   ========================================================= */

.blog-list-image {
    position: relative;

    display: block;

    height: 245px;

    overflow: hidden;

    text-decoration: none;

    background: #EAF4FB;
}

.blog-list-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.blog-list-card:hover .blog-list-image img {
    transform: scale(1.07);

    filter: brightness(0.88);
}


/* =========================================================
   BLOG CATEGORY
   ========================================================= */

.blog-list-image > span {
    position: absolute;

    top: 18px;
    left: 18px;

    display: inline-flex;

    align-items: center;

    max-width: calc(100% - 36px);

    padding: 7px 13px;

    color: #0878D1;

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

    border: 1px solid rgba(255,255,255,0.8);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(9, 36, 74, 0.08);

    backdrop-filter: blur(8px);
}


/* =========================================================
   BLOG CONTENT
   ========================================================= */

.blog-list-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 25px 25px 24px;
}


/* =========================================================
   META
   ========================================================= */

.blog-list-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-bottom: 13px;
}

.blog-list-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #7890A6;

    font-size: 12px;

    font-weight: 500;
}

.blog-list-meta i {
    color: #0878D1;

    font-size: 15px;
}


/* =========================================================
   BLOG TITLE
   ========================================================= */

.blog-list-content h2 {
    margin: 0 0 12px;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 750;
}

.blog-list-content h2 a {
    color: #09244A;

    text-decoration: none;

    transition: color 0.25s ease;
}

.blog-list-content h2 a:hover {
    color: #0878D1;
}


/* =========================================================
   BLOG DESCRIPTION
   ========================================================= */

.blog-list-content > p {
    margin: 0 0 20px;

    color: #667F97;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   READ ARTICLE
   ========================================================= */

.blog-read-btn {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    width: fit-content;

    margin-top: auto;

    padding: 10px 15px;

    color: #0878D1 !important;

    background: #EDF7FF;

    border: 1px solid #D8ECFA;

    border-radius: 11px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.blog-read-btn i {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.blog-read-btn:hover {
    color: #FFFFFF !important;

    background:
        linear-gradient(
            100deg,
            #0878D1,
            #16B5DD
        );

    border-color: transparent;

    transform: translateY(-2px);
}

.blog-read-btn:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.blog-sidebar {
    position: sticky;

    top: 30px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   SIDEBAR PANEL
   ========================================================= */

.blog-sidebar-panel {
    padding: 27px;

    background: #FFFFFF;

    border: 1px solid #D8E8F5;

    border-radius: 22px;

    box-shadow:
        0 8px 28px rgba(9, 36, 74, 0.05);
}

.blog-sidebar-panel .section-label {
    display: inline-flex;

    padding: 7px 13px;

    margin-bottom: 20px;

    color: #0878D1;

    background: #EAF6FF;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   CATEGORY LIST
   ========================================================= */

.blog-category-list {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.blog-category-list span {
    display: inline-flex;

    align-items: center;

    padding: 9px 12px;

    color: #385775;

    background: #F4F9FD;

    border: 1px solid #DFEDF7;

    border-radius: 9px;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 500;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.blog-category-list span:hover {
    color: #0878D1;

    background: #EAF6FF;

    border-color: #CDE6F6;
}


/* =========================================================
   DARK CTA
   ========================================================= */

.blog-sidebar-panel.is-dark {
    position: relative;

    padding: 30px;

    overflow: hidden;

    color: #FFFFFF;

    background:
        linear-gradient(
            145deg,
            #09244A 0%,
            #0B4275 100%
        );

    border: 0;

    box-shadow:
        0 15px 35px rgba(9, 36, 74, 0.15);
}

.blog-sidebar-panel.is-dark::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -85px;
    top: -85px;

    border-radius: 50%;

    background: rgba(22, 181, 221, 0.16);
}

.blog-sidebar-panel.is-dark::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -55px;
    bottom: -55px;

    border-radius: 50%;

    background: rgba(8, 120, 209, 0.16);
}

.blog-sidebar-panel.is-dark > * {
    position: relative;

    z-index: 2;
}

.blog-sidebar-panel.is-dark > span {
    display: block;

    margin-bottom: 13px;

    color: #8BDCF0;

    font-size: 13px;

    font-weight: 600;
}

.blog-sidebar-panel.is-dark strong {
    display: block;

    margin-bottom: 14px;

    color: #FFFFFF;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 750;
}

.blog-sidebar-panel.is-dark p {
    margin: 0 0 22px;

    color: #C7D9E9;

    font-size: 13px;

    line-height: 1.7;
}

.blog-sidebar-panel.is-dark a {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    width: 100%;

    padding: 13px 16px;

    color: #FFFFFF !important;

    background:
        linear-gradient(
            100deg,
            #0878D1,
            #16B5DD
        );

    border-radius: 11px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-sidebar-panel.is-dark a:hover {
    color: #FFFFFF !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.22);
}

.blog-sidebar-panel.is-dark a i {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.blog-sidebar-panel.is-dark a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   EMPTY BLOG STATE
   ========================================================= */

.blog-empty {
    grid-column: 1 / -1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 350px;

    padding: 50px;

    text-align: center;

    background: #FFFFFF;

    border: 1px solid #D8E8F5;

    border-radius: 22px;

    box-shadow:
        0 8px 28px rgba(9, 36, 74, 0.05);
}

.blog-empty-icon {
    width: 70px;
    height: 70px;

    display: flex;

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

    margin-bottom: 18px;

    color: #0878D1;

    background: #EAF6FF;

    border-radius: 18px;

    font-size: 32px;
}

.blog-empty strong {
    display: block;

    margin-bottom: 10px;

    color: #09244A;

    font-size: 22px;

    font-weight: 750;
}

.blog-empty span {
    display: block;

    max-width: 520px;

    color: #71879B;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .blogs-page {
        padding: 75px 0 85px;
    }

    .blog-page-body {
        grid-template-columns: minmax(0, 1fr) 280px;

        gap: 24px;
    }

    .blog-list-grid {
        gap: 18px;
    }

    .blog-list-image {
        height: 220px;
    }

    .blog-list-content {
        padding: 22px;
    }

    .blog-list-content h2 {
        font-size: 19px;
    }

    .blog-sidebar-panel {
        padding: 23px;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .blogs-page {
        padding: 60px 0 70px;
    }

    .blog-page-head {
        margin-bottom: 38px;
    }

    .blog-page-copy h1 {
        font-size: 43px;
    }

    .blog-page-body {
        grid-template-columns: 1fr;
    }

    .blog-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        order: 1;
    }

    .blog-sidebar {
        position: relative;

        top: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        order: 2;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .blogs-page {
        padding: 50px 0 60px;
    }

    .blog-page-copy h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }

    .blog-page-copy p {
        font-size: 15px;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .blog-list-image {
        height: 245px;
    }

    .blog-list-content {
        padding: 21px;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .blog-sidebar-panel {
        border-radius: 19px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .blog-page-copy h1 {
        font-size: 31px;
    }

    .blog-page-copy .section-label {
        font-size: 12px;

        padding: 8px 14px;
    }

    .blog-list-image {
        height: 220px;
    }

    .blog-list-content {
        padding: 19px;
    }

    .blog-list-meta {
        gap: 10px;
    }

    .blog-list-content h2 {
        font-size: 18px;
    }

    .blog-list-content > p {
        font-size: 13px;
    }

    .blog-sidebar-panel.is-dark strong {
        font-size: 21px;
    }

    .blog-empty {
        min-height: 280px;

        padding: 35px 20px;
    }
}

/* =========================================================
   DR. DEEPAK SKIN & DERMATOLOGY CLINIC
   BLOG DETAIL PAGE
   No :root / No CSS Variables
   ========================================================= */

.blog-detail-page {
    padding: 65px 0 100px;

    background: #F5F9FF;

    overflow: hidden;
}

.blog-detail-wrap {
    max-width: 1500px;

    margin: 0 auto;

    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   HERO
   ========================================================= */

.blog-detail-hero {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    min-height: 500px;

    margin-bottom: 45px;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid #DCEAF6;

    border-radius: 28px;

    box-shadow:
        0 15px 45px rgba(9, 36, 74, 0.07);
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.blog-detail-hero-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px 60px;
}

.blog-pill {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    padding: 9px 16px;

    margin-bottom: 22px;

    color: #0878D1;

    background: #E7F5FF;

    border: 1px solid #D4EBF9;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;
}

.blog-detail-hero-copy h1 {
    max-width: 800px;

    margin: 0 0 20px;

    color: #09244A;

    font-size: clamp(38px, 4.3vw, 60px);

    line-height: 1.08;

    letter-spacing: -1.8px;

    font-weight: 800;
}

.blog-detail-hero-copy > p {
    max-width: 680px;

    margin: 0 0 25px;

    color: #607A95;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   META
   ========================================================= */

.blog-detail-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.blog-detail-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #6F879D;

    font-size: 13px;

    font-weight: 500;
}

.blog-detail-meta i {
    color: #0878D1;

    font-size: 17px;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.blog-detail-hero-image {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: #EAF5FC;
}

.blog-detail-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08),
            transparent 30%
        );

    pointer-events: none;
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.blog-detail-hero:hover .blog-detail-hero-image img {
    transform: scale(1.025);
}


/* =========================================================
   CONTENT LAYOUT
   ========================================================= */

.blog-detail-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 330px;

    align-items: start;

    gap: 32px;
}


/* =========================================================
   MAIN ARTICLE
   ========================================================= */

.blog-detail-main {
    min-width: 0;

    padding: 45px 50px;

    background: #FFFFFF;

    border: 1px solid #DCEAF6;

    border-radius: 24px;

    box-shadow:
        0 10px 35px rgba(9, 36, 74, 0.05);
}


/* =========================================================
   ARTICLE TYPOGRAPHY
   ========================================================= */

.blog-detail-copy {
    color: #4F6881;

    font-size: 16px;

    line-height: 1.85;
}

.blog-detail-copy > *:first-child {
    margin-top: 0;
}

.blog-detail-copy h2 {
    margin: 38px 0 15px;

    color: #09244A;

    font-size: 30px;

    line-height: 1.25;

    font-weight: 750;
}

.blog-detail-copy h3 {
    margin: 30px 0 13px;

    color: #09244A;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 700;
}

.blog-detail-copy h4 {
    margin: 25px 0 10px;

    color: #09244A;

    font-size: 19px;

    font-weight: 700;
}

.blog-detail-copy p {
    margin: 0 0 20px;
}

.blog-detail-copy strong {
    color: #09244A;

    font-weight: 700;
}

.blog-detail-copy a {
    color: #0878D1;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.blog-detail-copy ul,
.blog-detail-copy ol {
    margin: 0 0 22px;

    padding-left: 22px;
}

.blog-detail-copy li {
    margin-bottom: 9px;

    padding-left: 5px;
}

.blog-detail-copy blockquote {
    position: relative;

    margin: 30px 0;

    padding: 24px 28px;

    color: #385775;

    background: #EFF8FF;

    border-left: 4px solid #0878D1;

    border-radius: 0 14px 14px 0;

    font-size: 17px;

    line-height: 1.7;
}

.blog-detail-copy img {
    max-width: 100%;

    height: auto;

    display: block;

    margin: 25px auto;

    border-radius: 16px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.blog-side-panel {
    position: sticky;

    top: 25px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   SIDEBAR BOX
   ========================================================= */

.blog-side-box {
    padding: 25px;

    background: #FFFFFF;

    border: 1px solid #D8E8F5;

    border-radius: 21px;

    box-shadow:
        0 8px 28px rgba(9, 36, 74, 0.05);
}

.blog-side-box h3 {
    margin: 0 0 20px;

    color: #09244A;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 750;
}


/* =========================================================
   CONTACT BOX
   ========================================================= */

.blog-contact-box {
    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F1FAFF 100%
        );
}

.blog-contact-box .section-label {
    display: inline-flex;

    padding: 7px 13px;

    margin-bottom: 17px;

    color: #0878D1;

    background: #E7F5FF;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;
}

.blog-contact-box strong {
    display: block;

    margin-bottom: 12px;

    color: #09244A;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 750;
}

.blog-contact-box p {
    margin: 0 0 21px;

    color: #657E95;

    font-size: 13px;

    line-height: 1.7;
}

.blog-contact-box > a {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    width: 100%;

    padding: 13px 16px;

    color: #FFFFFF !important;

    background:
        linear-gradient(
            100deg,
            #0878D1,
            #16B5DD
        );

    border-radius: 11px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(8, 120, 209, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-contact-box > a:hover {
    color: #FFFFFF !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(8, 120, 209, 0.25);
}

.blog-contact-box > a i {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.blog-contact-box > a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   RELATED BLOGS
   ========================================================= */

.blog-related-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.blog-related-list > a {
    display: grid;

    grid-template-columns: 78px minmax(0, 1fr);

    gap: 12px;

    align-items: center;

    padding: 8px;

    color: inherit;

    background: #F7FBFE;

    border: 1px solid #E1EDF5;

    border-radius: 12px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.blog-related-list > a:hover {
    background: #EDF8FF;

    border-color: #C9E5F5;

    transform: translateY(-2px);
}

.blog-related-list img {
    width: 78px;
    height: 62px;

    display: block;

    object-fit: cover;

    border-radius: 9px;
}

.blog-related-list span {
    display: -webkit-box;

    overflow: hidden;

    color: #183B60;

    font-size: 12px;

    line-height: 1.45;

    font-weight: 650;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;
}

.blog-related-list > p {
    margin: 0;

    color: #8094A7;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   TAGS
   ========================================================= */

.blog-tag-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.blog-tag-list a,
.blog-tag-list span {
    display: inline-flex;

    align-items: center;

    padding: 8px 11px;

    color: #41617D;

    background: #F2F8FC;

    border: 1px solid #DDEBF4;

    border-radius: 8px;

    font-size: 12px;

    line-height: 1.3;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.blog-tag-list a:hover {
    color: #0878D1;

    background: #EAF6FF;

    border-color: #C9E5F5;
}


/* =========================================================
   DARK CTA
   ========================================================= */

.blog-side-box.is-dark {
    position: relative;

    overflow: hidden;

    padding: 28px;

    color: #FFFFFF;

    background:
        linear-gradient(
            145deg,
            #09244A 0%,
            #0A4777 100%
        );

    border: 0;

    box-shadow:
        0 15px 35px rgba(9, 36, 74, 0.15);
}

.blog-side-box.is-dark::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(22, 181, 221, 0.15);
}

.blog-side-box.is-dark::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(8, 120, 209, 0.16);
}

.blog-side-box.is-dark > * {
    position: relative;

    z-index: 2;
}

.blog-side-box.is-dark .section-label {
    display: inline-flex;

    padding: 7px 12px;

    margin-bottom: 16px;

    color: #8ADCF0;

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

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;
}

.blog-side-box.is-dark strong {
    display: block;

    margin-bottom: 13px;

    color: #FFFFFF;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 750;
}

.blog-side-box.is-dark p {
    margin: 0 0 21px;

    color: #C9DBEA;

    font-size: 13px;

    line-height: 1.7;
}

.blog-side-box.is-dark > a {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    width: 100%;

    padding: 13px 15px;

    color: #FFFFFF !important;

    background:
        linear-gradient(
            100deg,
            #0878D1,
            #16B5DD
        );

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-side-box.is-dark > a:hover {
    color: #FFFFFF !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-side-box.is-dark > a i {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.blog-side-box.is-dark > a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .blog-detail-wrap {
        padding-left: 25px;
        padding-right: 25px;
    }

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

    .blog-detail-hero-copy {
        padding: 50px 40px;
    }

    .blog-detail-hero-copy h1 {
        font-size: 44px;
    }

    .blog-detail-main {
        padding: 38px;
    }

    .blog-detail-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .blog-detail-page {
        padding: 50px 0 70px;
    }

    .blog-detail-hero {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .blog-detail-hero-copy {
        padding: 45px 35px;
    }

    .blog-detail-hero-copy h1 {
        font-size: 40px;
    }

    .blog-detail-hero-image {
        min-height: 390px;

        max-height: 450px;
    }

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-side-panel {
        position: relative;

        top: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .blog-contact-box,
    .blog-side-box.is-dark {
        grid-column: span 1;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .blog-detail-page {
        padding: 35px 0 55px;
    }

    .blog-detail-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog-detail-hero {
        margin-bottom: 20px;

        border-radius: 20px;
    }

    .blog-detail-hero-copy {
        padding: 32px 23px;
    }

    .blog-pill {
        margin-bottom: 16px;

        padding: 8px 13px;

        font-size: 11px;
    }

    .blog-detail-hero-copy h1 {
        margin-bottom: 15px;

        font-size: 32px;

        letter-spacing: -0.8px;
    }

    .blog-detail-hero-copy > p {
        margin-bottom: 19px;

        font-size: 14px;

        line-height: 1.7;
    }

    .blog-detail-meta {
        gap: 12px;
    }

    .blog-detail-meta span {
        font-size: 12px;
    }

    .blog-detail-hero-image {
        min-height: 270px;

        max-height: 330px;
    }

    .blog-detail-layout {
        gap: 18px;
    }

    .blog-detail-main {
        padding: 27px 21px;

        border-radius: 18px;
    }

    .blog-detail-copy {
        font-size: 15px;

        line-height: 1.8;
    }

    .blog-detail-copy h2 {
        margin-top: 30px;

        font-size: 25px;
    }

    .blog-detail-copy h3 {
        font-size: 21px;
    }

    .blog-detail-copy blockquote {
        padding: 18px 20px;

        font-size: 15px;
    }

    .blog-side-panel {
        display: flex;

        flex-direction: column;

        gap: 15px;
    }

    .blog-side-box {
        padding: 21px;

        border-radius: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .blog-detail-hero-copy h1 {
        font-size: 29px;
    }

    .blog-detail-hero-image {
        min-height: 230px;
    }

    .blog-detail-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .blog-detail-main {
        padding: 23px 18px;
    }

    .blog-side-box.is-dark strong {
        font-size: 20px;
    }

    .blog-related-list > a {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .blog-related-list img {
        width: 70px;
        height: 58px;
    }
}

/* =========================================================
   DR. NEERAJ SKIN & DERMATOLOGY CLINIC
   ABOUT PAGE
   No :root
   No CSS variables
   ========================================================= */

.about-full-page {
    padding: 70px 0 100px;
    background: #F5F9FF;
    overflow: hidden;
}

.about-full-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   HERO
   ========================================================= */

.about-full-hero {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    min-height: 520px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(9, 36, 74, 0.07);
}

.about-full-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 65px;
}

.about-full-copy > span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 15px;
    margin-bottom: 20px;
    color: #0878D1;
    background: #E8F6FF;
    border: 1px solid #D4EBF8;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.about-full-copy h2 {
    max-width: 700px;
    margin: 0 0 18px;
    color: #09244A;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
}

.about-full-copy p {
    max-width: 620px;
    margin: 0 0 30px;
    color: #607A95;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.about-full-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-full-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 21px;
    color: #385775;
    border: 1px solid #D6E7F3;
    border-radius: 10px;
    background: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-full-actions a:first-child {
    color: #FFFFFF;
    border-color: #0878D1;
    background: linear-gradient(100deg, #0878D1, #16B5DD);
    box-shadow: 0 8px 20px rgba(8, 120, 209, 0.18);
}

.about-full-actions a:hover {
    transform: translateY(-2px);
}

.about-full-actions a:first-child:hover {
    color: #FFFFFF;
    box-shadow: 0 12px 28px rgba(8, 120, 209, 0.25);
}

.about-full-actions a i {
    font-size: 17px;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.about-full-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #EAF6FC;
}

.about-full-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.12),
        transparent 35%
    );
    pointer-events: none;
}

.about-full-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-full-hero:hover .about-full-media img {
    transform: scale(1.025);
}


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

.about-full-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 25px 0 75px;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(9, 36, 74, 0.04);
}

.about-full-stats article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 145px;
    padding: 25px 15px;
    text-align: center;
    border-right: 1px solid #E5EEF5;
}

.about-full-stats article:last-child {
    border-right: 0;
}

.about-full-stats i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 11px;
    color: #0878D1;
    background: #EAF7FF;
    border-radius: 12px;
    font-size: 20px;
}

.about-full-stats strong {
    display: block;
    margin-bottom: 3px;
    color: #09244A;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
}

.about-full-stats span {
    color: #7890A5;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.about-full-intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 30px;
}

.about-full-intro > div > span {
    display: block;
    margin-bottom: 11px;
    color: #0878D1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-full-intro h2 {
    max-width: 700px;
    margin: 0;
    color: #09244A;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 800;
}

.about-full-intro > p {
    margin: 0;
    color: #607A95;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 70px;
}

.about-capability-grid article {
    padding: 28px 24px;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 19px;
    box-shadow: 0 8px 25px rgba(9, 36, 74, 0.04);
    transition: 0.3s ease;
}

.about-capability-grid article:hover {
    transform: translateY(-5px);
    border-color: #BBDFF2;
    box-shadow: 0 15px 35px rgba(9, 36, 74, 0.08);
}

.about-capability-grid article > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #0878D1;
    background: #EAF7FF;
    border-radius: 13px;
    font-size: 22px;
}

.about-capability-grid h3 {
    margin: 0 0 10px;
    color: #09244A;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
}

.about-capability-grid p {
    margin: 0;
    color: #71879B;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   STORY
   ========================================================= */

.about-story-panel {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    min-height: 450px;
    margin-bottom: 70px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(9, 36, 74, 0.05);
}

.about-story-images {
    min-height: 450px;
    overflow: hidden;
    background: #EAF6FC;
}

.about-story-images img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.about-story-copy > span {
    margin-bottom: 12px;
    color: #0878D1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-story-copy h2 {
    margin: 0 0 20px;
    color: #09244A;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
}

.about-story-copy p {
    margin: 0 0 16px;
    color: #607A95;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   THREE INFORMATION CARDS
   ========================================================= */

.about-more-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 75px;
}

.about-more-list article {
    padding: 30px;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(9, 36, 74, 0.04);
}

.about-more-list article > div > span {
    display: inline-block;
    margin-bottom: 14px;
    color: #0878D1;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-more-list h2 {
    margin: 0 0 15px;
    color: #09244A;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 750;
}

.about-more-list p {
    margin: 0 0 20px;
    color: #687F94;
    font-size: 13px;
    line-height: 1.75;
}

.about-more-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-more-list li {
    position: relative;
    padding: 9px 0 9px 25px;
    color: #536D84;
    border-top: 1px solid #EDF2F6;
    font-size: 12px;
    line-height: 1.55;
}

.about-more-list li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #16B5DD;
    border-radius: 50%;
}


/* =========================================================
   PROCESS
   ========================================================= */

.about-process-section {
    margin-bottom: 75px;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.about-process-grid article {
    position: relative;
    padding: 30px 25px;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 18px;
}

.about-process-grid article > span {
    display: block;
    margin-bottom: 20px;
    color: #0878D1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-process-grid h3 {
    margin: 0 0 10px;
    color: #09244A;
    font-size: 18px;
    font-weight: 750;
}

.about-process-grid p {
    margin: 0;
    color: #71879B;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES
   ========================================================= */

.about-service-preview {
    margin-bottom: 70px;
}

.about-service-preview .about-full-intro {
    align-items: center;
}

.about-service-preview .about-full-intro > div {
    flex: 1;
}

.about-service-preview .about-full-intro > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: #0878D1;
    background: #EAF7FF;
    border: 1px solid #D1EAF7;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-service-preview .about-full-intro > a:hover {
    color: #FFFFFF;
    background: #0878D1;
}

.about-service-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.about-service-preview-grid > a {
    display: flex;
    flex-direction: column;
    padding: 25px;
    color: inherit;
    background: #FFFFFF;
    border: 1px solid #DCEAF6;
    border-radius: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-service-preview-grid > a:hover {
    transform: translateY(-4px);
    border-color: #BBDFF2;
    box-shadow: 0 12px 30px rgba(9, 36, 74, 0.07);
}

.about-service-preview-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 18px;
    color: #0878D1;
    background: #EAF7FF;
    border-radius: 11px;
    font-size: 19px;
}

.about-service-preview-grid span {
    margin-bottom: 7px;
    color: #8094A7;
    font-size: 11px;
}

.about-service-preview-grid strong {
    color: #09244A;
    font-size: 16px;
    line-height: 1.4;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.about-full-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 48px;
    overflow: hidden;
    color: #FFFFFF;
    background: linear-gradient(
        120deg,
        #09244A,
        #0A527F
    );
    border-radius: 24px;
}

.about-full-cta::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    top: -120px;
    right: 80px;
    border-radius: 50%;
    background: rgba(22, 181, 221, 0.14);
}

.about-full-cta > div {
    position: relative;
    z-index: 2;
}

.about-full-cta span {
    display: block;
    margin-bottom: 8px;
    color: #8ADCF0;
    font-size: 12px;
    font-weight: 700;
}

.about-full-cta h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.about-full-cta > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 14px 23px;
    color: #FFFFFF;
    background: linear-gradient(
        100deg,
        #0878D1,
        #16B5DD
    );
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.about-full-cta > a:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .about-full-wrap {
        padding-left: 25px;
        padding-right: 25px;
    }

    .about-full-copy {
        padding: 50px 40px;
    }

    .about-full-copy h2 {
        font-size: 48px;
    }

    .about-full-intro {
        gap: 35px;
    }

    .about-capability-grid,
    .about-service-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-more-list {
        grid-template-columns: 1fr 1fr;
    }

    .about-more-list article:last-child {
        grid-column: span 2;
    }

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


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .about-full-page {
        padding: 50px 0 70px;
    }

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

    .about-full-copy {
        padding: 45px 35px;
    }

    .about-full-copy h2 {
        font-size: 42px;
    }

    .about-full-media {
        min-height: 400px;
    }

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

    .about-full-stats article:nth-child(2) {
        border-right: 0;
    }

    .about-full-stats article:nth-child(-n+2) {
        border-bottom: 1px solid #E5EEF5;
    }

    .about-full-intro {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-story-panel {
        grid-template-columns: 1fr;
    }

    .about-story-images {
        min-height: 380px;
    }

    .about-story-copy {
        padding: 40px;
    }

    .about-more-list {
        grid-template-columns: 1fr;
    }

    .about-more-list article:last-child {
        grid-column: auto;
    }

    .about-full-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
    body{
      padding-top: 0px;
    }
.hero{
    padding: 35px 0 15px;
    text-align: center;
}
.trust-badge{
    justify-content: center;
}
    .hero-grid{
        grid-template-columns: 1fr;
    }
     .doctor-frame img{
        display: none;

     }
    .about-full-page {
        padding: 35px 0 55px;
    }

    .about-full-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-full-hero {
        border-radius: 20px;
    }

    .about-full-copy {
        padding: 32px 23px;
    }

    .about-full-copy > span {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .about-full-copy h2 {
        margin-bottom: 14px;
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .about-full-copy p {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .about-full-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-full-actions a {
        width: 100%;
    }

    .about-full-media {
        min-height: 300px;
    }

    .about-full-stats {
        margin: 18px 0 50px;
        border-radius: 17px;
    }

    .about-full-stats article {
        min-height: 125px;
        padding: 18px 10px;
    }

    .about-full-stats strong {
        font-size: 23px;
    }

    .about-full-stats span {
        font-size: 11px;
    }

    .about-full-intro h2 {
        font-size: 29px;
    }

    .about-full-intro > p {
        font-size: 14px;
    }

    .about-capability-grid,
    .about-service-preview-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-capability-grid {
        margin-bottom: 50px;
    }

    .about-capability-grid article {
        padding: 23px 20px;
    }

    .about-story-panel {
        margin-bottom: 50px;
        border-radius: 19px;
    }

    .about-story-images {
        min-height: 280px;
    }

    .about-story-copy {
        padding: 30px 22px;
    }

    .about-story-copy h2 {
        font-size: 28px;
    }

    .about-story-copy p {
        font-size: 14px;
    }

    .about-more-list {
        margin-bottom: 55px;
    }

    .about-more-list article {
        padding: 24px 21px;
        border-radius: 17px;
    }

    .about-more-list h2 {
        font-size: 21px;
    }

    .about-process-section {
        margin-bottom: 55px;
    }

    .about-process-grid article {
        padding: 24px 21px;
    }

    .about-service-preview {
        margin-bottom: 50px;
    }

    .about-service-preview .about-full-intro {
        align-items: flex-start;
    }

    .about-service-preview .about-full-intro > a {
        width: fit-content;
    }

    .about-full-cta {
        padding: 30px 23px;
        border-radius: 19px;
    }

    .about-full-cta h2 {
        font-size: 25px;
    }

    .about-full-cta > a {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-full-copy h2 {
        font-size: 30px;
    }

    .about-full-media {
        min-height: 250px;
    }

    .about-full-stats strong {
        font-size: 21px;
    }

    .about-full-stats i {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .about-full-intro h2 {
        font-size: 26px;
    }

    .about-story-images {
        min-height: 240px;
    }

    .about-story-copy h2 {
        font-size: 25px;
    }

    .about-full-cta h2 {
        font-size: 23px;
    }

}