/* =============================================================================
   MODERN HEALTHCARE WEBSITE STYLESHEET
   Clean, organized, and fully commented CSS
   ============================================================================= */

/* =============================================================================
   1. COLOR SCHEME & VARIABLES
   ============================================================================= */

/* Force light mode across all browsers */
* {
    color-scheme: light !important;
    forced-color-adjust: none !important;
}

:root {
    /* Color Palette */
    --primary: #c76504f1;
    --primary-dark: #003b66;
    --secondary: #ffd000;
    --accent: #005792;
    --light: #f8faff;
    --dark: #1a1a2e;
    --darker: #0d0d1a;

    /* Status Colors */
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --gray: #f1f3f4;

    /* Animation & Effects */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Prevent dark mode override */
@media screen and (prefers-color-scheme: dark) {
    :root {
        color-scheme: light !important;
    }
}

/* =============================================================================
   2. RESET & BASE STYLES
   ============================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light) !important;
    color: var(--dark) !important;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
    color: inherit !important;
}

.getspace {
    line-height: 60px;
}

/* =============================================================================
    3. TYPOGRAPHY
   ============================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark) !important;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568 !important;
}

mark {
    background-color: #ffd000 !important;
    color: var(--dark) !important;
}

/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */

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

section {
    padding: 4rem 0;
    position: relative;
    background-color: transparent !important;
}

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

.fontColorOrange {
    color: var(--primary) !important;
}

/* =============================================================================
   5. HEADER & NAVIGATION
   ============================================================================= */

/* Header Container */
header {
    background-color: rgba(255, 255, 255, 0.98) !important;
    color: var(--dark) !important;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

/* Navigation Grid Layout */
.nav-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

/* Navigation Links */
.nav-links {
    display: grid;
    grid-template-columns: repeat(8, auto);
    gap: 0.5rem;
    list-style: none;
    justify-self: end;
    text-align: center;
    align-items: center;
}

.nav-links a {
    color: var(--dark) !important;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 7px;
    left: 50%;
    background: var(--primary);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 70%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary) !important;
    background: none !important;
    border: none;
    padding: 0.5rem;
    justify-self: end;
    transition: var(--transition);
}

/* =============================================================================
   6. SEARCH FUNCTIONALITY
   ============================================================================= */

/* Search Container */
.search-container {
    position: relative;
    justify-self: center;
}

.search-toggle {
    background: none !important;
    border: none;
    color: var(--primary) !important;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: white !important;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-box input {
    border: none;
    outline: none;
    padding: 0.5rem;
    width: 200px;
    background: transparent !important;
    color: var(--dark) !important;
}

.search-box input::placeholder {
    color: #999 !important;
}

.search-btn {
    background: none !important;
    border: none;
    color: var(--primary) !important;
    cursor: pointer;
}

/* Search Results */
.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white !important;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 5px;
}

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

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--dark) !important;
    background: white !important;
}

.search-result-item:hover {
    background-color: #f5f5f5 !important;
}

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

.search-no-results {
    padding: 15px;
    color: #666 !important;
}

.search-suggestions {
    margin-top: 10px;
    font-size: 0.9em;
    color: #444 !important;
}

.search-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    font-size: 0.9em;
}

.search-suggestions-list li {
    padding: 5px 0;
    cursor: pointer;
    color: var(--primary) !important;
}

.search-suggestions-list li:hover {
    text-decoration: underline;
}

/* =============================================================================
   7. HERO SECTION
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white !important;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    filter: brightness(65%);
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: 260px;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 0.9;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
    color: #fff !important;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    color: #fff !important;
}

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

/* =============================================================================
    8. BUTTONS
   ============================================================================= */

.btn {
    display: inline-grid;
    place-items: center;
    background: white !important;
    color: var(--primary) !important;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    cursor: pointer;
}

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

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

.btn-primary:hover {
    background: var(--secondary) !important;
}

.btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white !important;
    color: var(--primary) !important;
}

/* =============================================================================
   9. SECTION TITLES
   ============================================================================= */

.section-title {
    margin-bottom: 2rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary) !important;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    letter-spacing: -1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50px;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary);
    border-radius: 3px;
}

.section-subtitle {
    color: #666 !important;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* =============================================================================
   10. ABOUT SECTION
   ============================================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568 !important;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: var(--dark) !important;
}

.feature-list i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--secondary) !important;
}

/* About Carousel */
.about-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-slide {
    display: none;
    width: 100%;
    height: 100%;
    /* animation: fadeSlide 1s ease-in-out; */
}

.about-slide.active {
    display: block;
}

.about-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.about-prev,
.about-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    /* Transparent Background & No Padding */
    background: transparent;
    border: none;
    padding: 0;

    cursor: pointer;
    z-index: 10;
    /* Ensures arrows are on top of content */

    /* White Color, Larger Size */
    color: white;
    font-size: 2rem;

    /* Text Shadow */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);

    /* Smooth Hover Effect setup */
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* ✅ Better positioning - Slightly more inset (15px) for cleaner look
*/
.about-prev {
    left: 15px;
}

.about-next {
    right: 15px;
}

/*
✅ Smooth hover effect - Arrows scale up by 20% and get a stronger shadow
*/
.about-prev:hover,
.about-next:hover {
    transform: translateY(-50%) scale(1.2);
    /* Scale up by 20% */

    /* Stronger Shadow */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(0, 0, 0, 1);
}

/* About Image */
.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
    position: relative;
    margin-bottom: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary) !important;
    color: white !important;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: white !important;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 0;
    color: white !important;
}

/* =============================================================================
   11. SERVICES SECTION
   ============================================================================= */

.services {
    background-color: white !important;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category-title {
    font-size: 1.8rem;
    color: var(--primary) !important;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Service Card */
.service-card {
    background-color: white !important;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(230, 230, 230, 0.7);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    opacity: 1 !important;
    transform: none !important;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 87, 146, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 250, 255, 0.15), rgba(0, 187, 240, 0.08));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

/* Service Icon */
.service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    height: 140px;
    display: grid;
    place-items: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -90px;
    right: -90px;
}

.service-icon img {
    height: 100px;
    width: 100px;
    filter: invert(100%);
}

/* Service Content */
.service-content {
    padding: 2.5rem;
    display: grid;
    grid-template-rows: auto auto 1fr;
    background: white !important;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary) !important;
    position: relative;
    padding-bottom: 1rem;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.service-content p {
    color: #4a5568 !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.8rem;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--dark) !important;
}

.service-card li::before {
    content: "•";
    color: var(--secondary) !important;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* =============================================================================
   12. DOCTORS SECTION
   ============================================================================= */

.doctors {
    background-color: white !important;
}

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

/* Doctor Card */
.doctor-card {
    background-color: white !important;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(230, 230, 230, 0.7);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 87, 146, 0.25);
}

/* Doctor Image */
.doctor-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.doctor-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

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

.doctor-card:hover .doctor-image img {
    transform: scale(1.08);
}

/* Doctor Social Links */
.doctor-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    gap: 0.8rem;
    transform: translateX(50px);
    opacity: 0;
    transition: var(--transition);
}

.doctor-card:hover .doctor-social {
    transform: translateX(0);
    opacity: 1;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary) !important;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.doctor-social a:hover {
    background: var(--primary) !important;
    color: white !important;
}

/* Doctor Info */
.doctor-info {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.doctor-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.doctor-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--primary) !important;
}

.doctor-info h4 {
    color: var(--primary) !important;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.doctor-specialty {
    margin-bottom: 1.5rem;
}

.doctor-specialty span {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

.doctor-details {
    margin-bottom: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.doctor-details p {
    font-size: 0.95rem;
    color: #4a5568 !important;
    line-height: 1.7;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
}

.doctor-details i {
    color: var(--secondary) !important;
    margin-top: 3px;
}

.doctor-info .hero-buttons {
    margin-top: auto;
}

/* =============================================================================
   13. DOCTOR MODAL
   ============================================================================= */

.doctor-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.doctor-modal-content {
    background-color: #fefefe !important;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-doctor-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #aaa !important;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-doctor-modal:hover {
    color: #333 !important;
}

.doctor-modal-header h3 {
    color: #ff9800 !important;
    margin-bottom: 20px;
    font-size: 24px;
}

.doctor-modal-section {
    margin-bottom: 25px;
}

.doctor-modal-section h4 {
    color: #ff9800 !important;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.presentation-item,
.publication-item,
.award-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark) !important;
}

.presentation-item:last-child,
.publication-item:last-child,
.award-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.presentation-type {
    font-weight: bold;
    color: #555 !important;
}

.presentation-title {
    font-weight: bold;
    margin: 5px 0;
    color: var(--dark) !important;
}

.presentation-conference,
.publication-journal {
    font-style: italic;
    color: #666 !important;
}

.presentation-level {
    display: inline-block;
    background-color: #ff9800 !important;
    color: white !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
}

.publication-authors {
    color: #555 !important;
    margin: 5px 0;
}

.award-item {
    padding-left: 15px;
    position: relative;
}

/* =============================================================================
   14. TESTIMONIALS SECTION
   ============================================================================= */

.testimonials {
    background-color: var(--light) !important;
    padding: 5rem 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin-bottom: 2rem;
}

.testimonial-slide {
    flex: 0 0 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Testimonial Card */
.testimonial-card {
    background-color: white !important;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

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

/* Quote Icons */
.quote-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary) !important;
    transition: var(--transition);
}

.quote-icon-start {
    top: 20px;
    left: 25px;
}

.quote-icon-end {
    bottom: 20px;
    right: 25px;
    transform: rotate(180deg);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-card:hover .quote-icon-end {
    transform: rotate(180deg) scale(1.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568 !important;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.carousel-prev,
.carousel-next {
    background: var(--primary) !important;
    color: white !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary) !important;
    transform: scale(1.1);
}

.carousel-indicators {
    display: none;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0 !important;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--primary) !important;
    transform: scale(1.2);
}

/* =============================================================================
   15. STATS SECTION
   ============================================================================= */

.stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    text-align: center;
    padding: 5rem 0;
}

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

.stat-item {
    padding: 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white !important;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white !important;
}

/* =============================================================================
   16. CONTACT SECTION
   ============================================================================= */

.contact {
    background-color: white !important;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-container {
    width: 100%;
}

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

.contact-form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}

/* Info Cards */
.info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--light) !important;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.info-card:hover {
    background: rgba(0, 187, 240, 0.05) !important;
    transform: translateY(-5px);
}

.info-icon {
    background-color: var(--primary) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary) !important;
}

.info-content p {
    color: #4a5568 !important;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: var(--light) !important;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary) !important;
}

.contact-form form {
    display: grid;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
    background: white !important;
    color: var(--dark) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999 !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 187, 240, 0.1);
}

/* Form Validation */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.error-message {
    color: var(--danger) !important;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--danger);
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success textarea {
    border-color: var(--success);
}

#form-status {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 4px;
}

#form-status.success {
    color: var(--success) !important;
    background-color: rgba(76, 175, 80, 0.1) !important;
}

#form-status.error {
    color: var(--danger) !important;
    background-color: rgba(244, 67, 54, 0.1) !important;
}

/* Honeypot Anti-Spam Field */
.hp-field {
    position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    border: 0 !important;
    padding: 0 !important;
    margin: -1px !important;
}

.hp-label,
.hp-input {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================================================
   17. GALLERY SECTION
   ============================================================================= */

.gallery {
    background-color: var(--light) !important;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

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

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

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

/* =============================================================================
   18. FAQ SECTION
   ============================================================================= */

.faq {
    background-color: white !important;
    padding: 5rem 0;
}

.faq-categories {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Category Container */
.faq-category-container {
    background: #f8f9fa !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-category-container:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Category Header */
.faq-category-header {
    background: var(--primary) !important;
    color: white !important;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-category-header:hover {
    background: var(--secondary) !important;
}

.faq-category-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white !important;
}

.faq-category-header i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: white !important;
}

.faq-category-header.active i {
    transform: rotate(180deg);
}

.faq-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: white !important;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #e9ecef;
}

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

.faq-question {
    padding: 1.2rem 2rem;
    background: white !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa !important;
}

.faq-question h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark) !important;
    flex: 1;
}

.faq-question i {
    color: var(--primary) !important;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafbfc !important;
}

.faq-answer-content {
    padding: 1rem 2rem 1.5rem 2rem;
}

.faq-answer-content p {
    color: #495057 !important;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

#viewMoreBtn {
    display: none;
}

/* =============================================================================
   19. FOOTER
   ============================================================================= */

footer {
    background-color: var(--darker) !important;
    color: white !important;
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Logo Section */
.footer-logo {
    display: grid;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: invert(100%);
}

.footer-logo p {
    color: #aaa !important;
    line-height: 1.8;
}

.footer-contact-item {
    margin-bottom: 30px;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 1rem;
    justify-content: start;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transition: var(--transition);
}

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

/* Footer Column Headings */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: white !important;
}

.footer-links {
    padding-left: 100px;
}

.footer-services {
    padding-left: 30px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Footer Lists */
.footer-links ul,
.footer-services ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: #bbb !important;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white !important;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    display: grid;
    gap: 1rem;
}

.footer-contact p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    color: #bbb !important;
    line-height: 1.7;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary) !important;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: #aaa !important;
    display: grid;
    gap: 1rem;
}

.legal-links {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 1.5rem;
    justify-content: center;
}

.legal-links a {
    color: #aaa !important;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white !important;
}

/* =============================================================================
   20. FLOATING ACTION BUTTONS
   ============================================================================= */

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366 !important;
    color: white !important;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    cursor: pointer;
}

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

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

/* =============================================================================
   21. POPUPS & MODALS
   ============================================================================= */

/* Event Popup */
.event-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.event-popup.active {
    display: flex;
}

.popup-content {
    background: white !important;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    /* Increased for table */
    width: 100%;
    max-height: 90vh;
    /* Limit height to 90% of viewport */
    overflow-y: auto;
    /* Add vertical scroll */
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: fadeInUp 0.3s ease-out;
}

.popup-content h3 {
    color: var(--primary) !important;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 0.8rem;
    color: #4a5568 !important;
    text-align: left;
    /* Better readability for description */
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent !important;
    border: none;
    font-size: 1.5rem;
    color: var(--danger) !important;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    /* Ensure close button stays on top */
}

.close-popup:hover {
    transform: scale(1.1);
}

.enquire-now-btn {
    margin-top: 1.5rem;
}

/* Ensure popup content IDs have proper styling */
#popupEventDate,
#popupEventTime,
#popupEventLocation {
    text-align: left;
    font-size: 0.95rem;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .popup-content {
        max-width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .popup-content table {
        font-size: 12px !important;
    }

    .popup-content th,
    .popup-content td {
        padding: 8px !important;
    }
}

.enquire-now-btn {
    margin-top: 1.5rem;
}

/* =============================================================================
   22. ANIMATIONS
   ============================================================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

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

/* =============================================================================
   23. RESPONSIVE DESIGN - LARGE SCREENS
   ============================================================================= */

@media screen and (max-width: 1299px) and (min-width: 769px) {

    /* Logo */
    .logo-img {
        height: 32px;
        width: auto;
    }

    /* Navigation */
    .nav-grid {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .nav-links {
        grid-template-columns: repeat(8, auto);
        gap: 0;
    }

    /* Footer Layout */
    footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 220px 1fr 1fr 300px;
        gap: 1.25rem;
        align-items: start;
    }

    .footer-logo-img {
        height: 55px;
    }

    .footer-logo p {
        font-size: 0.95rem;
    }

    .footer-links,
    .footer-services {
        padding-left: 0;
    }

    .footer-links h3,
    .footer-services h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-links {
        grid-auto-flow: column;
        grid-auto-columns: auto;
        gap: 0.6rem;
        justify-content: start;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-contact p {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .legal-links {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
    }
}

/* =============================================================================
   24. RESPONSIVE DESIGN - DESKTOP
   ============================================================================= */

@media screen and (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .nav-links a {
        padding: 8px 0.5rem;
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .logo-img {
        height: 40px;
    }
}

/* =============================================================================
   25. RESPONSIVE DESIGN - TABLET
   ============================================================================= */

@media screen and (max-width: 992px) {

    /* Layout */
    section {
        padding: 6rem 0;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-map-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
        min-height: 300px;
    }

    /* Testimonials */
    .testimonial-slide {
        flex: 0 0 40%;
        padding: 0 5px;
    }
}

/* =============================================================================
   26. RESPONSIVE DESIGN - MOBILE
   ============================================================================= */

@media screen and (max-width: 768px) {

    /* Navigation Mobile */
    .nav-grid {
        grid-template-columns: auto 1fr auto;
    }

    .search-toggle {
        display: none;
    }

    .search-box {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        max-width: 400px;
        display: none;
        z-index: 1000;
        background: white !important;
        box-shadow: var(--shadow-md);
    }

    .search-box.active {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white !important;
        grid-template-columns: 1fr;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .mobile-menu-btn {
        display: grid;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
        padding: 0.6rem;
    }

    /* Hero Mobile */
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 90%;
        object-fit: cover;
        object-position: center top;
        z-index: -1;
        filter: brightness(65%);
    }

    /* .hero-content {
        margin-top: 140px;
    } */
    .getspace {
        line-height: 60px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-services,
    .footer-contact {
        justify-items: left;
        text-align: left;
        padding-left: 0;
    }

    .footer-logo .footer-logo-img {
        margin: 0 auto;
    }

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

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-contact p {
        text-align: left;
        grid-template-columns: 1fr 10fr;
    }

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

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

    /* Testimonials Mobile */
    .testimonial-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }
}

/* =============================================================================
   27. RESPONSIVE DESIGN - SMALL MOBILE (320px)
   ============================================================================= */

@media screen and (max-width: 480px) {

    /* Base Font Sizes */
    body {
        font-size: 14px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Container */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    section {
        padding: 3rem 0;
    }

    /* Header & Navigation */
    header {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 45px;
    }

    .nav-links {
        top: 65px;
        padding: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    .mobile-menu-btn {
        right: 10px;
        padding: 0.4rem;
        font-size: 1.3rem;
    }

    /* Search Box */
    .search-box {
        max-width: 100%;
        padding: 0.4rem 0.8rem;
    }

    .search-box input {
        width: 150px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero-content {
        margin-top: 180px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .getspace {
        line-height: 40px;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* About Section */
    .about-grid {
        gap: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-category-title {
        font-size: 1.4rem;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-icon {
        height: 100px;
        font-size: 2.5rem;
    }

    .service-icon img {
        height: 70px;
        width: 70px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .service-card li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    /* Doctors Section */
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .doctor-card {
        border-radius: 16px;
    }

    .doctor-image {
        height: 250px;
    }

    .doctor-info {
        padding: 1.5rem;
    }

    .doctor-info h3 {
        font-size: 1.3rem;
    }

    .doctor-info h4 {
        font-size: 0.95rem;
    }

    .doctor-specialty span {
        font-size: 0.8rem;
        padding: 0.25rem 0.8rem;
    }

    .doctor-details p {
        font-size: 0.85rem;
    }

    /* Doctor Modal */
    .doctor-modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }

    .doctor-modal-header h3 {
        font-size: 1.3rem;
    }

    .doctor-modal-section h4 {
        font-size: 1.1rem;
    }

    .presentation-item,
    .publication-item,
    .award-item {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .quote-icon-start {
        top: 15px;
        left: 15px;
    }

    .quote-icon-end {
        bottom: 15px;
        right: 15px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* FAQ Section */
    .faq {
        padding: 3rem 0;
    }

    .faq-category-header {
        padding: 1rem 1.5rem;
    }

    .faq-category-header h3 {
        font-size: 1.1rem;
    }

    .faq-category-header i {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h5 {
        font-size: 0.9rem;
    }

    .faq-question i {
        font-size: 0.8rem;
    }

    .faq-answer-content {
        padding: 0.8rem 1.5rem 1.2rem 1.5rem;
    }

    .faq-answer-content p {
        font-size: 0.85rem;
    }

    /* Contact Section */
    .contact {
        padding: 3rem 0;
    }

    .contact-info-grid {
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.2rem;
        gap: 1rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .map-container {
        min-height: 250px;
    }

    /* Footer */
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-logo-img {
        height: 60px;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-links h3,
    .footer-services h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-services a {
        font-size: 0.85rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .footer-contact i {
        font-size: 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }

    /* Floating Buttons */
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    /* Event Popup */
    .popup-content {
        max-width: 100%;
        padding: 1.5rem;
        max-height: 80vh;
        border-radius: 8px;
    }

    .popup-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .popup-content p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    #popupEventDate,
    #popupEventTime,
    #popupEventLocation {
        font-size: 0.85rem;
    }

    .popup-content table {
        font-size: 11px !important;
    }

    .popup-content th,
    .popup-content td {
        padding: 6px !important;
    }

    .close-popup {
        top: 10px;
        right: 10px;
        font-size: 1.3rem;
    }

    .enquire-now-btn {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Stats Section */
    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Extra small devices (280px - 320px) */
@media screen and (max-width: 320px) {

    body {
        font-size: 13px;
    }

    /* Container */
    .container {
        width: 98%;
        padding: 0 5px;
    }

    /* Logo */
    .logo-img {
        height: 40px;
    }

    /* Hero */
    .hero h1 {
        font-size: 1.8rem;
    }

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

    /* Section Titles */
    .section-title h2 {
        font-size: 1.7rem;
    }

    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Service Cards */
    .service-content {
        padding: 1.2rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-card li {
        font-size: 0.8rem;
    }

    /* Doctor Cards */
    .doctor-info {
        padding: 1.2rem;
    }

    .doctor-info h3 {
        font-size: 1.2rem;
    }

    .doctor-details p {
        font-size: 0.8rem;
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-category-header {
        padding: 0.8rem 1rem;
    }

    .faq-category-header h3 {
        font-size: 1rem;
    }

    .faq-question {
        padding: 0.8rem 1rem;
    }

    .faq-question h5 {
        font-size: 0.85rem;
    }

    .faq-answer-content {
        padding: 0.6rem 1rem 1rem 1rem;
    }

    .faq-answer-content p {
        font-size: 0.8rem;
    }

    /* Contact */
    .info-card {
        padding: 1rem;
    }

    .info-content h3 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .contact-form h3 {
        font-size: 1.1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-logo-img {
        height: 50px;
    }

    .footer-logo p,
    .footer-links a,
    .footer-services a,
    .footer-contact p {
        font-size: 0.8rem;
    }

    .footer-links h3,
    .footer-services h3,
    .footer-contact h3 {
        font-size: 1rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    /* Popup */
    .popup-content {
        padding: 1.2rem;
    }

    .popup-content h3 {
        font-size: 1.1rem;
    }

    .popup-content p {
        font-size: 0.8rem;
    }

    .popup-content table {
        font-size: 10px !important;
    }

    .popup-content th,
    .popup-content td {
        padding: 4px !important;
    }

    /* Floating Buttons */
    .whatsapp-btn,
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .whatsapp-btn {
        bottom: 70px;
        right: 15px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/* =============================================================================
    END OF STYLESHEET
   ============================================================================= */



/* =============================================================================
    END OF STYLE SHEET
   ============================================================================= */