/* ==========================================================================
   Dr. Beeku Naik DS - Premium Medical Website Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables & Tokens
   -------------------------------------------------------------------------- */
   :root {
    /* Color Palette */
    --color-primary: #0A3D62;       /* Deep Blue */
    --color-primary-light: #165687;
    --color-secondary: #1abc9c;     /* Soft Teal */
    --color-secondary-dark: #148f77;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    
    /* Text Colors */
    --text-main: #333333;
    --text-muted: #6c757d;
    --text-light: #e0e0e0;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Manrope', sans-serif;
    
    /* Effects & Shadows */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(10, 61, 98, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(26, 26, 46, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Radii & Spacing */
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

.text-light {
    color: var(--color-white) !important;
}

.w-100 {
    width: 100%;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.bg-dark .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.bg-dark .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.glass-card.dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.glass-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Section Titles */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title.light h2 {
    color: var(--color-white);
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* --------------------------------------------------------------------------
   Navigation Header
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-icon {
    color: var(--color-secondary);
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-nav {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
}

.nav-link.btn-nav::after {
    display: none;
}

.nav-link.btn-nav:hover {
    background-color: var(--color-secondary);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.glow-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(26, 188, 156, 0.2);
}

.glow-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(10, 61, 98, 0.1);
}

.pulse-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    opacity: 0.6;
}

.ecg-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawEcg 4s linear infinite;
}

@keyframes drawEcg {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 188, 156, 0.1);
    color: var(--color-secondary-dark);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-content .title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .tagline {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-family: var(--font-accent);
}

.hospital-info {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hospital-info i {
    color: var(--color-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 400px;
    height: 500px;
    background: var(--color-primary-light);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(145deg, var(--color-primary-light), var(--color-primary));
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.floating-card {
    position: absolute;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: var(--color-white);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.stat-card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-card-1 p, .stat-card-2 p, .stat-card-3 p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.stat-card-2 {
    bottom: 25%;
    right: -15%;
    animation-delay: 2s;
}

.stat-card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-primary);
}

.feature i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.visual-placeholder {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(0,0,0,0.05);
}

.blob-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.visual-placeholder i {
    font-size: 5rem;
    color: var(--color-primary-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.visual-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.visual-image-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* --------------------------------------------------------------------------
   Qualifications Timeline
   -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(10, 61, 98, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: var(--color-white);
    border: 4px solid var(--color-secondary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 25px;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.timeline-content .inst {
    color: var(--text-muted);
    font-weight: 500;
}

.qual-year {
    color: var(--color-secondary);
    font-size: 0.95rem;
    margin-left: 5px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Expertise Section
   -------------------------------------------------------------------------- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 188, 156, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.expertise-card:hover .card-icon {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: scale(1.1);
}

.expertise-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Experience & Research Section
   -------------------------------------------------------------------------- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.split-layout.align-center {
    align-items: center;
}

.exp-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.exp-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.exp-header h4 {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26, 188, 156, 0.1);
    color: var(--color-secondary-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.research-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.research-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sm-padding {
    padding: 20px;
}

.r-icon {
    width: 45px;
    height: 45px;
    background: rgba(10, 61, 98, 0.05);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.research-list strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.research-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Hospital Section
   -------------------------------------------------------------------------- */
.hospital-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.full-width {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.justify-center {
    justify-content: center;
}

.gradient-border {
    border-top: 4px solid var(--color-secondary);
}

.hosp-logo {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hospital-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hospital-info-box .address {
    color: var(--text-muted);
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.hospital-info-box .address i {
    color: var(--color-secondary);
    margin-top: 4px;
}

.facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--color-light);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag i {
    color: var(--color-secondary);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9ecef;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-mockup {
    text-align: center;
    color: var(--text-muted);
}

.map-mockup i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #adb5bd;
}

.map-mockup p {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Appointment Section
   -------------------------------------------------------------------------- */
.timings-card h3 {
    color: var(--color-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timings-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timings-card li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    color: var(--text-light);
}

.timings-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timings-card li.closed {
    color: #ff6b6b;
}

.contact-quick .cq-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cq-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-white);
}

.cq-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cq-item strong {
    font-size: 1.4rem;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.appointment-form {
    background: var(--color-white);
    color: var(--text-main);
}

.form-title {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.direct-call-box {
    background: var(--color-white);
    color: var(--text-main);
    padding: 50px 30px;
}

.call-icon-lg {
    width: 80px;
    height: 80px;
    background: rgba(26, 188, 156, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.call-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Testimonials Slider
   -------------------------------------------------------------------------- */
.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(26, 188, 156, 0.2);
    margin-bottom: 20px;
}

.rating {
    color: #f1c40f;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 30px;
}

.patient-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.patient-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.patient-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.ctrl-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-secondary);
    width: 25px;
    border-radius: 5px;
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.footer-section {
    background: #062338;
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section .logo-text {
    color: var(--color-white);
}

.footer-about p {
    color: #a0aab2;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.social-links a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #a0aab2;
}

.c-icon {
    color: var(--color-secondary);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #7b8b9a;
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Floating Elements & Animations
   -------------------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content .title {
        font-size: 3rem;
    }
    
    .hospital-info {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        height: 500px;
        margin-top: 40px;
    }
    
    .stat-card-1 { left: 0; }
    .stat-card-2 { right: 0; }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 80px 30px;
        transition: 0.4s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-grid, .hospital-content {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-icon, .timeline-item:nth-child(even) .timeline-icon {
        left: 6px;
        right: auto;
    }

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

@media screen and (max-width: 480px) {
    .hero-content .title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .floating-card {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .icon-box {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* --------------------------------------------------------------------------
   Statistics Section
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-box {
    padding: 30px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(26, 188, 156, 0.1);
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
   Hospital & Clinic Associations
   -------------------------------------------------------------------------- */
.hospital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    .hospital-grid {
        grid-template-columns: 1fr;
    }
}

.clinic-doctors {
    text-align: left;
    background: var(--color-light);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.doc-profile {
    margin-bottom: 10px;
}

.doc-profile:last-child {
    margin-bottom: 0;
}

.doc-divider {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin: 10px 0;
}

.timings {
    background: rgba(26, 188, 156, 0.1);
    padding: 10px;
    border-radius: var(--radius-md);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
