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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Ensure full width layout */
body > * {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Main wrapper full width */
body {
    min-width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Ensure all sections take full width */
section, .hero, .navbar {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Override any container constraints for hero */
.hero, .hero-container, .hero-content {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove any default browser margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette with #628674 as primary color */
    --primary-color: #22c55e;        /* main brand color - navbar green */
    --primary-dark: #16a34a;         /* darker variant */
    --primary-light: #4ade80;        /* lighter variant */
    --primary-pastel: #e8f0ed;       /* very light variant */
    --dark-blue: #22c55e;            /* updated to new color */
    --dark-blue-deep: #16a34a;       /* deeper variant */
    --sky-blue: #22c55e;             /* primary color */
    --sky-blue-light: #4ade80;       /* light variant */
    --sky-blue-pastel: #e8f0ed;      /* pastel variant */
    --rose-pink: #6a8f7d;            /* muted complementary */
    --rose-pink-light: #e9f3ee;      /* light accent */
    --rose-pink-pastel: #f5faf7;     /* very light accent */
    --rose-pink-vibrant: #22c55e;    /* updated to new color */
    --white: #fefcf7;
    --gray-light: #f6f7f6;
    --gray: #6b7280;
    --gray-dark: #2d3748;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --pastel-blue: #e7f1ec;          /* align to brand */
    --pastel-sky: #edf6f2;
    --pastel-lavender: #f3f4f4;      /* neutral card bg */
    --pastel-mint: #edf7f2;
    --pastel-cream: #f5f2ea;         /* site base cream */
    --soft-sage: #d8e7df;
    --gentle-blue: #e7f1ec;
    --warm-beige: #f5f2ea;
    --soft-lavender: #e9efe9;
    --mint-cream: #bcd7c9;
    --peach-blush: #f2efe6;
    --purple-accent: #3e6e5e;        /* use deeper sage */
    --teal-accent: #3c7665;
    --coral-accent: #2f5d50;         /* unify accents */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(79, 124, 104, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(79, 124, 104, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: linear-gradient(135deg,
        #fefcf7 0%,
        #f5f2ed 25%,
        #fefcf7 50%,
        #f0ede8 75%,
        #fefcf7 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    position: relative;
    font-size: 14px;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(254, 252, 247, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(253, 249, 240, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(252, 246, 235, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(251, 243, 230, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(253, 249, 240, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(252, 246, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(98, 134, 116, 0.1);
    height: auto;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(34, 197, 94, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.7rem 0;
    backdrop-filter: blur(25px);
}

.nav-container {
    max-width: 1400px;
    margin: 0;
    margin-left: 20px;
    padding: 0 10px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    box-sizing: border-box;
    position: relative;
    gap: 0.5rem; /* reduced gap between logo and menu */
    flex-wrap: nowrap; /* prevent wrapping that can cause overlap */
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    padding-right: 4px;
    position: relative;
    max-width: 300px;
}

.nav-logo img {
    width: 150px;
    border-radius: 5px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow:
        0 12px 35px rgba(59, 130, 246, 0.4),
        0 0 0 2px rgba(59, 130, 246, 0.3);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
}

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    display: inline-block;
    line-height: 1;
    letter-spacing: -0.2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.nav-logo .clinic-name {
    font-size: 1.05rem;
    font-weight: 600;
    padding-top: 15px;
    color: #1e3a8a !important;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.2px;
    line-height: 1.2;
    max-width: 200px;
}

.nav-logo .clinic-name-line1,
.nav-logo .clinic-name-line2 {
    white-space: nowrap;
    display: block;
}

.doctor-name {
    font-size: 1rem;
    font-weight: 500;
    color: white !important;
    white-space: nowrap;
    display: block;
    letter-spacing: -0.1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 0.25rem; /* tighter gap to fit all sections */
    list-style: none;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: auto;
    padding-left: 8px; /* reduced spacing from logo area */
    white-space: nowrap;
    overflow: visible;
    flex-shrink: 1;
    min-width: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.1px;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    background: transparent;
    flex-shrink: 0;
}

.nav-link.telemedicine-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #0f172a 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.nav-link.telemedicine-highlight:hover,
.nav-link.telemedicine-highlight.active {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #1d4ed8 100%);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
    transform: translateY(-1px);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.nav-link:hover::after {
    width: 90%;
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-link.active::after {
    width: 90%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-toggle:hover {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(96, 165, 250, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.dropdown-toggle i {
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg) scale(1.1);
    color: #60a5fa;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.75rem 0;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    display: block !important;
}

.dropdown-item {
    display: block;
    padding: 14px 24px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    position: relative;
    letter-spacing: 0.3px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(96, 165, 250, 0.2) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 8px 8px 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(96, 165, 250, 0.1) 100%);
    color: #60a5fa;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.dropdown-item:hover::before {
    width: 4px;
}

.dropdown-item.active {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(96, 165, 250, 0.15) 100%);
    color: #60a5fa;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.dropdown-item.active::before {
    width: 4px;
    background: linear-gradient(90deg,
        #60a5fa 0%,
        #3b82f6 100%);
}

/* Service Pages Styles */
.service-header {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-header-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.service-header .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-header .service-badge i {
    color: var(--rose-pink);
    font-size: 1.2rem;
}

.service-header .service-badge span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-header p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-main h2 {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-main h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.service-main p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.service-main ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-main li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.expectation-item {
    background: var(--pastel-lavender);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.expectation-item i {
    font-size: 1.5rem;
    color: var(--rose-pink);
    margin-bottom: 1rem;
}

.expectation-item h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.expectation-item p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.condition-category {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.condition-category h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--rose-pink);
    padding-bottom: 0.5rem;
}

.condition-category ul {
    list-style: none;
    padding: 0;
}

.condition-category li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.condition-category li:last-child {
    border-bottom: none;
}

.success-stories {
    margin: 2rem 0;
}

.story-item {
    background: var(--pastel-lavender);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--rose-pink);
}

.story-item p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.story-item span {
    font-weight: 600;
    color: var(--dark-blue);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-item span:first-child {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.fee-item span:last-child {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .service-main h2 {
        font-size: 2rem;
    }
    
    .expectation-grid {
        grid-template-columns: 1fr;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
    
    .nav-logo span {
        font-size: 1.0rem;
    }
    
    .nav-logo .clinic-name {
        font-size: 0.9rem;
        color: #1e3a8a !important;
    }
    
    .doctor-name {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0 !important;
        overflow-x: visible !important;
    }

    .gallery {
        padding-top: 9rem !important;
    }

    .treatments {
        padding-top: 9rem;
    }

    .about {
        padding-top: 9rem;
    }

    .telemedicine {
        padding-top: 9rem;
    }

    .locations {
        padding-top: 10rem;
    }

    .blog {
        padding-top: 9rem;
    }

    .contact {
        padding-top: 9rem;
    }
    
    .nav-container {
        padding: 0 10px 0 5px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: visible !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        padding-right: 15px !important;
    }
    
    /* Hide clinic name in mobile view */
    .nav-logo .logo-text,
    .nav-logo .clinic-name,
    .nav-logo .doctor-name {
        display: none !important;
    }
    
    /* Increase logo width in mobile view */
    .nav-logo img {
        width: 110px !important;
        height: 110px !important;
        object-fit: contain !important;
    }
    
    .nav-logo {
        gap: 0 !important;
        padding-right: 0 !important;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px !important;
        height: 45px !important;
        cursor: pointer !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        z-index: 10001 !important;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.1) 100%);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        position: relative !important;
        right: 0 !important;
        pointer-events: auto !important;
        flex-shrink: 0 !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-width: 45px !important;
    }
    
    .nav-toggle .bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-toggle:hover {
        background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.2) 0%,
            rgba(96, 165, 250, 0.1) 100%);
        transform: scale(1.05);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active .nav-link {
        padding: 16px 24px;
        border-radius: 15px;
        text-align: left;
        width: 100%;
        font-size: 1.4rem;
        font-weight: 600;
        color: #e2e8f0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .nav-menu.active .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg,
            rgba(59, 130, 246, 0.3) 0%,
            rgba(96, 165, 250, 0.2) 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 12px 12px 0;
    }

    .nav-menu.active .nav-link:hover {
        background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.15) 0%,
            rgba(34, 197, 94, 0.1) 100%);
        color: white;
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    }

    .nav-menu.active .nav-link:hover::before {
        width: 4px;
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu.active .nav-dropdown {
        width: 100%;
    }

    .nav-menu.active .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1) 0%,
            rgba(96, 165, 250, 0.05) 100%);
        border: 1px solid rgba(59, 130, 246, 0.2);
        margin-bottom: 0.5rem;
    }

    .nav-menu.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(51, 65, 85, 0.6) 100%);
        border-radius: 12px;
        margin-top: 0.5rem;
        padding: 0.75rem;
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
        backdrop-filter: blur(10px);
        z-index: 1001;
    }

    .nav-menu.active .dropdown-menu.active {
        display: block !important;
        animation: fadeIn 0.3s ease;
    }

    .nav-menu.active .dropdown-item {
        padding: 14px 18px;
        margin: 0.3rem 0;
        border-radius: 8px;
        font-size: 1rem;
        color: #e2e8f0;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    .nav-menu.active .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg,
            rgba(59, 130, 246, 0.4) 0%,
            rgba(96, 165, 250, 0.3) 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 6px 6px 0;
    }

    .nav-menu.active .dropdown-item:hover {
        background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.2) 0%,
            rgba(96, 165, 250, 0.1) 100%);
        color: #60a5fa;
        transform: translateX(6px);
        text-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }

    .nav-menu.active .dropdown-item:hover::before {
        width: 4px;
    }

    .nav-menu.active .dropdown-item.active {
        background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.3) 0%,
            rgba(96, 165, 250, 0.2) 100%);
        color: #60a5fa;
        font-weight: 700;
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }

    .nav-menu.active .dropdown-item.active::before {
        width: 4px;
        background: linear-gradient(90deg,
            #60a5fa 0%,
            #3b82f6 100%);
    }
}

.bar {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1) !important;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    pointer-events: none;
    display: block;
}

.bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-toggle:hover .bar {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.nav-toggle.active .bar {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.5);
}

/* Keyframe animations for mobile navigation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, #fefcf7 0%, #fdf9f0 50%, #fefcf7 100%);
    animation: heroFadeIn 1s ease-out;
    width: 100vw;
    max-width: 100vw;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 15%, rgba(79, 124, 104, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 90% 25%, rgba(79, 124, 104, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 80% 35%, rgba(79, 124, 104, 0.15) 0%, transparent 35%);
    z-index: 1;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Container - Full Width Minimalistic */
.hero-container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
}

.hero-text {
    color: var(--text-primary);
    z-index: 3;
    padding: 3rem 2.5rem;
    background: #fefcf7;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='400' viewBox='0 0 1200 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,150 Q300,100 600,130 T1200,150 L1200,400 L0,400 Z' fill='%23f0fdf4' opacity='0.5'/%3E%3Cpath d='M0,200 Q250,130 500,170 T1000,190 Q1150,200 1200,200 L1200,400 L0,400 Z' fill='%23dcfce7' opacity='0.4'/%3E%3Cpath d='M0,250 Q200,180 400,220 T800,240 Q1000,250 1200,250 L1200,400 L0,400 Z' fill='%23bbf7d0' opacity='0.3'/%3E%3Cpath d='M0,300 Q150,260 300,290 T600,310 Q750,320 1200,300 L1200,400 L0,400 Z' fill='%2386efac' opacity='0.25'/%3E%3Cpath d='M0,350 Q100,330 200,345 T400,355 Q600,370 1200,350 L1200,400 L0,400 Z' fill='%234ade80' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='400' viewBox='0 0 1200 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q150,0 300,30 T600,50 Q750,60 900,45 T1200,50 L1200,400 L0,400 Z' fill='%23f0fdf4' opacity='0.5'/%3E%3Cpath d='M0,90 Q100,60 200,80 T400,95 Q550,105 700,90 T1000,100 Q1100,110 1200,105 L1200,400 L0,400 Z' fill='%23dcfce7' opacity='0.4'/%3E%3Cpath d='M0,130 Q80,110 160,125 T320,135 Q480,145 640,130 T960,140 Q1120,150 1200,145 L1200,400 L0,400 Z' fill='%23bbf7d0' opacity='0.3'/%3E%3Cpath d='M0,170 Q50,160 100,170 T200,175 Q350,185 500,170 T800,180 Q950,190 1200,185 L1200,400 L0,400 Z' fill='%2386efac' opacity='0.25'/%3E%3Cpath d='M0,210 Q30,200 60,205 T120,210 Q250,220 380,210 T760,215 Q890,225 1200,220 L1200,400 L0,400 Z' fill='%234ade80' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
}

.hero-badge {
    display: block;
    color: var(--text-muted);
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 0.8rem 0;
    padding: 0;
    text-shadow: none;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    text-shadow: none;
}

.highlight-green {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(98, 134, 116, 0.3);
}

.highlight-red {
    color: #000000 !important;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-doctor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0 0.8rem 0;
    text-shadow: 0 1px 3px rgba(98, 134, 116, 0.3);
    position: relative;
    z-index: 1;
}

.hero-clinic-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: none;
    text-align: left;
    text-justify: inter-word;
    position: relative;
    z-index: 1;
}

.hero-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.hero-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(98, 134, 116, 0.3);
}

.hero-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 0;
    margin: 0;
    background: #f9fafb;
    height: 100vh;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(98, 134, 116, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-main-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

/* Gallery Section */
.gallery {
    padding: 7rem 0 4rem;
    background: #fefcf7;
}

.gallery .section-subtitle {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fefcf7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(98, 134, 116, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-content p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Services Showcase Section - Exact Match to Image */
.services-showcase {
    padding: 4rem 0;
    background: #fefcf7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 2fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

/* Specific icon styles to match the image */
.herbal-icon {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
}
.herb-products-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}
.medicine-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.wellness-icon {
    background: linear-gradient(135deg, #e83e8c 0%, #fd7e14 100%);
}

.consultation-icon {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2f5d50;
    margin: 0;
}

.benefit-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2f5d50;
}

.benefit-content h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2f5d50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.benefit-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2f5d50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefit-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}





.image-overlay {
    display: none !important;
}

.experience-badge {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(47, 93, 80, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-content-section {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-top: 1.5rem;
}

.hero-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 29, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.hero-carousel {
    height: 100%;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    margin: 0;
    padding: 0;
    transform: scale(1.1);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(36, 73, 63, 0.15) 0%,
        rgba(47, 93, 80, 0.10) 50%,
        rgba(79, 124, 104, 0.20) 100%);
    z-index: 1;
    transition: all 1.2s ease;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(59, 130, 246, 0.1) 25%,
        rgba(225, 29, 72, 0.1) 50%,
        rgba(139, 92, 246, 0.1) 75%,
        transparent 100%);
    z-index: 2;
    opacity: 0;
    animation: shimmer 8s ease-in-out infinite;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide.active::after {
    opacity: 1;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    max-width: 600px;
    margin-left: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: contentSlideIn 1.2s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Homepage 2 Image Container */
.homepage2-image-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage2-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.homepage2-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.homepage2-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
}

.homepage2-image-wrapper:hover .homepage2-image {
    transform: scale(1.15);
}

.homepage2-image-wrapper .image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(79, 124, 104, 0.95) 0%, 
        rgba(155, 199, 179, 0.9) 100%);
    padding: 1.5rem;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-radius: 0 0 25px 25px;
}

.homepage2-image-wrapper:hover .image-overlay-text {
    transform: translateY(0);
}

.homepage2-image-wrapper .image-overlay-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.homepage2-image-wrapper .image-overlay-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


@keyframes contentSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleFadeIn 1s ease-out 0.6s both;
    width: 100%;
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: subtitleFadeIn 1s ease-out 0.8s both;
}

.hero-description {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: descriptionFadeIn 1s ease-out 1s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: featuresFadeIn 1s ease-out 1.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: featureItemSlide 0.6s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 1.4s; }
.feature-item:nth-child(2) { animation-delay: 1.6s; }
.feature-item:nth-child(3) { animation-delay: 1.8s; }

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(79, 209, 199, 0.1);
    border-color: rgba(79, 209, 199, 0.3);
}

.feature-item i {
    color: #4fd1c7;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    color: #38b2ac;
}

@keyframes featuresFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes featureItemSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
    animation: contentFloat 6s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: var(--gray-dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 50%, var(--rose-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    margin-top: 0;
    line-height: 1.6;
    color: var(--gray-dark);
    font-weight: 500;
}

.hero-main-title {
    text-align: center;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.hero-main-title h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 50%, var(--rose-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}


.hero-badge {
    display: inline-block;
    color: white;
    padding: 0;
    margin-bottom: 1.5rem;
    margin-top: 0;
    transition: all 0.3s ease;
}


.hero-badge i {
    color: #4fd1c7;
    font-size: 0.9rem;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    padding: 10px 16px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%);
}

.feature i {
    color: #60a5fa;
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.feature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: 0.3px;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 0 6px rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    animation: buttonsFadeIn 1s ease-out 2s both;
}

@keyframes buttonsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg,
        #4fd1c7 0%,
        #38b2ac 100%);
    box-shadow:
        0 4px 15px rgba(79, 209, 199, 0.3),
        0 0 0 1px rgba(79, 209, 199, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow:
            0 8px 25px rgba(255, 107, 107, 0.4),
            0 0 0 1px rgba(255, 107, 107, 0.3),
            0 0 15px rgba(255, 107, 107, 0.2);
    }
    50% {
        box-shadow:
            0 8px 25px rgba(255, 107, 107, 0.5),
            0 0 0 1px rgba(255, 107, 107, 0.4),
            0 0 20px rgba(255, 107, 107, 0.3);
    }
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
}

.cta-button.whatsapp {
    background: linear-gradient(135deg,
        #25d366 0%,
        #128c7e 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: white;
}

.cta-button.telemedicine-btn {
    background: linear-gradient(135deg,
        #25d366 0%,
        #128c7e 50%,
        #25d366 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.3),
        0 0 0 1px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button.telemedicine-btn i {
    margin-right: 6px;
    font-size: 1rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.8s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover i {
    transform: scale(1.2) rotate(5deg);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg,
        #ff5252 0%,
        #d32f2f 50%,
        #ff5252 100%);
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 20px 45px rgba(255, 107, 107, 0.5),
        0 0 0 1px rgba(255, 107, 107, 0.4),
        0 0 30px rgba(255, 107, 107, 0.3);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 20px 45px rgba(255, 107, 107, 0.5),
            0 0 0 1px rgba(255, 107, 107, 0.4),
            0 0 30px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow:
            0 20px 45px rgba(255, 107, 107, 0.7),
            0 0 0 1px rgba(255, 107, 107, 0.6),
            0 0 40px rgba(255, 107, 107, 0.5);
    }
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    color: #ffffff !important;
}

.cta-button.telemedicine-btn:hover {
    background: linear-gradient(135deg,
        #20c55a 0%,
        #0f766e 50%,
        #20c55a 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(37, 211, 102, 0.3),
        0 0 20px rgba(37, 211, 102, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 4;
}

.carousel-btn {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    border: none;
    color: var(--white);
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}
.carousel-btn i {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}
.carousel-btn:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%);
    transform: scale(1.1);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.dot.active::before {
    width: 120%;
    height: 120%;
}

/* Keyframe animations for hero */
@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

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

/* Enhanced Section Styles */
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    scroll-margin-top: 100px; /* Account for fixed navbar */
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 29, 72, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::before {
    display: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: var(--primary-color);
    border-radius: 1px;
    opacity: 0.5;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(232, 240, 237, 0.9) 0%, rgba(245, 250, 247, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(232, 240, 237, 0.4);
    position: relative;
    padding: 7rem 0 4rem;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(219, 234, 254, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(252, 231, 243, 0.25) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

/* About Left Card */
.about-text {
    background: #fefcf7;
    border: 1px solid rgba(98, 134, 116, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.25), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(225, 29, 72, 0.2), transparent 60%);
    filter: blur(4px);
    opacity: 0.6;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    overflow: visible;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(245, 242, 237, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--rose-pink-vibrant), var(--purple-accent));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--rose-pink-vibrant);
}

.stat:hover::before {
    opacity: 0.1;
}

.stat h4 {
    font-size: 2rem; /* Reduced from 2.5rem */
    background: linear-gradient(135deg, var(--rose-pink-vibrant), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
}

.stat:nth-child(1) h4 { background: linear-gradient(135deg, var(--rose-pink-vibrant), var(--coral-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat:nth-child(2) h4 { background: linear-gradient(135deg, var(--purple-accent), var(--teal-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* .stat:nth-child(3) h4 { background: linear-gradient(135deg, var(--gold-accent), var(--navy-vibrant)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } */

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
    min-height: 400px;
    background: #f8f9fa;
    padding: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Healing isn't just my profession — it's my purpose Carousel */
.healing-purpose-section {
    padding: 4rem 0;
    background-image: url('new/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.healing-purpose-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.healing-purpose-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.healing-purpose-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.healing-purpose-slide.active {
    display: block;
    opacity: 1;
}

.healing-purpose-card {
    background: #ffffff;
    background-image: url('new/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(34, 197, 94, 0.25);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.healing-purpose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
    border-radius: 20px;
}

.healing-purpose-card > * {
    position: relative;
    z-index: 1;
}

.healing-purpose-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.healing-purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
}

.healing-purpose-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.8;
}

.healing-purpose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.healing-purpose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.healing-purpose-content {
    line-height: 1.9;
    font-family: 'Poppins', sans-serif;
}

.healing-purpose-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.healing-purpose-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.healing-purpose-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 5px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-radius: 12px;
    position: relative;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.healing-purpose-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: 25px;
    opacity: 0.25;
    font-family: Georgia, serif;
    font-weight: 700;
}

/* Carousel Controls */
.healing-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.healing-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.healing-carousel-btn.prev {
    left: -20px;
}

.healing-carousel-btn.next {
    right: -20px;
}

/* Carousel Indicators */
.healing-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}

.healing-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.healing-indicator:hover {
    background: rgba(34, 197, 94, 0.5);
    transform: scale(1.2);
}

.healing-indicator.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

/* Philosophy List Styles */
.healing-philosophy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.healing-philosophy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.healing-philosophy-item:hover {
    background: rgba(34, 197, 94, 0.08);
    transform: translateX(5px);
}

.philosophy-bullet {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    line-height: 1.2;
}

.philosophy-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
}

.philosophy-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Motto Section */
.healing-purpose-motto {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(34, 197, 94, 0.15);
}

.why-choose-section {
    margin-top: 2.5rem;
}

.why-choose-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Doctor Logo Container */
.doctor-logo-container {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.doctor-logo {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
    transition: transform 0.3s ease;
}

.doctor-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .healing-purpose-carousel-container {
        padding: 0 1rem;
    }
    
    .healing-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .healing-carousel-btn.prev {
        left: -10px;
    }
    
    .healing-carousel-btn.next {
        right: -10px;
    }
    
    .healing-purpose-card {
        padding: 2.5rem 1.5rem;
        border-width: 2px;
    }
    
    .healing-purpose-title {
        font-size: 1.8rem;
    }
    
    .healing-purpose-intro {
        font-size: 1.1rem;
    }
    
    .healing-purpose-text {
        font-size: 1rem;
    }
    
    .healing-purpose-quote {
        padding: 2rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .healing-purpose-motto {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .why-choose-title {
        font-size: 1.2rem;
    }
    
    .philosophy-text {
        font-size: 0.95rem;
    }
    
    .healing-purpose-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .doctor-logo {
        max-width: 150px;
    }
    
    .doctor-logo-container {
        margin: 1.5rem 0;
        padding: 1rem 0;
    }
}

.about-image:hover img {
    transform: scale(1.02);
}

.doctor-profile {
    background: linear-gradient(135deg, var(--white) 0%, rgba(245, 242, 237, 0.9) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.doctor-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sky-blue), var(--rose-pink));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Soft glow ring behind doctor card */
.doctor-profile::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 30px;
    background: conic-gradient(from 0deg, rgba(59, 130, 246, 0.15), rgba(225, 29, 72, 0.1), rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.15));
    filter: blur(18px);
    z-index: -2;
}

.doctor-profile:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--sky-blue);
}

.doctor-profile:hover::before {
    opacity: 0.1;
}

.doctor-image {
    height: 350px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--sky-blue-pastel) 0%, var(--pastel-blue) 100%);
}

.doctor-profile:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 1.5rem;
    text-align: center;
}

.doctor-info h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.doctor-info .position {
    color: var(--rose-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-info .specialty {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.doctor-info .philosophy {
    color: var(--dark-blue);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(225, 29, 72, 0.1) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--sky-blue);
}

.doctor-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.doctor-info .social-links a {
    color: var(--dark-blue);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.doctor-info .social-links a:hover {
    color: var(--sky-blue);
}

/* Team Section */
.team {
    background: linear-gradient(135deg, rgba(253, 246, 227, 0.85) 0%, rgba(255, 240, 240, 0.85) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(253, 246, 227, 0.4);
    position: relative;
}
.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(232, 245, 232, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 244, 253, 0.25) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center; /* Center the single card */
}

.team-member {
    background: linear-gradient(135deg, var(--white) 0%, rgba(245, 242, 237, 0.9) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    max-width: 400px; /* Added max-width to control card size */
    margin: 0 auto; /* Center the card */
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--rose-pink-vibrant), var(--purple-accent));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--rose-pink-vibrant);
}

.team-member:hover::before {
    opacity: 0.1;
}

.team-member:nth-child(1) { border-left: 4px solid var(--rose-pink-vibrant); }
.team-member:nth-child(2) { border-left: 4px solid var(--purple-accent); }
.team-member:nth-child(3) { border-left: 4px solid var(--teal-accent); }

.member-image {
    height: 350px; /* Increased from 250px to show more of the image */
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to show full image */
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--soft-sage) 0%, var(--gentle-blue) 100%); /* Added background for better visibility */
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--rose-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.specialty {
    color: var(--gray);
    margin-bottom: 1rem;
}

.philosophy {
    color: var(--navy);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--rose-pink-vibrant);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--navy);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--rose-pink);
}

/* Locations Section */
.locations {
    background: linear-gradient(135deg, rgba(231, 241, 236, 0.9) 0%, rgba(245, 242, 234, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(231, 241, 236, 0.4);
    position: relative;
    padding: 8.5rem 0 4rem;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(225, 29, 72, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: #fefcf7;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(98, 134, 116, 0.1);
}

.location-card:hover::before {
    transform: scaleX(1);
}


/* Modern Location Card Components */
.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-info h3 {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.location-address {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.location-actions {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
}

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

.action-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.action-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.action-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.location-address {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.location-description {
    color: #475569;
    margin-bottom: 0.7rem;
    line-height: 1.5;
    font-size: 0.8rem;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    margin-bottom: 0.7rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    background: linear-gradient(135deg, rgba(79,124,104,0.08) 0%, rgba(155,199,179,0.08) 100%);
    border-radius: 8px;
    border-left: 3px solid var(--brand);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(79,124,104,0.12) 0%, rgba(155,199,179,0.12) 100%);
}

.detail-item i {
    color: var(--brand-deep);
    font-size: 0.8rem;
    min-width: 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fefcf7;
    border: 1px solid rgba(47, 93, 80, 0.18);
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(47, 93, 80, 0.12);
}

.detail-item span {
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.8rem;
}

.location-btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2f5d50 0%, #4f7c68 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 15px rgba(47, 93, 80, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(47, 93, 80, 0.35);
    background: linear-gradient(135deg, #24493f 0%, #2f5d50 50%, #4f7c68 100%);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(231, 241, 236, 0.85) 0%, rgba(245, 242, 234, 0.85) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(231, 241, 236, 0.4);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(253, 246, 227, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(240, 255, 248, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 360px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(47,93,80,0.18);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
    border: 1px solid rgba(47,93,80,0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.0) 30%, rgba(36,73,63,0.6) 100%);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 50px rgba(47,93,80,0.22);
    border-color: rgba(47,93,80,0.35);
}

.service-card .service-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.5rem;
    color: #ffffff !important;
}

.service-card:nth-child(1) { 
    border-top: 4px solid var(--sky-blue); 
    background-image: url('./services/1.png');
}
.service-card:nth-child(2) { 
    border-top: 4px solid var(--rose-pink); 
    background-image: url('./services/2.png');
}
.service-card:nth-child(3) { 
    border-top: 4px solid var(--sky-blue-light); 
    background-image: url('./services/3.png');
}
.service-card:nth-child(4) { 
    border-top: 4px solid var(--teal-accent); 
    background-image: url('./services/4.png');
}
.service-card:nth-child(5) { 
    border-top: 4px solid var(--purple-accent); 
    background-image: url('./services/5.png');
}
.service-card:nth-child(6) { 
    border-top: 4px solid var(--dark-blue); 
    background-image: url('./services/6.png');
}

/* Service icons removed - background images are now more prominent */

.service-card h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(255, 255, 255, 0.3);
}

.service-card p {
    margin: 0;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 8px rgba(255, 255, 255, 0.2);
}

/* Service Overlay for Clickable Cards */
.service-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0;
}

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

.service-link {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}



/* Telemedicine Section */
.telemedicine {
    background: #fefcf7;
    padding: 7rem 0 4rem;
    margin-bottom: 2rem;
    position: relative;
}

.telemedicine .cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.telemedicine-carousel-container {
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.telemedicine-carousel {
    display: flex;
    gap: 1rem;
    animation: scrollTelemedicine 20s linear infinite;
    width: calc(4 * 250px + 3 * 1rem); /* 4 cards + 3 gaps */
}

@keyframes scrollTelemedicine {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px - 1rem)); /* Move by one card width + gap */
    }
}

.telemedicine-card {
    background: #fefcf7;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 280px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.telemedicine-card > * {
    position: relative;
    z-index: 2;
}

.telemedicine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.telemedicine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.telemedicine-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.telemedicine-card .duration {
    background: #f1f3f4;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    align-self: flex-start;
}

.telemedicine-card p {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
}


.telemedicine-image {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 4px;
    position: relative;
}

.telemedicine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Telemedicine Responsive */
@media (max-width: 768px) {
    .telemedicine-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .telemedicine-card {
        padding: 0.8rem;
    }
    
    .telemedicine-image {
        height: 80px;
        margin-bottom: 6px;
    }
    
    .service-header h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .service-description {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
}

.telemedicine-card.emergency::before {
    background: #ff4757;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

.service-header h3 {
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.duration {
    background: #f1f3f4;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.service-description {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    flex-grow: 1;
}

.telemedicine-card .service-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
    position: relative;
    z-index: 15;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-btn.emergency-btn {
    background: #ff4757;
}

.service-btn.emergency-btn:hover {
    background: #ff3742;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.service-btn.emergency-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.6);
}

.telemedicine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 65%, rgba(79, 124, 104, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 65% 35%, rgba(188, 215, 201, 0.18) 0%, transparent 55%);
    pointer-events: none;
    z-index: -1;
}

.section-subtitle {
    display: none;
}

.telemedicine-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}
.telemedicine-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(37, 211, 102, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 211, 102, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    z-index: 1;
}

.telemedicine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.08) 0%, 
        rgba(18, 140, 126, 0.05) 50%,
        rgba(37, 211, 102, 0.08) 100%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
    border-radius: 24px;
    pointer-events: none;
}
.telemedicine-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        rgba(37, 211, 102, 0.1) 60deg, 
        transparent 120deg, 
        rgba(18, 140, 126, 0.1) 180deg, 
        transparent 240deg, 
        rgba(37, 211, 102, 0.1) 300deg, 
        transparent 360deg);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 0;
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.telemedicine-icon {
    display: none;
}

.telemedicine-icon::before {
    display: none;
}


.telemedicine-icon i {
    display: none;
}


.telemedicine-content {
    position: relative;
    z-index: 2;
}

.telemedicine-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, 
        var(--dark-blue) 0%, 
        #25d366 50%,
        var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}


.telemedicine-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}


.telemedicine-features {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.12) 0%, 
        rgba(18, 140, 126, 0.08) 100%);
    color: var(--dark-blue);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(37, 211, 102, 0.25);
    box-shadow: 
        0 2px 8px rgba(37, 211, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(37, 211, 102, 0.2), 
        transparent);
    transition: left 0.5s ease;
}


.telemedicine-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.whatsapp-cta {
    background: linear-gradient(135deg, 
        #25d366 0%, 
        #20c55a 50%,
        #128c7e 100%);
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.emergency-cta {
    background: linear-gradient(135deg, 
        #ff6b6b 0%, 
        #ff5252 50%,
        #ee5a24 100%);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.telemedicine-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.8s ease;
}

.telemedicine-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}


.whatsapp-cta:hover {
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #20c55a 0%, 
        #25d366 50%,
        #0f766e 100%);
}

.emergency-cta:hover {
    box-shadow: 
        0 15px 40px rgba(255, 107, 107, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #ff5252 0%, 
        #ff6b6b 50%,
        #d32f2f 100%);
}


.telemedicine-cta i {
    font-size: 1.4rem;
    font-weight: 600;
}


/* Special card styling for different services */
.telemedicine-card[data-service="video-consultation"] {
    border-left: 4px solid #25d366;
}

.telemedicine-card[data-service="video-consultation"]:hover {
    border-left-color: #20c55a;
}

.telemedicine-card[data-service="chat-consultation"] {
    border-left: 4px solid #128c7e;
}

.telemedicine-card[data-service="chat-consultation"]:hover {
    border-left-color: #25d366;
}

.telemedicine-card[data-service="follow-up"] {
    border-left: 4px solid #20c55a;
}

.telemedicine-card[data-service="follow-up"]:hover {
    border-left-color: #128c7e;
}

.telemedicine-card[data-service="emergency"] {
    border-left: 4px solid #ff6b6b;
    animation: emergencyPulse 3s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { 
        box-shadow: 
            0 20px 60px rgba(37, 211, 102, 0.08),
            0 8px 25px rgba(0, 0, 0, 0.06),
            0 0 0 1px rgba(255, 255, 255, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    50% { 
        box-shadow: 
            0 20px 60px rgba(255, 107, 107, 0.15),
            0 8px 25px rgba(0, 0, 0, 0.06),
            0 0 0 1px rgba(255, 255, 255, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

.telemedicine-card[data-service="emergency"]:hover {
    border-left-color: #ff5252;
    animation: none;
}

.telemedicine-card[data-service="prescription"] {
    border-left: 4px solid #128c7e;
}

.telemedicine-card[data-service="prescription"]:hover {
    border-left-color: #20c55a;
}

.telemedicine-card[data-service="health-checkup"] {
    border-left: 4px solid #20c55a;
}

.telemedicine-card[data-service="health-checkup"]:hover {
    border-left-color: #25d366;
}

/* Auto-scroll animation */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.telemedicine-cards-grid:hover {
    animation-play-state: paused;
}

/* Add floating animation to cards */
.telemedicine-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.telemedicine-card:nth-child(2) {
    animation-delay: 1s;
}

.telemedicine-card:nth-child(3) {
    animation-delay: 2s;
}

.telemedicine-card:nth-child(4) {
    animation-delay: 3s;
}

.telemedicine-card:nth-child(5) {
    animation-delay: 4s;
}

.telemedicine-card:nth-child(6) {
    animation-delay: 5s;
}

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

.telemedicine-card:hover {
    animation: none;
}

/* Telemedicine Benefits */
.telemedicine-benefits {
    margin-top: 4rem;
    text-align: center;
}

.telemedicine-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 250, 252, 0.6) 100%);
    border-radius: 15px;
    border: 1px solid rgba(79, 124, 104, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(47, 93, 80, 0.15);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--sky-blue);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .telemedicine-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .telemedicine-card {
        padding: 1.5rem;
    }
    
    .telemedicine-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .telemedicine-icon {
        display: none;
    }
    
    .telemedicine-icon i {
        display: none;
    }
    
    .telemedicine-content h3 {
        font-size: 1.3rem;
    }
    
    .telemedicine-content p {
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .telemedicine-benefits h3 {
        font-size: 1.5rem;
    }
    
    .telemedicine-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .telemedicine-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .telemedicine-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .telemedicine-icon {
        display: none;
    }
    
    .telemedicine-icon i {
        display: none;
    }
    
    .telemedicine-content h3 {
        font-size: 1.2rem;
    }
    
    .telemedicine-content p {
        font-size: 0.9rem;
    }
    
    .telemedicine-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 25px;
    }
    
    .feature-tag {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    /* Reduce animation intensity on mobile */
    .telemedicine-card {
        animation: cardFloat 8s ease-in-out infinite;
    }
    
    @keyframes cardFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-3px); }
    }
}

/* Case Form CTA Section */
.case-form-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    clear: both;
}

.case-form-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.case-form-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-form-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.case-form-cta .case-form-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #fff;
    color: #2d8659;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-form-cta .case-form-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    white-space: nowrap;
    min-width: 280px;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

.cta-button span {
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
}

.cta-button:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: white;
}

.cta-button i {
    font-size: 1.2rem;
}

/* Case Form Section */
.case-form-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.case-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Case Form Submit Button - Coral Color */
.case-form .submit-btn {
    background: linear-gradient(135deg, #ff7f50, #ff6347);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.case-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #ff6347, #ff7f50);
}



/* Doctor Carousel in About Us Page */
.about-image .doctor-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000000;
}

.about-image .doctor-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-image .doctor-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-image .doctor-slide.active {
    opacity: 1;
}

.about-image .doctor-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 15px;
}
.about-image .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image .carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-image .carousel-btn.prev {
    left: 15px;
}

.about-image .carousel-btn.next {
    right: 15px;
}

.about-image .carousel-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}
.about-image .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-image .dot.active {
    background: white;
    transform: scale(1.2);
}

.about-image .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Doctor Carousel in Social Media Section */
.photo-container .doctor-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.photo-container .doctor-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-container .doctor-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.photo-container .doctor-slide.active {
    opacity: 1;
}

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

.photo-container .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.photo-container .carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.photo-container .carousel-btn.prev {
    left: 10px;
}

.photo-container .carousel-btn.next {
    right: 10px;
}

.photo-container .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 15;
}

.photo-container .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-container .dot.active {
    background: white;
    transform: scale(1.2);
}

.photo-container .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for About Image Carousel */
@media (max-width: 768px) {
    .about-image {
        height: 350px;
        min-height: 300px;
    }
    
    .about-image .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .about-image .carousel-btn.prev {
        left: 10px;
    }
    
    .about-image .carousel-btn.next {
        right: 10px;
    }
    
    .about-image .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 300px;
        min-height: 250px;
    }
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
    margin-bottom: 1rem;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 120px;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(34, 197, 94, 0.05);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.upload-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.upload-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.file-item:hover {
    border-color: var(--primary-color);
    background: rgba(34, 197, 94, 0.02);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.file-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.file-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.remove-file {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.file-upload-label.dragover {
    border-color: var(--primary-color);
    background: rgba(34, 197, 94, 0.1);
    transform: scale(1.02);
}

/* Responsive Design for Case Form */
@media (max-width: 768px) {
    .case-form-cta {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }
    
    .case-form-cta h3 {
        font-size: 1.5rem;
    }
    
    .case-form-cta p {
        font-size: 1rem;
    }
    
    .telemedicine .cta-button {
        display: flex;
        margin: 2rem auto 0;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        min-width: 250px;
        gap: 0.4rem;
        justify-content: center;
        align-items: center;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        min-width: 250px;
        gap: 0.4rem;
    }
    
    .case-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .case-form-cta {
        padding: 1.5rem 1rem;
    }
    
    .case-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .telemedicine .cta-button {
        display: flex;
        margin: 2rem auto 0;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.3rem;
        white-space: nowrap;
        min-width: 220px;
        justify-content: center;
        align-items: center;
        width: fit-content;
        max-width: 90%;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.3rem;
        white-space: nowrap;
        min-width: 220px;
    }
    
    .cta-button i {
        font-size: 1rem;
    }
}

/* Online Courier Section */
.online-courier {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.9) 0%, rgba(245, 250, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    padding: 4rem 0;
}

.online-courier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.courier-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.courier-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.courier-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.courier-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.courier-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15803d, #166534);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.courier-icon i {
    font-size: 1.2rem;
    color: white;
}

.courier-feature:hover .courier-icon {
    background: linear-gradient(135deg, #166534, #14532d);
    transform: scale(1.05);
}

.courier-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.courier-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.courier-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.courier-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.courier-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.courier-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.courier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20c55a, #0f766e);
}

.courier-btn i {
    font-size: 1.2rem;
}

/* Online Courier Responsive */
@media (max-width: 1024px) {
    .courier-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .courier-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .online-courier {
        padding: 3rem 0;
    }
    
    .courier-content {
        margin-top: 2rem;
    }
    
    .courier-feature {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .courier-icon {
        width: 45px;
        height: 45px;
    }
    
    .courier-cta {
        padding: 2rem;
    }
    
    .courier-cta h3 {
        font-size: 1.3rem;
    }
    
    .courier-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .online-courier {
        padding: 2rem 0;
    }
    
    .courier-feature {
        padding: 1rem;
    }
    
    .courier-text h3 {
        font-size: 1rem;
    }
    
    .courier-text p {
        font-size: 0.85rem;
    }
    
    .courier-cta {
        padding: 1.5rem;
    }
    
    .courier-cta h3 {
        font-size: 1.2rem;
    }
    
    .courier-cta p {
        font-size: 0.9rem;
    }
    
    .courier-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Treatment Cards Section */
.treatments {
    background: linear-gradient(135deg, rgba(231, 241, 236, 0.85) 0%, rgba(245, 242, 234, 0.85) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(231, 241, 236, 0.4);
    position: relative;
    padding: 7rem 0 4rem;
}

.treatments .section-title {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    text-align: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    color: #1e3a8a;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #22c55e 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.treatments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 65%, rgba(79, 124, 104, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 65% 35%, rgba(188, 215, 201, 0.18) 0%, transparent 55%);
    pointer-events: none;
    z-index: -1;
}

.treatment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.treatment-card {
    background: #ffffff;
    width: 100%;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-margin-top: 110px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-inner,
.card-front,
.card-back {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    transition: none;
    backface-visibility: visible;
}

.treatment-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.image-overlay {
    display: none !important;
}

.treatment-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.treatment-details h3 {
    color: #0b2d6b;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    flex-shrink: 0;
}

.treatment-details ul {
    max-height: none;
    overflow: visible;
}

.treatment-details li {
    color: #666;
    font-size: 0.85rem;
    padding: 0.35rem 0;
    position: relative;
    padding-left: 0;
    line-height: 1.45;
    list-style: none;
}

.treatment-details li::before {
    display: none;
}

@media (max-width: 992px) {
    .treatment-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .treatments {
        padding: 6.5rem 0 3.5rem;
    }
    .treatment-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.25rem;
    }
    .treatment-card {
        padding: 1.6rem;
        height: auto;
    }
    .treatment-details li {
        padding: 0.45rem 0;
        line-height: 1.55;
    }
    .treatment-details li::before {
        display: none;
    }
    .card-inner {
        transition: none;
    }
    .treatment-card:hover .card-inner {
        transform: none;
    }
    .card-inner.is-flipped {
        transform: rotateY(180deg);
        transition: transform 0.4s ease;
    }
    .treatment-card {
        cursor: pointer;
    }
}

@media (max-width: 600px) {
    .treatments {
        padding: 6rem 0 3rem;
    }
    .treatment-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .treatment-card {
        padding: 1.4rem;
        height: auto;
    }
    .treatment-image {
        height: 200px;
        min-height: 200px;
    }
    .treatment-image img {
        height: 100%;
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }
    .treatment-details li {
        padding: 0.45rem 0;
        line-height: 1.55;
    }
    .treatment-details li::before {
        display: none;
    }
    .card-inner {
        min-height: 360px;
    }
    .card-front,
    .card-back {
        padding: 1.4rem;
    }
    .card-back {
        transform: rotateY(180deg);
    }
}

@media (max-width: 480px) {
    .treatment-card {
        padding: 1.2rem;
    }
    .treatment-image {
        height: 180px;
        min-height: 180px;
    }
    .treatment-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .card-inner {
        min-height: 320px;
    }
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background-color: #fefcf7;
    overflow: hidden;
}
.card-back {
    background-color: #fefcf7;
    transform: rotateY(180deg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible;
    box-sizing: border-box;
}
/* Treatment Image Styling */
.treatment-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.image-overlay {
    display: none !important;
}

.treatment-details {
    text-align: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.treatment-details h3 {
    color: #0b2d6b;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    flex-shrink: 0;
}

.treatment-details p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.treatment-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex: 1;
    overflow: visible;
    max-height: none;
    overflow-y: visible;
}

.treatment-details li {
    color: #666;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 0;
    line-height: 1.6;
    list-style: none;
}

.treatment-details li::before {
    display: none;
}

.treatment-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
}

.treatment-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.about-image .image-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    background: linear-gradient(135deg, 
        rgba(79, 124, 104, 0.9) 0%, 
        rgba(155, 199, 179, 0.8) 100%);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    opacity: 1 !important;
    transition: all 0.4s ease;
    transform: translateY(0) !important;
    z-index: 20 !important;
    display: block !important;
    visibility: visible !important;
}

.about-image:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, 
        rgba(79, 124, 104, 0.95) 0%, 
        rgba(155, 199, 179, 0.9) 100%);
    padding: 1.2rem;
}

.about-image .overlay-content h4 {
    color: #000000 !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    display: block;
    opacity: 1;
}

.about-image .overlay-content p {
    color: #000000 !important;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    display: block;
    opacity: 1;
}

.treatment-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.treatment-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.treatment-cta-container {
    margin-top: 1rem;
}

.treatment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        var(--sky-blue) 0%, 
        var(--sky-blue-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 25px rgba(79, 124, 104, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.treatment-card:hover .treatment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(79, 124, 104, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.treatment-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.treatment-content {
    position: relative;
    z-index: 2;
}

.treatment-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.treatment-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.treatment-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        var(--sky-blue) 0%, 
        var(--sky-blue-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(79, 124, 104, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.treatment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.treatment-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(79, 124, 104, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        var(--dark-blue) 0%, 
        var(--sky-blue) 100%);
}

.treatment-cta:hover::before {
    left: 100%;
}

/* Responsive Design for Treatment Cards */
@media (max-width: 768px) {
    .treatment-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .treatment-card {
        min-height: auto;
        height: auto;
    }
    
    .card-back {
        padding: 1.2rem;
    }
    
    .treatment-details {
        gap: 0.6rem;
    }
    
    .treatment-details ul {
        margin: 0 0 1rem 0;
    }
    
    .image-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .image-overlay h3 {
        font-size: 1.2rem;
        text-align: center;
        padding: 6px 12px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(34, 197, 94, 0.3);
        backdrop-filter: blur(5px);
        color: #1e3a8a;
        font-weight: 700;
        display: inline-block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .image-overlay p {
        font-size: 0.85rem;
        text-align: center;
        padding: 3px 10px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(34, 197, 94, 0.2);
        backdrop-filter: blur(3px);
        color: #1e3a8a;
        font-weight: 600;
        display: inline-block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .treatment-details h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .treatment-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .treatment-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .treatment-card {
        min-height: auto;
        height: auto;
    }
    
    .card-back {
        padding: 1rem;
    }
    
    .treatment-details {
        gap: 0.5rem;
    }
    
    .treatment-details ul {
        margin: 0 0 0.8rem 0;
    }
    
    .image-overlay {
        padding: 1.2rem 0.8rem 0.8rem;
    }
    
    .image-overlay h3 {
        font-size: 1.4rem;
    font-weight: 700;
        text-align: center;
        padding: 8px 14px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(34, 197, 94, 0.3);
        backdrop-filter: blur(5px);
        color: #1e3a8a;
        font-weight: 700;
        display: inline-block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .image-overlay p {
        font-size: 0.8rem;
        text-align: center;
        padding: 4px 8px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(34, 197, 94, 0.2);
        backdrop-filter: blur(3px);
        color: #1e3a8a;
        font-weight: 600;
        display: inline-block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .treatment-details h3 {
        font-size: 1.4rem;
    font-weight: 700;
    }
    
    .treatment-details p {
        font-size: 0.8rem;
    }
    
    .treatment-details li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        line-height: 1.5;
    }
    
    .treatment-details li::before {
        display: none;
    }
    
    
    .treatment-content p {
        font-size: 1rem;
    }
    
    .treatment-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Treatment Modal */
.treatment-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.treatment-modal .modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
    position: relative;
}

.treatment-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.treatment-modal .close:hover {
    color: #000;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.treatment-modal .modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #22c55e 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.treatment-modal .modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.treatment-modal .modal-header p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.treatment-modal .modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.treatment-modal .treatment-image-modal {
    text-align: center;
}

.treatment-modal .treatment-image-modal img {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.treatment-modal .treatment-info h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 0.5rem;
}

.treatment-modal .treatment-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.treatment-modal .treatment-info ul {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.treatment-modal .treatment-info li {
    margin-bottom: 0.5rem;
}

.treatment-modal .modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.treatment-modal .modal-cta-btn {
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.treatment-modal .modal-cta-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.treatment-modal .modal-contact-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.treatment-modal .modal-contact-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design for Treatment Modal */
@media (max-width: 768px) {
    .treatment-modal .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .treatment-modal .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .treatment-modal .modal-header {
        padding: 1.5rem;
    }
    
    .treatment-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .treatment-modal .modal-footer {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
    
    .treatment-modal .modal-cta-btn,
    .treatment-modal .modal-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .treatment-modal .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 15px;
    }
    
    .treatment-modal .modal-header {
        padding: 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .treatment-modal .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .treatment-modal .modal-body {
        padding: 1rem;
    }
    
    .treatment-modal .treatment-image-modal img {
        height: 200px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    animation: slideIn 0.3s ease;
    position: relative;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
    opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    color: var(--dark-blue);
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(79, 124, 104, 0.1);
}
.modal-header h2 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.modal-text p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.modal-features h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modal-features li {
    color: var(--gray-dark);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}
.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
    font-size: 1.4rem;
    font-weight: 600;
}
.modal-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-contact-btn,
.modal-whatsapp-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-contact-btn {
    background: linear-gradient(135deg, 
        var(--sky-blue) 0%, 
        var(--sky-blue-light) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(79, 124, 104, 0.3);
}

.modal-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 124, 104, 0.4);
}

.modal-whatsapp-btn {
    background: linear-gradient(135deg, 
        #25d366 0%, 
        #128c7e 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.modal-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-image img {
        height: 250px;
    }
    
    .modal-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 5% auto;
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-image img {
        height: 200px;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Fallback: Make content visible if animations don't work */
.fade-in-up, .fade-in-left, .fade-in-right, .scale-in, .stagger-animation {
    animation: fadeInFallback 0.1s ease-in-out 0.5s both;
}

@keyframes fadeInFallback {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for cards */
.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation:nth-child(6) { transition-delay: 0.6s; }

/* Specific delays for about section elements */
.about-text .fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.about-text .fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.about-text .fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.about-text .fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.about-text .fade-in-up:nth-child(5) { transition-delay: 0.5s; }

/* Dynamic Interactive Elements */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

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

.glow-effect {
    box-shadow: 0 0 20px rgba(79, 209, 199, 0.3);
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(79, 209, 199, 0.5);
}

/* Dynamic Text Effects */
.text-shimmer {
    background: linear-gradient(90deg, #4fd1c7, #38b2ac, #4fd1c7);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Interactive Button Effects */
.interactive-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.interactive-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.interactive-button:hover::before {
    left: 100%;
}

/* Dynamic Card Effects */
.dynamic-card {
    transition: all 0.3s ease;
    position: relative;
}

.dynamic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(79, 209, 199, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.dynamic-card:hover::before {
    opacity: 1;
}

.dynamic-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(79,209,199,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(56,178,172,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(79,209,199,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(56,178,172,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(79,209,199,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.breadcrumb a {
    color: #4fd1c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #38b2ac;
}

.breadcrumb span {
    color: #a0aec0;
}

/* Philosophy Section */
.philosophy {
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(232, 240, 237, 0.6) 0%, rgba(245, 250, 247, 0.6) 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.philosophy-card {
    background: #ffffff;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(34, 197, 94, 0.45);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(34, 197, 94, 0.65);
}

.philosophy-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.philosophy-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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


.philosophy-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.philosophy-modal-btn {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.philosophy-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
}

/* Philosophy Modal */
.philosophy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-modal.show {
    display: block;
    opacity: 1;
}

.philosophy-modal .modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Philosophy Modal Content Styles */
.philosophy-modal .modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #22c55e 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.philosophy-modal .modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-modal .modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.philosophy-modal .modal-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-modal .modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.philosophy-modal .modal-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-modal .modal-text p {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.philosophy-modal .modal-features {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #22c55e;
}

.philosophy-modal .modal-features h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.philosophy-modal .modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-modal .modal-features li {
    color: #2c3e50;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.philosophy-modal .modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

.philosophy-modal .modal-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.philosophy-modal .modal-contact-btn,
.philosophy-modal .modal-whatsapp-btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.philosophy-modal .modal-contact-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
}

.philosophy-modal .modal-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.philosophy-modal .modal-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
}

.philosophy-modal .modal-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.philosophy-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.philosophy-modal .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design for Philosophy Modal */
@media (max-width: 768px) {
    .philosophy-modal .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .philosophy-modal .modal-header {
        padding: 1.5rem;
    }
    
    .philosophy-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .philosophy-modal .modal-image img {
        height: 250px;
    }
    
    .philosophy-modal .modal-cta {
        flex-direction: column;
    }
    
    .philosophy-modal .close-modal {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .philosophy-modal .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .philosophy-modal .modal-body {
        padding: 1rem;
    }
    
    .philosophy-modal .modal-header {
        padding: 1rem;
    }
    
    .philosophy-modal .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .philosophy-modal .modal-image img {
        height: 200px;
    }
    
    .philosophy-modal .close-modal {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}
/* Philosophy Section Title */
.philosophy .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1e3a8a 0%, #22c55e 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}
.philosophy .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 2px;
    opacity: 0.8;
}
/* Education & Experience */
.education-experience {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
.education-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.education-experience .container {
    position: relative;
    z-index: 2;
}
.education-experience .section-title {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    text-align: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    color: #22c55e;
    font-weight: 900;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    z-index: 2;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4fd1c7, #38b2ac);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

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

.timeline-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    top: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5), 0 0 20px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

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

.timeline-content {
    background: #fefcf7;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(98, 134, 116, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(98, 134, 116, 0.2), 0 0 30px rgba(98, 134, 116, 0.1);
    border-color: rgba(98, 134, 116, 0.3);
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.timeline-content:hover .timeline-date {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Treatment Process */
.treatment-process {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 242, 234, 0.5) 0%, rgba(231, 241, 236, 0.5) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #fefcf7;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.05) 0%, rgba(56, 178, 172, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(79, 209, 199, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: #fefcf7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.story-card p {
    color: #4a5568;
    line-height: 1.6;
}


/* Still Have Questions */
.still-have-questions {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 242, 234, 0.5) 0%, rgba(231, 241, 236, 0.5) 100%);
}

.questions-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    background: #fefcf7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.contact-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-option .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.phone {
    background: #4fd1c7;
    color: white;
}

.contact-btn.email {
    background: #38b2ac;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Location Styles */
.locations {
    background: linear-gradient(135deg, rgba(231, 241, 236, 0.9) 0%, rgba(245, 242, 234, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(231, 241, 236, 0.4);
    position: relative;
    padding: 8.5rem 0 4rem;
}

.locations .section-title {
    margin-top: 0;
    color: #0b3d2c;
    background: none;
    -webkit-text-fill-color: #0b3d2c;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.locations .section-title::after {
    background: rgba(34, 197, 94, 0.6);
    opacity: 0.8;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: #fefcf7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.location-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(79, 209, 199, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.location-content {
    padding: 2rem;
}

.location-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.location-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.detail-item i {
    color: #4fd1c7;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(79, 209, 199, 0.1);
    color: #38b2ac;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.location-btn.primary {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: white;
}

.location-btn.secondary {
    background: transparent;
    color: #4fd1c7;
    border: 2px solid #4fd1c7;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Location Features */
.location-features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fefcf7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #fefcf7;
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.05) 0%, rgba(56, 178, 172, 0.05) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #4fd1c7;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.map-location {
    background: #fefcf7;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.map-location h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.map-location p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.map-location a {
    color: #4fd1c7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-location a:hover {
    color: #38b2ac;
}

/* Appointment Booking */
.appointment-booking {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 242, 234, 0.5) 0%, rgba(231, 241, 236, 0.5) 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.booking-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.booking-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
}
.booking-feature i {
    color: #4fd1c7;
    font-size: 1.2rem;
}
.booking-actions {
    text-align: center;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.booking-btn.primary {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: white;
}
.booking-btn.secondary {
    background: transparent;
    color: #4fd1c7;
    border-color: #4fd1c7;
}
.booking-btn.whatsapp {
    background: #25d366;
    color: white;
}
.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Contact Form Styles */
.contact {
    padding: 7rem 0 4rem;
    background-image: url('new/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.05) 0%, rgba(56, 178, 172, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-hours-card {
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    display: inline-block;
    min-width: 260px;
}

.contact-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #1e293b;
}

.contact-hours-table td {
    padding: 0.35rem 0.6rem;
    vertical-align: middle;
}

.contact-hours-table td:first-child {
    font-weight: 600;
    color: #1e3a8a;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.contact-hours-table td:last-child {
    font-weight: 700;
    color: #F85F41;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(79, 209, 199, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fefcf7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fd1c7;
    box-shadow: 0 0 0 3px rgba(79, 209, 199, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-container {
    padding: 2rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact .contact-address-text p,
.contact .contact-address-text a {
    color: #111;
    font-weight: 700;
}

.contact .contact-item a {
    color: #2f9e63;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact .contact-item a:hover,
.contact .contact-address-text a:hover {
    color: #228a54;
}

.contact .contact-address-text a {
    color: #111 !important;
    text-decoration: underline;
}

.contact .contact-address-text a:hover {
    color: #000 !important;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.location-list p {
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: #4fd1c7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #38b2ac;
}

.whatsapp-link {
    color: #25d366 !important;
}

.office-hours {
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.05) 0%, rgba(56, 178, 172, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(79, 209, 199, 0.1);
    margin-bottom: 2rem;
}

.office-hours h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(79, 209, 199, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #2d3748;
}

.time {
    color: #4a5568;
}

.emergency-contact {
    background: linear-gradient(135deg, rgba(255, 87, 51, 0.1) 0%, rgba(255, 138, 101, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 87, 51, 0.2);
    text-align: center;
}

.emergency-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #d32f2f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-contact-card {
    background: #fefcf7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.quick-contact-card:nth-child(1) .quick-contact-icon {
    background: #25d366;
}

.quick-contact-card:nth-child(2) .quick-contact-icon {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
}

.quick-contact-card:nth-child(3) .quick-contact-icon {
    background: #1976d2;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.quick-contact-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.quick-contact-btn.phone {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: white;
}

.quick-contact-btn.video {
    background: #1976d2;
    color: white;
}

.quick-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.4rem;
    font-weight: 600;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
}

/* Testimonials Section */
.testimonials {
    background: #fefcf7;
    background-image: url('E/Untitled design (7).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Remove overlay to show full image clarity */
    background: none !important;
    z-index: 1;
}

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

.testimonials .section-title {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    text-align: center;
    padding: 20px 40px;
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
    background-attachment: fixed !important;
    background-clip: padding-box !important;
    background-origin: padding-box !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: repeat !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.testimonials .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    height: 350px;
    border-radius: 16px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.testimonial-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

.testimonial-card {
    background: #fefcf7;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .testimonials {
        padding: 4.5rem 0;
    }
    .testimonials-carousel {
        max-width: 90%;
        height: 420px;
    }
    .testimonial-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimonials .section-title {
        font-size: 1.8rem;
        padding: 16px 28px;
    }
    .testimonials .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.2rem;
    }
    .testimonials-carousel {
        max-width: 95%;
        height: 460px;
    }
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .testimonial-content {
        font-size: 1.05rem;
        line-height: 1.62;
    }
    .testimonial-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
    .testimonial-author span {
        font-size: 0.92rem;
    }
    .testimonial-rating .stars i {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 4rem 0 3.5rem;
    }
    .testimonials-carousel {
        max-width: 100%;
        height: 520px;
    }
    .testimonial-card {
        padding: 1.25rem;
    }
    .testimonial-content {
        font-size: 1rem;
    }
    .testimonial-quote-icon {
        font-size: 2rem;
    }
    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .testimonials .section-title {
        font-size: 1.6rem;
        padding: 14px 24px;
    }
    .testimonials .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .testimonials-carousel {
        height: 560px;
    }
    .testimonial-card {
        padding: 1.1rem;
    }
    .testimonial-content {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .testimonial-author h4 {
        font-size: 1rem;
    }
    .testimonial-author span {
        font-size: 0.85rem;
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-deep) 100%);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #f59e0b;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-text {
    font-weight: 700;
    color: #1a365d;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 0;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(79, 124, 104, 0.3);
}
.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a365d;
    font-weight: 700;
}
.author-info span {
    font-size: 0.85rem;
    color: #4a5568;
    margin-top: 1px;
    display: block;
    font-weight: 600;
}
.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.testimonial-btn {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    border: none;
    color: #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47,93,80,0.25);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.testimonial-btn:hover {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(47,93,80,0.35);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(79,124,104,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: rgba(79,124,104,0.6);
    transform: scale(1.3);
}
.testimonial-dot.active {
    background: var(--brand);
    transform: scale(1.5);
}
/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding-top: 7rem;
    }
    
    .faq {
        padding-top: 7rem;
    }
    
    .gallery {
        padding-top: 9rem !important;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
        padding: 18px 35px;
        letter-spacing: -0.2px;
        border: 2px solid rgba(34, 197, 94, 0.2);
        color: #1e3a8a;
        background-color: #ffffff;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .faq .section-title {
        font-size: 2rem;
        padding: 18px 35px;
        letter-spacing: -0.2px;
        border: 2px solid rgba(34, 197, 94, 0.2);
        color: #1e3a8a;
        background-color: rgba(255, 255, 255, 0.95);
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 0 auto 2rem auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .testimonials-carousel {
        height: 280px;
        margin: 0 1rem;
    }
    
    .testimonial-slide {
        padding: 0.25rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        height: 250px;
    }
    
    .testimonials .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .testimonial-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding-top: 9rem;
        padding-bottom: 1.5rem;
    }
    
    .faq {
        padding-top: 9rem;
    }
    
    .testimonials .section-title {
        font-size: 1.8rem;
        padding: 15px 25px;
        letter-spacing: -0.1px;
        border: 2px solid rgba(34, 197, 94, 0.2);
        color: #1e3a8a;
        background-color: #ffffff;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .faq .section-title {
        font-size: 1.8rem;
        padding: 15px 25px;
        letter-spacing: -0.1px;
        border: 2px solid rgba(34, 197, 94, 0.2);
        color: #1e3a8a;
        background-color: rgba(255, 255, 255, 0.95);
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 0 auto 1.5rem auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .testimonials-carousel {
        height: 220px;
        margin: 0 0.5rem;
    }
    
    .testimonial-slide {
        padding: 0.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        height: 200px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #2c3e50;
        font-weight: 500;
    }
    
    .author-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
        color: #1a365d;
        font-weight: 700;
    }
    
    .author-info span {
        font-size: 0.8rem;
        color: #4a5568;
        font-weight: 600;
    }
    
    .testimonial-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .testimonial-dot {
        width: 6px;
        height: 6px;
    }
}

/* Contact Section */
.contact {
    background-image: url('new/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact::before {
    display: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduced from 4rem */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Reduced from 2rem */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--brand);
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-hours-text {
    color: #6b7280 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.contact-hours-text strong {
    color: #6b7280 !important;
    font-weight: 700 !important;
}

.contact-address-text {
    color: #808080 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.contact-address-text strong {
    color: #808080 !important;
    font-weight: 700 !important;
}

.contact-address-text .location-link {
    color: #808080 !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.contact-address-text .location-link:hover {
    color: #666666 !important;
    text-decoration: underline;
}

.locations-list-pointer {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.locations-list-pointer li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.locations-list-pointer li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.locations-list-pointer li .location-link {
    color: #000000 !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.locations-list-pointer li .location-link strong {
    color: #000000 !important;
    font-weight: 700 !important;
}

/* Footer - Normal font weight */
.footer .locations-list-pointer li .location-link {
    font-weight: 400 !important;
}

.footer .locations-list-pointer li .location-link strong {
    font-weight: 400 !important;
}

/* Contact Section - Green on hover/click */
.contact .locations-list-pointer li:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact .locations-list-pointer li:hover .location-link {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.contact .locations-list-pointer li:hover .location-link strong {
    color: var(--primary-color) !important;
}

.contact .locations-list-pointer li .location-link:active,
.contact .locations-list-pointer li .location-link:focus {
    color: var(--primary-color) !important;
}

.contact .locations-list-pointer li .location-link:active strong,
.contact .locations-list-pointer li .location-link:focus strong {
    color: var(--primary-color) !important;
}

/* Footer - Yellow on hover/click */
.footer .locations-list-pointer li:hover i {
    color: #FFFACD;
    transform: scale(1.1);
}

.footer .locations-list-pointer li:hover .location-link {
    color: #FFFACD !important;
    transform: translateX(5px);
}

.footer .locations-list-pointer li:hover .location-link strong {
    color: #FFFACD !important;
}

.footer .locations-list-pointer li .location-link:active,
.footer .locations-list-pointer li .location-link:focus {
    color: #FFFACD !important;
}

.footer .locations-list-pointer li .location-link:active strong,
.footer .locations-list-pointer li .location-link:focus strong {
    color: #FFFACD !important;
}

.contact-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,248,247,0.96) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(47,93,80,0.15);
    border: 1px solid rgba(47,93,80,0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(47,93,80,0.15);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(79,124,104,0.15);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(47,93,80,0.28);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(47,93,80,0.35);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    position: relative;
    overflow: hidden;
}


.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35) !important;
}

.call-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 123, 255, 0.28);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.call-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 123, 255, 0.35);
}

.call-btn i {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Social Media Post Section */
.social-media-post {
    padding: 5rem 0;
    background: #f8f9fa;
}

.social-post {
    max-width: 1000px;
    height: 600px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #f5f0e8 100%);
    position: relative;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Background Pattern */
.social-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 124, 104, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Container */
.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
}

/* Left Side - Text Content */
.text-content {
    flex: 1;
    padding-right: 30px;
}

.clinic-name {
    font-size: 36px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.doctor-name {
    font-size: 28px;
    font-weight: 700;
    color: #16a34a !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 18px;
    font-weight: 600;
    color: #ff7f50;
    margin-bottom: 30px;
    line-height: 1.4;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.specialties {
    margin-bottom: 30px;
}

.specialty-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #5a7a5a;
}

.specialty-item::before {
    content: '✓';
    color: #4a7c59;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

/* Right Side - Doctor Photo */
.photo-container {
    flex: 0 0 300px;
    height: 380px;
    position: relative;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.photo-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid rgba(79, 124, 104, 0.3);
    border-radius: 20px;
    pointer-events: none;
}

/* Call to Action Button */
.cta-button {
    position: absolute;
    bottom: 30px;
    left: 600px;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 15;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.4);
}

.cta-button::before {
    content: '📞';
    margin-right: 8px;
    font-size: 16px;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.5);
}

.cta-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(79, 124, 104, 0.1);
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 60px;
    right: 80px;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 150px;
    right: 150px;
}

.circle-3 {
    width: 40px;
    height: 40px;
    top: 200px;
    left: 40px;
}

/* Social Media Post Responsive */
@media (max-width: 768px) {
    .social-post {
        height: auto;
        min-height: 500px;
        margin: 0 1rem;
        padding-bottom: 2rem;
    }
    
    .content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .text-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .clinic-name {
        font-size: 28px;
    }
    
    .doctor-name {
        font-size: 22px;
        color: #16a34a !important;
    }
    
    .tagline {
        font-size: 16px;
        color: #1a4d1a;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .photo-container {
        flex: none;
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }
    
    .cta-button {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 20px auto 0;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .social-media-post {
        padding: 2rem 0;
    }
    
    .social-post {
        height: auto;
        min-height: 450px;
        margin: 0 0.5rem;
        padding-bottom: 1.5rem;
    }
    
    .content {
        padding: 20px;
    }
    
    .clinic-name {
        font-size: 24px;
    }
    
    .doctor-name {
        font-size: 20px;
        color: #16a34a !important;
    }
    
    .tagline {
        font-size: 14px;
        color: #1a4d1a;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .specialty-item {
        font-size: 14px;
    }
    
    .photo-container {
        width: 150px;
        height: 200px;
    }
}

/* Blog Section */
.blog {
    background: #fefcf7;
    padding: 7rem 0 4rem;
    position: relative;
}

.blog .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-card {
    background: #fefcf7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    min-height: 72px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: #888;
}

.blog-date {
    font-weight: 500;
}

.blog-read-time {
    background: #f0f8f0;
    color: #4a7c59;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}
.read-more-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}
.read-more-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: white !important;
}
.blog-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.5rem;
}
.blog-actions .read-more-btn {
    flex: 1;
    min-width: 100px;
}


/* Blog Edit Form */
.blog-edit-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    z-index: 15;
}
.edit-form-content h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
}
.edit-form-content input,
.edit-form-content textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.edit-form-content input:focus,
.edit-form-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.edit-form-content textarea {
    min-height: 100px;
    resize: vertical;
}
.edit-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.save-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.cancel-btn {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.3);
}

/* Notification Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Blog Modal */
.blog-modal {
    display: none !important;
    position: fixed;
    z-index: 99999 !important;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.blog-modal.active,
.blog-modal[style*="display: block"] {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(5px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-modal.active .blog-modal-content {
    transform: scale(1);
    opacity: 1;
}

.blog-modal-content {
    background-color: #fefcf7 !important;
    margin: 2% auto !important;
    padding: 0 !important;
    border-radius: 20px !important;
    width: 90% !important;
    max-width: 800px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    z-index: 100000 !important;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    color: #333;
    background: rgba(255, 255, 255, 1);
}

.blog-modal-article {
    padding: 2rem;
}

.blog-modal-article h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-modal-article .blog-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.blog-modal-article .blog-image {
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-modal-article .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-article .blog-content {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8;
    color: #555;
}

.blog-modal-article .blog-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.blog-modal-article .blog-content h3 {
    font-size: 1.25rem;
    color: #4a7c59;
    margin: 1.5rem 0 0.75rem 0;
}

.blog-modal-article .blog-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-modal-article .blog-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.blog-modal-article .blog-content p {
    margin-bottom: 1.5rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .blog-actions .read-more-btn {
        width: 100%;
        min-width: auto;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }
    
    .blog-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .blog-modal-article {
        padding: 1.5rem;
    }
    
    .blog-modal-article h1 {
        font-size: 1.5rem;
    }
    
    .blog-modal-article .blog-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 3rem 0;
    }
    
    .blog-card {
        margin: 0 0.5rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-modal-article {
        padding: 1rem;
    }
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(231, 241, 236, 0.85) 0%, rgba(245, 242, 234, 0.85) 100%);
    background-image: url('E/Untitled design (7).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Remove section-wide blur so inner text stays sharp */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(231, 241, 236, 0.4);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 252, 247, 0.75);
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.faq .section-title {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    text-align: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    margin: 0 auto 3rem auto;
    width: fit-content;
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(79,124,104,0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(188,215,201,0.18) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.faq-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep), var(--brand-light));
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(246,248,247,0.98) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(47,93,80,0.15);
    box-shadow: 0 14px 32px rgba(47,93,80,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--sky-blue);
}

.faq-item:hover::before {
    opacity: 0.1;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(225, 29, 72, 0.05) 100%);
    transform: translateX(5px);
}

.faq-question h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover h3 {
    color: var(--rose-pink-vibrant);
    transform: translateX(3px);
}

.faq-question i {
    color: var(--rose-pink-vibrant);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.faq-question:hover i {
    color: var(--sky-blue);
    transform: scale(1.2);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) scale(1.1);
    color: var(--brand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(79,124,104,0.03) 0%, rgba(188,215,201,0.03) 100%);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    border-top: 1px solid rgba(79, 124, 104, 0.25);
    padding-top: 0.5rem;
}

.faq-answer p {
    padding: 1.5rem 2rem 2rem;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 0 0 1rem;
    position: relative;
    overflow: visible;
    margin: 0;
    border: none;
}

/* Footer Wave */
.footer-wave {
    position: relative;
    top: -2px;
    color: var(--primary-color);
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container img {
    width: 140px;
    height: 90px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.logo-container img:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow:
        0 12px 35px rgba(59, 130, 246, 0.4),
        0 0 0 2px rgba(59, 130, 246, 0.3);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
}

.logo-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.tagline {
    font-size: 0.9rem;
    color: #1a237e;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

/* Footer Slogan - Eye-catching styling */
.footer-slogan {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #000000 !important;
    margin: 0.5rem 0 0 0 !important;
    padding: 1rem 1.2rem !important;
    background: linear-gradient(135deg, rgba(98, 134, 116, 0.08) 0%, rgba(79, 209, 199, 0.08) 100%) !important;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 8px !important;
    position: relative !important;
    font-weight: 500 !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 2px 8px rgba(98, 134, 116, 0.1) !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.footer-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.footer-slogan:hover::before {
    left: 100%;
}

.footer-slogan:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(98, 134, 116, 0.2) !important;
    background: linear-gradient(135deg, rgba(98, 134, 116, 0.12) 0%, rgba(79, 209, 199, 0.12) 100%) !important;
    border-left-color: var(--primary-light) !important;
}

.footer-slogan strong {
    color: #000000 !important;
    font-weight: 600 !important;
}

.footer-slogan:active,
.footer-slogan:focus {
    color: #FFFACD !important;
}

.footer-slogan:active strong,
.footer-slogan:focus strong {
    color: #FFFACD !important;
}

.footer-slogan:active,
.footer-slogan:focus {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.15) 0%, rgba(255, 250, 205, 0.1) 100%) !important;
    border-left-color: #FFFACD !important;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Ensure all icons in footer are black by default */
.footer i,
.footer .fa,
.footer .fab,
.footer .fas {
    color: #000000;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-blue-light) 100%);
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, var(--white) 0%, var(--sky-blue-pastel) 100%);
    color: var(--sky-blue);
}

.social-link:hover i {
    color: var(--sky-blue);
}

.social-link i {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
}

/* Social Link Dropdown Container */
.social-link-dropdown {
    position: relative;
    display: inline-block;
    z-index: 100;
}

.social-link.location-dropdown-trigger {
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    color: #000000;
}

.social-link.location-dropdown-trigger i {
    color: #000000;
}

.social-link.location-dropdown-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, var(--white) 0%, var(--sky-blue-pastel) 100%);
    color: var(--sky-blue);
}

.social-link.location-dropdown-trigger:hover i {
    color: var(--sky-blue);
}

/* Locations Dropdown Menu - positioned below social link */
.social-link-dropdown .locations-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow: hidden;
    padding: 0.5rem 0;
}

.social-link-dropdown .locations-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000 !important;
    margin: 0 0 1rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue) 0%, var(--sky-blue-light) 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.footer-links li a:hover {
    color: var(--primary-light);
    transform: translateX(20px);
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-blue-light) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-icon i {
    color: #000000;
    font-size: 1rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000 !important;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    font-size: 1.1rem;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

.location-link {
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    display: block;
}

.location-link:hover {
    color: #4fd1c7;
    transform: translateY(-1px);
}

.location-link p {
    transition: color 0.3s ease;
    color: #000000;
}

.location-link:hover p {
    color: #4fd1c7;
}
/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
}
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    margin: 2rem 0;
}

/* Locations Dropdown Menu - General styles for dropdown items */

.location-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #000000 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
}

.location-dropdown-item span {
    color: #000000 !important;
}

.location-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left-color: var(--sky-blue);
    color: var(--sky-blue) !important;
    transform: translateX(5px);
}

.location-dropdown-item:hover span {
    color: var(--sky-blue) !important;
}

.location-dropdown-item i {
    color: var(--sky-blue);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.location-dropdown-item:hover i {
    color: var(--sky-blue);
    transform: scale(1.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}
/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        display: flex !important;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .social-link,
    .social-link.location-dropdown-trigger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 45px;
        height: 45px;
    }
    
    .social-link-dropdown {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .footer-section {
        text-align: center;
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-links li a {
        text-align: center;
    }
    
    .footer-links li a::before {
        display: none;
    }
    
    .footer-links li a:hover {
        transform: none;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        text-align: center;
    }
    
    .contact-details p {
        text-align: center;
    }
    
    .location-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100%;
    }
    
    .location-list p {
        display: block !important;
        margin: 0 !important;
        text-align: center;
    }
    
    .location-link {
        display: block;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-wave svg {
        height: 60px;
    }
    
    .social-link-dropdown {
        position: relative;
        z-index: 1000;
    }
    
    .social-link-dropdown .locations-dropdown-menu {
        position: absolute;
        bottom: auto;
        top: calc(100% + 0.5rem);
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-10px);
        min-width: 260px;
        max-width: calc(100vw - 2rem);
        width: auto;
        margin: 0;
    }
    
    .social-link-dropdown .locations-dropdown-menu.active {
        transform: translateX(-50%) translateY(0);
    }
    
    /* Ensure footer containers don't clip dropdown on mobile */
    .footer {
        overflow: visible !important;
    }
    
    .footer-content {
        overflow: visible !important;
    }
    
    .footer-brand {
        overflow: visible !important;
    }
    
    .social-links {
        overflow: visible !important;
    }
    
    .location-dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    /* Removed body scaling to fix zoom issues */
    
    .container {
        max-width: 1000px;
    }
    
    .about-content {
        gap: 2.5rem;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .nav-container {
        max-width: 1000px;
        margin-left: 15px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Removed body scaling to fix zoom issues */
    
    .member-image {
        height: 300px; /* Slightly smaller on mobile */
    }
    
    .team-member {
        max-width: 100%; /* Full width on mobile */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px; /* Reduced from 70px */
        flex-direction: column;
        background-color: rgba(34, 197, 94, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 1.5rem 0; /* Reduced from 2rem */
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.4);
        border-radius: 3px;
    }

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

    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-toggle .bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-main-title h2 {
        font-size: 1.5rem; /* Reduced for mobile */
    }

    .hero {
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .homepage2-image-wrapper {
        max-width: 400px;
        height: 300px;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 1.5rem;
        text-align: left;
    }
    
    
    .hero-title {
        font-size: 2.6rem;
        text-align: left !important;
        color: var(--text-primary);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-clinic-tagline {
        font-size: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* New Hero Mobile Styles */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    
    .hero-text {
        height: auto;
        padding: 3rem 2rem;
        order: 2;
    }
    
    .hero-carousel {
        height: 50vh;
        order: 1;
    }
    
    .carousel-container {
        max-width: 100%;
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.3rem;
        text-align: center !important;
        color: var(--text-primary);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-clinic-tagline {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-cta-button {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-section {
        grid-column: 1 / -1;
        margin-top: 2rem;
    }
    
    .benefit-content h2 {
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .doctor-profile {
        max-width: 100%; /* Full width on mobile */
    }
    
    .doctor-image {
        height: 300px; /* Slightly smaller on mobile */
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
        min-height: 100px;
        overflow: visible;
    }
    
    .stat h4 {
        font-size: 1.5rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: visible;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: auto;
        min-height: 200px;
        object-fit: contain;
    }
    
    .locations-list-pointer {
        gap: 0.75rem;
    }
    
    .locations-list-pointer li {
        padding: 0.4rem 0;
    }
    
    .locations-list-pointer li i {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2rem */
    }

    .section-title {
        font-size: 1.8rem; /* Reduced from 2.2rem for mobile */
    }

    .carousel-controls {
        padding: 0 10px;
    }

    .carousel-btn {
        font-size: 1.3rem; /* Reduced from 1.5rem */
        padding: 6px 10px; /* Reduced from 8px 12px */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px; /* Reduced from 15px */
    }
    
    .locations-list-pointer {
        gap: 0.6rem;
    }
    
    .locations-list-pointer li {
        padding: 0.35rem 0;
        flex-wrap: wrap;
    }
    
    .locations-list-pointer li i {
        font-size: 0.95rem;
    }
    
    .locations-list-pointer li .location-link {
        font-size: 0.95rem !important;
    }

    .gallery {
        padding-top: 9.5rem !important;
    }

    .treatments {
        padding-top: 9.5rem;
    }

    .about {
        padding-top: 9.5rem;
    }
    
    /* Fix dropdown positioning on small mobile screens */
    .social-links {
        display: flex !important;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        overflow: visible !important;
    }
    
    .social-link,
    .social-link.location-dropdown-trigger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 45px;
        height: 45px;
    }
    
    .social-link-dropdown {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1000;
    }
    
    .social-link-dropdown .locations-dropdown-menu {
        position: fixed;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-10px);
        max-width: calc(100vw - 1rem);
        min-width: 240px;
        z-index: 10000;
    }
    
    .social-link-dropdown .locations-dropdown-menu.active {
        transform: translateX(-50%) translateY(0);
    }
    
    /* Ensure footer doesn't clip dropdown */
    .footer {
        overflow: visible !important;
    }
    
    .footer-content {
        overflow: visible !important;
    }
    
    .footer-brand {
        overflow: visible !important;
    }
    
    .footer-brand {
        overflow: visible !important;
    }
    
    .social-links {
        overflow: visible !important;
    }

    .telemedicine {
        padding-top: 10rem;
    }

    .locations {
        padding-top: 11rem;
    }

    .blog {
        padding-top: 10.5rem;
    }

    .contact {
        padding-top: 10.5rem;
    }
    
    /* Prevent content cutting on mobile */
    body {
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
    
    .navbar {
        padding: 0.8rem 0 !important;
        overflow-x: visible !important;
    }
    
    .nav-container {
        padding: 0 10px 0 5px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: visible !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }
    
    /* Hide clinic name in mobile view */
    .nav-logo .logo-text,
    .nav-logo .clinic-name,
    .nav-logo .doctor-name {
        display: none !important;
    }
    
    /* Increase logo width in mobile view */
    .nav-logo img {
        width: 220px !important;
        height: 120px !important;
        object-fit: contain !important;
    }
    
    .nav-logo {
        gap: 0 !important;
        padding-right: 0 !important;
    }
    
    .nav-toggle {
        display: flex !important;
        width: 48px !important;
        height: 48px !important;
        margin-right: 0 !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        position: relative !important;
        right: 0 !important;
        z-index: 10001 !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 48px !important;
        max-width: 48px !important;
    }
    
    .nav-toggle .bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu.active {
        padding: 1rem;
        max-height: 70vh;
    }
    
    .nav-menu.active .nav-link {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .nav-menu.active .dropdown-item {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .hero-main-title h2 {
        font-size: 1.8rem; /* Further reduced for small mobile */
    }

    .hero-content h1 {
        font-size: 1.2rem; /* Further reduced for small mobile */
    }
    
    .hero {
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .homepage2-image-wrapper {
        max-width: 350px;
        height: 250px;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 1rem;
    }
    
    
    .hero-title {
        font-size: 2.0rem;
        text-align: left !important;
        color: var(--text-primary);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-clinic-tagline {
        font-size: 0.85rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .cta-button.primary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .cta-button.telemedicine-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    /* Mobile touch optimization */
    .cta-button {
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-badge {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .feature {
        padding: 8px 12px;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        gap: 0.8rem;
        flex-wrap: nowrap;
    }
    
    .cta-button {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .cta-button.primary {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .cta-button.telemedicine-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem; /* Reduced from 2.2rem for small mobile */
    }

    .service-card,
    .team-member,
    .treatment-card {
        margin: 0 5px; /* Reduced from 10px */
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item img {
        height: auto;
        min-height: 180px;
        object-fit: contain;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 0.8rem;
    }
    
}

/* Blog Page Styles */
.blogs {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(232, 240, 237, 0.6) 0%, rgba(245, 250, 247, 0.6) 100%);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: #fefcf7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(98, 134, 116, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}
.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}
.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}
.blog-load-more {
    text-align: center;
    margin-top: 3rem;
}
.load-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    text-align: center;
}
.newsletter-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: #fefcf7;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* Blog Page Responsive */
@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for better scaling */
    margin: 0;
    padding: 0;
    height: 100%;
    zoom: 1; /* Ensure normal zoom level */
}

/* Ensure proper scaling on different devices */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

/* Enhanced Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

.flip-in {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-in.visible {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Glow Animation */
@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: var(--shadow-glow-strong); }
}

.glow {
    animation: glow 3s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ensure no space after footer */
.footer + * {
    display: none;
}

/* Ensure floating buttons are always visible and positioned correctly */
.floating-buttons {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
}

/* Prevent any parent containers from affecting floating buttons */
.floating-buttons * {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .floating-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better mobile spacing */
    .floating-buttons {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    /* Mobile-friendly shadows */
    .floating-btn {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Mobile performance optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    /* Improve mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Mobile-friendly text selection */
    p, span, div {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Allow text selection for important content */
    .hero-content p,
    .service-card p,
    .treatment-content p {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .floating-buttons {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .floating-btn {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        font-size: 1.2rem !important;
    }
}

/* Remove any potential spacing from script tags */
script {
    display: none;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    pointer-events: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.floating-button-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
}

/* Individual floating buttons */
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.floating-btn.call-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.floating-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-btn.meet-btn {
    background: linear-gradient(135deg, #ea4335 0%, #c23321 100%);
}

/* Hover effects for individual floating buttons */
.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn.call-btn:hover {
    box-shadow: 
        0 12px 35px rgba(0, 123, 255, 0.4),
        0 6px 20px rgba(0, 123, 255, 0.3);
}

.floating-btn.whatsapp-btn:hover {
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.4),
        0 6px 20px rgba(37, 211, 102, 0.3);
}

.floating-btn.meet-btn:hover {
    box-shadow: 
        0 12px 35px rgba(234, 67, 53, 0.4),
        0 6px 20px rgba(234, 67, 53, 0.3);
}

/* Click animation */
.floating-btn:active {
    transform: scale(0.95);
}

/* Tooltip styles for individual floating buttons */
.floating-btn::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.floating-btn::before {
    content: '';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.floating-btn:hover::after,
.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.floating-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--dark-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.floating-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(47, 93, 80, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-main-btn:hover::before {
    opacity: 1;
}

.floating-main-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-main-btn.active i {
    transform: rotate(45deg);
}

.floating-sub-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-sub-buttons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-sub-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.floating-sub-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.floating-sub-btn:hover {
    transform: scale(1.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-sub-btn:hover::before {
    opacity: 1;
}

.floating-sub-btn i {
    position: relative;
    z-index: 2;
}

/* Individual button colors */
.call-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.1s;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.2s;
}

.meet-btn {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    animation-delay: 0.3s;
}

/* Tooltip styles */
.floating-sub-btn::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.floating-sub-btn::before {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.floating-sub-btn:hover::after,
.floating-sub-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px !important;
        right: 20px !important;
        z-index: 9999 !important;
        position: fixed !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .floating-main-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        box-shadow: 
            0 8px 25px rgba(44, 90, 160, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .floating-sub-btn {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .floating-sub-buttons {
        gap: 12px;
    }
    
    .floating-button-container {
        gap: 12px;
    }
    
    /* Ensure floating buttons are always visible on mobile */
    .floating-buttons {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px !important;
        right: 15px !important;
        z-index: 9999 !important;
        position: fixed !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .floating-main-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 
            0 6px 20px rgba(44, 90, 160, 0.6),
            0 3px 10px rgba(0, 0, 0, 0.3);
    }
    
    .floating-sub-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
    
    .floating-sub-buttons {
        gap: 10px;
    }
    
    .floating-button-container {
        gap: 10px;
    }
    
    /* Hide tooltips on very small screens */
    .floating-sub-btn::after,
    .floating-sub-btn::before {
        display: none;
    }
    
    /* Ensure floating buttons are always visible on small mobile */
    .floating-buttons {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Animation for sub-buttons */
.floating-sub-buttons.active .floating-sub-btn {
    animation: slideInUp 0.3s ease forwards;
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Pulse animation for main button */
@keyframes pulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(47, 93, 80, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(47, 93, 80, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(47, 93, 80, 0.4);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(47, 93, 80, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.2);
    }
}
.floating-main-btn.pulse {
    animation: pulse 2s infinite;
}
/* Telemedicine carousel mobile styles */
@media (max-width: 768px) {
    .telemedicine-carousel {
        width: calc(4 * 200px + 3 * 0.8rem);
        gap: 0.8rem;
    }
    
    .telemedicine-card {
        min-width: 220px;
        padding: 0.8rem;
    }
    
    .telemedicine-card img {
        height: 150px;
    }
    
    .telemedicine-card h3 {
        font-size: 0.8rem;
    }
    
    .telemedicine-card p {
        font-size: 0.7rem;
    }
    
    .telemedicine-card .service-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
}
/* Force visibility for testimonials and FAQ headings */
.testimonials .section-title {
    color: #1e3a8a !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    font-weight: 800 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
    background-attachment: fixed !important;
    background-clip: padding-box !important;
    background-origin: padding-box !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: repeat !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    font-size: 2.2rem !important;
    letter-spacing: -0.3px !important;
    text-transform: uppercase !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    position: relative !important;
    z-index: 2 !important;
    backdrop-filter: none !important;
}

/* Ultra-specific testimonials heading rule */
section.testimonials h2.section-title,
section#testimonials h2.section-title,
.testimonials h2.section-title {
    color: #1e3a8a !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    font-weight: 800 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
    background-attachment: fixed !important;
    background-clip: padding-box !important;
    background-origin: padding-box !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: repeat !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    font-size: 2.2rem !important;
    letter-spacing: -0.3px !important;
    text-transform: uppercase !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    position: relative !important;
    z-index: 2 !important;
    backdrop-filter: none !important;
}

.faq .section-title {
    color: #1e3a8a !important;
    opacity: 0.9 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    font-weight: 800 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    background-attachment: fixed !important;
    background-clip: padding-box !important;
    background-origin: padding-box !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: repeat !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    /* Remove blur from the heading itself so text stays sharp */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: relative !important;
    z-index: 3 !important;
}

/* Maximum specificity for testimonials heading */
body .testimonials .section-title,
html body .testimonials .section-title,
html body section.testimonials h2.section-title {
    color: #1e3a8a !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    font-weight: 800 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
    background-attachment: fixed !important;
    background-clip: padding-box !important;
    background-origin: padding-box !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: repeat !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    font-size: 2.2rem !important;
    letter-spacing: -0.3px !important;
    text-transform: uppercase !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    position: relative !important;
    z-index: 2 !important;
    backdrop-filter: none !important;
}

/* Maximum specificity for FAQ heading */
body .faq .section-title,
html body .faq .section-title,
html body section.faq h2.section-title {
    color: #1e3a8a !important;
    opacity: 0.9 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    font-weight: 800 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    background-attachment: fixed !important;
    background-clip: padding-box !important;
    background-origin: padding-box !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: repeat !important;
    font-size: 2.2rem !important;
    letter-spacing: -0.3px !important;
    text-transform: uppercase !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    margin: 0 auto 3rem auto !important;
    width: fit-content !important;
    position: relative !important;
    z-index: 3 !important;
    /* Ensure no blur affects the text */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Unify FAQ and Testimonials headings to match Treatments heading */
.faq .section-title,
.testimonials .section-title {
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
    text-align: center !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    font-weight: 900 !important;
    /* Treatments look: gradient text with a clean, solid pill container */
    background-color: #ffffff !important; /* solid white container */
    color: #1e3a8a !important;
    /* gradient only for the text; background-color stays solid white */
    background-image: linear-gradient(135deg, #1e3a8a 0%, #22c55e 50%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    /* Critically: no blur effects anywhere on the heading */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Final hard reset with maximum specificity to avoid legacy rules */
html body section.faq h2.section-title,
html body section#testimonials h2.section-title {
    position: relative !important;
    z-index: 5 !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid rgba(34, 197, 94, 0.2) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    font-weight: 900 !important;
    background-color: #ffffff !important; /* solid white container */
    color: #1e3a8a !important;
    /* background-image: linear-gradient(135deg, #1e3a8a 0%, #22c55e 50%, #3b82f6 100%) !important; */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}