/* ==========================================================================
   Dr. Sonu Singh — Premium Healthcare Design System
   Brand Identity: Pink · Purple · Gold — Gynecologist & Endometriosis Surgeon
   Inspired by logo: Hot Pink, Deep Purple, Olive Gold
   Version: 3.0 — Production-Optimised
   ========================================================================== */

/* ==========================================================================
   PERFORMANCE & RENDERING BASELINE
   ========================================================================== */

/* Native CSS smooth scrolling — no JS dependency */
html {
    scroll-behavior: smooth;
}

/* Optimise image rendering globally */
img {
    image-rendering: auto;
}

/* GPU-composited sticky header — avoids repaint on scroll */
.site-header {
    will-change: transform;
    contain: layout style;
}

/* Isolate paint regions for heavy card grids */
.conditions-grid,
.why-sets-apart-grid,
.treatment-cards-grid,
.blog-cards-grid {
    contain: paint;
}


:root {
    /* ===================== PRIMARY BRAND: HOT PINK ===================== */
    --color-primary: #E01E8C;          /* Vibrant pink from logo S-shape */
    --color-primary-dark: #B81874;     /* Deeper pink on hover */
    --color-primary-light: #FDF0F7;    /* Soft pink background tint */
    --color-primary-subtle: rgba(224, 30, 140, 0.08);
    --color-primary-mid: #F05CA8;      /* Mid pink for gradients */

    /* ===================== SECONDARY: DEEP PURPLE ===================== */
    --color-secondary: #2D1B4E;        /* Deep purple from logo text */
    --color-secondary-dark: #1E1035;   /* Darker purple variant */
    --color-secondary-light: #4A3570;  /* Lighter purple for text */
    --color-secondary-faint: #EDE9F5;  /* Very light purple bg */

    /* ===================== ACCENT: OLIVE GOLD ========================= */
    --color-accent: #8FAF1A;           /* Olive gold from logo leaf */
    --color-accent-dark: #6E8A12;      /* Darker gold */
    --color-accent-light: #F4F8E2;     /* Light gold bg tint */
    --color-accent-subtle: rgba(143, 175, 26, 0.12);
    --color-accent-warm: #B5D023;      /* Bright olive gold */

    /* ===================== BACKGROUNDS =========================== */
    --color-background: #FFFFFF;
    --color-soft-bg: #FAF7FC;          /* Extremely light purple-white */
    --color-soft-bg-alt: #FDF5FA;      /* Light pink-white alt */
    --color-section-alt: #F8F4FD;      /* Section alternator */

    /* ===================== BORDERS =============================== */
    --color-border: #EDE3F3;           /* Light purple border */
    --color-border-hover: #D4B8E8;     /* Purple hover border */

    /* ===================== TYPOGRAPHY ============================ */
    --color-text: #1A0E2E;             /* Nearly-black purple tint for body */
    --color-muted: #7B6B99;            /* Muted purple-grey */
    --color-white: #FFFFFF;

    /* ===================== FONT ================================== */
    --font-family-base: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* ===================== LAYOUT ================================ */
    --container-max-width: 1320px;
    --section-spacing-desktop: 65px;
    --section-spacing-tablet: 60px;
    --section-spacing-mobile: 45px;

    /* ===================== RADII ================================= */
    --radius-section: 28px;
    --radius-card: 20px;
    --radius-btn: 14px;
    --radius-input: 14px;
    --radius-pill: 50px;
    --radius-badge: 8px;

    /* ===================== SHADOWS =============================== */
    --shadow-xs: 0 1px 4px rgba(45, 27, 78, 0.06);
    --shadow-sm: 0 2px 10px rgba(45, 27, 78, 0.07);
    --shadow-md: 0 8px 24px rgba(224, 30, 140, 0.10), 0 4px 10px rgba(45, 27, 78, 0.06);
    --shadow-lg: 0 20px 44px rgba(224, 30, 140, 0.14), 0 8px 16px rgba(45, 27, 78, 0.06);
    --shadow-hover: 0 28px 56px rgba(224, 30, 140, 0.18), 0 12px 20px rgba(45, 27, 78, 0.06);
    --shadow-pink: 0 8px 32px rgba(224, 30, 140, 0.25);
    --shadow-purple: 0 8px 32px rgba(45, 27, 78, 0.18);
    --shadow-gold: 0 6px 20px rgba(143, 175, 26, 0.20);

    /* ===================== GRADIENTS ============================= */
    --gradient-primary: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    --gradient-hero: linear-gradient(135deg, #F05CA8 0%, #E01E8C 50%, #B81874 100%);
    --gradient-purple: linear-gradient(135deg, #4A3570 0%, #2D1B4E 100%);
    --gradient-pink-purple: linear-gradient(135deg, #E01E8C 0%, #6D3BAE 100%);
    --gradient-soft: linear-gradient(145deg, #FDF0F7 0%, #F8F4FD 100%);
    --gradient-gold: linear-gradient(135deg, #B5D023 0%, #8FAF1A 100%);

    /* ===================== TRANSITIONS ========================== */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Reset & Base Typography
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Fluid Typography Scale */
h1, .display-1 {
    font-size: clamp(32px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
}

h2, .section-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.022em;
    color: var(--color-secondary);
}

h3, .subheading {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-secondary);
}

h4, h5, h6 {
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.4;
}

p, .body-text {
    font-size: clamp(15px, 1.05vw, 17.5px);
    color: #4A3570;
    line-height: 1.72;
    margin-bottom: 1.1rem;
}

a { text-decoration: none; }

/* Color Utilities */
.text-muted-custom { color: var(--color-muted) !important; }
.text-primary-custom { color: var(--color-primary) !important; }
.text-accent-custom { color: var(--color-accent) !important; }
.text-secondary-custom { color: var(--color-secondary) !important; }
.text-purple { color: var(--color-secondary-light) !important; }

/* Container */
.container-custom {
    width: 100%;
    max-width: var(--container-max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Section Spacing */
.section-py {
    padding-top: var(--section-spacing-desktop);
    padding-bottom: var(--section-spacing-desktop);
}

@media (max-width: 991.98px) {
    .section-py {
        padding-top: var(--section-spacing-tablet);
        padding-bottom: var(--section-spacing-tablet);
    }
}

@media (max-width: 575.98px) {
    .section-py {
        padding-top: var(--section-spacing-mobile);
        padding-bottom: var(--section-spacing-mobile);
    }
}

/* Background Variations */
.bg-soft { background-color: var(--color-soft-bg); }
.bg-white-pure { background-color: var(--color-background); }
.bg-section-alt { background-color: var(--color-section-alt); }
.bg-dark-brand {
    background: var(--gradient-purple);
    color: #F9F5FF;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    border-radius: var(--radius-btn);
    font-weight: 700;
    padding: 14px 28px;
    font-size: 15.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-pink);
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
    background: var(--gradient-hero);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(224, 30, 140, 0.35);
}

.btn-secondary-custom {
    background-color: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-border);
}
.btn-secondary-custom:hover, .btn-secondary-custom:focus {
    background-color: var(--color-soft-bg);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-accent-custom {
    background: var(--gradient-gold);
    color: var(--color-secondary-dark);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}
.btn-accent-custom:hover {
    background: linear-gradient(135deg, #C8E026 0%, #A0C41E 100%);
    color: var(--color-secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(143, 175, 26, 0.35);
}

.btn-outline-primary-custom {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline-primary-custom:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-white-custom {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn-white-custom:hover {
    background-color: #FDF0F7;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: white;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.85);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   Badges & Pills
   ========================================================================== */
.badge-pill-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border: 1px solid rgba(224, 30, 140, 0.18);
    margin-bottom: 16px;
}

.badge-pill-accent {
    background-color: var(--color-accent-light);
    color: var(--color-accent-dark);
    border-color: rgba(143, 175, 26, 0.25);
}

.badge-pill-purple {
    background-color: var(--color-secondary-faint);
    color: var(--color-secondary);
    border-color: rgba(45, 27, 78, 0.18);
}

/* ==========================================================================
   IMAGE HANDLING SYSTEM (IMAGE HANDLING RULE)
   ========================================================================== */
.image-placeholder-block {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: linear-gradient(145deg, #FDF0F7 0%, #F8F4FD 60%, #F2EBF9 100%);
    border: 2px dashed rgba(224, 30, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.image-placeholder-block:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}
/* Support for real image drop-in */
.image-placeholder-block img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 3;
    border-radius: inherit;
    transition: transform var(--transition-normal);
}
.image-placeholder-block:hover img { transform: scale(1.02); }

.image-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    z-index: 2;
    pointer-events: none;
}

.image-placeholder-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-pink);
}

.image-placeholder-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.image-placeholder-meta {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.88);
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    display: inline-block;
    border: 1px solid var(--color-border);
}

/* Dimension Ratio Presets */
.ratio-hero-doctor  { aspect-ratio: 4 / 5; min-height: 480px; }
.ratio-about-doctor { aspect-ratio: 3 / 4; min-height: 440px; }
.ratio-clinic       { aspect-ratio: 16 / 10; min-height: 310px; }
.ratio-service-card { aspect-ratio: 16 / 9; height: 200px; }
.ratio-wide         { aspect-ratio: 16 / 7; min-height: 260px; }

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 28px -8px rgba(45, 27, 78, 0.10);
    border-bottom-color: rgba(224, 30, 140, 0.10);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

/* Logo */
.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.brand-symbol {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-pink);
    flex-shrink: 0;
}
.brand-text-block {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
.brand-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.brand-sub {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.desktop-nav-link {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--color-secondary-light);
    text-decoration: none;
    padding: 8px 2px;
    position: relative;
    transition: color var(--transition-fast);
}
.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-normal);
}
.desktop-nav-link:hover, .desktop-nav-link.active { color: var(--color-primary); }
.desktop-nav-link:hover::after, .desktop-nav-link.active::after { width: 100%; }

/* Services Dropdown */
.services-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 380px;
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1050;
}
.services-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border-radius: 12px;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}
.dropdown-item-custom:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    transform: translateX(4px);
}
.dropdown-item-custom i {
    color: var(--color-primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-header-call {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--radius-btn);
    background: var(--color-primary-light);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(224, 30, 140, 0.18);
    transition: all var(--transition-fast);
}
.btn-header-call:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-pink);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-secondary);
    padding: 6px;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 320px; max-width: 88vw;
    height: 100vh;
    background: var(--color-white);
    z-index: 1060;
    box-shadow: -12px 0 40px rgba(45, 27, 78, 0.15);
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(29, 11, 54, 0.55);
    backdrop-filter: blur(5px);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}
.mobile-drawer-backdrop.show { opacity: 1; visibility: visible; }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
.mobile-nav-list {
    list-style: none;
    padding: 0; margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-wrapper {
    position: relative;
    padding-top: 70px;
    padding-bottom: 90px;
    overflow: hidden;
    background: var(--color-background);
}
.hero-glow-bg {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle at 60% 40%,
        rgba(224, 30, 140, 0.07) 0%,
        rgba(143, 175, 26, 0.04) 50%,
        transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.hero-glow-bg-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
        rgba(45, 27, 78, 0.05) 0%,
        transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.hero-highlights-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--color-secondary-light);
}
.hero-highlight-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Floating Stat Badges */
.floating-stat-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    z-index: 10;
    animation: floatBob 4s ease-in-out infinite;
}
.floating-stat-top { top: 8%; right: -24px; }
.floating-stat-bottom { bottom: 12%; left: -24px; animation-delay: 1.5s; }
.floating-badge-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.floating-badge-number {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.floating-badge-label {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 600;
}

@keyframes floatBob {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
    background: var(--gradient-purple);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
    text-align: center;
    padding: 8px 0;
}
.stat-number {
    display: block;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #F05CA8, #E01E8C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto;
    height: 50px;
}

/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */
.feature-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-normal);
}
.feature-card:hover {
    border-color: rgba(224, 30, 140, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-card:hover::before { transform: scaleY(1); }

.feature-number-badge {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: var(--shadow-pink);
}
.feature-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ==========================================================================
   TRAINING CARDS
   ========================================================================== */
.training-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 28px 26px;
    border: 1.5px solid var(--color-border);
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.training-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}
.training-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(224, 30, 140, 0.2);
}
.training-card:hover::after { transform: scaleX(1); }
.country-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-item {
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover { border-color: rgba(224, 30, 140, 0.28); box-shadow: var(--shadow-xs); }
.faq-item.open { border-color: rgba(224, 30, 140, 0.35); box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-secondary);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.faq-question:hover, .open .faq-question {
    color: var(--color-primary);
    background: var(--color-primary-light);
}
.faq-chevron {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--color-soft-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-normal), background var(--transition-fast);
    font-size: 14px;
}
.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--color-primary-light);
}
.faq-answer {
    display: none;
    padding: 0 22px 20px 22px;
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.72;
}
.faq-item.open .faq-answer { display: block; }

/* ==========================================================================
   REVIEW CARDS
   ========================================================================== */
.review-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 14px; right: 22px;
    font-size: 60px;
    line-height: 1;
    color: var(--color-primary-light);
    font-family: Georgia, serif;
    font-weight: 700;
}
.review-card:hover {
    border-color: rgba(224, 30, 140, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.review-stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; }
.review-text {
    font-size: 15px;
    color: var(--color-secondary-light);
    line-height: 1.72;
    margin: 12px 0 18px 0;
    font-style: italic;
}
.review-author-name { font-weight: 700; font-size: 14.5px; color: var(--color-secondary); }
.review-author-detail { font-size: 12.5px; color: var(--color-muted); }
.review-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: var(--gradient-pink-purple);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-glow {
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-title {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.cta-text { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.65; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-secondary-dark);
    color: rgba(255,255,255,0.7);
    padding: 0 0 0;
}
.footer-heading {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 28px; height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-link:hover { color: var(--color-primary-mid); }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    margin-top: 60px;
    padding: 22px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumb-section {
    background: var(--color-soft-bg);
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: 13.5px;
    font-weight: 600;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-link { color: var(--color-primary); text-decoration: none; }
.breadcrumb-link:hover { text-decoration: underline; }
.breadcrumb-divider { color: var(--color-muted); font-size: 11px; }
.breadcrumb-current { color: var(--color-muted); }

/* ==========================================================================
   SERVICE PAGE ELEMENTS
   ========================================================================== */
.tab-variant-switcher {
    display: inline-flex;
    background: var(--color-soft-bg);
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}
.tab-switcher-btn {
    padding: 9px 18px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: var(--color-muted);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.tab-switcher-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-pink);
}
.tab-switcher-btn:not(.active):hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.service-content-body h2,
.service-content-body h3 {
    color: var(--color-secondary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.service-content-body h2 { font-size: clamp(18px, 2vw, 24px); }
.service-content-body h3 { font-size: clamp(16px, 1.6vw, 21px); }
.service-content-body ul, .service-content-body ol {
    padding-left: 22px;
    margin-bottom: 16px;
}
.service-content-body li {
    font-size: 15.5px;
    color: var(--color-secondary-light);
    line-height: 1.7;
    margin-bottom: 6px;
}
.service-content-body p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--color-secondary-light);
}

/* Appointment Form Card */
.appointment-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 30px 26px;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-md);
}
.appointment-card .section-title-sm {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 20px;
}
.form-control-custom {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-input);
    padding: 12px 16px;
    font-size: 14.5px;
    font-family: var(--font-family-base);
    width: 100%;
    color: var(--color-secondary);
    background: var(--color-soft-bg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    display: block;
}
.form-control-custom:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(224, 30, 140, 0.12);
    background: white;
}
.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   ABOUT PAGE - TIMELINE, AWARDS
   ========================================================================== */
.about-timeline-item {
    position: relative;
    padding-left: 32px;
    padding-bottom: 28px;
}
.about-timeline-item::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px;
    bottom: -8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary) 0%, rgba(224,30,140,0.15) 100%);
}
.about-timeline-item:last-child::before { display: none; }
.timeline-dot {
    position: absolute;
    top: 6px; left: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid white;
    box-shadow: var(--shadow-pink);
    z-index: 1;
}
.about-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--color-white);
    border-radius: 14px;
    border: 1.5px solid var(--color-border);
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}
.about-badge-item:hover {
    border-color: rgba(224, 30, 140, 0.25);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}
.about-badge-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   SERVICES LISTING PAGE
   ========================================================================== */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    border: 1.5px solid var(--color-border);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(224, 30, 140, 0.28);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.service-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.service-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
    line-height: 1.35;
}
.service-card-desc {
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.65;
    flex: 1;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: 16px;
    transition: gap var(--transition-fast);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1.5px solid var(--color-border);
    transition: all var(--transition-fast);
}
.contact-info-card:hover {
    border-color: rgba(224, 30, 140, 0.25);
    box-shadow: var(--shadow-sm);
}
.contact-icon-circle {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   ANIMATIONS & UTILITY
   ========================================================================== */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

[data-animate] { opacity: 0; }
[data-animate].animated { animation: slideInUp 0.6s var(--transition-normal) forwards; }

.transition-all { transition: all var(--transition-normal); }

/* Max width utilities */
.max-w-65 { max-width: 65%; }
.max-w-75 { max-width: 75%; }

@media (max-width: 767.98px) {
    .max-w-65, .max-w-75 { max-width: 100%; }
    .floating-stat-top, .floating-stat-bottom { display: none !important; }
    .header-inner { height: 72px; }
}

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 991.98px) {
    .mobile-menu-toggle { display: flex !important; }
    .appointment-card { position: static; }
}

@media (max-width: 575.98px) {
    .btn { padding: 12px 22px; font-size: 14.5px; }
    .stat-number { font-size: 34px; }
    .hero-wrapper { padding-top: 50px; padding-bottom: 60px; }
    .brand-logo-img { height: 48px; }
}

/* ==========================================================================
   SCROLLBAR STYLING
   ========================================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-soft-bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
}

/* ==========================================================================
   SELECTION COLOR
   ========================================================================== */
::selection {
    background: rgba(224, 30, 140, 0.15);
    color: var(--color-secondary);
}

/* ==========================================================================
   DR-SURESH ARCHITECTURE & COMPATIBILITY STYLES (Dr. Sonu Singh Brand Identity)
   ========================================================================== */

:root {
    --primary: #2D1B4E;
    --primary-dark: #1E1035;
    --secondary: #E01E8C;
    --secondary-dark: #B81874;
    --secondary-light: #FDF0F7;
    --heading: #1A0E2E;
    --text: #4B4063;
    --border: #EDE3F3;
    --white: #FFFFFF;
}

/* =========================================================
   TOP BAR
========================================================= */
.topbar {
    width: 100%;
    background: var(--primary);
    color: var(--white);
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: .25s ease;
}

.top-contact i {
    color: var(--secondary);
    font-size: 14px;
}

.top-contact:hover {
    color: var(--secondary-light);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-social a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: .25s ease;
}

.topbar-social a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   MAIN HEADER & STICKY
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(45, 27, 78, 0.08);
}

.main-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 52px;
    width: auto;
    max-width: 100%;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto;
}

.nav-link,
.mega-trigger {
    height: 84px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: 0;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: .25s ease;
    letter-spacing: 0.2px;
}

.nav-link:hover,
.mega-trigger:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.mega-nav {
    position: static;
}

.mega-trigger {
    gap: 7px;
}

.mega-trigger i {
    color: var(--secondary);
    font-size: 10px;
    transition: .25s ease;
}

.mega-nav:hover .mega-trigger i {
    transform: rotate(180deg);
}

/* Resources Dropdown in Main Nav */
.nav-dropdown-wrapper {
    position: relative;
    height: 84px;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    height: 84px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    border: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
    letter-spacing: 0.2px;
    position: relative;
}

.nav-dropdown-trigger i {
    color: var(--secondary);
    font-size: 10px;
    transition: .25s ease;
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger,
.nav-dropdown-wrapper.active .nav-dropdown-trigger {
    color: var(--secondary);
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-wrapper.active .nav-dropdown-trigger::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 290px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-top: 3px solid var(--secondary);
    border-radius: 0 0 16px 16px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(45, 27, 78, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--heading);
    transition: all .2s ease;
    border: 1px solid transparent;
}

.nav-dropdown-item:hover {
    background: var(--secondary-light);
    color: var(--secondary);
    transform: translateX(4px);
    border-color: rgba(224, 30, 140, 0.15);
}

.nav-dropdown-item.active {
    background: var(--secondary-light);
    color: var(--secondary);
    border-color: rgba(224, 30, 140, 0.25);
}

.nav-dropdown-item .dropdown-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all .2s ease;
}

.dropdown-item-icon.icon-pink {
    background: rgba(224, 30, 140, 0.12);
    color: var(--secondary);
}

.dropdown-item-icon.icon-purple {
    background: rgba(45, 27, 78, 0.08);
    color: var(--primary);
}

.nav-dropdown-item:hover .dropdown-item-icon {
    background: var(--secondary);
    color: #FFFFFF;
}

.nav-dropdown-item .dropdown-item-text {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-item .dropdown-item-text strong {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.25;
}

.nav-dropdown-item .dropdown-item-text small {
    font-size: 11.5px;
    color: var(--text);
    line-height: 1.35;
    margin-top: 2px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: min(1140px, calc(100vw - 40px));
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--secondary);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 24px 60px rgba(45, 27, 78, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: .25s ease;
}

.mega-nav:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-column {
    padding: 0 16px;
    border-right: 1px solid var(--border);
}

.mega-column:first-child { padding-left: 0; }
.mega-column:last-child { padding-right: 0; border-right: 0; }

.mega-column a {
    min-height: 68px;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--heading);
    text-decoration: none;
    border-bottom: 1px dashed var(--border);
    border-radius: 8px;
    transition: .25s ease;
    margin-bottom: 4px;
}

.mega-column a:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.mega-column a:hover {
    background: var(--secondary-light);
    transform: translateX(4px);
}

.mega-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    color: var(--secondary);
    border-radius: 8px;
    font-size: 14px;
    transition: .25s ease;
}

.mega-column a:hover .mega-icon {
    background: var(--secondary);
    color: var(--white);
}

.mega-content {
    display: block;
}

.mega-content strong {
    display: block;
    margin-bottom: 3px;
    color: var(--heading);
    font-size: 13.5px;
    line-height: 1.35;
}

.mega-content small {
    display: block;
    color: var(--text);
    font-size: 11.5px;
    line-height: 1.45;
}

.appointment-btn {
    padding: 12px 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s ease;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(224, 30, 140, 0.3);
}

.appointment-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.35);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 10px;
    transition: .25s ease;
}

/* Mobile Drawer & Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 27, 78, 0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 330px;
    max-width: 88%;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: .35s ease;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(45, 27, 78, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    min-height: 74px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-header img {
    height: 44px;
    width: auto;
}

.mobile-menu-header button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-body {
    padding: 16px 20px 40px;
}

.mobile-link,
.mobile-treatment-btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.mobile-link:hover,
.mobile-treatment-btn:hover {
    color: var(--secondary);
}

.mobile-treatment-list {
    display: none;
    margin: 6px 0;
    background: var(--color-soft-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.mobile-treatment-list.active {
    display: block;
}

.mobile-treatment-list a {
    display: block;
    padding: 10px 14px;
    color: var(--heading);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px dashed var(--border);
    transition: .2s ease;
}

.mobile-treatment-list a:last-child {
    border-bottom: 0;
}

.mobile-treatment-list a:hover {
    background: var(--secondary-light);
    color: var(--secondary);
    padding-left: 18px;
}

.mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(224, 30, 140, 0.3);
}

/*=========for all mobile===============*/
@media (max-width: 768px) {
    .topbar-social {
        display: none !important;
    }

    

}
/*============for tablet======*/
@media (max-width: 991px) and (min-width: 768px) {
    
    .topbar-social {
        display: none !important;
    }

}
/* =========================================================
   FOOTER APPOINTMENT SECTION (dr-suresh convention)
========================================================= */
.footer-appointment {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #1A0E2E 0%, #2D1B4E 100%);
    margin-top: 40px;
}

.footer-appointment-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.footer-form-heading {
    margin-bottom: 28px;
    text-align: center;
}

.footer-form-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-form-heading h2 span {
    color: var(--secondary);
}

.footer-form-heading p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
}

.footer-appointment-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.footer-appointment-form input,
.footer-appointment-form select {
    height: 52px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    padding: 0 16px;
    font-size: 14px;
    color: var(--heading);
    width: 100%;
}

.footer-appointment-form input:focus,
.footer-appointment-form select:focus {
    outline: none;
    border-color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(224, 30, 140, 0.25);
}

.appointment-submit-btn {
    height: 52px;
    padding: 0 26px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s ease;
    box-shadow: 0 4px 15px rgba(224, 30, 140, 0.4);
}

.appointment-submit-btn:hover {
    background: #fff;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* =========================================================
   SITE FOOTER (dr-suresh structure)
========================================================= */
.site-footer {
    background: #140824;
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 70px 0 45px;
}

.footer-logo-box img {
    height: 54px;
    width: auto;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .25s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-line {
    display: block;
    width: 36px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .25s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--secondary);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(224, 30, 140, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.footer-contact-item span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-bottom: 2px;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
}

.copyright strong {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
/* =========================================================
   ENHANCED FLOATING ACTION BUTTONS (CALL LEFT, WHATSAPP RIGHT)
========================================================= */
.floating-call-btn,
.floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease;
    cursor: pointer;
}

/* Call Button (Left, Medical Blue Gradient) */
.floating-call-btn {
    left: 24px;
    background: linear-gradient(135deg, #2A85FF 0%, #0D6EFD 100%);
    box-shadow: 0 8px 24px rgba(42, 133, 255, 0.45), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.floating-call-btn i {
    font-size: 21px;
    color: #ffffff;
    display: inline-block;
    animation: phoneWiggle 3.5s infinite ease-in-out;
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* WhatsApp Button (Right, Emerald Green Gradient) */
.floating-whatsapp-btn {
    right: 24px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.floating-whatsapp-btn i {
    font-size: 28px;
    color: #ffffff;
    display: inline-block;
    animation: whatsappPulse 3.5s infinite ease-in-out;
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Concentric Radar Pulse Rings */
.floating-pulse-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.floating-call-btn .floating-pulse-ring {
    border: 2px solid rgba(42, 133, 255, 0.7);
    animation: pulseWaveCall 2.6s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.floating-call-btn .floating-pulse-ring.delay {
    animation-delay: 1.3s;
}

.floating-whatsapp-btn .floating-pulse-ring {
    border: 2px solid rgba(37, 211, 102, 0.75);
    animation: pulseWaveWhatsapp 2.6s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.floating-whatsapp-btn .floating-pulse-ring.delay {
    animation-delay: 1.3s;
}

/* Hover Lift & Halo Glow */
.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 14px 32px rgba(42, 133, 255, 0.6), 0 4px 12px rgba(42, 133, 255, 0.35);
    color: #ffffff;
}

.floating-call-btn:hover i {
    animation: none;
    transform: rotate(15deg) scale(1.15);
}

.floating-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.62), 0 4px 12px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.floating-whatsapp-btn:hover i {
    animation: none;
    transform: scale(1.18);
}

.floating-call-btn:active,
.floating-whatsapp-btn:active {
    transform: translateY(-1px) scale(0.96);
}

/* Interactive Tooltip Pills */
.floating-btn-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    background: rgba(31, 18, 53, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-tooltip-right {
    left: calc(100% + 14px);
    transform-origin: left center;
}

.floating-tooltip-left {
    right: calc(100% + 14px);
    transform-origin: right center;
}

.floating-call-btn:hover .floating-btn-tooltip,
.floating-whatsapp-btn:hover .floating-btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

/* Pulsing Status Dot in Tooltip */
.tooltip-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tooltip-status-dot.online {
    background: #00E676;
    box-shadow: 0 0 8px #00E676, 0 0 14px rgba(0, 230, 118, 0.6);
    animation: dotBlink 1.6s infinite ease-in-out;
}

/* Keyframe Animations */
@keyframes pulseWaveCall {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes pulseWaveWhatsapp {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes phoneWiggle {
    0%, 70%, 100% {
        transform: rotate(0deg) scale(1);
    }
    72%, 78%, 84% {
        transform: rotate(-14deg) scale(1.1);
    }
    75%, 81%, 87% {
        transform: rotate(14deg) scale(1.1);
    }
    90% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes whatsappPulse {
    0%, 70%, 100% {
        transform: scale(1);
    }
    74% {
        transform: scale(1.22) rotate(-8deg);
    }
    82% {
        transform: scale(0.94) rotate(5deg);
    }
    89% {
        transform: scale(1.12) rotate(0deg);
    }
}

@keyframes dotBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(0.8);
    }
}

/* =========================================================
   CONSULTATION MODAL
========================================================= */
.consultation-modal .modal-content {
    border-radius: 18px;
    border: 0;
    padding: 30px 24px;
    box-shadow: 0 25px 60px rgba(45, 27, 78, 0.35);
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    background: var(--color-soft-bg);
    color: var(--heading);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.modal-close-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.modal-form-fix .footer-appointment-form {
    grid-template-columns: 1fr;
    gap: 14px;
}

/* =========================================================
   REVIEW SECTION (dr-suresh convention)
========================================================= */
.review-sec {
    padding: 55px 0;
    background: var(--color-soft-bg);
}

.review-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.review-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.review-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.review-header p {
    color: var(--text);
    margin: 0;
    max-width: 600px;
    font-size: 15px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: .25s ease;
}

.review-btn:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.reviewSlider .swiper-slide {
    height: auto;
}

.review-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.review-user h4 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}

.review-user small {
    color: var(--text);
    font-size: 12px;
}

.g-icon {
    width: 22px;
    height: 22px;
}

.review-stars {
    color: #FFB800;
    font-size: 15px;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    flex-grow: 1;
}

/* =========================================================
   HERO BAR FORM (dr-suresh convention)
========================================================= */
.herobar-form .form-control,
.herobar-form .form-select {
    height: 48px;
    border-radius: 8px;
    font-size: 13.5px;
    border: 1px solid var(--border);
}

.herobar-btn {
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.herobar-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Responsive Header / Forms */
@media (max-width: 1199.98px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .site-header .appointment-btn { display: none; }
}

@media (max-width: 991.98px) {
    .footer-appointment-form {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HERO SECTION — SLIDER READY ARCHITECTURE (Dr. Sonu Singh & Team)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    background-color: #ECEFF2;
    overflow: hidden;
}

.heroSlider {
    position: relative;
    width: 100%;
    min-height: 560px;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: #ECEFF2;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .heroSlider,
    .hero-slide-item {
        min-height: 520px;
    }
}

@media (min-width: 1400px) {
    .heroSlider,
    .hero-slide-item {
        min-height: 540px;
    }
}

/* Background Image Layer — Desktop only */
.hero-slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
    z-index: 1;
    pointer-events: none;
}

/* Subtle Gradient Overlay to smoothly blend text with doctor image */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        #ECEFF2 0%, 
        #ECEFF2 44%, 
        rgba(236, 239, 242, 0.94) 56%, 
        rgba(236, 239, 242, 0.25) 74%, 
        rgba(236, 239, 242, 0) 88%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-slide-container {
    position: relative;
    z-index: 3;
    padding-top: 36px;
    padding-bottom: 36px;
}

/* Content Container (col-lg-7) — Wider and grander layout */
.hero-nikhil-content {
    max-width: 720px;
    width: 100%;
}

.hero-nikhil-bar {
    width: 36px;
    height: 3px;
    background: #002157;
    border-radius: 2px;
    margin-bottom: 14px;
}

.hero-nikhil-eyebrow {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #002157;
    margin-bottom: 12px;
}

.hero-nikhil-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #0F1D38;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}

.hero-nikhil-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 22px;
    max-width: 660px;
    font-weight: 400;
}

/* Trust Badges Row */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 33, 87, 0.12);
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    color: #0F1D38;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.hero-trust-pill i {
    color: #E01E8C;
    font-size: 13px;
}

.hero-trust-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 30, 140, 0.15);
    border-color: rgba(224, 30, 140, 0.3);
}

/* CTA Buttons */
.hero-nikhil-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Primary Pill Button with Arrow Circle */
.btn-nikhil-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #4A3570;
    color: #FFFFFF !important;
    padding: 6px 8px 6px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 33, 87, 0.25);
    border: 2px solid #002157;
}

.btn-nikhil-pill .btn-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #B8184C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-nikhil-pill:hover {
    background: #E01E8C;
    border-color: #E01E8C;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(224, 30, 140, 0.35);
}

.btn-nikhil-pill:hover .btn-circle-icon {
    transform: translateX(3px);
}

/* Secondary Pill Outline Button */
.btn-nikhil-outline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    color: #000000 !important;
    padding: 6px 8px 6px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    border: 2px solid #4A3570;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-nikhil-outline .btn-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #002157;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-nikhil-outline:hover {
    background: #002157;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.btn-nikhil-outline:hover .btn-circle-icon {
    background: #B8184C;
    transform: translateX(3px);
}

/* Slider Controls (Pagination & Navigation) */
.hero-swiper-pagination {
    bottom: 18px !important;
    z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #002157;
    opacity: 0.35;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 6px;
    background: #E01E8C;
    opacity: 1;
}

.hero-swiper-prev,
.hero-swiper-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    color: #002157;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-swiper-prev:after,
.hero-swiper-next:after {
    font-size: 16px;
    font-weight: 800;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
    background: #002157;
    color: #FFFFFF;
}

/* Hide locks when single slide */
.heroSlider:not(.swiper-initialized) .hero-swiper-pagination,
.heroSlider:not(.swiper-initialized) .hero-swiper-prev,
.heroSlider:not(.swiper-initialized) .hero-swiper-next,
.swiper-button-lock,
.swiper-pagination-lock {
    display: none !important;
}

/* Tablet Resolution (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-slide-bg {
        background-size: auto 95%;
        background-position: right -40px bottom;
    }
    .hero-slide-overlay {
        background: linear-gradient(90deg, 
            #ECEFF2 0%, 
            #ECEFF2 50%, 
            rgba(236, 239, 242, 0.95) 64%, 
            rgba(236, 239, 242, 0) 84%
        );
    }
    .hero-nikhil-title {
        font-size: 42px;
    }
    .hero-nikhil-content {
        max-width: 580px;
    }
}

/* Mobile & Small Tablet Responsive (< 992px) */
@media (max-width: 991px) {
    .hero-slider-section {
        background: linear-gradient(180deg, #F8FAFD 0%, #EEF3F8 100%) !important;
        border-bottom: 1px solid #E2E8F0;
    }

    .heroSlider,
    .hero-slide-item {
        min-height: auto !important;
        background: transparent !important;
    }

    /* Requirement: In mobile view, do NOT use bg image */
    .hero-slide-bg {
        display: none !important;
    }

    .hero-slide-overlay {
        display: none !important;
    }

    .hero-slide-container {
        padding-top: 36px !important;
        padding-bottom: 50px !important;
    }

    .hero-nikhil-content {
        max-width: 100%;
        text-align: center;
    }

    /* Enhanced Mobile Eyebrow Tag */
    .hero-mobile-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 33, 87, 0.07);
        color: #002157;
        font-size: 11.5px;
        font-weight: 800;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .hero-mobile-eyebrow .eyebrow-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #E01E8C;
        box-shadow: 0 0 0 3px rgba(224, 30, 140, 0.2);
    }

    .hero-nikhil-title {
        font-size: 33px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-nikhil-desc {
        font-size: 14.5px;
        line-height: 1.65;
        margin: 0 auto 22px;
        max-width: 500px;
        color: #4B5565;
    }

    /* Mobile Trust Indicators */
    .hero-trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 26px;
        padding: 0 6px;
    }

    .hero-trust-pill {
        font-size: 11px;
        padding: 6px 11px;
        background: #FFFFFF;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        white-space: nowrap;
    }

    /* Mobile Buttons — Stacked, full-width, clean with spacing */
    .hero-nikhil-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }

    .btn-nikhil-pill,
    .btn-nikhil-outline {
        width: 100%;
        justify-content: space-between;
        padding: 10px 14px 10px 22px;
        font-size: 13px;
    }

    .hero-swiper-prev,
    .hero-swiper-next {
        display: none !important;
    }
}

/* ==========================================================================
   CIRCULAR DOCTOR FRAME WITH BUBBLE EFFECTS & ANIMATED BORDER
   ========================================================================== */
.doctor-circle-container {
    position: relative;
    padding: 20px 15px 10px;
    max-width: 440px;
    margin: 0 auto;
}

/* Master Circle Frame */
.doctor-circle-frame {
    position: relative;
    width: 360px;
    height: 360px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doctor-circle-frame:hover {
    transform: scale(1.025);
}

/* Outer Pulsing Dashed Ring */
.circle-border-pulse {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2.5px dashed rgba(224, 30, 140, 0.35);
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
    animation: borderRingSpin 24s linear infinite;
}

@keyframes borderRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.doctor-circle-frame:hover .circle-border-pulse {
    border-color: #E01E8C;
    border-width: 2.5px;
    inset: -18px;
    animation: borderRingSpin 10s linear infinite, ringPulse 2s ease-in-out infinite alternate;
}

@keyframes ringPulse {
    0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    100% { transform: rotate(180deg) scale(1.04); opacity: 1; }
}

/* Animated Rotating Conic Gradient Border */
.circle-border-spin {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #E01E8C, #4A3570, #B5D023, #002157, #E01E8C);
    z-index: 2;
    transition: all 0.4s ease;
    animation: spinConic 6s linear infinite;
    padding: 5px;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #fff calc(100% - 5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #fff calc(100% - 5px));
    opacity: 0.75;
}

@keyframes spinConic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.doctor-circle-frame:hover .circle-border-spin {
    opacity: 1;
    animation-duration: 2.5s;
    filter: drop-shadow(0 0 12px rgba(224, 30, 140, 0.6));
}

/* Inner Circle Container */
.doctor-circle-inner {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #FFF5FA 0%, #F5F0FB 50%, #EDF3FA 100%) !important;
    border: 5px solid #FFFFFF !important;
    box-shadow: 0 16px 40px rgba(45, 27, 78, 0.12), inset 0 0 30px rgba(224, 30, 140, 0.05);
    z-index: 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.doctor-circle-frame:hover .doctor-circle-inner {
    box-shadow: 0 22px 50px rgba(224, 30, 140, 0.22), inset 0 0 20px rgba(224, 30, 140, 0.1);
}

/* Real Image Support */
.doctor-circle-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.doctor-circle-frame:hover .doctor-circle-inner img {
    transform: scale(1.06);
}

/* Floating Decorative Bubbles */
.bubble-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-1 {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 15px;
    background: linear-gradient(135deg, #E01E8C, #B81874);
    color: #FFFFFF;
    font-size: 19px;
    box-shadow: 0 8px 24px rgba(224, 30, 140, 0.35);
    animation: floatBubble1 4s ease-in-out infinite;
    z-index: 5;
}

.bubble-2 {
    width: 44px;
    height: 44px;
    top: 60px;
    left: -10px;
    background: linear-gradient(135deg, #4A3570, #2D1B4E);
    color: #B5D023;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(45, 27, 78, 0.25);
    animation: floatBubble2 5s ease-in-out infinite;
    z-index: 5;
}

.bubble-3 {
    width: 24px;
    height: 24px;
    bottom: 105px;
    left: -5px;
    background: radial-gradient(circle at 30% 30%, rgba(181, 208, 35, 0.8), rgba(143, 175, 26, 0.4));
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(143, 175, 26, 0.3);
    animation: floatBubble3 3.5s ease-in-out infinite;
}

.bubble-4 {
    width: 34px;
    height: 34px;
    bottom: 25px;
    right: 15px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(224, 30, 140, 0.25));
    border: 1.5px solid rgba(224, 30, 140, 0.4);
    box-shadow: 0 6px 16px rgba(224, 30, 140, 0.2);
    animation: floatBubble1 4.5s ease-in-out infinite reverse;
}

.bubble-5 {
    width: 16px;
    height: 16px;
    top: 40%;
    right: -8px;
    background: rgba(224, 30, 140, 0.5);
    box-shadow: 0 2px 8px rgba(224, 30, 140, 0.3);
    animation: floatBubble2 3s ease-in-out infinite alternate;
}

@keyframes floatBubble1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.08); }
}

@keyframes floatBubble2 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-16px) translateX(6px) scale(1.06); }
}

@keyframes floatBubble3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.15); }
}

/* Hover effect on bubbles when container hovered */
.doctor-circle-container:hover .bubble-1 {
    animation-duration: 2s;
    transform: scale(1.12);
}
.doctor-circle-container:hover .bubble-2 {
    animation-duration: 2.5s;
    transform: scale(1.12);
}

/* Floating Badge Over Circle */
.circle-floating-badge {
    position: absolute;
    bottom: -12px;
    right: 10px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 28px rgba(45, 27, 78, 0.16);
    border: 1px solid rgba(45, 27, 78, 0.08);
    z-index: 6;
    transition: all 0.3s ease;
}

.doctor-circle-frame:hover .circle-floating-badge {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(224, 30, 140, 0.22);
}

.badge-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E01E8C, #4A3570);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(224, 30, 140, 0.3);
}

.badge-exp-title {
    font-size: 13px;
    font-weight: 800;
    color: #0F1D38;
    line-height: 1.2;
}

.badge-exp-sub {
    font-size: 11px;
    color: #6B7280;
    font-weight: 600;
}

/* Mobile Responsiveness for Circle */
@media (max-width: 575px) {
    .doctor-circle-container {
        padding: 20px 10px;
    }
    .doctor-circle-frame {
        width: 270px;
        height: 270px;
    }
    .circle-border-pulse {
        inset: -10px;
    }
    .circle-border-spin {
        inset: -4px;
    }
    .circle-floating-badge {
        bottom: -16px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: max-content;
        padding: 6px 14px 6px 10px;
    }
    .badge-icon-wrap {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .badge-exp-title {
        font-size: 12px;
    }
    .badge-exp-sub {
        font-size: 10px;
    }
    .bubble-1 {
        width: 38px;
        height: 38px;
        font-size: 14px;
        top: 0;
        right: 5px;
    }
    .bubble-2 {
        width: 34px;
        height: 34px;
        font-size: 13px;
        top: 40px;
        left: -5px;
    }
}
/* ==========================================================================
   ADVANCED LAPAROSCOPIC SURGERY — CAROUSEL REDESIGN
   ========================================================================== */
.services-carousel-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6FC 40%, #F5EFF9 100%);
    position: relative;
    padding-top: 65px;
    padding-bottom: 45px;
}

/* Header Navigation Controls */
.services-nav-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.services-nav-buttons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-swiper-prev,
.services-swiper-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(45, 27, 78, 0.14);
    background: #FFFFFF;
    color: #2D1B4E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(45, 27, 78, 0.05);
    font-size: 14px;
}

.services-swiper-prev:hover,
.services-swiper-next:hover {
    background: #E01E8C;
    border-color: #E01E8C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 30, 140, 0.35);
}

.services-swiper-prev.swiper-button-disabled,
.services-swiper-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Swiper Slide & Service Card */
.servicesSwiper {
    padding: 12px 4px 34px !important;
    overflow: hidden !important;
}

.servicesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.service-carousel-card {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(45, 27, 78, 0.09);
    border-radius: 22px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px rgba(45, 27, 78, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* Top Gradient Accent Line on Hover */
.service-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E01E8C, #4A3570, #B5D023);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-carousel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 30, 140, 0.35);
    box-shadow: 0 20px 48px rgba(224, 30, 140, 0.12), 0 6px 18px rgba(45, 27, 78, 0.06);
}

.service-carousel-card:hover::before {
    opacity: 1;
}

/* Card Top Bar: Number Badge */
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.service-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(224, 30, 140, 0.3);
    transition: transform 0.3s ease;
}

.service-carousel-card:hover .service-num-badge {
    transform: scale(1.08) rotate(-4deg);
}

/* Card Title */
.service-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #0F1D38;
    line-height: 1.35;
    margin-bottom: 14px;
    min-height: 52px;
}

.service-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.service-card-title a:hover {
    color: #E01E8C;
}

/* Card Visual Image Container (Recommended: 600x400 px, Aspect Ratio 3:2) */
.service-card-visual {
    position: relative;
    width: 100%;
    height: 210px;
    border-radius: 16px;
    background: #F8F5FB;
    border: 1px solid rgba(45, 27, 78, 0.08);
    display: block;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-carousel-card:hover .service-card-visual {
    border-color: rgba(224, 30, 140, 0.3);
    box-shadow: 0 10px 24px rgba(224, 30, 140, 0.12);
}

.service-carousel-card:hover .service-visual-img {
    transform: scale(1.06);
}

/* Card Body Description */
.service-card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4B5565;
    margin-bottom: 20px;
    min-height: 66px;
    flex-grow: 1;
}

/* Feature Chips */
.service-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.chip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FAF7FC;
    border: 1px solid rgba(45, 27, 78, 0.08);
    border-radius: 6px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 700;
    color: #4A3570;
    transition: all 0.25s ease;
}

.chip-item i {
    color: #E01E8C;
    font-size: 11px;
}

.service-carousel-card:hover .chip-item {
    background: #FFFFFF;
    border-color: rgba(224, 30, 140, 0.2);
}

/* Dedicated Action Button (Go to Service Page) */
.btn-service-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 12px;
    background: #FAF6FC;
    color: #2D1B4E !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 1.5px solid rgba(45, 27, 78, 0.1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
}

.btn-arrow-wrap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E01E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.btn-service-action:hover {
    background: linear-gradient(135deg, #E01E8C 0%, #4A3570 100%);
    color: #FFFFFF !important;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(224, 30, 140, 0.35);
    transform: translateY(-2px);
}

.btn-service-action:hover .btn-arrow-wrap {
    background: #FFFFFF;
    color: #4A3570;
    transform: translateX(4px);
}

/* Pagination Dots */
.services-swiper-pagination {
    position: relative !important;
    margin-top: 30px !important;
    bottom: auto !important;
    text-align: center;
}

.services-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
    background: rgba(45, 27, 78, 0.25);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.services-swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #E01E8C;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-carousel-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .service-card-title {
        font-size: 18px;
        min-height: auto;
    }
    .service-card-visual {
        height: 190px;
    }
    .services-nav-wrapper {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .service-card-visual {
        height: 175px;
    }
    .service-carousel-card {
        padding: 20px 18px;
    }
}

/* ==========================================================================
   8. WHY CHOOSE DR. SONU SINGH SECTION STYLES
   ========================================================================== */
.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 65px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF7FC 50%, #F5EEFB 100%);
}

.why-choose-glow-top {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(224, 30, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.why-choose-glow-bottom {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(143, 175, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.why-choose-content-wrap {
    position: relative;
    z-index: 2;
}

.why-choose-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(224, 30, 140, 0.08);
    border: 1px solid rgba(224, 30, 140, 0.22);
    color: #E01E8C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(224, 30, 140, 0.06);
}

.why-choose-pill-badge .badge-icon-sparkle {
    color: #E01E8C;
    font-size: 14px;
}

.why-choose-main-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.28;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-lead-text {
    font-size: 16px;
    line-height: 1.72;
    color: #4A3570;
    margin-bottom: 26px;
    max-width: 680px;
}

.why-choose-subheading-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.subheading-accent-line {
    width: 38px;
    height: 4px;
    background: linear-gradient(90deg, #E01E8C 0%, #8FAF1A 100%);
    border-radius: 4px;
}

.why-choose-subheading {
    font-size: 18px;
    font-weight: 800;
    color: #2D1B4E;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* 6 Key Differentiators Grid */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.why-card-item {
    background: #FFFFFF;
    border: 1px solid #EDE3F3;
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(45, 27, 78, 0.04);
    position: relative;
    overflow: hidden;
}

.why-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E01E8C, #8FAF1A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card-item:hover {
    transform: translateY(-4px);
    border-color: #D4B8E8;
    box-shadow: 0 12px 30px rgba(224, 30, 140, 0.12);
}

.why-card-item:hover::before {
    opacity: 1;
}

.why-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-card-item:hover .why-card-icon-wrap {
    transform: scale(1.08);
}

.why-card-icon-wrap.icon-pink {
    background: rgba(224, 30, 140, 0.09);
    color: #E01E8C;
    border: 1px solid rgba(224, 30, 140, 0.2);
}

.why-card-icon-wrap.icon-purple {
    background: rgba(45, 27, 78, 0.08);
    color: #2D1B4E;
    border: 1px solid rgba(45, 27, 78, 0.18);
}

.why-card-icon-wrap.icon-gold {
    background: rgba(143, 175, 26, 0.12);
    color: #6E8A12;
    border: 1px solid rgba(143, 175, 26, 0.25);
}

.why-card-body {
    flex: 1;
}

.why-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2D1B4E;
    margin-bottom: 5px;
    line-height: 1.35;
}

.why-card-desc {
    font-size: 13px;
    color: #7B6B99;
    line-height: 1.55;
    margin: 0;
}

/* Bottom CTA Strip */
.why-choose-cta-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(45, 27, 78, 0.08);
}

.btn-why-consultation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(224, 30, 140, 0.28);
    transition: all 0.3s ease;
}

.btn-why-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(224, 30, 140, 0.38);
    color: #FFFFFF !important;
}

.why-direct-call {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-direct-call .call-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #7B6B99;
    letter-spacing: 0.5px;
}

.why-direct-call .call-number {
    color: #2D1B4E;
    font-weight: 700;
    font-size: 15.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.why-direct-call .call-number:hover {
    color: #E01E8C;
}

/* ==========================================================================
   DOCTOR CAROUSEL (RIGHT COLUMN)
   ========================================================================== */
.why-doctor-carousel-container {
    position: relative;
    padding: 24px 10px;
    max-width: 500px;
    margin: 0 auto;
}

/* Floating Badges */
.carousel-floating-badge {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(45, 27, 78, 0.14);
    border: 1px solid rgba(237, 227, 243, 0.9);
    pointer-events: none;
}

.carousel-floating-badge.top-badge {
    top: 6px;
    right: -4px;
}

.carousel-floating-badge.bottom-badge {
    bottom: 6px;
    left: -4px;
}

.badge-icon-gold {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(143, 175, 26, 0.15);
    color: #6E8A12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.badge-icon-pink {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(224, 30, 140, 0.12);
    color: #E01E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.carousel-floating-badge .badge-sup {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: #7B6B99;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.carousel-floating-badge .badge-main {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.2;
}

/* Swiper Outer Frame */
.why-swiper-frame {
    position: relative;
    border-radius: 26px;
    padding: 10px;
    background: #FFFFFF;
    border: 2px solid rgba(224, 30, 140, 0.18);
    box-shadow: 0 22px 55px rgba(45, 27, 78, 0.13), 0 6px 20px rgba(224, 30, 140, 0.08);
    overflow: hidden;
}

/* Image Size Pill Indicator for SEO & Team */
.carousel-dimension-pill {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 12;
    background: rgba(30, 16, 53, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-dimension-pill i {
    color: #B5D023;
    font-size: 12px;
}

/* Slide Card */
.doctor-slide-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #1E1035;
}

.doctor-slide-image-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: #1E1035;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-slide-card:hover .doctor-slide-img {
    transform: scale(1.03);
}

.doctor-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 20px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 10, 36, 0.85) 45%, rgba(20, 10, 36, 0.98) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    z-index: 5;
}

.doctor-slide-caption .slide-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 3px;
    line-height: 1.3;
}

.doctor-slide-caption .slide-subtitle {
    font-size: 12px;
    color: #EDE9F5;
    margin: 0;
    opacity: 0.88;
    line-height: 1.4;
}

.doctor-slide-caption .slide-num-pill {
    background: #E01E8C;
    color: #FFFFFF;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Swiper Controls */
.why-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 4px;
    gap: 12px;
}

.why-swiper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #EDE3F3;
    background: #FAF7FC;
    color: #2D1B4E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.why-swiper-btn:hover {
    background: #E01E8C;
    color: #FFFFFF;
    border-color: #E01E8C;
    transform: scale(1.08);
}

.why-choose-pagination {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto !important;
    position: static !important;
}

.why-choose-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px !important;
    background: #2D1B4E;
    opacity: 0.25;
    transition: all 0.3s ease;
}

.why-choose-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 6px;
    background: #E01E8C;
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }
    .why-doctor-carousel-container {
        margin-top: 36px;
        max-width: 460px;
        padding: 15px 0;
    }
    .carousel-floating-badge.top-badge {
        top: -8px;
        right: 8px;
    }
    .carousel-floating-badge.bottom-badge {
        bottom: -8px;
        left: 8px;
    }
}

@media (max-width: 767px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-choose-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .btn-why-consultation {
        width: 100%;
        justify-content: center;
    }
    .carousel-dimension-pill {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* ==========================================================================
   9. INTERNATIONAL TRAINING SECTION STYLES
   ========================================================================== */
.intl-training-section {
    position: relative;
    overflow: hidden;
    padding: 65px 0;
    background: linear-gradient(180deg, #F8F4FD 0%, #FFFFFF 50%, #F5EEFB 100%);
}

.intl-glow-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 30, 140, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.intl-glow-right {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(45, 27, 78, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.intl-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(45, 27, 78, 0.07);
    border: 1px solid rgba(45, 27, 78, 0.16);
    color: #2D1B4E;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.intl-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E01E8C;
    box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.7);
    animation: intl-pulse-ring 2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes intl-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.7);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(224, 30, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 30, 140, 0);
    }
}

.intl-main-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.28;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.intl-main-subtitle {
    font-size: 16.5px;
    line-height: 1.7;
    color: #4A3570;
    max-width: 740px;
    margin: 0 auto 24px;
}

/* Fast-Stats Strip */
.intl-stats-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 10px 24px;
    background: #FFFFFF;
    border: 1px solid #EDE3F3;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(45, 27, 78, 0.05);
    margin-bottom: 15px;
}

.intl-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #2D1B4E;
}

.intl-stat-chip i {
    color: #E01E8C;
    font-size: 14px;
}

.intl-stat-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D4B8E8;
}

/* Cards Grid */
.intl-cards-row {
    position: relative;
}

.intl-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 22px;
    padding: 32px 26px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(45, 27, 78, 0.05);
}

.intl-card:hover {
    transform: translateY(-8px);
    border-color: #D4B8E8;
    box-shadow: 0 20px 45px rgba(224, 30, 140, 0.12), 0 8px 16px rgba(45, 27, 78, 0.06);
}

/* Top Accent Bar */
.intl-card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.intl-card:hover .intl-card-accent-bar {
    height: 6px;
}

.bar-italy {
    background: linear-gradient(90deg, #009246 0%, #009246 33%, #FFFFFF 33%, #FFFFFF 66%, #CE2B37 66%, #CE2B37 100%);
}

.bar-france {
    background: linear-gradient(90deg, #0055A4 0%, #0055A4 33%, #FFFFFF 33%, #FFFFFF 66%, #EF4135 66%, #EF4135 100%);
}

.bar-india {
    background: linear-gradient(90deg, #FF9933 0%, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%, #138808 100%);
}

/* Number Watermark */
.intl-watermark-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(45, 27, 78, 0.05);
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.intl-card:hover .intl-watermark-num {
    color: rgba(224, 30, 140, 0.12);
    transform: scale(1.08);
}

/* Destination Header */
.intl-dest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
}

.intl-country-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    background: #FAF7FC;
    border: 1px solid #EDE3F3;
}

.intl-flag-icon {
    font-size: 16px;
    line-height: 1;
}

.intl-country-name {
    color: #2D1B4E;
    font-weight: 800;
}

.intl-city-sep {
    color: #D4B8E8;
    font-size: 11px;
}

.intl-city-name {
    color: #E01E8C;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.intl-status-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(143, 175, 26, 0.12);
    color: #6E8A12;
    border: 1px solid rgba(143, 175, 26, 0.25);
    white-space: nowrap;
}

/* Icon Box */
.intl-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}

.intl-card:hover .intl-icon-box {
    transform: scale(1.12) rotate(4deg);
}

.box-italy {
    background: linear-gradient(135deg, rgba(224, 30, 140, 0.12), rgba(0, 146, 70, 0.12));
    color: #E01E8C;
    border: 1.5px solid rgba(224, 30, 140, 0.25);
}

.box-france {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.12), rgba(224, 30, 140, 0.12));
    color: #0055A4;
    border: 1.5px solid rgba(0, 85, 164, 0.25);
}

.box-india {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.14), rgba(19, 136, 8, 0.12));
    color: #D97706;
    border: 1.5px solid rgba(255, 153, 51, 0.3);
}

/* Card Content */
.intl-card-body {
    flex-grow: 1;
}

.intl-card-title {
    font-size: 17.5px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.35;
    margin-bottom: 12px;
}

.intl-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #7B6B99;
    margin-bottom: 20px;
}

/* Clinical Focus Highlight Tags */
.intl-tags-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 14px;
    background: #FAF7FC;
    border-radius: 14px;
    border: 1px solid #F0E8F8;
}

.intl-tag {
    font-size: 12.5px;
    font-weight: 600;
    color: #2D1B4E;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intl-tag i {
    color: #6E8A12;
    font-size: 11px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(143, 175, 26, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Card Footer */
.intl-card-footer {
    padding-top: 14px;
    border-top: 1px dashed #EDE3F3;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intl-credential-tag {
    font-size: 12px;
    font-weight: 700;
    color: #6E8A12;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.intl-credential-tag i {
    font-size: 13px;
}

/* ==========================================================================
   BOTTOM PRESTIGE SYNTHESIS RIBBON
   ========================================================================== */
.intl-synthesis-ribbon {
    margin-top: 36px;
    background: linear-gradient(135deg, #2D1B4E 0%, #1E1035 100%);
    border-radius: 24px;
    padding: 34px 38px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(224, 30, 140, 0.25);
    box-shadow: 0 20px 50px rgba(45, 27, 78, 0.22);
}

.intl-synthesis-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(224, 30, 140, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intl-synthesis-icon-seal {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #B5D023;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intl-synthesis-eyebrow {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #B5D023;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.intl-synthesis-eyebrow .text-gold {
    color: #B5D023;
    margin-right: 4px;
}

.intl-synthesis-quote {
    font-size: 16px;
    line-height: 1.68;
    color: #FFFFFF;
    font-style: italic;
    font-weight: 500;
}

.btn-intl-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(224, 30, 140, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-intl-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(224, 30, 140, 0.5);
    color: #FFFFFF !important;
}

.intl-trust-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 8px;
}

.intl-trust-subtext i {
    color: #B5D023;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
    .intl-training-section {
        padding: 60px 0;
    }
    .intl-synthesis-ribbon {
        padding: 26px 22px;
    }
    .intl-synthesis-actions {
        margin-top: 12px;
        text-align: left;
    }
    .intl-trust-subtext {
        justify-content: flex-start;
    }
    .btn-intl-consult {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .intl-card {
        padding: 24px 18px 20px;
    }
    .intl-stats-strip {
        flex-direction: column;
        border-radius: 20px;
        padding: 14px 18px;
        gap: 10px;
    }
    .intl-stat-divider {
        display: none;
    }
}

/* ==========================================================================
   7. CONDITIONS TREATED SECTION STYLES
   ========================================================================== */
.conditions-section {
    position: relative;
    overflow: hidden;
    padding: 65px 0;
    background: linear-gradient(180deg, #FAF7FC 0%, #FFFFFF 50%, #FAF7FC 100%);
}

.conditions-glow-left {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(224, 30, 140, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.conditions-glow-right {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(143, 175, 26, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.conditions-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(224, 30, 140, 0.08);
    border: 1px solid rgba(224, 30, 140, 0.22);
    color: #E01E8C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.conditions-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E01E8C;
    box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.7);
    animation: cond-pulse-ring 2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes cond-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(224, 30, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 30, 140, 0);
    }
}

.conditions-main-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.28;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.conditions-main-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #4A3570;
    max-width: 680px;
}

/* Card Design */
.condition-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 20px;
    padding: 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(45, 27, 78, 0.04);
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E01E8C, #8FAF1A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-6px);
    border-color: #D4B8E8;
    box-shadow: 0 16px 36px rgba(224, 30, 140, 0.12), 0 4px 12px rgba(45, 27, 78, 0.05);
}

.condition-card:hover::before {
    opacity: 1;
}

.condition-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.condition-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.condition-card:hover .condition-icon-wrap {
    transform: scale(1.1);
}

.icon-theme-pink {
    background: rgba(224, 30, 140, 0.09);
    color: #E01E8C;
    border: 1px solid rgba(224, 30, 140, 0.22);
}

.icon-theme-purple {
    background: rgba(45, 27, 78, 0.08);
    color: #2D1B4E;
    border: 1px solid rgba(45, 27, 78, 0.18);
}

.icon-theme-gold {
    background: rgba(143, 175, 26, 0.12);
    color: #6E8A12;
    border: 1px solid rgba(143, 175, 26, 0.25);
}

.condition-num-pill {
    font-size: 11.5px;
    font-weight: 800;
    color: #7B6B99;
    background: #FAF7FC;
    border: 1px solid #EDE3F3;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.condition-title {
    font-size: 17.5px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}

.condition-title a {
    color: #2D1B4E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.condition-title a:hover {
    color: #E01E8C;
}

.condition-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #7B6B99;
    margin-bottom: 18px;
    flex-grow: 1;
}

.condition-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed #EDE3F3;
    margin-top: auto;
}

.condition-tag {
    font-size: 11.5px;
    font-weight: 700;
    color: #6E8A12;
    background: rgba(143, 175, 26, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.condition-link {
    font-size: 13px;
    font-weight: 700;
    color: #E01E8C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.condition-link:hover {
    transform: translateX(3px);
    color: #B81874;
}

/* Bottom Help Banner */
.conditions-bottom-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7FC 100%);
    border: 1.5px solid #EDE3F3;
    border-radius: 22px;
    padding: 26px 30px;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.05);
}

.conditions-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(224, 30, 140, 0.1);
    color: #E01E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.conditions-help-title {
    font-size: 17.5px;
    font-weight: 800;
    color: #2D1B4E;
    margin: 0;
}

.conditions-help-desc {
    font-size: 13.5px;
    color: #7B6B99;
    margin: 0;
}

.btn-conditions-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(224, 30, 140, 0.28);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-conditions-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 30, 140, 0.38);
    color: #FFFFFF !important;
}

.btn-conditions-call {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #FAF7FC;
    border: 1.5px solid #EDE3F3;
    color: #2D1B4E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-conditions-call:hover {
    background: #E01E8C;
    color: #FFFFFF;
    border-color: #E01E8C;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .conditions-section {
        padding: 60px 0;
    }
    .conditions-bottom-banner {
        padding: 22px 18px;
    }
}

@media (max-width: 575px) {
    .condition-card {
        padding: 20px 16px;
    }
    .btn-conditions-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   12. CTA SECTION WITH GOOGLE MAP SHOWCASE STYLES
   ========================================================================== */
.cta-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: #FFFFFF;
    color: #E01E8C !important;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    background: #FAF7FC;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.cta-timings-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
}

/* Right Column Google Map Card */
.cta-map-wrapper {
    position: relative;
    z-index: 5;
}

.cta-map-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 22px;
    padding: 18px 18px 14px;
    box-shadow: 0 20px 50px rgba(30, 16, 53, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    transition: transform 0.35s ease;
}

.cta-map-card:hover {
    transform: translateY(-4px);
}

.cta-map-header {
    margin-bottom: 12px;
}

.map-pin-pulse-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(224, 30, 140, 0.1);
    color: #E01E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.5);
    animation: map-pin-pulse-ring 2s infinite;
}

@keyframes map-pin-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(224, 30, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 30, 140, 0);
    }
}

.map-clinic-name {
    font-size: 16px;
    font-weight: 800;
    color: #2D1B4E;
    letter-spacing: -0.01em;
}

.map-clinic-address {
    font-size: 12px;
    color: #7B6B99;
    line-height: 1.45;
}

.map-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(143, 175, 26, 0.12);
    color: #6E8A12;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(143, 175, 26, 0.25);
    white-space: nowrap;
}

.status-green-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8FAF1A;
}

.cta-map-iframe-container {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #EDE3F3;
    box-shadow: 0 4px 12px rgba(45, 27, 78, 0.08);
    background: #E8E2EE;
}

.cta-map-iframe-container iframe {
    display: block;
    width: 100%;
}

.cta-map-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #EDE3F3;
}

.map-landmark-note {
    font-size: 11.5px;
    color: #7B6B99;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.map-landmark-note .text-gold {
    color: #8FAF1A;
}

.btn-map-action.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    background: #2D1B4E;
    color: #FFFFFF !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-map-action.btn-directions:hover {
    background: #E01E8C;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

.btn-map-action.btn-call {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(224, 30, 140, 0.1);
    color: #E01E8C !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-map-action.btn-call:hover {
    background: #E01E8C;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cta-map-wrapper {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .btn-cta-white, .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
    .cta-map-card {
        padding: 14px 12px 10px;
    }
}

/* ==========================================================================
   USER CUSTOMIZATION: LIGHTER CTA BG, WHITE CHIPS WITH PINK TEXT, LIGHTER APPOINTMENT OUTER CONTAINER
   ========================================================================== */

/* 1. Lighter, more luminous & soft CTA Section Background */
.cta-section {
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
                linear-gradient(135deg, #EC349A 0%, #DF298F 35%, #8B4EC9 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* 2. Chips with pure White Background and Pink Text */
.cta-highlight-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    color: #E01E8C !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(224, 30, 140, 0.12) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.cta-highlight-chip i {
    color: #E01E8C !important;
    font-size: 14px !important;
}

.cta-highlight-chip:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 3px 8px rgba(224, 30, 140, 0.18) !important;
}

/* 3. Luxury Color Combination for Footer Appointment Section (Fast Consultation Booking) */
.footer-appointment {
    position: relative !important;
    padding: 65px 0 !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF4FC 45%, #F1E3F7 100%) !important;
    border-top: 1px solid #EFE0F5 !important;
    margin-top: 30px !important;
}

.footer-appointment-box {
    position: relative !important;
    background: radial-gradient(ellipse at 50% 0%, rgba(224, 30, 140, 0.32) 0%, transparent 65%),
                linear-gradient(145deg, #24123E 0%, #351A58 50%, #1D0A32 100%) !important;
    border: 1.5px solid rgba(224, 30, 140, 0.38) !important;
    border-radius: 26px !important;
    padding: 48px 42px !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 25px 65px rgba(45, 27, 78, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.footer-appointment-box .footer-form-heading .sub-badge {
    background: rgba(224, 30, 140, 0.22) !important;
    border: 1px solid rgba(224, 30, 140, 0.45) !important;
    color: #FF85BA !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    padding: 6px 18px !important;
    border-radius: 30px !important;
}

.footer-appointment-box .footer-form-heading h2 {
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 32px !important;
}

.footer-appointment-box .footer-form-heading h2 span {
    color: #FF70A6 !important;
    background: linear-gradient(135deg, #FF7BB0 0%, #E01E8C 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.footer-appointment-box .footer-form-heading p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.footer-appointment-form input,
.footer-appointment-form select {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    color: #2D1B4E !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
}

.footer-appointment-form input:focus,
.footer-appointment-form select:focus {
    border-color: #E01E8C !important;
    box-shadow: 0 0 0 3.5px rgba(224, 30, 140, 0.25) !important;
}

.appointment-submit-btn {
    background: linear-gradient(135deg, #E01E8C 0%, #B81370 100%) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 25px rgba(224, 30, 140, 0.45) !important;
    transition: all 0.3s ease !important;
}

.appointment-submit-btn:hover {
    background: #FFFFFF !important;
    color: #E01E8C !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(224, 30, 140, 0.5) !important;
}

/* ==========================================================================
   RESPONSIVE CAROUSEL FOR CONDITIONS TREATED & WHAT SETS HER APART (MOBILE & TABLET)
   ========================================================================== */

/* --- Desktop (> 991px): Pristine CSS Grid / Multi-column Row --- */
@media (min-width: 992px) {
    .conditions-cards-swiper,
    .why-sets-apart-swiper {
        overflow: visible !important;
    }
    
    .conditions-cards-swiper > .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        transform: none !important;
        width: auto !important;
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }
    
    .conditions-cards-swiper > .swiper-wrapper > .swiper-slide {
        width: 33.33333333% !important;
        flex: 0 0 33.33333333% !important;
        max-width: 33.33333333% !important;
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        height: auto !important;
    }

    .why-sets-apart-swiper > .swiper-wrapper.why-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        transform: none !important;
        width: 100% !important;
    }

    .why-sets-apart-swiper > .swiper-wrapper > .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
        height: auto !important;
    }

    .conditions-cards-pagination,
    .why-cards-pagination {
        display: none !important;
    }
}

/* --- Mobile & Tablet (<= 991px): Smooth Touch Carousel --- */
@media (max-width: 991px) {
    .conditions-cards-swiper,
    .why-sets-apart-swiper {
        overflow: hidden !important;
        padding-bottom: 42px !important;
        position: relative !important;
        width: 100% !important;
        touch-action: pan-y !important;
    }

    .conditions-cards-swiper > .swiper-wrapper,
    .why-sets-apart-swiper > .swiper-wrapper,
    .why-sets-apart-swiper > .swiper-wrapper.why-cards-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        box-sizing: border-box !important;
        gap: 0 !important;
    }

    .conditions-cards-swiper .swiper-slide,
    .why-sets-apart-swiper .swiper-slide {
        height: auto !important;
        display: flex !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
    }

    .conditions-cards-swiper .condition-card {
        height: 100% !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 0 !important;
    }

    .conditions-cards-swiper .condition-desc {
        flex-grow: 1 !important;
    }

    .why-sets-apart-swiper .why-card-item {
        height: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 0 !important;
    }

    /* Modern active pill pagination with brand hot pink */
    .conditions-cards-pagination,
    .why-cards-pagination {
        position: absolute !important;
        bottom: 8px !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        z-index: 10 !important;
    }

    .conditions-cards-pagination .swiper-pagination-bullet,
    .why-cards-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #CBD5E1;
        opacity: 0.8;
        margin: 0 !important;
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .conditions-cards-pagination .swiper-pagination-bullet-active,
    .why-cards-pagination .swiper-pagination-bullet-active {
        width: 28px;
        background: #E01E8C !important;
        opacity: 1;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(224, 30, 140, 0.4);
    }
}

/* ==========================================================================
   ABOUT DOCTOR PAGE — REDESIGN & ENHANCED STYLING SYSTEM
   ========================================================================== */

/* 1. Hero Showcase & Frame */
.about-hero-section {
    position: relative;
    overflow: hidden;
}

/* Dual Image Showcase Layout */
.about-dual-image-showcase {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 24px;
}

/* Ambient Backdrop Plate */
.about-backdrop-plate {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 86%;
    height: 84%;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(224, 30, 140, 0.16) 0%, rgba(143, 175, 26, 0.14) 50%, rgba(45, 27, 78, 0.10) 100%);
    border: 1.5px solid rgba(224, 30, 140, 0.25);
    transform: rotate(-3.5deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.about-dual-image-showcase:hover .about-backdrop-plate {
    transform: rotate(-1.5deg) scale(1.02);
}

.about-backdrop-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 30, 140, 0.22) 0%, transparent 70%);
    filter: blur(28px);
    z-index: 0;
    pointer-events: none;
}

/* Primary Square Image Card (Dr. Sonu Singh) */
.about-primary-img-card {
    position: relative;
    width: 82%;
    border-radius: 28px;
    background: #FFFFFF;
    border: 6px solid #FFFFFF;
    box-shadow: 0 20px 50px rgba(45, 27, 78, 0.14), 0 4px 16px rgba(224, 30, 140, 0.10);
    overflow: hidden;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.about-dual-image-showcase:hover .about-primary-img-card {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(45, 27, 78, 0.20), 0 8px 24px rgba(224, 30, 140, 0.16);
}

.about-primary-img-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 22px;
}

.about-primary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-dual-image-showcase:hover .about-primary-img {
    transform: scale(1.06);
}

.about-img-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(45, 27, 78, 0.72) 100%);
    pointer-events: none;
    z-index: 2;
}

.primary-img-doctor-tag {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 3;
    color: #FFFFFF;
}

.primary-img-doctor-tag .tag-title {
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.primary-img-doctor-tag .tag-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Secondary Overlapping Square Image Card (OT / Laparoscopy) */
.about-secondary-img-card {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 52%;
    border-radius: 22px;
    background: #FFFFFF;
    border: 5px solid #FFFFFF;
    box-shadow: 0 16px 40px rgba(45, 27, 78, 0.18), 0 4px 14px rgba(224, 30, 140, 0.14);
    overflow: hidden;
    z-index: 3;
    animation: floatSlow 4s ease-in-out infinite alternate;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-dual-image-showcase:hover .about-secondary-img-card {
    box-shadow: 0 24px 50px rgba(224, 30, 140, 0.25);
}

.secondary-img-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 17px;
}

.about-secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-secondary-img-card:hover .about-secondary-img {
    transform: scale(1.08);
}

.secondary-img-badge {
    position: absolute;
    bottom: 10px;
    left: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(45, 27, 78, 0.90);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.badge-pulse-green {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8FAF1A;
    box-shadow: 0 0 0 3px rgba(143, 175, 26, 0.35);
    display: inline-block;
    animation: pulseDot 2s infinite;
}

/* Floating Glassmorphic Badges */
.about-dual-float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 30, 140, 0.22);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(45, 27, 78, 0.14);
    z-index: 4;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-dual-float-badge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(224, 30, 140, 0.2);
}

.badge-exp-top {
    top: 14px;
    right: 12px;
    animation: floatBadgeTop 5s ease-in-out infinite alternate;
}

.badge-surg-bottom {
        bottom: 44px;
    left: 207px;
    animation: floatBadgeBottom 4.5s ease-in-out infinite alternate;
}

.dual-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.dual-badge-icon.icon-pink {
    background: rgba(224, 30, 140, 0.12);
    color: #E01E8C;
}

.dual-badge-icon.icon-purple {
    background: rgba(45, 27, 78, 0.12);
    color: #2D1B4E;
}

.dual-badge-info strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.2;
}

.dual-badge-info span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #7B6B99;
}

/* Animations */
@keyframes floatSlow {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

@keyframes floatBadgeTop {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

@keyframes floatBadgeBottom {
    0% { transform: translateY(0px); }
    100% { transform: translateY(6px); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(143, 175, 26, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(143, 175, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(143, 175, 26, 0); }
}

/* Leadership strip under frame */
.about-sub-credential-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7FC 100%);
    border: 1px solid rgba(45, 27, 78, 0.08);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.05);
}

.credential-seal {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E01E8C, #B81874);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.credential-title {
    font-size: 14px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.3;
}

.credential-desc {
    font-size: 12.5px;
    color: #7B6B99;
    line-height: 1.35;
    margin-top: 2px;
}

/* 2. Hero Content */
.about-main-heading {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 8px;
    margin-bottom: 6px;
}

.about-hero-designation {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.35;
}

.about-narrative-box p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Stat Box Grid */
.about-stat-box {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF7FC 100%);
    border: 1.5px solid rgba(237, 227, 243, 0.9);
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.about-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E01E8C, #8FAF1A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 30, 140, 0.35);
    box-shadow: 0 12px 28px rgba(224, 30, 140, 0.12);
}

.about-stat-box:hover::before {
    opacity: 1;
}

.about-stat-box .stat-digit {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #E01E8C;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.about-stat-box .stat-sub {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #4A3570;
    margin-top: 5px;
    line-height: 1.25;
}

/* Buttons */
.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E01E8C 0%, #B81874 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(224, 30, 140, 0.28);
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(224, 30, 140, 0.4);
    color: #FFFFFF !important;
}

.btn-about-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: #FFFFFF;
    color: #2D1B4E !important;
    border: 1.5px solid rgba(45, 27, 78, 0.18);
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-outline:hover {
    background: rgba(224, 30, 140, 0.06);
    border-color: #E01E8C;
    color: #E01E8C !important;
    transform: translateY(-2px);
}

/* 3. Education & Qualification Cards */
.qualification-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 20px;
    padding: 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E01E8C, #8FAF1A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 30, 140, 0.3);
    box-shadow: 0 14px 36px rgba(224, 30, 140, 0.12);
}

.qualification-card:hover::before {
    opacity: 1;
}

.qualification-badge-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.qualification-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.qualification-icon-wrap.icon-mbbs {
    background: rgba(224, 30, 140, 0.1);
    color: #E01E8C;
}

.qualification-icon-wrap.icon-ms {
    background: rgba(45, 27, 78, 0.1);
    color: #2D1B4E;
}

.qualification-icon-wrap.icon-fmas {
    background: rgba(143, 175, 26, 0.15);
    color: #6E8A12;
}

.qualification-icon-wrap.icon-ivf {
    background: linear-gradient(135deg, rgba(224, 30, 140, 0.1), rgba(45, 27, 78, 0.1));
    color: #E01E8C;
}

.qualification-year-pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #FAF7FC;
    color: #7B6B99;
    border: 1px solid #EDE3F3;
}

.qualification-degree {
    font-size: 17.5px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 8px;
    line-height: 1.3;
}

.qualification-institution {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #E01E8C;
    margin-bottom: 12px;
    line-height: 1.4;
}

.qualification-institution i {
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.qualification-desc {
    font-size: 13.5px;
    color: #7B6B99;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: auto;
}

/* 4. International Training Hubs */
.intl-hub-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 22px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.05);
    transition: all 0.35s ease;
    position: relative;
}

.intl-hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 30, 140, 0.3);
    box-shadow: 0 18px 44px rgba(224, 30, 140, 0.12);
}

.intl-hub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0E8F5;
}

.intl-hub-flag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-circle {
    font-size: 26px;
    line-height: 1;
}

.hub-city {
    font-size: 16px;
    font-weight: 800;
    color: #2D1B4E;
    margin: 0;
    line-height: 1.2;
}

.hub-specialty {
    font-size: 12px;
    font-weight: 600;
    color: #E01E8C;
}

.hub-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(224, 30, 140, 0.08);
    color: #E01E8C;
}

.hub-institution-title {
    font-size: 17px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hub-desc {
    font-size: 14px;
    color: #7B6B99;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hub-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.hub-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2D1B4E;
}

.hub-point i {
    color: #8FAF1A;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Training special ribbon */
.training-special-ribbon {
    background: linear-gradient(135deg, #2D1B4E 0%, #1E1035 100%);
    border-radius: 20px;
    padding: 26px 30px;
    border: 1px solid rgba(224, 30, 140, 0.3);
    box-shadow: 0 14px 36px rgba(45, 27, 78, 0.18);
    color: #FFFFFF;
}

.ribbon-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E01E8C, #B81874);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ribbon-title {
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
}

.ribbon-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.btn-ribbon-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    background: #E01E8C;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ribbon-action:hover {
    background: #FFFFFF;
    color: #E01E8C !important;
    transform: translateY(-2px);
}

/* 5. Areas of Expertise (10 Cards) */
.about-expertise-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 20px;
    padding: 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 30, 140, 0.35);
    box-shadow: 0 16px 36px rgba(224, 30, 140, 0.12);
}

.expertise-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.expertise-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.expertise-icon-wrap.icon-pink {
    background: rgba(224, 30, 140, 0.1);
    color: #E01E8C;
}

.expertise-icon-wrap.icon-purple {
    background: rgba(45, 27, 78, 0.1);
    color: #2D1B4E;
}

.expertise-icon-wrap.icon-gold {
    background: rgba(143, 175, 26, 0.15);
    color: #6E8A12;
}

.expertise-num {
    font-size: 12px;
    font-weight: 800;
    color: #7B6B99;
    letter-spacing: 0.5px;
}

.expertise-title {
    font-size: 16.5px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 8px;
    line-height: 1.35;
}

.expertise-title a {
    color: #2D1B4E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.expertise-title a:hover {
    color: #E01E8C;
}

.expertise-desc {
    font-size: 13.5px;
    color: #7B6B99;
    line-height: 1.6;
    margin-bottom: 14px;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #E01E8C;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.expertise-link:hover {
    gap: 10px;
    color: #B81874;
}

/* 6. Leadership Timeline Boxes */
.timeline-box {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 20px;
    padding: 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.04);
    transition: all 0.35s ease;
    position: relative;
}

.timeline-box:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 30, 140, 0.3);
    box-shadow: 0 16px 36px rgba(45, 27, 78, 0.08);
}

.timeline-badge-year {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(224, 30, 140, 0.08);
    color: #E01E8C;
    margin-bottom: 14px;
    align-self: flex-start;
}

.timeline-role {
    font-size: 17px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 6px;
    line-height: 1.3;
}

.timeline-place {
    font-size: 13px;
    font-weight: 700;
    color: #E01E8C;
    margin-bottom: 10px;
    line-height: 1.4;
}

.timeline-summary {
    font-size: 13.5px;
    color: #7B6B99;
    line-height: 1.55;
    margin-bottom: 14px;
}

.timeline-tag {
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: #FAF7FC;
    color: #4A3570;
    margin-top: auto;
    align-self: flex-start;
    border: 1px solid #EDE3F3;
}

/* 7. Research Showcase Card */
.research-showcase-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
}

.research-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0E8F5;
}

.research-header-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.research-header-icon.icon-pink {
    background: rgba(224, 30, 140, 0.12);
    color: #E01E8C;
}

.research-header-icon.icon-purple {
    background: rgba(45, 27, 78, 0.12);
    color: #2D1B4E;
}

.research-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #2D1B4E;
    margin: 0;
    line-height: 1.2;
}

.research-card-sub {
    font-size: 12.5px;
    font-weight: 600;
    color: #7B6B99;
}

.research-presentation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.congress-item {
    background: #FAF7FC;
    border: 1px solid #EDE3F3;
    border-radius: 16px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.congress-item:hover {
    background: #FFFFFF;
    border-color: rgba(224, 30, 140, 0.3);
    box-shadow: 0 6px 18px rgba(224, 30, 140, 0.08);
}

.congress-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #E01E8C;
    margin-bottom: 6px;
}

.congress-title {
    font-size: 15.5px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 6px;
    line-height: 1.3;
}

.congress-desc {
    font-size: 13px;
    color: #7B6B99;
    line-height: 1.55;
    margin-bottom: 0;
}

.research-domain-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.domain-pill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FAF7FC;
    border: 1px solid #EDE3F3;
    border-radius: 14px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.domain-pill-card:hover {
    background: #FFFFFF;
    border-color: rgba(224, 30, 140, 0.25);
    transform: translateX(4px);
}

.domain-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(224, 30, 140, 0.08);
    color: #E01E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.domain-pill-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #2D1B4E;
    line-height: 1.25;
}

.domain-pill-card span {
    display: block;
    font-size: 12px;
    color: #7B6B99;
    line-height: 1.35;
}

/* 8. Honors & Memberships */
.about-honor-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE3F3;
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
}

.honor-heading {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.25;
}

.awards-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.award-item-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7FC 100%);
    border: 1px solid #EDE3F3;
    border-radius: 16px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.award-item-card:hover {
    border-color: rgba(224, 30, 140, 0.3);
    box-shadow: 0 8px 20px rgba(224, 30, 140, 0.08);
    transform: translateY(-2px);
}

.award-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8FAF1A, #6E8A12);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.award-title {
    font-size: 15.5px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 4px;
    line-height: 1.3;
}

.award-by {
    font-size: 13px;
    color: #7B6B99;
    line-height: 1.45;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.membership-pill-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #FAF7FC;
    border: 1px solid #EDE3F3;
    border-radius: 16px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.membership-pill-box:hover {
    background: #FFFFFF;
    border-color: rgba(224, 30, 140, 0.25);
    box-shadow: 0 6px 18px rgba(45, 27, 78, 0.06);
    transform: translateY(-2px);
}

.membership-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(45, 27, 78, 0.08);
    color: #2D1B4E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.membership-title {
    font-size: 16px;
    font-weight: 800;
    color: #E01E8C;
    margin-bottom: 2px;
}

.membership-name {
    font-size: 12px;
    color: #7B6B99;
    line-height: 1.4;
    font-weight: 600;
}

/* Responsive Rules for About Page */
@media (max-width: 991.98px) {
    .about-dual-image-showcase {
        max-width: 420px;
        margin-bottom: 30px;
    }
    .badge-surg-bottom {
        bottom: 50px;
        left: -10px;
    }
    .training-special-ribbon {
        padding: 20px;
    }
    .btn-ribbon-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .about-dual-image-showcase {
        max-width: 320px;
        padding-bottom: 15px;
    }
    .about-primary-img-card {
        width: 85%;
        border-radius: 22px;
        border-width: 4px;
    }
    .about-secondary-img-card {
        width: 58%;
        right: -8px;
        bottom: 35px;
        border-radius: 18px;
        border-width: 3.5px;
    }
    .about-dual-float-badge {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 14px;
    }
    .dual-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 8px;
    }
    .dual-badge-info strong {
        font-size: 12px;
    }
    .dual-badge-info span {
        font-size: 9.5px;
    }
    .badge-exp-top {
        top: 6px;
        right: -6px;
    }
    .badge-surg-bottom {
        bottom: 40px;
        left: -8px;
    }
    .about-sub-credential-card {
        padding: 14px 16px;
    }
    .about-stat-box {
        padding: 12px 8px;
    }
    .about-stat-box .stat-digit {
        font-size: 18px;
    }
    .qualification-card,
    .intl-hub-card,
    .about-expertise-card,
    .timeline-box,
    .research-showcase-card,
    .about-honor-card {
        padding: 20px 16px;
    }
    .btn-about-primary,
    .btn-about-outline {
        width: 100%;
        justify-content: center;
    }
    .membership-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MEDIA PAGE (GALLERY, YOUTUBE VIDEOS, GOOGLE REVIEWS & PRESS)
   ========================================================================== */

.media-hero-section {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(224, 30, 140, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(45, 27, 78, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
                #FAF7FD;
    border-bottom: 1px solid #EDE3F3;
    overflow: hidden;
}

.media-hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.media-hero-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: #63527D;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 28px;
}

/* Media Quick Jump Navigation Pills */
.media-nav-pills {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(45, 27, 78, 0.07);
    border: 1px solid #EDE3F3;
    flex-wrap: wrap;
    justify-content: center;
}

.media-nav-pills a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 40px;
    font-size: 13.5px;
    font-weight: 700;
    color: #554470;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-nav-pills a:hover,
.media-nav-pills a.active {
    background: linear-gradient(135deg, #E01E8C 0%, #B81570 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(224, 30, 140, 0.35);
    transform: translateY(-1px);
}

/* Media Hero Counters */
.media-stat-box {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 20px 16px;
    border: 1px solid #EDE3F3;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.media-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(45, 27, 78, 0.08);
}

.media-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(224, 30, 140, 0.1);
    color: #E01E8C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.media-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.1;
    margin-bottom: 4px;
}

.media-stat-label {
    font-size: 12.5px;
    color: #7B6B99;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   GALLERY SECTION WITH FILTERS & WATERMARK DUMMY IMAGES
   -------------------------------------------------------------------------- */
.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.btn-gallery-filter {
    border: 1.5px solid #E4D8ED;
    background: #FFFFFF;
    color: #554470;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gallery-filter:hover {
    border-color: #E01E8C;
    color: #E01E8C;
    background: rgba(224, 30, 140, 0.04);
}

.btn-gallery-filter.active {
    background: #2D1B4E;
    border-color: #2D1B4E;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(45, 27, 78, 0.25);
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 26px;
}

.media-gallery-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #EDE3F3;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.media-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(45, 27, 78, 0.12);
    border-color: #D9C3E8;
}

/* Dummy Image Showcase Block with Size Watermark */
.media-dummy-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: radial-gradient(circle at center, #FBF8FD 0%, #EFE5F6 70%, #E6D9EF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #EFE4F5;
    cursor: pointer;
}

.media-dummy-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(224, 30, 140, 0.02), rgba(224, 30, 140, 0.02) 15px, transparent 15px, transparent 30px);
    pointer-events: none;
}

.media-dummy-circle-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E01E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(224, 30, 140, 0.18), 0 0 0 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.media-gallery-card:hover .media-dummy-circle-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Prominent Watermark Size Badge */
.media-watermark-pill {
    z-index: 2;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border: 1.5px dashed #E01E8C;
    border-radius: 20px;
    padding: 6px 16px;
    color: #2D1B4E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(45, 27, 78, 0.08);
}

.media-watermark-pill i {
    color: #E01E8C;
    font-size: 14px;
}

.media-card-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 5px 12px;
    border-radius: 30px;
    background: rgba(45, 27, 78, 0.88);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(6px);
}

.media-card-zoom-trigger {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2D1B4E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s ease;
    border: none;
}

.media-dummy-img-wrap:hover .media-card-zoom-trigger {
    opacity: 1;
    transform: scale(1);
}

.media-gallery-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.media-gallery-title {
    font-size: 17px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.35;
    margin-bottom: 8px;
}

.media-gallery-desc {
    font-size: 13.5px;
    color: #6C5B85;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.media-gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #F0E8F5;
    font-size: 12px;
    color: #8C7C9E;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   YOUTUBE VIDEOS SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.media-videos-section {
    background: #FFFFFF;
    position: relative;
}

.featured-video-card {
    background: #FAF7FC;
    border-radius: 24px;
    border: 1.5px solid #EDE3F3;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 16px 40px rgba(45, 27, 78, 0.06);
}

.video-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #190E2B;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.video-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.video-player-wrap:hover .video-cover-img,
.media-video-thumb-block:hover .video-cover-img {
    transform: scale(1.06);
}

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 27, 78, 0.25) 0%, rgba(45, 27, 78, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-play-pulse-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #E01E8C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    padding-left: 5px;
    box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.6);
    animation: media-play-pulse 2s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-player-wrap:hover .video-play-pulse-btn {
    transform: scale(1.15);
    background: #C01475;
}

@keyframes media-play-pulse {
    0% { box-shadow: 0 0 0 0 rgba(224, 30, 140, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(224, 30, 140, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 30, 140, 0); }
}

.video-duration-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

/* Secondary Video Grid Cards */
.media-video-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #EDE3F3;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.media-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 27, 78, 0.1);
    border-color: #D9C3E8;
}

.media-video-thumb-block {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, #2F1E4B 0%, #1A0F2E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.media-video-thumb-block .video-play-pulse-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
}

.media-video-info-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.media-video-title {
    font-size: 16px;
    font-weight: 800;
    color: #2D1B4E;
    line-height: 1.35;
    margin-bottom: 8px;
}

.media-video-desc {
    font-size: 13px;
    color: #6C5B85;
    line-height: 1.5;
    margin-bottom: 14px;
    flex-grow: 1;
}

.media-video-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8C7C9E;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px solid #F0E8F5;
}

/* --------------------------------------------------------------------------
   GOOGLE REVIEWS SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.google-reviews-section {
    background: #FAF7FD;
    position: relative;
    border-top: 1px solid #EDE3F3;
    border-bottom: 1px solid #EDE3F3;
}

/* Google Brand Score Header Card */
.google-score-banner {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 30px;
    border: 1.5px solid #EDE3F3;
    box-shadow: 0 12px 36px rgba(45, 27, 78, 0.06);
    margin-bottom: 36px;
}

.google-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #2D1B4E;
}

.google-rating-big-num {
    font-size: 52px;
    font-weight: 900;
    color: #2D1B4E;
    line-height: 1;
    letter-spacing: -0.02em;
}

.google-stars-gold {
    color: #FBBC05;
    font-size: 18px;
    display: flex;
    gap: 3px;
}

.google-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #6C5B85;
    margin-bottom: 4px;
}

.google-progress-rail {
    flex-grow: 1;
    height: 8px;
    background: #F0E8F5;
    border-radius: 10px;
    overflow: hidden;
}

.google-progress-fill {
    height: 100%;
    background: #FBBC05;
    border-radius: 10px;
}

.btn-google-write {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #2D1B4E;
    color: #FFFFFF !important;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-google-write:hover {
    background: #E01E8C;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

/* Individual Google Review Cards */
.media-review-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 22px;
    border: 1.5px solid #EDE3F3;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.media-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 27, 78, 0.09);
    border-color: #D9C3E8;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E01E8C 0%, #2D1B4E 100%);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-name {
    font-size: 15px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 1px;
}

.review-author-city {
    font-size: 12px;
    color: #8C7C9E;
    font-weight: 600;
}

.review-procedure-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: #FAF5FC;
    color: #89206A;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid #F0DFF0;
}

.review-body-quote {
    font-size: 13.5px;
    color: #4A3A63;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8C7C9E;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px dashed #EDE3F3;
}

/* --------------------------------------------------------------------------
   PRESS & MEDIA COVERAGE
   -------------------------------------------------------------------------- */
.media-press-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #EDE3F3;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.media-press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 27, 78, 0.09);
    border-color: #D9C3E8;
}

.press-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: radial-gradient(circle at center, #F8F3FA 0%, #ECE1F2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px dashed #D9C3E8;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .media-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

    box-shadow: 0 12px 36px rgba(45, 27, 78, 0.06);
    margin-bottom: 36px;
}

.google-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #2D1B4E;
}

.google-rating-big-num {
    font-size: 52px;
    font-weight: 900;
    color: #2D1B4E;
    line-height: 1;
    letter-spacing: -0.02em;
}

.google-stars-gold {
    color: #FBBC05;
    font-size: 18px;
    display: flex;
    gap: 3px;
}

.google-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #6C5B85;
    margin-bottom: 4px;
}

.google-progress-rail {
    flex-grow: 1;
    height: 8px;
    background: #F0E8F5;
    border-radius: 10px;
    overflow: hidden;
}

.google-progress-fill {
    height: 100%;
    background: #FBBC05;
    border-radius: 10px;
}

.btn-google-write {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #2D1B4E;
    color: #FFFFFF !important;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-google-write:hover {
    background: #E01E8C;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

/* Individual Google Review Cards */
.media-review-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 22px;
    border: 1.5px solid #EDE3F3;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.media-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 27, 78, 0.09);
    border-color: #D9C3E8;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E01E8C 0%, #2D1B4E 100%);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-name {
    font-size: 15px;
    font-weight: 800;
    color: #2D1B4E;
    margin-bottom: 1px;
}

.review-author-city {
    font-size: 12px;
    color: #8C7C9E;
    font-weight: 600;
}

.review-procedure-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: #FAF5FC;
    color: #89206A;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid #F0DFF0;
}

.review-body-quote {
    font-size: 13.5px;
    color: #4A3A63;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8C7C9E;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px dashed #EDE3F3;
}

/* --------------------------------------------------------------------------
   PRESS & MEDIA COVERAGE
   -------------------------------------------------------------------------- */
.media-press-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #EDE3F3;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.media-press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 27, 78, 0.09);
    border-color: #D9C3E8;
}

.press-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: radial-gradient(circle at center, #F8F3FA 0%, #ECE1F2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px dashed #D9C3E8;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .media-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .media-gallery-grid {
        grid-template-columns: 1fr;
    }
    .media-nav-pills {
        border-radius: 20px;
    }
    .media-nav-pills a {
        padding: 7px 14px;
        font-size: 12.5px;
    }
}

/* =========================================================
   NEW FOOTER LAYOUT (REFERENCE IMAGE: QUICK LINKS + 5 COLS)
========================================================= */
.site-footer {
    background:var(--primary);
    color: #b0b0ba !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
}

.footer-quick-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.footer-quick-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-right: 4px;
    letter-spacing: 0.3px;
}

.footer-quick-item {
    color: #f1f1f5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0 4px;
}

.footer-quick-item:hover {
    color: #2A85FF;
}

.footer-pipe {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0 3px;
}

.footer-social-circle-white {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #0B0B0E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social-circle-white:hover {
    background: #2A85FF;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-main-grid {
    padding: 15px 0 0 0 ;
}

.footer-col-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.footer-blue-line {
    display: block;
    width: 34px;
    height: 2.5px;
    background: #2A85FF;
    border-radius: 2px;
    margin-bottom: 18px;
}

.footer-clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-clean-list li {
    margin-bottom: 10px;
}

.footer-clean-list a {
    color: #b0b0ba;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.45;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-clean-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-row {
    font-size: 13.5px;
    color: #b0b0ba;
    line-height: 1.5;
}

.footer-contact-row a {
    color: #b0b0ba;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-row a:hover {
    color: #ffffff;
}

.footer-contact-icon-blue {
    color: #2A85FF;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.footer-map-box {
    width: 100%;
    height: 110px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 14px;
    background: #1a1a24;
}

.footer-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-map-btn {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #ffffff;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 13px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.copyright strong {
    color: #fff;
}

@media (max-width: 767.98px) {
    .floating-call-btn {
        left: 16px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
    .floating-call-btn i {
        font-size: 19px;
    }
    .floating-whatsapp-btn {
        right: 16px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
    .floating-whatsapp-btn i {
        font-size: 24px;
    }
    .floating-btn-tooltip {
        display: none !important;
    }
    .footer-quick-bar {
        font-size: 13px;
        gap: 6px;
    }
    .footer-quick-item {
        font-size: 13px;
    }
}

/* ==========================================================================
   Treatment Section 3 Procedure Image Frame (Minimal Border)
   ========================================================================== */
.treatment-overview-img-card {
    background-color: #ffffff;
    border: 1px solid #E5DCEB;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 4px 18px rgba(45, 27, 78, 0.05);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-overview-img-card:hover {
    border-color: #D4B8E8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 27, 78, 0.08);
}

.treatment-overview-img-card img {
    width: 100%;
    height: clamp(380px, 36vw, 490px);
    object-fit: cover;
    display: block;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(45, 27, 78, 0.04);
    transition: transform 0.4s ease;
}

.treatment-overview-img-card:hover img {
    transform: scale(1.015);
}


/* ==========================================================================
   PRODUCTION PERFORMANCE — v3.0 ADDITIONS
   ========================================================================== */

/* Ensure images/media never overflow their container */
img, video, iframe {
    max-width: 100%;
}

/* Lazy-loaded image rendering optimisation */
img[loading="lazy"] {
    content-visibility: auto;
}

/* Release will-change after animation to free compositor memory */
[data-animate] {
    will-change: opacity, transform;
}
[data-animate].animated {
    will-change: auto;
}

/* Swiper GPU acceleration */
.swiper-wrapper {
    will-change: transform;
}

/* Prevent layout shift on external links hover */
a {
    text-underline-offset: 3px;
}

/* ==========================================================================
   HOMEPAGE CREATIVE ANIMATIONS & MICRO-INTERACTIONS (v3.2)
   ========================================================================== */

/* 1. Hero CTA Button Light Beam Sheen */
.btn-nikhil-pill {
    position: relative !important;
    overflow: hidden !important;
}

.btn-nikhil-pill::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60px;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    animation: btnNikhilSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes btnNikhilSweep {
    0%, 30% {
        left: -120%;
    }
    60%, 100% {
        left: 160%;
    }
}

/* 2. Hero Trust Badges Organic Float Rhythm */
.hero-trust-pill {
    animation: heroPillHover 4s ease-in-out infinite alternate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-trust-pill:nth-child(1) {
    animation-delay: 0s;
}

.hero-trust-pill:nth-child(2) {
    animation-delay: 1.3s;
}

.hero-trust-pill:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes heroPillHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

.hero-trust-pill:hover {
    animation-play-state: paused;
    transform: translateY(-7px) scale(1.03) !important;
    border-color: #E01E8C !important;
    box-shadow: 0 8px 20px rgba(224, 30, 140, 0.2) !important;
}

/* 3. Hero Quick Consultation Bar Top Animated Flow Gradient */
.herobar-section {
    position: relative;
}

.herobar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E01E8C, #4A3570, #B5D023, #002157, #E01E8C);
    background-size: 300% 100%;
    animation: gradientFlowBar 8s linear infinite;
}

@keyframes gradientFlowBar {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 4. Stats Number Pop Effect */
.stat-number.counter-complete {
    animation: statNumberPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes statNumberPop {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); text-shadow: 0 0 12px rgba(240, 92, 168, 0.5); }
    100% { transform: scale(1); }
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-counter-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-counter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 27, 78, 0.08);
    border-color: rgba(224, 30, 140, 0.25) !important;
}

/* 5. Doctor Circular Frame Ambient Aurora Glow & Levitation */
.doctor-circle-container::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    max-width: 95%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 30, 140, 0.16) 0%, rgba(74, 53, 112, 0.08) 50%, transparent 72%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
    animation: docAuroraBreathe 6s ease-in-out infinite alternate;
}

@keyframes docAuroraBreathe {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.95;
    }
}

.circle-floating-badge {
    animation: badgeGentleLevitate 4s ease-in-out infinite alternate;
}

@keyframes badgeGentleLevitate {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-6px);
    }
}

.doctor-circle-frame:hover .circle-floating-badge {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 36px rgba(224, 30, 140, 0.28);
}

/* 6. Service Carousel Card 3D Lift & Glass Reflection Sheen */
.service-carousel-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.3s ease !important;
}

.service-carousel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
    z-index: 10;
}

.service-carousel-card:hover::after {
    left: 160%;
}

.service-carousel-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 50px rgba(45, 27, 78, 0.12), 0 8px 20px rgba(224, 30, 140, 0.1) !important;
    border-color: rgba(224, 30, 140, 0.35) !important;
}

.service-card-visual {
    overflow: hidden;
    border-radius: 14px;
}

.service-visual-img {
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-carousel-card:hover .service-visual-img {
    transform: scale(1.06) rotate(0.4deg);
}

.service-carousel-card:hover .btn-service-action .btn-arrow-wrap {
    transform: translateX(4px);
    background: #E01E8C !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(224, 30, 140, 0.35);
}

/* 7. Conditions Cards Interactive Hover */
.condition-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease !important;
}

.condition-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 42px rgba(45, 27, 78, 0.11) !important;
}

.condition-icon-wrap {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.condition-card:hover .condition-icon-wrap {
    transform: scale(1.12) rotate(6deg);
}

.conditions-pulse-dot, .intl-pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E01E8C;
    margin-right: 6px;
}

.conditions-pulse-dot::after, .intl-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #E01E8C;
    animation: dotPulseRadar 1.8s ease-out infinite;
}

@keyframes dotPulseRadar {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(2.3); opacity: 0; }
}

/* 8. Why Choose Feature Cards Hover Elevation */
.why-card-item {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease !important;
}

.why-card-item:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(224, 30, 140, 0.3) !important;
    box-shadow: 0 14px 32px rgba(45, 27, 78, 0.08) !important;
}

.why-card-icon-wrap {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card-item:hover .why-card-icon-wrap {
    transform: scale(1.14) rotate(-5deg);
}

/* 9. International Training Cards Hover */
.intl-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.intl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(45, 27, 78, 0.12);
}

/* 10. Scroll Reveal Entrance System */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* 11. Accessibility Fallback */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-trust-pill,
    .circle-floating-badge,
    .btn-nikhil-pill::after,
    .doctor-circle-container::before {
        animation: none !important;
    }
}
