@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

/* ============================================
   Dr. Bhatia Cancer Hospital - Custom Styles
   Turquoise Harmony Theme
   ============================================ */


/* ============================================
   1. CSS Variables & Design System
   ============================================ */

:root {
    /* Turquoise Harmony Color Palette */
    --primary-color: #008c9e;
    /* Teal - Main brand color */
    --secondary-color: #00b5a8;
    /* Sea Green - Secondary actions */
    --accent-color: #00e0b6;
    /* Aqua Mint - Highlights & CTAs */
    --highlight-color: #f9f8b3;
    /* Soft Lemon Cream - Backgrounds */
    --dark-color: #006c90;
    /* Deep Teal Blue - Headers & Footer */
    --text-color: #1e1e1e;
    /* Dark text for readability */
    --background-color: #ffffff;
    /* White background */
    /* Additional Colors */
    --text-muted: #6c757d;
    --success: #00b5a8;
    --warning: #f9f8b3;
    --danger: #dc3545;
    --info: #008c9e;
    --light-teal: rgba(0, 224, 182, 0.1);
    --light-highlight: rgba(249, 248, 179, 0.3);
    /* Typography */
    --font-primary: "Plus Jakarta Sans", sans-serif;
    --font-secondary: "Source Sans 3", sans-serif;
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 60px 15px;
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}


/* ============================================
   2. Global Styles
   ============================================ */

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.3;
}

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

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

section {
    position: relative;
}

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

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

.text-light-gray {
    color: #eceff1 !important;
}

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

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


/* ============================================
   3. Navigation Bar
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: var(--background-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.sticky-top {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}


/* Logo styling */

.navbar-brand img {
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Top Announcement Bar */
.top-alert-bar {
    background: #0a5961;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.top-alert-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

.top-alert-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    position: relative;
    z-index: 2;
    gap: 16px;
}

.top-alert-bar__group {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-alert-bar__group span {
    display: inline-flex;
    align-items: center;
    color: #008a7d;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border-radius: 999px;
}

.top-alert-bar__group i {
    margin-right: 8px;
}

.top-alert-bar__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-alert-bar__social a {
    color: #ffffff;
    font-size: 0.95rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.top-alert-bar__social a:hover {
    background: var(--accent-color);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .top-alert-bar::before {
        width: 35%;
    }
    .top-alert-bar__inner {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0 10px;
        text-align: center;
    }
    .top-alert-bar__group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .top-alert-bar::before {
        width: 0;
    }
    .top-alert-bar__inner {
        gap: 10px;
        padding: 10px 0 12px;
    }
    .top-alert-bar__group {
        gap: 10px;
        font-size: 0.8rem;
    }
    .top-alert-bar__social a {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .top-alert-bar {
        display: none;
    }
}


/* Mobile Toggle Button */

.navbar-toggler {
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    border: 2px solid var(--primary-color) !important;
    background-color: transparent !important;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 1040 !important;
    display: none !important;
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
    color: white;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 140, 158, 0.25) !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

/* Show toggle only on mobile devices */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-left: auto !important;
    }
    
    .navbar-toggler-icon {
        display: block !important;
    }
}

/* Hide toggle on desktop screens */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

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

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    font-weight: 600;
    color: var(--primary-color) !important;
}

/* ============================================
   4. Global Button Styles
   ============================================ */

/* Universal Button Class */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.department-btn,
.btn-learn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--background-color);
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    box-shadow: 0 16px 28px rgba(0, 140, 158, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-success:hover,
.btn-danger:hover,
.btn-warning:hover,
.btn-info:hover,
.btn-light:hover,
.btn-dark:hover,
.department-btn:hover,
.btn-learn:hover,
a.btn:hover {
    background: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 140, 158, 0.3);
}

.btn:focus,
.btn-primary:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(0, 224, 182, 0.25);
}

/* Button Size Variants */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 12px 32px;
    font-size: 0.95rem;
}

.btn-xl {
    padding: 14px 40px;
    font-size: 1rem;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-color);
    color: white;
}

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

/* Secondary Button */
.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

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

/* Success Button */
.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #008a7d;
}

/* Danger Button */
.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #bd2130;
}

/* Info Button */
.btn-info {
    background: var(--info);
    color: white;
}

.btn-info:hover {
    background: var(--dark-color);
}

/* Light Button */
.btn-light {
    background: #f8f9fa;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

/* Dark Button */
.btn-dark {
    background: var(--dark-color);
    color: white;
}

.btn-dark:hover {
    background: #004a5c;
}

/* Outline Buttons */
.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 16px 28px rgba(0, 140, 158, 0.35);
}

/* Button with Icon */
.btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(2px);
}

/* Department Button (Alias for consistency) */
.department-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--background-color);
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    box-shadow: 0 16px 28px rgba(0, 140, 158, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.department-btn:hover {
    background: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 140, 158, 0.3);
}

/* Learn More Button */
.btn-learn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.btn-learn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 20px 32px rgba(0, 140, 158, 0.4);
}

/* Responsive Button Styles */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-success,
    .btn-danger,
    .btn-warning,
    .btn-info,
    .btn-light,
    .btn-dark,
    .department-btn,
    .btn-learn,
    a.btn {
        padding: 9px 20px;
        font-size: 0.88rem;
    }

    .btn-sm {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .btn-lg {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-xl {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-success,
    .btn-danger,
    .btn-warning,
    .btn-info,
    .btn-light,
    .btn-dark,
    .department-btn,
    .btn-learn,
    a.btn {
        padding: 9px 18px;
        font-size: 0.85rem;
        display: inline-flex;
        width: auto;
    }

    .btn-sm {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .btn-lg {
        padding: 9px 20px;
        font-size: 0.88rem;
    }

    .btn-xl {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Full width for block buttons on mobile */
    .btn-block,
    .w-100 {
        width: 100%;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-success,
    .btn-danger,
    .btn-warning,
    .btn-info,
    .btn-light,
    .btn-dark,
    .department-btn,
    .btn-learn,
    a.btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .btn-lg,
    .btn-xl {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}


/* Mobile responsiveness */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link.active {
        background: rgba(44, 62, 80, 0.05);
        border-radius: 6px;
    }
}


/* ============================================
    3.5. Breadcrumb Navigation
    ============================================ */

.breadcrumb-nav {
    padding: 1rem 0;
    background: var(--background-color);
    border-bottom: 1px solid rgba(0, 140, 158, 0.1);
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    font-weight: 600;
}


/* Skip Link for Accessibility */

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--background-color);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}


/* Loading Animation */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

.loaded .loading-overlay {
    display: none;
}


/* ============================================
    4. Hero Section
    ============================================ */

.hero-section {
    position: relative;
    background: linear-gradient( 135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.trust-badge .text-coral {
    color: var(--accent-color) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

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


/* ============================================
   5. About Section
   ============================================ */

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23007bff" opacity="0.03"/></svg>') no-repeat;
    transform: translate(30%, -30%);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

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

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

.letter-spacing-1 {
    letter-spacing: 2px;
}


/* Feature Cards */

.bg-light {
    background-color: #f8f9fa !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(0, 140, 158, 0.05), transparent);
    transition: left 0.5s;
}

.bg-light:hover::before {
    left: 100%;
}

.bg-light:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 140, 158, 0.15);
    border-color: rgba(0, 140, 158, 0.2);
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(0, 123, 255, 0.1) !important;
    transition: all 0.3s ease;
}

.bg-light:hover .bg-primary.bg-opacity-10 {
    background-color: rgba(0, 140, 158, 0.2) !important;
    transform: scale(1.1);
}

.bg-light:hover .fas {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

.bg-light:hover h6 {
    color: var(--primary-color);
}


/* Mobile Responsive Design - Enhanced About Section */

@media (max-width: 992px) {
    .about-section {
        padding: 3.5rem 0;
    }
    .about-image-wrapper img {
        height: 400px;
    }
    .about-title {
        font-size: 2.2rem;
    }
    .about-lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2.5rem 0;
    }
    .about-image-wrapper {
        margin-bottom: 1.5rem;
    }
    .about-image-wrapper img {
        height: 320px;
    }
    .about-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    .about-lead-text {
        font-size: 1rem;
    }
    .about-description {
        font-size: 0.95rem;
    }
    /* Feature cards adjustments */
    .feature-card {
        padding: 0.875rem !important;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .feature-icon i {
        font-size: 1rem;
    }
    .feature-title {
        font-size: 0.85rem;
    }
    .feature-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 2rem 0;
    }
    .about-image-wrapper img {
        height: 260px;
    }
    .about-title {
        font-size: 1.5rem;
        text-align: center;
    }
    .about-section .section-header {
        text-align: center;
    }
    .about-lead-text {
        font-size: 0.95rem;
        text-align: center;
    }
    .about-description {
        font-size: 0.9rem;
        text-align: center;
    }
    /* Badge positioning for mobile */
    .about-badge {
        margin: 0.75rem !important;
    }
    .about-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem !important;
    }
    /* Feature cards compact layout */
    .about-features-grid {
        gap: 0.5rem !important;
    }
    .about-features-grid .col {
        padding: 0.25rem;
    }
    .feature-card {
        padding: 0.75rem 0.5rem !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    .feature-icon i {
        font-size: 0.875rem;
    }
    .feature-title {
        font-size: 0.8rem;
        margin-bottom: 0.25rem !important;
    }
    .feature-desc {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    .feature-card .ms-sm-3 {
        margin-left: 0 !important;
    }
    /* Adjust text size for mobile 2-column layout */
    .text-muted.small {
        font-size: 0.85rem !important;
        line-height: 1.3;
    }
    h6.fw-bold {
        font-size: 0.95rem;
    }
    .bg-primary.bg-opacity-10 {
        padding: 0.5rem !important;
    }
    .bg-primary.bg-opacity-10 i {
        font-size: 1rem;
    }
}


/* Extra small mobile adjustments */

@media (max-width: 400px) {
    .row-cols-1.row-cols-sm-2 .col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0.25rem;
    }
    .d-flex.p-3 {
        padding: 0.75rem !important;
    }
    .text-muted.small {
        font-size: 0.8rem !important;
    }
    h6.fw-bold {
        font-size: 0.9rem;
    }
    .ms-3 {
        margin-left: 0.75rem !important;
    }
}


/* Tablet portrait adjustments */

@media (min-width: 577px) and (max-width: 768px) {
    .row-cols-sm-2 .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .d-flex.p-3 {
        padding: 1.25rem !important;
    }
}


/* Dark mode support */

@media (prefers-color-scheme: dark) {
    .about-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    .text-dark {
        color: #ffffff !important;
    }
    .text-secondary {
        color: #cccccc !important;
    }
    .text-muted {
        color: #999999 !important;
    }
    .bg-light {
        background-color: #2d2d2d !important;
        border-color: #404040;
    }
    .border.border-light {
        border-color: #404040 !important;
    }
    .shadow-sm {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
}


/* ============================================
   6. Cancer Types Section
   ============================================ */


/* Section Styling */

.hn-cancer-section {
    background: #f8fafc;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50px;
    font-weight: 600;
}

.section-title {
    font-weight: 800;
    color: #0d3b66;
}

.section-subtitle {
    max-width: 720px;
    margin: auto;
    color: #6c757d;
    font-size: 17px;
}


/* Card */

.hn-cancer-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.hn-cancer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}


/* Icon */

.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.bg-soft-primary {
    background: rgba(13, 110, 253, 0.12);
    color: #0d6efd;
}

.bg-soft-danger {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.bg-soft-success {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.bg-soft-warning {
    background: rgba(255, 193, 7, 0.18);
    color: #ffc107;
}

.bg-soft-info {
    background: rgba(13, 202, 240, 0.15);
    color: #0dcaf0;
}

.bg-soft-secondary {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}


/* Text */

.hn-cancer-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.hn-cancer-card p {
    color: #6c757d;
    font-size: 15px;
}


/* Symptoms */

.symptom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.symptom-tags span {
    background: #f1f3f5;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    color: #495057;
}


/* Learn Link */

.learn-link {
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

.learn-link i {
    margin-left: 6px;
    transition: transform 0.3s;
}

.learn-link:hover i {
    transform: translateX(4px);
}


/* CTA */

.early-alert {
    background: #e7f1ff;
    padding: 18px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0d6efd;
    font-weight: 600;
}


/* ============================================
   7. Treatments Section
   ============================================ */

.treatments-section {
    padding: var(--section-padding);
    background: var(--light-highlight);
}

.treatments-section h1,
.treatments-section h2,
.treatments-section h3,
.treatments-section h4,
.treatments-section h5,
.treatments-section h6 {
    font-family: var(--font-primary);
    font-weight: 800;
}

.treatments-section--pro {
    background: linear-gradient(135deg, rgba(0, 224, 182, 0.08) 0%, rgba(249, 248, 179, 0.35) 100%);
    position: relative;
    overflow: hidden;
}

.treatments-section--pro::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 140, 158, 0.18), transparent 70%);
    pointer-events: none;
}

.treatments-intro {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.treatments-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--background-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.12);
}

.treatments-title {
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.15;
}

.treatments-title span {
    color: var(--primary-color);
}

.treatments-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.treatments-stats {
    background: var(--background-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 140, 158, 0.12);
}

.treatments-stats h6 {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.treatments-stats p {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

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

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

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

.treatment-card {
    background: var(--background-color);
    padding: 2.2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 140, 158, 0.08);
    box-shadow: 0 2px 12px rgba(0, 140, 158, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treatment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 140, 158, 0.08), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 140, 158, 0.18);
    border-color: rgba(0, 140, 158, 0.2);
}

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

.treatment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.treatment-icon {
    width: 70px;
    height: 70px;
    background: var(--light-teal);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.6);
}

.treatment-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.treatment-body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.treatment-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.6rem;
}

.treatment-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.treatment-features i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.treatments-cta {
    margin-top: 2.5rem;
    background: var(--background-color);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 140, 158, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.treatments-cta h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 800;
}

.consult-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.consult-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.process-step {
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0, 140, 158, 0.2);
}

.process-step:hover .process-number {
    background: var(--accent-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .treatments-title {
        font-size: 2rem;
    }
    .treatments-cta {
        text-align: center;
        justify-content: center;
    }
}


/* ============================================
   7.5. Health Solution Section
   ============================================ */

.health-solution-section {
    padding: 60px 0;
}

.health-solution-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(6, 15, 33, 0.85) 0%, rgba(6, 15, 33, 0.55) 45%, rgba(6, 15, 33, 0) 70%),
        url("https://images.unsplash.com/photo-1524863479829-916d8e77f114?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    box-shadow: 0 18px 40px rgba(0, 140, 158, 0.18);
}

.health-solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 140, 158, 0.2), rgba(0, 224, 182, 0.08));
    opacity: 0.55;
    pointer-events: none;
}

.health-solution-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 3.5rem;
    max-width: 520px;
}

.health-solution-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.health-solution-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.health-solution-title span {
    color: #ffffff;
}

.health-solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .health-solution-card {
        min-height: 320px;
        background: linear-gradient(0deg, rgba(6, 15, 33, 0.75) 0%, rgba(6, 15, 33, 0.55) 60%, rgba(6, 15, 33, 0.2) 100%),
            url("https://images.unsplash.com/photo-1524863479829-916d8e77f114?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
    }
    .health-solution-content {
        padding: 2.5rem;
    }
    .health-solution-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .health-solution-content {
        padding: 2rem;
    }
    .health-solution-title {
        font-size: 1.9rem;
    }
}


/* ============================================
   8. Prevention Section
   ============================================ */

.prevention-section {
    padding: var(--section-padding);
    background: var(--background-color);
}

.prevention-item {
    margin-bottom: 1.5rem;
}

.prevention-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient( 135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--background-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.screening-card {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.15);
    border: 2px solid var(--light-teal);
}

.screening-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-teal);
}

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

.screening-item .badge {
    background: var(--primary-color) !important;
}


/* ============================================
   9. Testimonials Section
   ============================================ */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--light-teal);
}

.testimonial-card {
    background: var(--background-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.15);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 20px;
}

.stat-card {
    padding: 2rem;
    transition: var(--transition-smooth);
}

.stat-card h3 {
    white-space: nowrap;
    word-break: keep-all;
}

.stat-card:hover {
    transform: translateY(-5px);
}


/* ============================================
   10. Blog Section
   ============================================ */

.blog-section {
    padding: var(--section-padding);
    background: var(--background-color);
}

.blog-card {
    background: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 140, 158, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 181, 168, 0.2);
}

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

.blog-card .card-text {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 9px 18px !important;
    font-size: 0.85rem !important;
    font-weight: 700;
    border-radius: 999px !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 140, 158, 0.25) !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
    white-space: nowrap;
}

.blog-card .btn:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 140, 158, 0.35) !important;
    color: white !important;
}

.blog-card .btn i {
    margin-right: 6px;
}

/* Read More Link Styling */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: var(--secondary-color);
}

.read-more-link:hover::after {
    width: 100%;
}

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

.read-more-link i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .read-more-link {
        font-size: 0.9rem;
    }
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.newsletter-card {
    background: linear-gradient( 135deg, var(--light-teal), var(--background-color));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.15);
    border: 2px solid var(--accent-color);
}

.newsletter-card .text-primary {
    color: var(--primary-color) !important;
}

.resource-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 140, 158, 0.1);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 181, 168, 0.2);
    border-color: var(--accent-color);
}


/* ============================================
   11. Contact Section
   ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: var(--light-highlight);
}

.contact-form-wrapper {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.15);
}

.emergency-card {
    background: linear-gradient(135deg, var(--danger), #c82333);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.emergency-icon {
    font-size: 3rem;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.contact-info-card {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.15);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-section a {
    text-decoration: none !important;
}

.contact-section a:hover {
    text-decoration: none !important;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.15);
}


/* ============================================
   12. Footer
   ============================================ */

.footer {
    background: var(--dark-color);
}

.footer a {
    text-decoration: none !important;
}

.footer a:hover {
    text-decoration: none !important;
}

.footer hr,
.footer .border-top,
.footer .border-bottom {
    border: none !important;
}

.footer .text-coral {
    color: var(--accent-color) !important;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #eceff1;
    transition: var(--transition-smooth);
}

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

.social-icons a {
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}


/* ============================================
   13. Floating Elements
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 140, 158, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
}

.scroll-to-top.show {
    display: flex;
}


/* ============================================
    14. Responsive Design
    ============================================ */


/* Custom Responsive Classes */

.responsive-heading {
    font-size: 2.5rem;
    line-height: 1.2;
}

.responsive-text {
    font-size: 1rem;
    line-height: 1.6;
}

.responsive-subheading {
    font-size: 1.25rem;
    line-height: 1.4;
}

.responsive-btn {
    display: inline-block;
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}


/* Extra Large Devices (1200px and up) */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}


/* Large Devices (992px to 1199px) */

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title .display-3 {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
}


/* Medium Devices (768px to 991px) - Tablets */

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-title .display-3 {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .about-badge {
        position: static;
        margin-top: 2rem;
    }
    .cancer-card,
    .treatment-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    .contact-form-wrapper,
    .contact-info-card {
        margin-bottom: 2rem;
    }
}


/* Small Devices (576px to 767px) - Small Tablets/Mobile Landscape */

@media (min-width: 576px) and (max-width: 767px) {
     :root {
        --section-padding: 60px 0;
    }
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    .display-3 {
        font-size: 2.2rem;
    }
    .display-5 {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    .trust-badge {
        padding: 1.5rem;
    }
    .about-section .row {
        text-align: center;
    }
    .about-badge {
        position: static;
        margin-top: 2rem;
    }
    .cancer-card,
    .treatment-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .treatment-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    .blog-card {
        margin-bottom: 2rem;
    }
    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    .emergency-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .map-container iframe {
        height: 300px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .navbar-brand {
        font-size: 1.3rem;
    }
    .navbar-brand small {
        font-size: 0.65rem;
    }
    /* Custom Responsive Classes for Small Devices */
    .responsive-heading {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    .responsive-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .responsive-subheading {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    .responsive-btn {
        display: inline-block;
        width: auto;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}


/* Extra Small Devices (576px and below) - Mobile Phones */

@media (max-width: 575px) {
     :root {
        --section-padding: 50px 0;
    }
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
        text-align: center;
    }
    .hero-title .display-3 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    .trust-badge {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    .trust-badge .display-6 {
        font-size: 1.1rem;
    }
    .about-section {
        text-align: center;
    }
    .about-badge {
        position: static;
        margin-top: 2rem;
        padding: 1rem;
    }
    .feature-item {
        margin-bottom: 2rem;
        text-align: center;
    }
    .cancer-card,
    .treatment-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .cancer-icon,
    .treatment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .treatment-icon-wrapper {
        margin-bottom: 1.5rem;
    }
    .process-step {
        margin-bottom: 2rem;
    }
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
    }
    .author-image {
        width: 60px;
        height: 60px;
    }
    .blog-card {
        margin-bottom: 2rem;
    }
    .blog-content {
        padding: 1.5rem;
    }
    .newsletter-card {
        padding: 2rem;
        text-align: center;
    }
    .contact-section .row {
        text-align: center;
    }
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .emergency-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .emergency-icon {
        font-size: 2.5rem;
    }
    .map-container iframe {
        height: 250px;
    }
    .social-links {
        justify-content: center;
    }
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .scroll-to-top {
        bottom: 75px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-brand small {
        font-size: 0.6rem;
        margin-left: 24px;
    }
    .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9rem;
    }
    .btn-coral {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .footer .row>div {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    /* Custom Responsive Classes for Mobile */
    .responsive-heading {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }
    .responsive-text {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: auto;
    }
    .responsive-subheading {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
    }
    .responsive-btn {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .btn {
        min-height: 44px;
    }
    /* Additional Mobile Optimizations */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section {
        padding: 40px 0;
    }
    .about-section .row {
        flex-direction: column-reverse;
    }
    .prevention-section .row {
        flex-direction: column;
    }
    .contact-section .row {
        flex-direction: column;
    }
    .about-image-wrapper {
        text-align: center;
        margin-bottom: 2rem;
    }
    .screening-card {
        padding: 1.5rem;
    }
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
    }
    .emergency-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .prevention-item {
        flex-direction: row;
        text-align: left;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: var(--light-teal);
        border-radius: 12px;
        transition: var(--transition-smooth);
    }
    
    .prevention-item:hover {
        background: rgba(0, 224, 182, 0.15);
        transform: translateX(5px);
    }
    
    .prevention-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0, 181, 168, 0.2);
    }
    
    .prevention-item h5 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
        color: var(--dark-color);
    }
    
    .prevention-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: var(--text-muted);
    }
    .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    .contact-item > div:last-child {
        width: 100%;
    }
    .contact-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    .feature-item .fas {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    .alert {
        text-align: left;
        padding: 1rem;
    }
    .map-container iframe {
        height: 200px;
    }
}


/* ============================================
   15. Utility Classes
   ============================================ */

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 140, 158, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.2) !important;
}

.rounded-4 {
    border-radius: 20px !important;
}

.section-header .badge {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Bold Heading Utility */
.heading-bold {
    font-weight: 800;
    letter-spacing: 0.3px;
}


/* Button Styles */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--background-color) !important;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(0, 140, 158, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    gap: 12px;
}

.btn:hover,
.btn:focus {
    background: var(--secondary-color);
    color: var(--background-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 140, 158, 0.3);
}

.btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    box-shadow: none;
    transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
}

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

.btn-outline-primary {
    color: var(--background-color);
    border: none;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
}


/* Badge Styles */

.badge.bg-primary {
    background: var(--primary-color) !important;
}

.badge.bg-light-blue {
    background: var(--light-teal) !important;
    color: var(--primary-color) !important;
}

.badge.bg-coral {
    background: var(--accent-color) !important;
    color: var(--text-color) !important;
}


/* Alert Styles */

.alert-info {
    background: var(--light-teal);
    border-color: var(--accent-color);
    color: var(--text-color);
}

.alert-warning {
    background: var(--light-highlight);
    border-color: var(--highlight-color);
    color: var(--text-color);
}


/* ============================================
    16. Oral Cancer Page Specific Styles
    ============================================ */

.oral-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    overflow: hidden;
    background: linear-gradient(135deg, #006c90 0%, #00b8a9 100%);
}

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

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

.oral-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0.95) 0%, rgba(240, 255, 254, 0.9) 50%, rgba(230, 249, 247, 0.8) 80%, transparent 100%);
    z-index: 2;
}

.oral-hero-left {
    flex: 0 0 55%;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.oral-hero-content-wrapper {
    max-width: 650px;
    width: 100%;
}

.oral-hero-main-heading {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.oral-gradient-heading {
    background: linear-gradient(135deg, #006c90, #00e0b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.oral-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 35px;
}

.oral-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.oral-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #00e0b6, #00b8a9);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 224, 182, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.oral-btn-primary::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.5s;
}

.oral-btn-primary:hover::before {
    left: 100%;
}

.oral-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 224, 182, 0.5);
}

.oral-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #006c90;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
}

.oral-btn-secondary:hover {
    color: #00e0b6;
    gap: 15px;
}

.oral-hero-right {
    flex: 0 0 45%;
    position: relative;
    z-index: 5;
}

.oral-floating-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 15;
    animation: oral-float-badge 3s ease-in-out infinite;
}

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

.oral-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00e0b6, #00b8a9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.oral-badge-text {
    display: flex;
    flex-direction: column;
}

.oral-badge-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.oral-badge-subtitle {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
}

@media (max-width: 991px) {
    .oral-hero-section {
        flex-direction: column;
    }
    .oral-content-overlay {
        width: 100%;
        height: 70%;
    }
    .oral-hero-left {
        flex: 1;
        padding: 60px 40px;
    }
    .oral-hero-right {
        display: none;
    }
    .oral-floating-badge {
        top: auto;
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .oral-hero-left {
        padding: 40px 20px;
    }
    .oral-hero-main-heading {
        font-size: 2.5rem;
    }
    .oral-hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .oral-btn-primary {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================ */


/* Professional About Section Enhancements */


/* ============================================ */

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 140, 158, 0.1) !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 140, 158, 0.15) !important;
    border-color: var(--primary-color) !important;
}

.stat-number {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--primary-color) !important;
}

.stat-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.feature-item {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color) !important;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color) !important;
    color: white;
    transform: scale(1.1);
}

.trust-section {
    background: linear-gradient( 135deg, rgba(249, 248, 179, 0.1), rgba(255, 255, 255, 0.8)) !important;
    border: 1px solid rgba(0, 140, 158, 0.1);
}

.trust-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item i {
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}


/* Enhanced responsive design for new about section */

@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .trust-section .row>div {
        margin-bottom: 2rem;
    }
    .feature-item {
        margin-bottom: 1rem;
    }
    /* CTA Button responsive */
    .cta-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    .cta-section p {
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 1.8rem;
    }
    .trust-item {
        padding: 0.5rem;
    }
    .trust-item i {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    /* Enhanced mobile CTA */
    .cta-section {
        text-align: center;
        padding: 1.5rem 0;
    }
    .cta-section .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
    }
    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
}


/* Accessibility Improvements */

.bg-light:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cta-section .btn:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(0, 224, 182, 0.25);
}

.about-image-wrapper img:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* High contrast mode support */

@media (prefers-contrast: high) {
    .bg-light {
        border: 2px solid #000;
    }
    .bg-light:hover {
        border-color: var(--primary-color);
    }
    .text-primary {
        color: #000 !important;
    }
    .text-secondary {
        color: #333 !important;
    }
}


/* Reduced motion support */

@media (prefers-reduced-motion: reduce) {
    .bg-light {
        transition: none;
    }
    .bg-light::before {
        display: none;
    }
    .bg-light:hover {
        transform: none;
    }
    .about-image-wrapper img {
        transition: none;
    }
    .about-image-wrapper:hover img {
        transform: none;
    }
    }

    /* ============================================
    Bordered Container Styling
    ============================================ */

    .bordered-container {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px !important;
    background: rgba(0, 140, 158, 0.02);
    box-shadow: 0 0 30px rgba(0, 140, 158, 0.1);
    transition: all 0.3s ease;
    }

    .bordered-container:hover {
    box-shadow: 0 0 40px rgba(0, 140, 158, 0.15);
    border-color: var(--secondary-color);
    }

    /* Tablet Responsive */
    @media (max-width: 768px) {
    .bordered-container {
       border: 2px solid var(--primary-color);
       border-radius: 15px;
       padding: 30px 20px !important;
    }
    }

    /* Mobile Responsive */
    @media (max-width: 576px) {
    .bordered-container {
       border: 2px solid var(--primary-color);
       border-radius: 12px;
       padding: 20px 15px !important;
    }
    }

    /* ============================================
    COMPREHENSIVE MOBILE RESPONSIVE STYLES
    FOR ALL COMPONENTS
    ============================================ */

    /* HERO SECTION */
    @media (max-width: 768px) {
    .hero-section {
       min-height: 500px !important;
    }

    .hero-section h1 {
       font-size: 2.5rem !important;
       line-height: 1.2 !important;
    }

    .hero-section .lead {
       font-size: 1rem !important;
    }

    .hero-icon {
       margin-top: 2rem !important;
    }
    }

    @media (max-width: 576px) {
    .hero-section {
       min-height: auto !important;
       padding: 3rem 0 !important;
    }

    .hero-section h1 {
       font-size: 1.8rem !important;
    }

    .hero-section .lead {
       font-size: 0.95rem !important;
    }

    .hero-content {
       text-align: center !important;
    }

    .hero-icon {
       font-size: 3rem !important;
       margin-top: 1.5rem !important;
    }
    }

    /* SERVICES SECTION */
    @media (max-width: 768px) {
    .service-feature-card {
       margin-bottom: 1.5rem !important;
    }

    .service-icon {
       font-size: 2.5rem !important;
       width: 60px !important;
       height: 60px !important;
    }

    .service-content h5 {
       font-size: 1.1rem !important;
    }

    .service-description {
       font-size: 0.9rem !important;
    }
    }

    @media (max-width: 576px) {
    .services-features-section {
       padding: 2rem 0 !important;
    }

    .service-feature-card {
       padding: 1.5rem !important;
    }

    .service-icon {
       font-size: 2rem !important;
       width: 50px !important;
       height: 50px !important;
    }

    .service-content h5 {
       font-size: 1rem !important;
       margin-bottom: 0.5rem !important;
    }

    .service-description {
       font-size: 0.85rem !important;
       line-height: 1.4 !important;
    }
    }

    /* ABOUT SECTION */
    @media (max-width: 768px) {
    .about-section {
       padding: 2.5rem 0 !important;
    }

    .about-section h2 {
       font-size: 2rem !important;
    }

    .about-section h3 {
       font-size: 1.3rem !important;
    }

    .about-content {
       margin-bottom: 2rem !important;
    }

    .stat-card {
       padding: 1.5rem !important;
       margin-bottom: 1rem !important;
    }

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

    .stat-label {
       font-size: 0.8rem !important;
    }
    }

    @media (max-width: 576px) {
    .about-section {
       padding: 1.5rem 0 !important;
    }

    .about-section h2 {
       font-size: 1.5rem !important;
    }

    .about-section h3 {
       font-size: 1.1rem !important;
    }

    .stat-card {
       padding: 1rem !important;
    }

    .stat-number {
       font-size: 1.5rem !important;
    }

    .about-image-wrapper img {
       height: 250px !important;
    }

    .feature-item {
       padding: 1rem !important;
       margin-bottom: 0.75rem !important;
    }

    .feature-icon {
       width: 50px !important;
       height: 50px !important;
       font-size: 1.5rem !important;
    }
    }

    /* CANCER TYPES SECTION */
    @media (max-width: 768px) {
    .cancer-types-section h2 {
       font-size: 2rem !important;
    }

    .cancer-type-card {
       margin-bottom: 1.5rem !important;
    }

    .cancer-type-title {
       font-size: 1.2rem !important;
    }

    .cancer-type-description {
       font-size: 0.9rem !important;
    }
    }

    @media (max-width: 576px) {
    .cancer-types-section {
       padding: 1.5rem 0 !important;
    }

    .cancer-types-section h2 {
       font-size: 1.5rem !important;
    }

    .cancer-type-card {
       padding: 1.5rem !important;
       margin-bottom: 1rem !important;
    }

    .cancer-type-icon {
       font-size: 2rem !important;
       margin-bottom: 0.75rem !important;
    }

    .cancer-type-title {
       font-size: 1rem !important;
    }

    .cancer-type-description {
       font-size: 0.85rem !important;
       line-height: 1.4 !important;
    }
    }

    /* TREATMENTS SECTION */
    @media (max-width: 768px) {
    .treatments-section h2 {
       font-size: 2rem !important;
    }

    .treatment-card {
       margin-bottom: 1.5rem !important;
    }

    .treatment-icon {
       font-size: 2.5rem !important;
       width: 60px !important;
       height: 60px !important;
    }

    .treatment-title {
       font-size: 1.2rem !important;
    }

    .treatment-description {
       font-size: 0.9rem !important;
    }
    }

    @media (max-width: 576px) {
    .treatments-section {
       padding: 1.5rem 0 !important;
    }

    .treatments-section h2 {
       font-size: 1.5rem !important;
    }

    .treatment-card {
       padding: 1.5rem !important;
       margin-bottom: 1rem !important;
    }

    .treatment-icon {
       font-size: 2rem !important;
       width: 50px !important;
       height: 50px !important;
    }

    .treatment-title {
       font-size: 1rem !important;
    }

    .treatment-description {
       font-size: 0.85rem !important;
    }
    }

    /* PREVENTION SECTION */
    @media (max-width: 768px) {
    .prevention-section h2 {
       font-size: 2rem !important;
    }

    .prevention-card {
       margin-bottom: 1.5rem !important;
       padding: 1.5rem !important;
    }

    .prevention-item {
        flex-direction: row;
        text-align: left;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: var(--light-teal);
        border-radius: 12px;
        transition: var(--transition-smooth);
    }
    
    .prevention-item:hover {
        background: rgba(0, 224, 182, 0.15);
        transform: translateX(5px);
    }
    
    .prevention-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-right: 1.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0, 181, 168, 0.2);
    }
    
    .prevention-item h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        color: var(--dark-color);
    }
    
    .prevention-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-muted);
    }
    }

    @media (max-width: 576px) {
    .prevention-section {
       padding: 1.5rem 0 !important;
    }

    .prevention-section h2 {
       font-size: 1.5rem !important;
    }

    .prevention-card {
       padding: 1rem !important;
       margin-bottom: 1rem !important;
    }

    .prevention-icon {
       font-size: 2rem !important;
       margin-bottom: 0.5rem !important;
    }

    .prevention-title {
       font-size: 1rem !important;
    }

    .prevention-description {
       font-size: 0.85rem !important;
    }
    }

    /* BLOG SECTION */
    @media (max-width: 768px) {
    .blog-section {
       padding: 2.5rem 0 !important;
    }

    .blog-section h2 {
       font-size: 2rem !important;
    }

    .blog-card {
       margin-bottom: 1.5rem !important;
    }

    .blog-card .card-title {
       font-size: 1.1rem !important;
    }

    .blog-card .card-text {
       font-size: 0.9rem !important;
    }
    }

    @media (max-width: 576px) {
    .blog-section {
       padding: 1.5rem 0 !important;
    }

    .blog-section h2 {
       font-size: 1.5rem !important;
    }

    .blog-card {
       margin-bottom: 1rem !important;
    }

    .blog-card .card-img-top {
       height: 180px !important;
    }

    .blog-card .card-title {
       font-size: 1rem !important;
    }

    .blog-card .card-text {
       font-size: 0.85rem !important;
    }

    .read-more-link {
       font-size: 0.8rem !important;
    }
    }

    /* FAQ SECTION */
    @media (max-width: 768px) {
    .faq-section h2 {
       font-size: 2rem !important;
    }

    .faq-item {
       margin-bottom: 1rem !important;
    }

    .accordion-button {
       font-size: 1rem !important;
       padding: 1rem !important;
    }
    }

    @media (max-width: 576px) {
    .faq-section {
       padding: 1.5rem 0 !important;
    }

    .faq-section h2 {
       font-size: 1.5rem !important;
    }

    .accordion-button {
       font-size: 0.9rem !important;
       padding: 0.75rem !important;
    }

    .accordion-body {
       font-size: 0.85rem !important;
       padding: 0.75rem !important;
    }
    }

    /* CONTACT SECTION */
    @media (max-width: 768px) {
    .contact-section h2 {
       font-size: 2rem !important;
    }

    .contact-card {
       margin-bottom: 2rem !important;
       padding: 2rem 1.5rem !important;
    }

    .contact-icon {
       font-size: 2.5rem !important;
    }

    .contact-form {
       padding: 1.5rem !important;
    }

    .form-control,
    .form-select {
       font-size: 0.95rem !important;
       padding: 0.75rem !important;
    }
    }

    @media (max-width: 576px) {
    .contact-section {
       padding: 1.5rem 0 !important;
    }

    .contact-section h2 {
       font-size: 1.5rem !important;
    }

    .contact-card {
       padding: 1.5rem 1rem !important;
       margin-bottom: 1.5rem !important;
    }

    .contact-icon {
       font-size: 2rem !important;
       margin-bottom: 0.5rem !important;
    }

    .contact-card h4 {
       font-size: 1rem !important;
    }

    .contact-card p {
       font-size: 0.85rem !important;
    }

    .contact-form {
       padding: 1rem !important;
    }

    .form-control,
    .form-select {
       font-size: 0.9rem !important;
       padding: 0.65rem !important;
    }

    .form-label {
       font-size: 0.9rem !important;
    }
    }

    /* TESTIMONIALS SECTION */
    @media (max-width: 768px) {
    .testimonials-section h2 {
       font-size: 2rem !important;
    }

    .testimonial-card {
       margin-bottom: 1.5rem !important;
       padding: 1.5rem !important;
    }

    .testimonial-text {
       font-size: 0.95rem !important;
    }

    .testimonial-author {
       font-size: 0.9rem !important;
    }
    }

    @media (max-width: 576px) {
    .testimonials-section {
       padding: 1.5rem 0 !important;
    }

    .testimonials-section h2 {
       font-size: 1.5rem !important;
    }

    .testimonial-card {
       margin-bottom: 1rem !important;
       padding: 1rem !important;
    }

    .testimonial-text {
       font-size: 0.85rem !important;
       line-height: 1.5 !important;
    }

    .testimonial-author {
       font-size: 0.8rem !important;
    }

    .testimonial-avatar {
       width: 50px !important;
       height: 50px !important;
    }
    }

    /* WHY CHOOSE US SECTION */
    @media (max-width: 768px) {
    .why-section h2 {
       font-size: 2rem !important;
    }

    .why-card {
       margin-bottom: 1.5rem !important;
       padding: 1.5rem !important;
    }

    .why-icon {
       font-size: 2.5rem !important;
    }

    .why-title {
       font-size: 1.2rem !important;
    }

    .why-description {
       font-size: 0.9rem !important;
    }
    }

    @media (max-width: 576px) {
    .why-section {
       padding: 1.5rem 0 !important;
    }

    .why-section h2 {
       font-size: 1.5rem !important;
    }

    .why-card {
       margin-bottom: 1rem !important;
       padding: 1rem !important;
    }

    .why-icon {
       font-size: 2rem !important;
       margin-bottom: 0.5rem !important;
    }

    .why-title {
       font-size: 1rem !important;
    }

    .why-description {
       font-size: 0.85rem !important;
    }
    }

    /* HEALTH SOLUTION SECTION */
    @media (max-width: 768px) {
    .health-solution-section .row {
       min-height: auto !important;
    }

    .health-content {
       padding: 2rem 1.5rem !important;
       text-align: center !important;
    }

    .health-title {
       font-size: 2rem !important;
    }

    .health-description {
       font-size: 0.95rem !important;
    }

    .health-image-container {
       min-height: 350px !important;
    }
    }

    @media (max-width: 576px) {
    .health-solution-section {
       padding: 1.5rem 0 !important;
    }

    .health-content {
       padding: 1.5rem 1rem !important;
    }

    .health-label {
       font-size: 10px !important;
    }

    .health-title {
       font-size: 1.5rem !important;
       line-height: 1.3 !important;
    }

    .health-description {
       font-size: 0.85rem !important;
    }

    .health-image-container {
       min-height: 280px !important;
    }

    .btn-learn {
       width: 100%;
       margin-top: 1rem !important;
    }
    }

    /* GENERAL RESPONSIVE UTILITIES */
    @media (max-width: 768px) {
    section {
       padding: 2.5rem 0 !important;
    }

    h1 {
       font-size: 2rem !important;
    }

    h2 {
       font-size: 1.8rem !important;
    }

    h3 {
       font-size: 1.3rem !important;
    }

    p {
       font-size: 0.95rem !important;
    }
    }

    @media (max-width: 576px) {
    section {
       padding: 1.5rem 0 !important;
    }

    .container {
       padding: 0 15px !important;
    }

    h1 {
       font-size: 1.5rem !important;
       line-height: 1.3 !important;
    }

    h2 {
       font-size: 1.3rem !important;
       line-height: 1.3 !important;
    }

    h3 {
       font-size: 1.1rem !important;
    }

    h4 {
       font-size: 1rem !important;
    }

    p {
       font-size: 0.9rem !important;
       line-height: 1.6 !important;
    }

    .lead {
       font-size: 0.95rem !important;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
       padding: 8px 16px !important;
       font-size: 0.8rem !important;
    }

    .row {
       --bs-gutter-x: 0.75rem !important;
       --bs-gutter-y: 0.75rem !important;
    }

    .col-12,
    .col-sm-12,
    .col-md-6,
    .col-lg-4 {
       margin-bottom: 1rem !important;
    }
    }
