/* =============================================
   VINAYAK HOSPITAL – MAIN STYLESHEET
   .NET Core 8 Razor Pages Version
   ============================================= */

:root {
    --medical-blue: #0EA5E9;
    --medical-blue-dark: #0284C7;
    --medical-blue-darker: #0369A1;
    --soft-pink: #FCE7F3;
    --soft-green: #DCFCE7;
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --bg-dark: #0F172A;
    --bg-dark2: #0C2340;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark2) 50%, var(--bg-dark) 100%);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: var(--medical-blue);
    border-radius: 3px;
}

/* ===== UTILITY ===== */
.gradient-text {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 50%, #0997db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-blue {
    box-shadow: 0 0 40px rgba(14,165,233,0.15), 0 8px 32px rgba(14,165,233,0.1);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes loading-bar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes progress-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(14,165,233,0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(14,165,233,0.9);
    }
}

@keyframes scroll-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.7;
    }
}

.animate-float {
    animation: float 7s ease-in-out infinite;
}

.animate-float-reverse {
    animation: float-reverse 9s ease-in-out infinite;
}

.animate-pulse-ring {
    animation: pulse-ring 2.5s ease-out infinite;
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F172A 0%, #0C2340 50%, #0F172A 100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    #loading-screen.hide {
        opacity: 0;
        transform: scale(1.05);
        pointer-events: none;
    }

.loading-logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(14,165,233,0.4);
}

    .loading-logo-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        animation: pulse-ring 2.5s ease-out infinite;
        background: rgba(14,165,233,0.3);
    }

.loading-progress-bar {
    width: 256px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 16px;
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0EA5E9, #38BDF8);
    border-radius: 9999px;
    animation: loading-bar 2.5s ease-out forwards, progress-pulse 1s ease-in-out infinite;
    width: 0%;
}

.loading-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(14,165,233,0.5);
    animation: particle-float ease-in-out infinite;
}

/* ===== NAVBAR ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0EA5E9, #38BDF8, #7DD3FC);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 100;
    transition: transform 0.1s linear;
}

nav.site-nav {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 20px 0;
    transition: padding 0.4s ease;
}

    nav.site-nav.scrolled {
        padding: 12px 0;
    }

.nav-inner {
    margin: 0 16px;
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

    .nav-inner.scrolled {
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.4);
        box-shadow: 0 4px 30px rgba(14,165,233,0.1);
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(100deg, #ffffff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-text {
    line-height: 1;
}

.nav-logo-name {
    font-weight: 700;
    color: #0F172A;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    color: #0EA5E9;
    font-size: 12px;
    letter-spacing: 0.2em;
/*    text-transform: uppercase;*/
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 32px;
}

    .nav-links a {
        color: #334155;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        position: relative;
        transition: color 0.2s;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0EA5E9;
            border-radius: 9999px;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #0EA5E9;
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}

    .nav-phone:hover {
        color: #0EA5E9;
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(14,165,233,0.4);
        color: white;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

    .btn-outline:hover {
        transform: scale(1.05);
        background: rgba(255,255,255,0.15);
        color: white;
    }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 16px;
    background: white;
    color: #0369A1;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-white:hover {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        color: #0369A1;
    }

/* Mobile Nav */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #334155;
}

.nav-mobile-menu {
    display: none;
    margin: 8px 16px 0;
    border-radius: 16px;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

    .nav-mobile-menu.open {
        display: flex;
    }

    .nav-mobile-menu a {
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        padding: 8px 0;
        border-bottom: 1px solid #F1F5F9;
        transition: color 0.2s;
    }

        .nav-mobile-menu a:last-child {
            border-bottom: none;
        }

        .nav-mobile-menu a:hover {
            color: #0EA5E9;
        }

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-inner {
        margin: 0 8px;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 25%, #F8FAFC 60%, #F0FDF4 100%);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
        z-index: 2;
    }

.hero-image-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaeef7 0%, #e4f1f96b 40%, #0a94eb 100%);
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(500px,620px) 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 120px 40px 70px;
    position: relative;
    z-index: 5;
}

.hero-image-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-glass-content {
    width: 100%;
    max-width: 620px;
}

.hero-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    height: 520px;
    overflow: visible;
    margin: 0 auto;
}

.hero-image-circle {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(135deg,#DFF6FF,#CBEFFF);
    z-index: 0;
}

.hero-side-image {
    position: relative;
    z-index: 2;
    width: 430px;
    height: 430px;
    object-fit: cover; /* contain ki jagah cover */
    border-radius: 50%; /* image bhi circular */
    box-shadow: 0 25px 40px rgba(0,0,0,.18);
    animation: float 5s ease-in-out infinite;
}
@media (max-width:991px) {

    .hero-image-box {
        width: 350px;
        height: 350px;
    }

    .hero-image-circle {
        width: 320px;
        height: 320px;
    }

    .hero-side-image {
        width: 320px;
        height: 320px;
    }
}

@media (max-width:576px) {

    .hero-image-box {
        width: 270px;
        height: 270px;
    }

    .hero-image-circle {
        width: 250px;
        height: 250px;
    }

    .hero-side-image {
        width: 250px;
        height: 250px;
    }
}
/* Hide old background image */
.hero-slide-image,
.hero-slide-overlay {
    display: none;
}

.hero-slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #fff;
    opacity: .5;
}

    .hero-slider-dot.active {
        opacity: 1;
        width: 32px;
        border-radius: 30px;
        background: #0ea5e9;
    }
.hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 112px 24px 64px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.2);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0EA5E9;
    animation: pulse-dot 2s infinite;
}

.hero-h1 {
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-h2 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    color: #475569;
    margin-bottom: 5px;
    animation: fadeInUp 0.8s 0.35s ease both;
}

.hero-p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 560px;
    animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s 0.65s ease both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(14,165,233,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hero-btn-primary:hover {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 20px 40px rgba(14,165,233,0.4);
        color: white;
    }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    background: rgba(255,255,255,0.7);
    border: 2px solid #E2E8F0;
    color: #334155;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

    .hero-btn-secondary:hover {
        transform: scale(1.05) translateY(-2px);
        border-color: #0EA5E9;
        color: #0EA5E9;
    }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(203,213,225,0.6);
    animation: fadeIn 0.8s 1.2s ease both;
}

.hero-stat-number {
    font-size: 22px;
    font-weight: 900;
    color: #0F172A;
}

.hero-stat-label {
    color: #64748B;
    font-size: 12px;
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: slideInRight 1s 0.4s ease both;
}

.hero-circle-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, rgba(14,165,233,0.04) 60%, transparent 100%);
    border: 1px solid rgba(14,165,233,0.15);
}

.hero-circle-spin {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px dashed rgba(14,165,233,0.2);
    animation: spin-slow 20s linear infinite;
}

.hero-center-card {
    position: relative;
    z-index: 10;
    width: 224px;
    height: 224px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 30px 80px rgba(14,165,233,0.3);
    animation: float 5s ease-in-out infinite;
}

    .hero-center-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        animation: pulse-ring 2.5s ease-out infinite;
        background: rgba(14,165,233,0.3);
    }

.hero-center-card-title {
    color: white;
    font-weight: 700;
    font-size: 18px;
}
.hero-image-title {
    font-size: clamp(44px,4vw,64px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 18px;
}
.hero-image-description {
    font-size: 22px;
    line-height: 1.7;
    color: #334155;
    max-width: 620px;
    margin-bottom: 35px;
}
.hero-center-card-sub {
    color: #BAE6FD;
    font-size: 14px;
}

.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-float-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-badge-title {
    font-weight: 600;
    color: #1E293B;
    font-size: 14px;
}

.hero-float-badge-sub {
    color: #64748B;
    font-size: 12px;
}

.trust-badges-floating {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.trust-badge-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    z-index: 20;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    border: 1px solid rgba(255,255,255,0.4);
  
    animation: fadeInUp 0.6s ease both;
}

    .trust-badge-item.top-right {
        top: -30px;
        right: -10px;
    }

    .trust-badge-item.bottom-left {
        bottom: 20px;
        left: -30px;
    }

.trust-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-text {
    font-weight: 600;
    color: #1E293B;
    font-size: 14px;
    white-space: nowrap;
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

/* ===== SECTION BASE ===== */
section {
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.15);
    margin-bottom: 16px;
}

    .section-badge span {
        color: #0369A1;
        font-size: 14px;
        font-weight: 500;
    }

.section-title {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 5px;
    line-height: 1.15;
    font-size: 38px;
}

.section-subtitle {
    color: #64748B;
    font-size: 13px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 75%;
    margin: 0 auto;
    padding:24px;
    padding-top:30px;

}

/* ===== ABOUT SECTION ===== */
/*=========================================
        PREMIUM ABOUT SECTION
==========================================*/

.about-section {
    position: relative;
    overflow: hidden;
    
    background: linear-gradient(135deg,#F7FCFF 0%,#EDF9FF 50%,#F5FFF9 100%);
}

    /* Decorative Background */

    .about-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        right: -180px;
        top: -180px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(14,165,233,.10),transparent 70%);
        z-index: 0;
    }

    .about-section::after {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        left: -150px;
        bottom: -180px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(34,197,94,.08),transparent 70%);
        z-index: 0;
    }

    .about-section .container {
        position: relative;
        z-index: 2;
    }

/*=========================================
        SECTION HEADER
==========================================*/

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-subtitle {
    max-width: 760px;
    margin: auto;
    color: #64748B;
    font-size: 16px;
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(90deg,#0EA5E9,#16A34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*=========================================
        STATS GRID
==========================================*/

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-top: 45px;
    margin-bottom: 55px;
}

/*=========================================
        PREMIUM STAT CARD
==========================================*/

.stat-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.94);
    border: 1px solid #D7EEF9;
    border-radius: 22px;
    padding: 20px 16px;
    min-height: 175px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
}

    /* Light Pattern */

    .stat-card::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        right: -45px;
        top: -45px;
        border-radius: 50%;
        background: rgba(14,165,233,.05);
    }

    .stat-card::after {
        content: '';
        position: absolute;
        width: 90px;
        height: 90px;
        left: -25px;
        bottom: -25px;
        border-radius: 50%;
        background: rgba(34,197,94,.05);
    }

    /* Hover */

    .stat-card:hover {
        transform: translateY(-10px);
        border-color: #8EDAF5;
        box-shadow: 0 18px 40px rgba(14,165,233,.16);
    }

/*=========================================
            ICON BOX
==========================================*/

.stat-icon {
    width: 62px;
    height: 62px;
    margin: auto auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #D9EEF8;
    box-shadow: 0 8px 18px rgba(0,0,0,.05);
    position: relative;
    z-index: 2;
}

    .stat-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

/*=========================================
        NUMBER
==========================================*/

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.stat-sub {
    font-size: 12px;
    color: #64748B;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}
/*=========================================
        MISSION & VISION
=========================================*/

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    margin: 20px 0 50px;
}

.mv-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.95);
    border: 1px solid #DDEEF8;
    border-radius: 24px;
    padding: 32px;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

    .mv-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('/images/medical-pattern.png') center/70% no-repeat;
        opacity: .04;
        pointer-events: none;
    }

    .mv-card:hover {
        transform: translateY(-8px);
        border-color: #0EA5E9;
        box-shadow: 0 20px 40px rgba(14,165,233,.14);
    }

.mv-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #D9EEF8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    position: relative;
    z-index: 2;
}

    .mv-card-icon img {
        width: 38px;
        height: 38px;
    }

.mv-card h3 {
    font-size: 24px;
    color: #0F172A;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.mv-card p {
    color: #64748B;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/*=========================================
            VALUES GRID
=========================================*/

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-top: 35px;
}

/*=========================================
            VALUE CARD
=========================================*/

.value-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid #D7EEF9;
    transition: .4s;
    min-height: 220px;
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
}

    /* Different Premium Backgrounds */

    .value-card:nth-child(1) {
        background: linear-gradient(135deg, rgba(220,252,231,.70), rgba(255,255,255,.95));
    }

    .value-card:nth-child(2) {
        background: linear-gradient(135deg, rgba(224,242,254,.70), rgba(255,255,255,.95));
    }

    .value-card:nth-child(3) {
        background: linear-gradient(135deg, rgba(236,253,245,.70), rgba(255,255,255,.95));
    }

    .value-card:nth-child(4) {
        background: linear-gradient(135deg, rgba(239,246,255,.75), rgba(255,255,255,.95));
    }

    /*=========================================
      TRANSPARENT MEDICAL IMAGES
=========================================*/

    .value-card:nth-child(1)::before,
    .value-card:nth-child(2)::before,
    .value-card:nth-child(3)::before,
    .value-card:nth-child(4)::before {
        content: '';
        position: absolute;
        inset: 0;
    }

    /*=========================================
            VALUE HOVER
=========================================*/

    .value-card:hover {
        transform: translateY(-10px);
        border-color: #8EDAF5;
        box-shadow: 0 22px 40px rgba(14,165,233,.15);
    }

/*=========================================
            ICON BOX
=========================================*/

.value-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #D9EEF8;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

    .value-icon img {
        width: 36px;
        height: 36px;
    }

/*=========================================
            TEXT
=========================================*/

.value-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.value-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/*=========================================
        SECTION BADGE
=========================================*/

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,.85);
    border: 1px solid #D9EEF8;
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(15,23,42,.05);
}

    .section-badge span {
        font-size: 13px;
        font-weight: 600;
        color: #0F172A;
    }

/*=========================================
        FLOATING ANIMATION
=========================================*/

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stat-icon,
.value-icon {
    animation: floating 4s ease-in-out infinite;
}

.stat-card:nth-child(2) .stat-icon,
.value-card:nth-child(2) .value-icon {
    animation-delay: .5s;
}

.stat-card:nth-child(3) .stat-icon,
.value-card:nth-child(3) .value-icon {
    animation-delay: 1s;
}

.stat-card:nth-child(4) .stat-icon,
.value-card:nth-child(4) .value-icon {
    animation-delay: 1.5s;
}

/*=========================================
        HOVER GLOW
=========================================*/

.stat-card:hover .stat-icon,
.value-card:hover .value-icon {
    transform: scale(1.08);
    transition: .35s;
    box-shadow: 0 0 0 8px rgba(14,165,233,.08), 0 12px 25px rgba(14,165,233,.18);
}

/*=========================================
        IMAGE SCALE
=========================================*/

.stat-icon img,
.value-icon img {
    transition: .35s;
}

.stat-card:hover img,
.value-card:hover img {
    transform: scale(1.12);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .stats-grid,
    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:991px) {

    .about-section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .stat-card {
        min-height: 165px;
    }

    .value-card {
        min-height: 210px;
    }
}

@media(max-width:767px) {

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 18px;
        min-height: auto;
    }

    .value-card {
        padding: 20px;
        min-height: auto;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 15px;
    }

    .value-card h4 {
        font-size: 18px;
    }
}

/*=========================================
        SMOOTH TRANSITION
=========================================*/

.stat-card,
.value-card,
.mv-card,
.stat-icon,
.value-icon,
img {
    transition: all .35s ease;
}

/* ===== DOCTORS SECTION ===== */
/* ===== DOCTORS SECTION ===== */
.doctors-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #F0F9FF 50%, #bff4f6 100%);
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

/* ===== PENTAGON CARD ===== */
.doctor-card {
   
   
    cursor: pointer;
    position: relative;
    height: 500px;
    overflow: hidden;
   /* clip-path: polygon( 50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25% );*/
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(15,23,42,.10), 0 10px 25px rgba(14,165,233,.08);
}

    .doctor-card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 35px 70px rgba(15,23,42,.18), 0 15px 40px rgba(14,165,233,.15);
    }
/* Full-bleed image */
.doctor-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s;
}

.doctor-card:hover .doctor-card-img {
    transform: scale(1.08);
    filter: brightness(.95);
}

/* Soft color overlay (always visible for depth) */
.doctor-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to top, rgba(15,23,42,.75) 0%, rgba(15,23,42,.18) 45%, transparent 75% );
    opacity: .75;
    transition: .45s;
}

.doctor-card:hover .doctor-card-overlay {
    opacity: .9;
}

/* Content panel – hidden by default, slides up on hover */
.doctor-card-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 35px; /* bottom se thoda upar */

    z-index: 5;
    padding: 22px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-sizing: border-box;
    max-height: 330px; /* content fixed height */

    overflow: auto; /* agar text jyada ho to scroll */

    transform: translateY(calc(100% + 30px));
    opacity: 0;
    transition: .5s cubic-bezier(.22,1,.36,1);
}

.doctor-card:hover .doctor-card-content {
    transform: translateY(0);
    opacity: 1;
}

/* Typography */
.doctor-specialty {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.doctor-title {
    font-size: 22px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 6px;
}

.specialist {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}

.doctor-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 8px 0 12px;
}

.doctor-star {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.doctor-desc {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.7;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

/* CTA button */
.doctor-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    border-radius: 16px;
    font-weight: 700;
    transition: .35s;
    color: #fff;
}

    .doctor-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(14,165,233,.35);
    }

/* Responsive */
@media (max-width: 900px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .doctor-card {
        height: 460px;
    }
}

/* ===== SERVICES SECTION ===== */
/*==============================
    PREMIUM SERVICES 2026
==============================*/

/* =========================================
   PREMIUM SERVICES – IMAGE → SLIDE CONTENT
========================================= */

.premium-services {
    position: relative;
    padding: 0px 0 0px;
    background: #F8FAFC;
}

.services-section .container {
    max-width: 1280px;
    width: 92%;
    margin: 0 auto;
}

.services-wrapper {
    position: relative;
    z-index: 2;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 24px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EFF6FF;
    color: #0369A1;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 16px;
}

.gradient-text {
    color: #0EA5E9;
}

.section-subtitle {
    font-size: 17px;
    color: #64748B;
    line-height: 1.7;
}

/* ===== GRID ===== */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ===== CARD ===== */
.service-card {
    position: relative;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--accent);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(14, 165, 233, 0.18);
    }

/* ===== IMAGE LAYER (full card by default) ===== */
.card-image-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #8b5cf68c;
    z-index: 1;
    transition: opacity 0.45s ease;
}

.icon-bg {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

    .icon-bg img {
        width: 52px;
        height: 52px;
        object-fit: contain;
        
    }

.service-number {
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -1px;
    line-height: 1;
}

/* ===== CONTENT LAYER (slides from RIGHT) ===== */
.card-content-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
}

.service-card:hover .card-content-layer {
    transform: translateX(0);
}

.content-inner {
    padding: 32px 28px;
    width: 100%;
}

    .content-inner h3 {
        font-size: 20px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .content-inner p {
        font-size: 14.5px;
        line-height: 1.7;
        color: #64748B;
        margin-bottom: 24px;
    }

/* Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #F8FAFC;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #E2E8F0;
    transition: all 0.25s ease;
}

    .service-btn:hover {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
    }

    .service-btn .arrow {
        transition: transform 0.25s ease;
    }

    .service-btn:hover .arrow {
        transform: translateX(4px);
    }

/* =========================================
   STAGGERED REVEAL ANIMATIONS
========================================= */

.premium-services .reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

    .premium-services .reveal.active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* Header stagger */
.section-header .section-badge.reveal {
    transition-delay: 0.05s;
}

.section-header .section-title.reveal {
    transition-delay: 0.15s;
}

.section-header .section-subtitle.reveal {
    transition-delay: 0.28s;
}

/* Cards stagger */
.services-bento .service-card.reveal:nth-child(1) {
    transition-delay: 0.18s;
}

.services-bento .service-card.reveal:nth-child(2) {
    transition-delay: 0.32s;
}

.services-bento .service-card.reveal:nth-child(3) {
    transition-delay: 0.46s;
}

.services-bento .service-card.reveal:nth-child(4) {
    transition-delay: 0.60s;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .premium-services {
        padding: 70px 0 80px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .services-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: 280px;
    }

    .icon-bg {
        width: 80px;
        height: 80px;
    }

        .icon-bg img {
            width: 46px;
            height: 46px;
        }

    .service-number {
        font-size: 36px;
    }

    .content-inner {
        padding: 28px 24px;
    }

    /* Mobile stagger */
    .services-bento .service-card.reveal:nth-child(1) {
        transition-delay: 0.08s;
    }

    .services-bento .service-card.reveal:nth-child(2) {
        transition-delay: 0.18s;
    }

    .services-bento .service-card.reveal:nth-child(3) {
        transition-delay: 0.28s;
    }

    .services-bento .service-card.reveal:nth-child(4) {
        transition-delay: 0.38s;
    }
}

/*=========================================
      SMOOTH REVEAL
==========================================*/

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 0px 0;
    background: linear-gradient(180deg, #eaf4ff 0%, #d3ebfa 50%, #c5c8ff 100%);
}

.why-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

    .why-bg-text span {
        font-size: 20vw;
        font-weight: 900;
        color: #F1F5F9;
        user-select: none;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #F1F5F9;
    cursor: default;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

    .why-card:hover {
        transform: translateY(-6px);
    }

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s;
}

.why-card:hover .why-card-icon {
    transform: rotate(8deg) scale(1.15);
}

.why-card h3 {
    font-weight: 700;
    color: #0F172A;
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}

.why-card-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    border-radius: 0 0 16px 16px;
    transition: width 0.5s;
}

.why-card:hover .why-card-bottom-line {
    width: 100%;
}

/* CTA Banner */
.cta-banner {
    margin-top: 64px;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 50%, #0369A1 100%);
}

    .cta-banner h3 {
        font-size: clamp(24px, 3vw, 36px);
        font-weight: 900;
        color: white;
        margin-bottom: 12px;
    }

    .cta-banner p {
        color: #BAE6FD;
        font-size: 18px;
        margin-bottom: 32px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-call-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

    .btn-call-emergency:hover {
        transform: scale(1.05) translateY(-2px);
        background: rgba(255,255,255,0.2);
        color: white;
    }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #eaf4ff 0%, #d3ebfa 50%, #a2b3f9 100%);
}

.testimonial-card {
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
    transition: opacity 0.4s, transform 0.4s;
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

    .testimonial-stars svg {
        color: #F59E0B;
        fill: #F59E0B;
    }

.testimonial-text {
    color: #334155;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: #0F172A;
    font-size: 16px;
}

.testimonial-role {
    color: #64748B;
    font-size: 14px;
}

.testimonial-location {
    color: #0EA5E9;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.testimonial-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .testimonial-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #CBD5E1;
        transition: .3s;
    }

        .testimonial-dots span.active {
            width: 34px;
            border-radius: 30px;
            background: linear-gradient(90deg,#0EA5E9,#38BDF8);
        }

.testimonial-arrows {
    display: flex;
    gap: 8px;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

    .testimonial-arrow:hover {
        border-color: #BAE6FD;
        color: #0EA5E9;
        transform: scale(1.1);
    }

.testimonial-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.testimonial-mini-card {
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #F1F5F9;
    background: #F8FAFC;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

    .testimonial-mini-card:hover {
        transform: scale(1.04);
    }

.testimonial-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 8px;
}

.testimonial-mini-name {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    padding-top: 70px;
    /*    background: linear-gradient(100deg, #006f80 0%, #008fa5 50%, #031012 100%);*/
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 25%, #F8FAFC 60%, #F0FDF4 100%);
    position: relative;
}

#successMessage {
    opacity: 1;
    transition: all .5s ease;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.appointment-left h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #0792d5;
    line-height: 1.2;
    margin-bottom: 20px;
}

.appointment-left p {
    color: #94A3B8;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.appointment-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.appointment-feature-icon {
    width: 20px;
    height: 20px;
    color: #0EA5E9;
    flex-shrink: 0;
}

.appointment-feature span {
    color: #058cd0;
    font-size: 14px;
}

.appointment-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

    .contact-pill:hover {
        transform: scale(1.05);
    }

.contact-pill-phone {
    background: rgb(14 165 233 / 99%);
    border: 1px solid rgba(14,165,233,0.3);
    color: white;
}

.contact-pill-wa {
    background: rgb(37 211 102);
    border: 1px solid rgba(37,211,102,0.3);
    color: white;
}

/* Form */
.appt-form-wrapper {
    border-radius: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 25%, #F8FAFC 60%, #F0FDF4 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    color: #0F172A;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

    .form-input:focus {
        outline: none;
        border-color: #0EA5E9;
        background: white;
        box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
    }

    .form-input.error {
        border-color: #F87171;
        background: rgba(254,226,226,0.3);
    }

.form-error {
    color: #EF4444;
    font-size: 12px;
    margin-top: 4px;
}

textarea.form-input {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 8px 20px rgba(14,165,233,0.3);
}

    .btn-submit:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(14,165,233,0.4);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

.success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 64px 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.success-card p {
    color: #64748B;
    margin-bottom: 24px;
}

/* ===== GALLERY ===== */
.gallery-section {
/*    padding: 37px 0;*/
    background: linear-gradient(180deg, #eaf4ff 0%, #d3ebfa 50%, #a2b3f9 100%);
}

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .gallery-item {
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        position: relative;
    }

        .gallery-item.span-2-2 {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item.span-2 {
            grid-column: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15,23,42,0.7), transparent);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay-icon {
        color: white;
    }

    .gallery-category {
        position: absolute;
        bottom: 12px;
        left: 12px;
        color: white;
        font-size: 12px;
        font-weight: 600;
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(4px);
        padding: 4px 10px;
        border-radius: 8px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-category {
        opacity: 1;
    }
    /* Lightbox */
    .lightbox {
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(0,0,0,0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

        .lightbox.open {
            opacity: 1;
            pointer-events: all;
        }

    .lightbox-inner {
        position: relative;
        max-width: 1024px;
        max-height: 90vh;
        border-radius: 24px;
        overflow: hidden;
        transform: scale(0.8);
        transition: transform 0.3s;
    }

    .lightbox.open .lightbox-inner {
        transform: scale(1);
    }

    .lightbox-inner img {
        max-width: 100%;
        max-height: 85vh;
        object-fit: contain;
        display: block;
    }

    .lightbox-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        border: none;
        cursor: pointer;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

        .lightbox-close:hover {
            background: rgba(255,255,255,0.2);
        }

    .lightbox-caption {
        position: absolute;
        bottom: 16px;
        left: 16px;
        color: white;
        font-size: 14px;
        font-weight: 600;
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(4px);
        padding: 6px 14px;
        border-radius: 12px;
    }
    /* ===== CONTACT ===== */
    .contact-section {
        padding: 15px 0;
        background: linear-gradient(180deg, #F8FAFC 0%, #F0F9FF 100%);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-map {
        border-radius: 24px;
        overflow: hidden;
        height: 440px;
        position: relative;
    }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

    .map-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 16px;
        padding: 12px 16px;
    }

    .map-badge-name {
        font-weight: 700;
        color: #0F172A;
        font-size: 14px;
    }

    .map-badge-sub {
        color: #64748B;
        font-size: 12px;
    }

    .contact-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-card {
        border-radius: 16px;
        padding: 24px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: default;
        text-decoration: none;
        display: block;
        color: inherit;
    }

        .contact-card:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .contact-card h3 {
        font-weight: 700;
        color: #0F172A;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact-card p {
        color: #475569;
        font-size: 12px;
        line-height: 1.6;
    }

    .contact-wa {
        grid-column: span 2;
        border-radius: 16px;
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
        background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .contact-wa:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

    .contact-wa-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: #16A34A;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(22,163,74,0.3);
    }

    .contact-wa h3 {
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 4px;
    }

    .contact-wa p {
        color: #475569;
        font-size: 14px;
    }

    .contact-wa-cta {
        margin-left: auto;
        color: #16A34A;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }
    /* ===== FOOTER ===== */
footer {
    background: linear-gradient(185deg, #408df8 0%, #0C2340 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

    .footer-wave {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    /*        padding: 30px 24px 20px;*/
    padding: 10px 24px 10px;    
}

.footer-grid {
    display: grid;
    /*        grid-template-columns: 1fr 1fr 1fr 1fr;*/
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 10px;
    align-items: start;
}


.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    min-height: 48px;
    margin-bottom: 12px;
}

        .footer-brand-logo .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
    .footer-brand-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: linear-gradient(135deg, #0EA5E9, #0284C7);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-brand-name {
        font-weight: 700;
        color: white;
        font-size: 14px;
    }

.footer-brand-sub {
    color: #0EA5E9;
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-top: 3px;
    /*        text-transform: uppercase;*/
}

.footer-brand-desc {
    color: #becfe7;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

    .footer-socials {
        display: flex;
        gap: 12px;
    }

    .footer-social {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
    }

        .footer-social:hover {
            background: rgba(255,255,255,0.1);
            transform: scale(1.15) translateY(-2px);
        }

.footer-col h3 {
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding-left:13.4px;
/*    margin-bottom: 20px;*/
    letter-spacing: 0.02em;
    min-height: 48px;
    display: flex;
    align-items: center;
}

    .footer-links {
        list-style: none;
    }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #becfe7;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.2s;
        }

            .footer-links a:hover {
                color: #0EA5E9;
            }

            .footer-links a::before {
                content: '→';
                opacity: 0;
                font-size: 12px;
                transform: translateX(-8px);
                transition: opacity 0.2s, transform 0.2s;
            }

            .footer-links a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .footer-contact-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: rgba(14,165,233,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        /*margin-top: 2px;*/
    }

.footer-contact-item p, .footer-contact-item a {
    color: #becfe7;
    font-size: 12px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s;
}

        .footer-contact-item a:hover {
            color: #0EA5E9;
        }

    .footer-emergency {
        margin-top: 10px;
        border-radius: 16px;
        padding: 10px;
        background: rgba(239,68,68,0.1);
        border: 1px solid rgba(239,68,68,0.2);
    }

    .footer-emergency-label {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
    }

    .footer-emergency-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #EF4444;
        animation: pulse-dot 1s infinite;
    }

    .footer-emergency-text {
        color: #F87171;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .footer-emergency a {
        display: block;
        color: white;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-emergency a:hover {
            color: #93C5FD;
        }

    .footer-emergency-sub {
        color: #FCA5A5;
        font-size: 9px;
        margin-top: 2px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

.footer-bottom-copy {
    color: #becfe7;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    padding-right: 50px !important;
}

    .footer-bottom-links a {
        color: #becfe7;
        font-size: 12px;
        text-decoration: none;
        transition: color 0.2s;
    }

            .footer-bottom-links a:hover {
                color: #0EA5E9;
            }
    /* ===== FLOATING BUTTONS ===== */
    .floating-btns {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 50;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    .float-scroll-top {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, #0EA5E9, #0284C7);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 4px 15px rgba(14,165,233,0.3);
        transition: transform 0.2s, opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }

        .float-scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .float-scroll-top:hover {
            transform: scale(1.15) translateY(-2px);
        }

    .float-expanded {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    .float-expanded-btns {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    .float-action-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 16px;
        color: white;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        opacity: 0;
        transform: translateX(30px);
        pointer-events: none;
        transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }

        .float-action-btn.show {
            opacity: 1;
            transform: translateX(0);
            pointer-events: all;
        }

        .float-action-btn:hover {
            transform: scale(1.05) translateX(-4px);
            color: white;
        }

    .float-call {
        background: linear-gradient(135deg, #0EA5E9, #0284C7);
    }

        .float-call:hover {
            box-shadow: 0 10px 25px rgba(14,165,233,0.4);
        }

    .float-wa {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

        .float-wa:hover {
            box-shadow: 0 10px 25px rgba(37,211,102,0.4);
        }

    .float-fab {
        position: relative;
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, #0EA5E9, #0284C7);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 8px 25px rgba(14,165,233,0.4);
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .float-fab::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            animation: pulse-ring 2.5s ease-out infinite;
            background: rgba(14,165,233,0.4);
        }

        .float-fab:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(14,165,233,0.5);
        }

    .float-fab-icon {
        transition: transform 0.3s;
    }

    .float-fab.open .float-fab-icon {
        transform: rotate(45deg);
    }
    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1fr;
        }

        .hero-visual {
            display: none;
        }

        .trust-badges-floating {
            display: none;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .doctors-grid {
            grid-template-columns: 1fr;
        }

        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .appointment-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-item.span-2-2 {
            grid-column: span 1;
            grid-row: span 1;
        }

        .gallery-item.span-2 {
            grid-column: span 1;
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .testimonial-mini-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .testimonial-card {
            padding: 32px 24px;
        }

        .testimonial-text {
            font-size: 16px;
        }
    }

    @media (max-width: 640px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .mission-vision-grid {
            grid-template-columns: 1fr;
        }

        .values-grid {
            grid-template-columns: 1fr 1fr;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .testimonial-mini-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-cards {
            grid-template-columns: 1fr;
        }

        .contact-wa {
            flex-direction: column;
            text-align: center;
        }

        .contact-wa-cta {
            margin: 0;
        }

        .section-title {
            font-size: 28px;
        }

        .hero-h1 {
            font-size: 40px;
        }
    }
    /* SVG Icons helper */
    .icon {
        display: inline-block;
        vertical-align: middle;
    }



/*.review-wrapper {
    padding: 90px 0;
    background: #f8fbff;
}

.review-display-card,
.review-form-card {
    position: relative;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(14,165,233,.10);
    border-radius: 30px;
    padding: 45px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15,23,42,.08);
    transition: .4s ease;
}

    .review-display-card:hover,
    .review-form-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 80px rgba(14,165,233,.16);
    }

    .review-display-card::before,
    .review-form-card::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        right: -120px;
        top: -120px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(14,165,233,.15), transparent 70%);
    }

    .review-display-card h3,
    .review-form-card h3 {
        font-size: 30px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 30px;
        position: relative;
    }

        .review-display-card h3::after,
        .review-form-card h3::after {
            content: "";
            display: block;
            width: 70px;
            height: 4px;
            border-radius: 20px;
            background: #0EA5E9;
            margin-top: 12px;
        }
.patient-review {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

    .patient-review:last-child {
        border: none;
    }

.stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.review-user {
    margin-top: 10px;
    font-weight: 600;
    color: #0ea5e9;
}

.review-form-card input,
.review-form-card textarea,
.review-form-card select {
    border-radius: 12px;
    padding: 14px;
}

.btn-review {
    width: 100%;
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

    .btn-review:hover {
        background: #0284c7;
        transform: translateY(-2px);
    }

.empty-review {
    padding: 40px;
    text-align: center;
    color: #888;
}

@media(max-width:991px) {

    .review-display-card {
        margin-bottom: 30px;
    }
}*/
/* ===========================
   TESTIMONIAL SLIDER
=========================== */

/*.review-display-card {
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    min-height: 250px;
}

.testimonial-item{
display:none;
animation:fadeReview .6s ease;
background:#fff;
padding:28px;
border-radius:22px;
border:1px solid rgba(14,165,233,.08);
box-shadow:0 12px 35px rgba(15,23,42,.08);
}

    .testimonial-item.active {
        display: block;
    }

@keyframes fadeReview {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #64748B;
    margin: 20px 0;
}

.review-user {
    margin-top: 18px;
    font-size: 15px;
    color: #0F172A;
}

.stars {
    display: flex;
    gap: 5px;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

    .testimonial-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #CBD5E1;
        cursor: pointer;
        transition: .3s;
    }

        .testimonial-dots span.active {
            width: 28px;
            border-radius: 20px;
            background: #0EA5E9;
        }

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0EA5E9,#2563EB);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.review-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.review-info span {
    color: #64748B;
    font-size: 14px;
}

.review-date {
    margin-top: 20px;
    font-size: 13px;
    color: #94A3B8;
}

.quote-icon {
    text-align: right;
    font-size: 34px;
    color: #0EA5E9;
    opacity: .15;
    margin-bottom: 10px;
}

.review-display-card h3 small {
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
}*/

/* =============================================
   REVIEW / TESTIMONIAL SECTION — IMPROVED
   Fully Responsive · Modern · Professional
   Class names kept IDENTICAL to original —
   safe drop-in replacement, no HTML/Razor/JS changes needed
   ============================================= */

.review-wrapper {
    padding: 100px 0;
    background: radial-gradient(circle at top right,#dff4ff 0%,transparent 35%), radial-gradient(circle at bottom left,#e8f8ff 0%,transparent 40%), #f8fbff;
}

@media (max-width: 768px) {
    .review-wrapper {
        padding: 50px 0;
    }
}

/* ===== Shared card base ===== */
.review-display-card,
.review-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}
    .review-display-card:hover,
    .review-form-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 35px 80px rgba(14,165,233,.15);
    }

    .review-display-card::before,
    .review-form-card::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        right: -120px;
        top: -120px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(14,165,233,.15), transparent 70%);
        pointer-events: none;
    }

    .review-display-card h3,
    .review-form-card h3 {
        font-size: 28px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 30px;
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

        .review-display-card h3::after,
        .review-form-card h3::after {
            width: 55px;
            height: 5px;
            border-radius: 50px;
            margin-top: 10px;
            background: linear-gradient(90deg,#0EA5E9,#2563EB);
        }

        .review-display-card h3 small {
            font-size: 15px;
            font-weight: 500;
            color: #64748B;
        }

    .review-display-card h3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 32px;
        margin-bottom: 35px;
    }
@media (max-width: 576px) {
    .review-display-card,
    .review-form-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

        .review-display-card h3,
        .review-form-card h3 {
            font-size: 22px;
            margin-bottom: 22px;
        }
}

/* ===== TESTIMONIAL SLIDER ===== */
.review-display-card {
    padding: 45px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 30px 60px rgba(15,23,42,.06);
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 340px;
}


.testimonial-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: .55s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #E5EDF7;
    box-shadow: 0 15px 40px rgba(15,23,42,.05);
}

    .testimonial-item.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .testimonial-item.active {
        display: block;
    }

@keyframes fadeReview {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        padding: 20px;
        border-radius: 18px;
    }

    .testimonial-slider {
        min-height: 260px;
    }
}

.quote-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 48px;
    opacity: .08;
    color: #0EA5E9;
}

/* ===== Review header / avatar ===== */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg,#0EA5E9,#2563EB);
    color: white;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(14,165,233,.35);
}

.review-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0F172A;
}

.review-info span {
    font-size: 14px;
    color: #64748B;
}

/* ===== Stars ===== */
.stars {
    display: flex;
    gap: 5px;
    margin: 18px 0;
}

    .stars i {
        color: #FDB022;
        font-size: 18px;
    }

/* ===== Review text / date ===== */
.review-text {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
}

.review-date {
    margin-top: 16px;
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

/* ===== Dots navigation ===== */
.testimonial-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

    .testimonial-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #CBD5E1;
        cursor: pointer;
        transition: width .3s, background .3s;
        display: inline-block;
    }

        .testimonial-dots span.active {
            width: 26px;
            border-radius: 20px;
            background: linear-gradient(90deg, #0EA5E9, #38BDF8);
        }

        .testimonial-dots span:hover {
            background: #7DD3FC;
        }

/* ===== Empty state ===== */
.empty-review {
    padding: 50px 20px;
    text-align: center;
    color: #94A3B8;
    font-size: 15px;
}

/* ===== REVIEW FORM ===== */
.review-form-card form {
    display: flex;
    flex-direction: column;
}

.review-form-card .form-control,
.review-form-card .form-select {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #D7E2EC;
    background: #F8FAFC;
    padding: 0 18px;
    font-size: 15px;
    transition: .25s;
}

    .review-form-card .form-control:focus,
    .review-form-card .form-select:focus {
        border-color: #0EA5E9;
        background: white;
        box-shadow: 0 0 0 5px rgba(14,165,233,.12);
    }

    .review-form-card .form-control::placeholder {
        color: #94A3B8;
    }
.review-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.review-form-card textarea {
    min-height: 150px;
    padding-top: 16px;
    resize: none;
}
.btn-review {
    height: 58px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg,#0EA5E9,#0284C7);
    transition: .3s;
    letter-spacing: .3px;
}

    .btn-review:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(14,165,233,.30);
    }

    .btn-review:active {
        transform: translateY(0);
    }

/* Success alert inside form */
.review-form-card .alert {
    border-radius: 14px;
    font-size: 14px;
    border: 1px solid rgba(34,197,94,.25);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 991px) {
    .review-display-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .review-avatar {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .review-info h4 {
        font-size: 15px;
    }

    .review-text {
        font-size: 14px;
    }

    .stars {
        font-size: 14px;
    }

    .btn-review {
        padding: 13px;
        font-size: 14px;
    }

    .review-form-card .form-control,
    .review-form-card .form-select {
        padding: 12px 14px;
        font-size: 13px;
    }
}
.review-form-card {
    padding: 45px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 30px 60px rgba(15,23,42,.06);
}

/* ====================== ARROW BUTTONS & ENHANCED RESPONSIVE SLIDER ====================== */
.slider-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
    color: #0EA5E9;
    transition: .3s;
}

    .slider-arrow:hover {
        background: #0EA5E9;
        color: white;
        transform: translateY(-50%) scale(1.08);
    }

.slider-prev {
    left: -27px;
}

.slider-next {
    right: -27px;
}

    .slider-arrow:hover {
        background: #0EA5E9;
        color: white;
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 15px 35px rgba(14,165,233,.25);
    }

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .slider-prev {
        left: -12px;
    }

    .slider-next {
        right: -12px;
    }
}

@media (max-width: 576px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: -8px;
    }

    .slider-next {
        right: -8px;
    }
}
/*=============================
        PRIVACY HERO
=============================*/

/*.privacy-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg,#eef8ff,#ffffff,#f4fcff);
    position: relative;
}

.privacy-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.privacy-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #dff5ff;
    color: #0284c7;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

.privacy-header h1 {
    font-size: 58px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.privacy-header p {
    color: #64748B;
    font-size: 18px;
    line-height: 1.9;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

    .privacy-meta div {
        background: white;
        padding: 20px 30px;
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .privacy-meta strong {
        display: block;
        color: #0EA5E9;
        margin-bottom: 5px;
    }

    .privacy-meta span {
        color: #64748B;
    }*/
/* ===========================
   PRIVACY CONTENT
===========================*/

.privacy-content {
    padding: 80px 0;
    background: #f8fbff;
}

.privacy-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(15,23,42,.06);
    border: 1px solid #edf3f8;
    transition: .35s;
}

    .privacy-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(14,165,233,.12);
    }

    .privacy-card h2 {
        font-size: 28px;
        color: #0F172A;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .privacy-card p {
        font-size: 16px;
        color: #475569;
        line-height: 1.9;
        margin-bottom: 15px;
    }

    .privacy-card ul {
        padding-left: 25px;
    }

    .privacy-card li {
        margin-bottom: 12px;
        color: #475569;
        line-height: 1.8;
    }

.privacy-contact {
    margin-top: 20px;
    background: #f1f9ff;
    border-left: 5px solid #0EA5E9;
    padding: 25px;
    border-radius: 15px;
}

    .privacy-contact p {
        margin: 10px 0;
    }

@media(max-width:768px) {

    .privacy-card {
        padding: 25px;
    }

        .privacy-card h2 {
            font-size: 22px;
        }
}
/* ==========================
   WHY TIMELINE
========================== */

/*=====================================
 WHY TIMELINE
======================================*/

.why-timeline {
    position: relative;
    max-width: 1100px;
    margin: 35px auto 0;
}

    .why-timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 10px;
        bottom: 10px;
        width: 3px;
        transform: translateX(-50%);
        background: linear-gradient(#0EA5E9,#7C3AED);
        border-radius: 50px;
    }

.why-item {
    width: 50%;
    position: relative;
    padding: 8px 35px;
    margin: -5px 0;
}

    .why-item.left {
        left: 0;
        text-align: right;
    }

    .why-item.right {
        left: 50%;
        text-align: left;
    }

/*================ Card ================*/
/*================ Timeline ================*/

.why-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 22px rgba(15,23,42,.08);
    transition: .35s;
    max-width: 320px; /* 420 -> 320 */
    min-height: 150px;
}

.why-item.left .why-card {
    margin-left: auto;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14,165,233,.14);
}

.why-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .why-card-icon svg {
        width: 22px;
        height: 22px;
    }

.why-item.left .why-card-icon {
    margin-left: auto;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.why-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/*================ Timeline Item ================*/

.why-item {
    width: 50%;
    position: relative;
    padding: 8px 25px;
    margin: -8px 0;
}

    .why-item.left {
        left: 0;
        text-align: right;
    }

    .why-item.right {
        left: 50%;
    }

/*================ Timeline Dot ================*/

.why-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 5px rgba(14,165,233,.15);
    z-index: 5;
}

.why-item.left .why-dot {
    right: -8px;
}

.why-item.right .why-dot {
    left: -8px;
}

/*================ Arrow ================*/

.why-item.left .why-card::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #fff;
}

.why-item.right .why-card::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: #fff;
}

/*================ Tablet ================*/

@media (max-width:991px) {

    .why-timeline {
        margin-top: 20px;
    }

        .why-timeline::before {
            left: 22px;
        }

    .why-item,
    .why-item.left,
    .why-item.right {
        width: 100%;
        left: 0;
        padding: 10px 0 10px 60px;
        margin: 0;
        text-align: left;
    }

    .why-card {
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }

    .why-item.left .why-card {
        margin-left: 0;
    }

    .why-item.left .why-card-icon {
        margin-left: 0;
    }

    .why-dot,
    .why-item.left .why-dot,
    .why-item.right .why-dot {
        left: 14px;
        right: auto;
    }

    .why-item.left .why-card::after,
    .why-item.right .why-card::after {
        left: -8px;
        right: auto;
        border: 8px solid transparent;
        border-right-color: #fff;
    }
}

/*================ Mobile ================*/

@media (max-width:576px) {

    .why-section {
        padding: 45px 0;
    }

    .why-timeline {
        margin-top: 15px;
    }

    .why-item {
        padding-left: 50px;
    }

    .why-timeline::before {
        left: 18px;
    }

    .why-dot {
        width: 14px;
        height: 14px;
        left: 11px !important;
    }

    .why-card {
        padding: 15px;
        border-radius: 14px;
    }

    .why-card-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

        .why-card-icon svg {
            width: 20px;
            height: 20px;
        }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* ===========================
        BENTO GRID
=========================== */

.services-bento {
    
    gap: 24px;
    max-width: 1180px;
    margin: 48px auto 0;
}

/* ===================== PREMIUM CARD ===================== */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 32px 28px;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08), 0 8px 20px rgba(14,165,233,0.08);
    backdrop-filter: blur(16px);
}

    .service-card:hover {
        transform: translateY(-14px) scale(1.04);
        box-shadow: 0 30px 60px rgba(14,165,233,0.18);
    }

/* Top Premium Border */
.service-top-border {
    position: absolute;
    left: 0; 
    top: 0;
    width: 100%;
    height: 6px;
    border-radius: 24px 24px 0 0;
}

/* Large Number */
.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 68px;
    font-weight: 900;
    opacity: 0.09;
    line-height: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-number {
    opacity: 0.16;
    transform: scale(1.1);
}

/* Icon */
.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: rotate(12deg) scale(1.12);
    box-shadow: 0 15px 30px rgba(14,165,233,0.25);
}

/* Typography */
.service-card h3 {
    font-size: 23px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    transition: all 0.35s ease;
}

.service-card:hover h3 {
    color: #0EA5E9;
    letter-spacing: 0.4px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #64748B;
    flex: 1;
}

/* Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
}

    .service-btn .arrow {
        transition: all 0.4s ease;
    }

.service-card:hover .service-btn .arrow {
    transform: translateX(12px);
}

/* Bottom Line */
.service-card-line {
    width: 0;
    height: 4px;
    border-radius: 50px;
    margin-top: 20px;
    transition: width 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

.service-card:hover .service-card-line {
    width: 85%;
}

/* Grid Positions */
.service-1 {
    grid-column: 1 / span 2;
}

.service-2 {
    grid-column: 3 / span 2;
}

.service-3 {
    grid-column: 5 / span 2;
}

.service-4 {
    grid-column: 2 / span 2;
}

.service-5 {
    grid-column: 4 / span 2;
}

/* Responsive */
@media(max-width:991px) {
    .services-bento {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .service-1, .service-2, .service-3, .service-4, .service-5 {
        grid-column: auto;
    }
}

@media(max-width:576px) {
    .services-bento {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 24px;
        min-height: auto;
    }

        .service-card h3 {
            font-size: 20px;
        }

    .service-number {
        font-size: 52px;
    }
}

/* =====================================================
   HERO AUTO SLIDER - ADDITIONAL CSS
   Existing hero CSS remains unchanged
===================================================== */
bas stagger delay ke liye custom property add kar rahe hain */
.reveal, .reveal-left, .reveal-right {
    transition-delay: var(--reveal-delay, 0s);
}

/* ---------- 2. Premium Shine Sweep (buttons) ---------- */
.btn-primary, .hero-btn-primary, .doctor-cta, .btn-submit, .btn-white,
.hero-btn-secondary, .btn-outline {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .btn-primary::before, .hero-btn-primary::before, .doctor-cta::before,
    .btn-submit::before, .btn-white::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
        transform: skewX(-20deg);
        transition: left .7s ease;
        z-index: 1;
        pointer-events: none;
    }

    .btn-primary:hover::before, .hero-btn-primary:hover::before,
    .doctor-cta:hover::before, .btn-submit:hover::before, .btn-white:hover::before {
        left: 130%;
    }

/* ---------- 3. Ripple click effect ---------- */
.ripple-parent {
    position: relative;
    overflow: hidden;
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    transform: scale(0);
    animation: rippleAnim .6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ---------- 4. Card Tilt (premium 3D) ---------- */
.card-tilt {
    transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform;
}

/* ---------- 5. Glow Border Sweep on premium cards ---------- */
.service-card, .doctor-card, .why-card, .stat-card, .value-card {
    position: relative;
}

    .service-card::after, .doctor-card::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(120deg, transparent 30%, rgba(14,165,233,.55), transparent 70%);
        background-size: 250% 250%;
        background-position: 0% 0%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity .4s ease, background-position 1.2s ease;
        pointer-events: none;
    }

    .service-card:hover::after, .doctor-card:hover::after {
        opacity: 1;
        background-position: 100% 100%;
    }

/* ---------- 6. Icon micro-bounce on hover ---------- */
.service-card-icon, .doctor-avatar, .why-card-icon, .value-icon, .stat-icon {
    transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}

.service-card:hover .service-card-icon,
.doctor-card:hover .doctor-avatar,
.why-card:hover .why-card-icon,
.value-card:hover .value-icon,
.stat-card:hover .stat-icon {
    transform: translateY(-4px) rotate(-6deg) scale(1.12);
    box-shadow: 0 12px 24px rgba(14,165,233,.28);
}

/* ---------- 7. Premium gradient-text shimmer ---------- */
.gradient-text {
    background-size: 200% auto;
    animation: gradientShimmer 4s linear infinite;
}

@keyframes gradientShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ---------- 8. Section badge premium pulse ---------- */
.section-badge {
    position: relative;
    overflow: hidden;
}

    .section-badge::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(14,165,233,.18), transparent);
        transform: translateX(-100%);
        animation: badgeSheen 3.2s ease-in-out infinite;
    }

@keyframes badgeSheen {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ---------- 9. Doctor stars — sequential twinkle ---------- */
.doctor-star {
    animation: starTwinkle 2.4s ease-in-out infinite;
}

    .doctor-star:nth-child(1) {
        animation-delay: 0s;
    }

    .doctor-star:nth-child(2) {
        animation-delay: .15s;
    }

    .doctor-star:nth-child(3) {
        animation-delay: .3s;
    }

    .doctor-star:nth-child(4) {
        animation-delay: .45s;
    }

    .doctor-star:nth-child(5) {
        animation-delay: .6s;
    }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(.85);
    }
}

/* ---------- 10. Why-timeline dot premium pulse ring ---------- */
.why-dot {
    position: absolute;
}

    .why-dot::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid currentColor;
        opacity: .5;
        animation: dotPulseRing 2.4s ease-out infinite;
    }

@keyframes dotPulseRing {
    0% {
        transform: scale(.6);
        opacity: .6;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

/* ---------- 11. Hero orb parallax-ready ---------- */
.hero-orb {
    transition: transform .3s ease-out;
    will-change: transform;
}

/* ---------- 12. Counter number pop when animated ---------- */
.counter.counting {
    display: inline-block;
    animation: counterPop .4s ease;
}

@keyframes counterPop {
    0% {
        transform: scale(.85);
        opacity: .4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---------- 13. Premium hero slider dot glow ---------- */
.hero-slider-dot.active {
    box-shadow: 0 0 12px rgba(14,165,233,.8), 0 0 4px rgba(14,165,233,1);
}

/* ---------- 14. Service/Why card line premium gradient motion ---------- */
.service-card-line, .why-card-bottom-line {
    background-size: 200% 100%;
    animation: lineFlow 2.5s linear infinite;
}

@keyframes lineFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* ---------- 15. Reduced motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
