/* ============================
   DR. AMITAVA MONDAL DENTAL PORTFOLIO - STYLE.CSS
   ============================ */

/* ============================
   CSS VARIABLES & DESIGN SYSTEM
   ============================ */
:root {
   --primary-blue: #0e7490;
    --primary-dark: #0a586e;     
    --accent-cyan: #22d3ee;       
    --dark-bg: #080c14;           
    --dark-card: rgba(15, 23, 42, 0.65); 
    --dark-overlay: rgba(8, 12, 20, 0.75);
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.65);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.08);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --font-secondary: 'Outfit', sans-serif;
    --marquee-bg: #0b1120;
    --card-border: rgba(255, 255, 255, 0.08);
}

/* ============================
   GLOBAL RESET
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
}

 
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================
   NAVBAR
   ============================ */
#mainNavbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--white-10);
}

#mainNavbar.navbar-scrolled {
     background: #083344 !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-subtitle {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav Links */
#mainNavbar .navbar-nav .nav-link {
    color: var(--white-80);
    font-size: 0.925rem;
    font-weight: 500;
    padding: 8px 18px;
    transition: color 0.3s ease;
    position: relative;
}

#mainNavbar .navbar-nav .nav-link:hover,
#mainNavbar .navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* Appointment / Consulting CTA Button */
.btn-appointment {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.btn-appointment i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-appointment:hover i {
    transform: translate(2px, -2px);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.18), transparent 45%), 
                radial-gradient(circle at 15% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
                var(--dark-bg);
    padding: 140px 0 80px 0;
}

/* Hero Grid/Square Lines Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(14, 116, 144, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 116, 144, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
}

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

/* Hero Background Overlay (Faint texture) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Welcome Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    color: var(--accent-cyan);
    font-size: 0.9rem;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* Hero Description */
.hero-description {
    font-size: 0.9rem;
    line-height: 1.75;
    /* max-width: 600px; */
    color: var(--white-60);
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* CTA Button */
.hero-cta {
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
    display: flex;
    gap: 15px;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white) !important;
        padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.6);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--white-20);
    transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-hero-cta:hover .cta-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(3px, -3px);
}

/* Stats Badges */
.hero-patients {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    background: rgba(15, 23, 42, 0.6);
    padding: 15px 30px;
    border-radius: 20px;
    border: 1px solid var(--white-10);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Hero Portrait Styling */
.hero-portrait-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-portrait-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(34, 211, 238, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(25px);
    animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-portrait-frame {
    width: 400px;
    height: 450px;
    border-radius: 36px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.hero-portrait-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 34px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.5), transparent, rgba(34, 211, 238, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-portrait-frame:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15);
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-portrait-frame:hover .hero-portrait-img {
    transform: scale(1.03);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    padding: 10px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.badge-top-left {
    top: 60px;
    left: -40px;
    animation-delay: 0s;
    border-left: 3px solid var(--primary-blue);
}

.badge-bottom-right {
    bottom: 40px;
    right: -40px;
    animation-delay: 2s;
    border-right: 3px solid var(--accent-cyan);
}

@keyframes glowPulse {
    0% {
        width: 300px;
        height: 300px;
        opacity: 0.8;
    }
    100% {
        width: 380px;
        height: 380px;
        opacity: 1;
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ============================
   MARQUEE / SCROLLING BAR
   ============================ */
.marquee-bar {
    background: var(--marquee-bg);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.marquee-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-90);
    white-space: nowrap;
    padding: 0 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-separator {
    color: var(--primary-blue);
    font-size: 0.95rem;
    padding: 0 8px;
}

/* ============================
   ABOUT ME SECTION
   ============================ */
.about-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* About Images Layout */
.about-images {
    position: relative;
    min-height: 520px;
    padding: 20px;
}

.about-img-top {
    position: relative;
    width: 65%;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--white-10);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.about-img-top img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-top:hover img {
    transform: scale(1.05);
}

.about-img-bottom {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 65%;
    z-index: 3;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--white-10);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

.about-img-bottom img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-bottom:hover img {
    transform: scale(1.05);
}

/* Sparkle Decorations */
.sparkle {
    position: absolute;
    color: var(--primary-blue);
    font-size: 1.2rem;
    z-index: 5;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 0;
    left: -10px;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 80px;
    left: -20px;
    font-size: 1rem;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 40px;
    left: 10px;
    font-size: 0.8rem;
    animation-delay: 2s;
}

/* About Content - Right Side */
.about-content {
    padding-left: 20px;
}

.about-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white-60);
    margin-bottom: 30px;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-check {
    color: var(--primary-blue);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-80);
}


/* About CTA Button */
.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white) !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.btn-about-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.about-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-about-cta:hover .about-cta-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

/* ============================
   SPECIALIZATIONS SECTION
   ============================ */
.services-section {
    padding: 120px 0;
    background: #0b1120;
    position: relative;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

/* Section Header */
.services-header {
    margin-bottom: 60px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.services-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.services-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white-60);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    position: relative;
    background: var(--dark-card);
    border-radius: 24px;
    padding: 30px 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

/* Background fill animation element */
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 211, 238, 0.05));
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.service-card:hover .service-card-bg {
    width: 100%;
}

.service-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    transform: translateY(-5px);
}

/* Card Content */
.service-card-content {
    position: relative;
    z-index: 1;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 0 15px var(--primary-blue);
}

/* Card Title */
.service-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

/* Card Description */
.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-60);
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.4s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-card:hover .service-link {
    color: var(--accent-cyan);
}

/* ============================
   INTERACTIVE GALLERY / CLINICAL SHOWCASE
   ============================ */
.gallery-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    border-bottom: 1px solid var(--white-10);
}

/* Gallery Badge */
.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.gallery-badge-icon {
    font-size: 0.9rem;
    color: var(--primary-blue);
}

/* Gallery Title */
.gallery-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.gallery-title-accent {
    color: var(--primary-blue);
    font-style: italic;
}

/* Gallery Description */
.gallery-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white-60);
    margin-bottom: 30px;
}

.gallery-description strong {
    color: var(--white);
    font-weight: 600;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    background: var(--dark-card);
    color: var(--white-80);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: left;
    font-family: var(--font-primary);
}

.gallery-tab i,
.gallery-tab svg {
    font-size: 1.1rem;
    color: var(--primary-blue);
    transition: color 0.4s ease;
}

.gallery-tab:hover {
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.05);
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}

.gallery-tab.active i,
.gallery-tab.active svg {
    color: var(--white);
}

/* Before/After Slider */
.ba-slider-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--card-border);
}

.ba-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-after {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-before img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Handle */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: col-resize;
}

.ba-handle-line {
    width: 3px;
    flex: 1;
    background: var(--white);
    opacity: 0.9;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-handle-btn {
    width: 46px;
    height: 46px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 6px 0;
    border: 2px solid var(--white);
}

.ba-handle-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(14, 165, 233, 1);
}

/* ============================
   ACADEMIC & SPEAKING SECTION
   ============================ */
.academic-section {
    padding: 120px 0;
    background: #0b1120;
    position: relative;
    border-bottom: 1px solid var(--white-10);
}

.academic-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.academic-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.academic-description {
    font-size: 0.95rem;
    color: var(--white-60);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.academic-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.academic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.4);
}

.academic-icon {
        width: 60px !important;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
    border-radius: 8px;
}

.academic-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.academic-card-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--white-60);
    margin-bottom: 20px;
    flex-grow: 1;
}

.academic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.academic-list-item {
    font-size: 0.88rem;
    color: var(--white-80);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.academic-list-item i {
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============================
   TESTIMONIAL SECTION
   ============================ */
.testimonial-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    border-bottom: 1px solid var(--white-10);
}

/* Section Header */
.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.testimonial-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.testimonial-description {
    font-size: 0.95rem;
    color: var(--white-60);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Slider Track & Container */
.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 50px;
    padding: 10px 5px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(50% - 12px);
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767.98px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

/* Card Styling */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--accent-cyan);
    padding: 10px;
    height: auto;
    box-shadow: none;
    border-radius: 20px;
    transition: all 0.4s ease;
}

/* .testimonial-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
} */

.quote-icon {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white-80);
    margin-bottom: 30px;
}



/* Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--white-20);
    background: var(--dark-card);
    color: var(--white-80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.control-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Testimonial Video Styling */
.testimonial-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 0;
    /* background: #000; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}


.testimonial-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



/* ============================
   FOOTER SECTION & CONTACT
   ============================ */
.footer-section {
    background: #080c14;
    color: var(--white);
    padding: 80px 0 0 0;
    position: relative;
    font-family: var(--font-primary);
    border-top: 1px solid var(--white-10);
}

/* Top CTA Bar */
.footer-cta-bar {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 50px;
    gap: 20px;
}

.footer-cta-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.btn-footer-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-footer-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white) !important;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

/* Main Content */
.footer-main-content {
    padding-bottom: 60px;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon img {
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--primary-blue);
}

.footer-brand-name {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-60);
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white-10);
    color: var(--white);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

/* Links Columns */
.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--white-60);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--primary-blue);
    padding-left: 6px;
}

/* Contact Info Column */
.footer-contact-list li {
    color: var(--white-60);
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.footer-contact-list i {
    color: var(--primary-blue);
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-contact-list li:hover i {
    color: var(--accent-cyan);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--white-10);
    padding: 30px 0;
}

.copyright-text {
    color: var(--white-40);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================
   ANIMATIONS & EFFECTS
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

/* ============================
   RESPONSIVE STYLES
   ============================ */

/* Large screens */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.2rem;
        max-width: 950px;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-cta, .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }

    #mainNavbar .navbar-collapse {
        background: rgba(8, 12, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 16px;
        margin-top: 15px;
        border: 1px solid var(--white-10);
    }

    .btn-appointment {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

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

    .about-images {
        min-height: 420px;
        margin-bottom: 40px;
    }

    .about-img-top img {
        height: 220px;
    }

    .about-img-bottom img {
        height: 240px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .gallery-tabs {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .gallery-tab {
        flex: 1 1 auto;
        justify-content: center;
    }

    .ba-after, .ba-before img {
        height: 380px !important;
    }
    
    .academic-section {
        padding: 70px 0;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 85vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 10px;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-patients {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 12px 20px;
    }

    .marquee-item {
        font-size: 1rem;
    }

    .about-images {
        min-height: 380px;
    }

    .about-img-top {
        width: 60%;
    }

    .about-img-top img {
        height: 180px;
    }

    .about-img-bottom {
        width: 70%;
    }

    .about-img-bottom img {
        height: 200px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 24px;
    }

    .ba-after, .ba-before img {
        height: 300px !important;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .logo-icon img {
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
    }

    .brand-text {
        font-size: 1.15rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .btn-hero-cta, .btn-hero-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .services-title {
        font-size: 1.7rem;
    }
    
    .academic-title {
        font-size: 1.7rem;
    }

    .testimonial-title {
        font-size: 1.7rem;
    }
}

/* ============================
   LIGHT THEME OVERRIDES FOR MIDDLE SECTIONS
   ============================ */
body {
    background-color: #ffffff !important;
}

.about-section,
.services-section,
.gallery-section,
.academic-section{
    background: #ffffff !important;
    color: #334155 !important;
}

/* Alternate light background for section separation */
.services-section,
.academic-section {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Headings & Text Overrides */
.about-section .about-title,
.services-section .services-title,
.gallery-section .gallery-title,
.academic-section .academic-title,
.testimonial-section .testimonial-title {
    color: #0f172a !important;
}

.about-section .about-description,
.services-section .services-description,
.gallery-section .gallery-description,
.academic-section .academic-description,
.testimonial-section .testimonial-description {
    color: #475569 !important;
}

/* Badges */
.about-section-badge,
.services-badge,
.gallery-badge,
.academic-badge,
.testimonial-badge {
    color: var(--primary-blue) !important;
    background: rgba(14, 165, 233, 0.08) !important;
    border: 1px solid rgba(14, 165, 233, 0.18) !important;
}

/* Biography Section Overrides */
.about-img-top,
.about-img-bottom {
    border: 2px solid #ffffff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.about-feature-item .feature-text {
    color: #1e293b !important;
}

.about-timeline {
    border-left: 2px solid #e2e8f0 !important;
}

.about-timeline .timeline-item::before {
    background: var(--primary-blue) !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important;
}

.about-timeline .timeline-year {
    color: var(--primary-blue) !important;
}

.about-timeline .timeline-title {
    color: #0f172a !important;
}

.about-timeline .timeline-desc {
    color: #64748b !important;
}

/* Specializations Section Overrides */
.services-section .service-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.services-section .service-card:hover {
    border-color: rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.08) !important;
}

.services-section .service-card-title {
    color: #0f172a !important;
}

.services-section .service-card-desc {
    color: #475569 !important;
}

.services-section .service-icon {
    background: rgba(14, 165, 233, 0.1) !important;
    color: var(--primary-blue) !important;
    border: 1px solid rgba(14, 165, 233, 0.25) !important;
    transition: all 0.3s ease !important;
}

.services-section .service-card:hover .service-icon {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4) !important;
}

.services-section .service-link {
    color: var(--primary-blue) !important;
}

.services-section .service-card:hover .service-link {
    color: var(--primary-dark) !important;
}

.services-section .service-card-bg {
    display: none !important;
}

/* Case Portfolio / Slider Overrides */
.gallery-section .gallery-tab {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
}

.gallery-section .gallery-tab.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3) !important;
}

.gallery-section .ba-slider-wrapper {
    border: 8px solid #ffffff !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08) !important;
}

.gallery-section .ba-handle-btn {
    background: #ffffff !important;
    border: 2px solid var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.25) !important;
}

/* Academic & Mentorship Overrides */
.academic-section .academic-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.academic-section .academic-card:hover {
    border-color: rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.08) !important;
}

.academic-section .academic-icon {
    background: rgba(14, 165, 233, 0.1) !important;
    color: var(--primary-blue) !important;
}

.academic-section .academic-card-title {
    color: #0f172a !important;
}

.academic-section .academic-card-text {
    color: #475569 !important;
}

.academic-section .academic-list-item {
    color: #334155 !important;
}

.academic-section .academic-list-item i {
    color: var(--primary-blue) !important;
}

/* Testimonial Section Overrides */
/* .testimonial-section .testimonial-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.testimonial-section .testimonial-card:hover {
    border-color: transparent !important;
    box-shadow: none !important;
} */

.testimonial-section .quote-icon i {
    color: rgba(14, 165, 233, 0.12) !important;
}

.testimonial-section .testimonial-text {
    color: #334155 !important;
}

.testimonial-section .user-name {
    color: #0f172a !important;
}

.testimonial-section .user-role {
    color: #64748b !important;
}

.testimonial-section .control-btn {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02) !important;
}

.testimonial-section .control-btn:hover {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3) !important;
}



/* Responsive adjustments for Hero Portrait */
@media (max-width: 991.98px) {
    .hero-portrait-frame {
        width: 360px;
        height: 430px;
        margin: 0 auto;
    }
    .hero-portrait-glow {
        width: 380px;
        height: 380px;
    }
    .badge-top-left {
        left: -20px;
        top: 20px;
    }
    .badge-bottom-right {
        right: -20px;
        bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .hero-portrait-frame {
        width: 290px;
        height: 350px;
        border-radius: 24px;
    }
    .hero-portrait-frame::before {
        border-radius: 22px;
    }
    .hero-portrait-glow {
        width: 300px;
        height: 300px;
    }
    .badge-top-left {
        left: -10px;
        top: 10px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    .badge-bottom-right {
        right: -10px;
        bottom: 20px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* ============================
   CONTACT PAGE STYLES
   ============================ */
.contact-hero {
    position: relative;
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.18), transparent 45%), 
                radial-gradient(circle at 15% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
                var(--dark-bg);
    text-align: center;
    overflow: hidden;
}

.contact-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(14, 116, 144, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 116, 144, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-hero-desc {
    font-size: 1.05rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Info Cards */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    font-size: 1.35rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.35);
}

.contact-info-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: #475569;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--primary-blue);
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 30px;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    color: #0f172a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Form Button */
.btn-submit-contact {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    cursor: pointer;
}

.btn-submit-contact:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

.btn-submit-contact i {
    transition: transform 0.3s ease;
}

.btn-submit-contact:hover i {
    transform: translateX(4px);
}

/* Map Wrapper */
.contact-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    min-height: 400px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    .contact-form-card {
        padding: 30px 24px;
    }
    .contact-map-wrapper {
        min-height: 350px;
    }
}

/* ============================
   ABOUT PAGE BASE STYLES
   ============================ */
.about-hero {
    position: relative;
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.18), transparent 45%), 
                radial-gradient(circle at 15% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
                var(--dark-bg);
    text-align: center;
    overflow: hidden;
}

.about-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(14, 116, 144, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 116, 144, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.about-hero-desc {
    font-size: 1.05rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-main-content {
    background: #ffffff;
    padding: 80px 0 20px 0;
    color: #334155;
}

.about-section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-section-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

/* Base Timeline Styling */
.about-timeline {
    position: relative;
    padding-left: 30px;
    margin-left: 10px;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.clinic-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.clinic-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    font-size: 1.15rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clinic-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.clinic-feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

/* ============================
   BLOG PAGE STYLES
   ============================ */
.blog-hero {
    position: relative;
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.18), transparent 45%), 
                radial-gradient(circle at 15% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
                var(--dark-bg);
    text-align: center;
    overflow: hidden;
}

.blog-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(14, 116, 144, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 116, 144, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.blog-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.blog-hero-desc {
    font-size: 1.05rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-main-content {
    background: #ffffff;
    padding: 80px 0;
}

/* Search and Filters */
.blog-filters-wrapper {
    margin-bottom: 50px;
}

.blog-search-form .form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    color: #0f172a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-search-form .form-control:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.blog-category-pill {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-pill:hover,
.blog-category-pill.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* Featured Post */
.featured-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.featured-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
}

.featured-img-wrapper {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-blog-card:hover .featured-img-wrapper img {
    transform: scale(1.03);
}

.featured-content-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

.blog-meta-category {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.blog-card-title-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title-link:hover {
    color: var(--primary-blue);
}

.featured-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.featured-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

/* Regular Cards Grid */
.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
}

.blog-card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.blog-read-more i {
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-read-more {
    color: var(--primary-dark);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter-box {
    background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.15), transparent 45%), 
                var(--dark-bg);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-box .badge-dot {
    color: var(--accent-cyan);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--white-80);
    max-width: 500px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form .form-control::placeholder {
    color: var(--white-40);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: 100%;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .featured-content-wrapper {
        padding: 30px;
    }
    .featured-title {
        font-size: 1.5rem;
    }
    .newsletter-box {
        padding: 40px 24px;
    }
    .newsletter-title {
        font-size: 1.75rem;
    }
}

/* ============================
   GALLERY PAGE STYLES
   ============================ */
.gallery-hero {
    position: relative;
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.18), transparent 45%), 
                radial-gradient(circle at 15% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
                var(--dark-bg);
    text-align: center;
    overflow: hidden;
}

.gallery-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(14, 116, 144, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 116, 144, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
}

.gallery-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.gallery-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.gallery-hero-desc {
    font-size: 1.05rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Slider Card */
.gallery-slider-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.gallery-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
}

.gallery-slider-card .ba-after,
.gallery-slider-card .ba-before img {
    height: 280px !important;
}

.slider-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #0f172a;
}

/* Gallery Filter Pills */
.gallery-filter-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* Photo Cards Grid */
.gallery-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
}

.gallery-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
}

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

.gallery-card-body {
    padding: 20px;
}

.gallery-card-tag {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.gallery-card-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent-cyan);
}

.lightbox-content {
    max-width: 90%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.gallery-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
}

/* Smooth filtering transition */
.gallery-item-wrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Modal Form Custom Styles */
.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.15) !important;
    outline: none;
}

.input-icon-wrapper:focus-within i {
    color: var(--primary-blue) !important;
}

.modal-body .btn:hover {
    transform: translateY(-2px);
}

.modal-body .btn:active {
    transform: translateY(0);
}

/* ============================
   WHY CHOOSE SECTION
   ============================ */
.why-choose-section {
    background: #ffffff;
    padding: 90px 0;
}

.why-choose-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.why-choose-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.why-choose-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    border: 2px solid #ffffff;
    z-index: 10;
}

.exp-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-primary);
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-title {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    color: #0f172a;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature-item:hover .why-feature-icon {
    background: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.1);
}

.why-feature-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.why-feature-item:hover .why-feature-title {
    color: var(--primary-blue);
}

.why-feature-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-img-wrapper {
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-choose-experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 15px 20px;
    }
}

/* ============================
   TREATMENT PROCESS SECTION
   ============================ */
.process-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding: 80px 0;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-title {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    color: #0f172a;
}

.process-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Timeline Container */
.process-timeline-container {
    position: relative;
    margin-top: 60px;
}

/* Connecting Process Line */
.process-line {
    position: absolute;
    background: #e2e8f0;
    z-index: 1;
}

/* Desktop: Horizontal Line */
@media (min-width: 992px) {
    .process-line {
        top: 65px; /* Center of the 80px circle node */
        left: 12.5%;
        width: 75%;
        height: 2px;
        border-radius: 3px;
        background: var(--accent-cyan);
    }
}

/* Mobile/Tablet: Vertical Line */
@media (max-width: 991.98px) {
    .process-line {
        top: 0;
        left: 40px; /* Center of the 80px circle node on the left */
        width: 6px;
        height: 85%;
        border-radius: 3px;
        background: linear-gradient(180deg, var(--primary-blue) 0%, #38bdf8 50%, #e2e8f0 100%);
    }
}

/* Step Item Layout */
.process-step-item {
    position: relative;
    z-index: 2;
}

/* Step Node (Circle) */
.process-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 30px auto;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step-item:hover .process-node {
    transform: scale(1.1);
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

/* Step Label Badge */
.step-label {
    position: absolute;
    bottom: -10px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.process-step-item:hover .step-label {
    background: #38bdf8;
}

/* Content Details */
.process-content {
    transition: all 0.4s ease;
}

.process-step-item:hover .process-content {
    transform: translateY(-4px);
}

.process-step-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.process-step-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Mobile responsive alignments */
@media (max-width: 991.98px) {
    .process-step-item {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .process-node {
        margin: 0;
        flex-shrink: 0;
    }
    
    .process-step-text {
        margin: 0;
        max-width: 100%;
    }
}
