:root {
    --h-primary: #B71C1C;
    --h-secondary: #121212;
    --h-accent: #D32F2F;
    --h-text: #1A1A1A;
    --h-text-light: #666666;
    --h-bg: #FFFFFF;
    --h-bg-soft: #F8F9FA;
    --h-border: #EEEEEE;
    --h-shadow: 0 10px 40px rgba(183, 28, 28, 0.1);
    --h-header-bg: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] {
    --h-bg: #0F172A;
    --h-bg-soft: #1E293B;
    --h-text: #F1F5F9;
    --h-text-light: #94A3B8;
    --h-border: #334155;
    --h-secondary: #FFFFFF;
    --h-header-bg: rgba(15, 23, 42, 0.95);
    --h-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.h-body {
    font-family: 'Inter', 'Outfit', sans-serif;
    color: var(--h-text);
    background-color: var(--h-bg);
}

/* Global section padding reduction */
.section {
    padding: 40px 0 !important;
}

.h-header {
    background: var(--h-header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--h-border);
    transition: all 0.3s ease;
}

.h-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.h-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--h-primary);
}

.h-nav-links a {
    color: var(--h-text);
    font-weight: 600;
}

.h-nav-links a:hover {
    color: var(--h-primary);
}

.h-nav-links a.btn:hover {
    color: white !important;
}

/* Hero Section */
.h-hero {
    padding: 120px 0 40px;
    /* Reduced padding */
    background: linear-gradient(135deg, var(--h-bg-soft) 0%, var(--h-bg) 100%);
    position: relative;
    overflow: hidden;
}

.h-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 94, 156, 0.05) 0%, transparent 70%);
}

.h-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.h-hero-content h1 {
    font-size: 3.2rem;
    /* Adjusted to keep name in 2 lines */
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--h-primary);
    max-width: 900px;
}

.h-hero-content p {
    font-size: 1.25rem;
    color: var(--h-text-light);
    margin-bottom: 35px;
}

.h-hero-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.h-services {
    padding: 40px 0 20px;
}

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

.h-service-card {
    background: var(--h-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--h-border);
    transition: all 0.3s ease;
    box-shadow: var(--h-shadow);
}

.h-service-card:hover {
    transform: translateY(-10px);
    background: var(--h-bg);
    border-color: var(--h-primary);
}

.h-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 94, 156, 0.1);
    color: var(--h-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 15px;
    margin-bottom: 25px;
}

/* Deesha Integration Section */
.h-deesha-promo {
    background: linear-gradient(135deg, #B71C1C 0%, #880E4F 100%);
    color: white;
    padding: 50px 0 10px;
    border-radius: 50px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(183, 28, 28, 0.3);
}

.h-deesha-promo::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.h-deesha-promo::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.h-deesha-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.h-deesha-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.h-deesha-content .badge {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.h-deesha-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
}

.h-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-mockup-img {
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.h-mockup-container:hover .h-mockup-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.h-btn-deesha {
    background: white;
    color: var(--h-primary);
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.h-btn-deesha:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .h-deesha-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.h-btn-deesha:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Info Footer */
.h-footer {
    background: #0D1B2A;
    color: white;
    padding: 100px 0 60px;
    /* Increased from 40px 0 20px */
}

.h-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    /* Slightly more space for Our Products */
    gap: 60px;
    /* Increased from 50px */
}

.footer-brand {
    text-align: left;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    color: #94A3B8;
    max-width: 300px;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

.h-footer h4 {
    margin-bottom: 30px;
    /* Increased from 25px */
    font-size: 1.4rem;
    /* Increased from 1.2rem */
    font-weight: 700;
}

.h-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #94A3B8;
}

.h-contact-list i {
    color: var(--h-secondary);
}

.h-marquee-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.h-marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
}

.h-marquee-container:hover .h-marquee-content {
    /* Hover pause is now handled in JS for consistency */
}

@keyframes h-marquee {
    /* Animation removed in favor of JS scrolling for button compatibility */
}

.h-scroll-card {
    width: 350px;
    flex-shrink: 0;
}

.h-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--h-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-slider-btn:hover {
    background: var(--h-bg);
    color: white;
}

.h-slider-btn.prev {
    left: 0;
}

.h-slider-btn.next {
    right: 0;
}


/* Testimonials refinement */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--h-primary);
}

@media (max-width: 1024px) {

    .h-hero-grid,
    .h-deesha-grid,
    .h-about-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }

    .h-hero-content h1 {
        font-size: 2.8rem;
    }

    .h-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .h-hero-image img,
    .mentor-img img {
        max-width: 100%;
        height: auto;
    }
}

.h-about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Header Action Controls */
@media (max-width: 768px) {
    .h-footer-grid {
        grid-template-columns: 1fr;
    }

    .h-hero-content h1 {
        font-size: 2.2rem;
    }

    .h-hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .h-slider-wrapper {
        padding: 0 10px !important;
    }

    .h-slider-btn {
        display: none;
    }

    .h-marquee-container {
        cursor: grab;
    }

    .h-contact-overlay {
        width: 90%;
        left: 5%;
        transform: none;
    }

    .h-contact-overlay:hover {
        transform: translateY(-5px);
    }

    .h-deesha-content h2 {
        font-size: 2.5rem;
    }

    .h-deesha-promo {
        border-radius: 30px;
        padding: 40px 20px;
    }

    .h-modal-content {
        padding: 30px 20px;
    }

    .h-modal-stats {
        grid-template-columns: 1fr 1fr;
    }

    .h-nav-links a.btn {
        margin-left: 0 !important;
        width: 100%;
        margin-top: 10px;
    }
}

.lang-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--h-bg-soft);
    border-radius: 12px;
    border: 1px solid var(--h-border);
    transition: all 0.3s ease;
    height: 45px;
    padding: 0 10px;
}

.lang-wrapper:hover {
    background: var(--h-bg);
    border-color: var(--h-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lang-wrapper i {
    color: var(--h-primary);
    font-size: 1.1rem;
    margin-right: 10px;
}

.lang-select {
    background: transparent;
    border: none;
    color: var(--h-text);
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    outline: none;
    padding-right: 25px !important;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B71C1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
}

.theme-toggle {
    width: 45px;
    height: 45px;
    background: var(--h-bg-soft);
    border: 1px solid var(--h-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--h-text);
}

.theme-toggle:hover {
    background: var(--h-bg);
    border-color: var(--h-primary);
    color: var(--h-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Override style.css red hover for hospital theme */
.lang-wrapper:hover {
    border-color: var(--h-primary);
}

.lang-wrapper:hover .lang-select {
    background-color: transparent !important;
    color: var(--h-text) !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B71C1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}

.lang-wrapper:hover i {
    color: var(--h-primary) !important;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--h-border);
    background: var(--h-bg-soft);
    color: var(--h-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--h-primary);
    color: var(--h-primary);
}

[data-theme="dark"] .h-service-card,
[data-theme="dark"] .mentor-card,
[data-theme="dark"] .mission-card {
    background: var(--h-bg-soft) !important;
}

[data-theme="dark"] .mentor-info {
    background: var(--h-bg-soft) !important;
}

/* Contact Section Card */
.mentor-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--h-bg);
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--h-border);
}

.mentor-info {
    padding: 60px;
    background: var(--h-bg);
}

.h-contact-title {
    color: var(--h-primary);
    margin-bottom: 35px;
    font-size: 2.2rem;
    font-weight: 800;
}

.mentor-img {
    position: relative;
    background: var(--h-bg-soft);
    min-height: 400px;
}

.h-contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    display: block;
}

@media (max-width: 992px) {
    .mentor-card {
        grid-template-columns: 1fr;
    }

    .mentor-info {
        padding: 40px;
        order: 1;
    }

    .mentor-img {
        min-height: 300px;
        order: 2;
    }
}

/* Contact Image Overlay */
.h-contact-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: max-content;
    max-width: 90%;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.h-contact-overlay:hover {
    transform: translateX(-50%) translateY(-5px);
    background: var(--h-bg);
    border-color: var(--h-primary);
    box-shadow: 0 10px 30px rgba(183, 28, 28, 0.2);
}

.h-overlay-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5px;
}

.h-overlay-icon {
    width: 36px;
    height: 36px;
    background: var(--h-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.h-overlay-title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--h-primary);
    font-weight: 800;
}

.h-overlay-desc {
    margin: 0;
    font-size: 0.85rem;
    color: var(--h-text-light);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .h-contact-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 15px;
    }
}

.h-store-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.h-store-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.h-store-card:hover {
    background: #000;
    border-color: var(--h-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.2);
}

.store-icon {
    width: 40px;
    height: 40px;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.store-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.store-main {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.h-store-card-white {
    background: white !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.h-store-card-white .store-main {
    color: #121212 !important;
}

.h-store-card-white .store-sub {
    color: #666 !important;
}

.h-store-card-white .store-icon {
    color: #121212 !important;
}

.h-store-card-white:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.h-store-status {
    font-size: 0.65rem;
    color: #4db6ac;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 1px;
}

.play-store-card {
    cursor: default;
}

.play-store-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.h-mockup-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(40px);
}

/* Modal Styles */
.h-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.h-modal.active {
    display: flex;
}

.h-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: h-fade-in 0.3s ease;
}

.h-modal-container {
    position: relative;
    background: var(--h-bg);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: h-modal-slide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--h-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevent container itself from scrolling */
}

.h-modal-scroll-area {
    width: 100%;
    overflow-y: auto;
    /* Scroll only the content area */
    flex: 1;
}

.h-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 2rem;
    background: white;
    border: 1px solid var(--h-border);
    color: var(--h-text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    /* High z-index to stay above content */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.h-modal-close:hover {
    color: var(--h-primary);
    transform: rotate(90deg);
}

.h-modal-content {
    padding: 60px;
}

.h-modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-logo {
    height: 70px;
    margin-bottom: 20px;
}

.modal-subtitle {
    color: var(--h-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Stats Row */
.h-modal-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.modal-stat-item {
    background: var(--h-bg-soft);
    padding: 25px 15px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--h-border);
    transition: all 0.3s ease;
}

.modal-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--h-primary);
    background: var(--h-bg);
    box-shadow: 0 15px 30px rgba(183, 28, 28, 0.1);
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--h-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--h-text-light);
    font-weight: 600;
}

/* Info Grid */
.h-modal-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.h-info-title {
    font-size: 1.4rem;
    color: var(--h-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.h-info-title i {
    font-size: 1.2rem;
}

.h-info-main p {
    line-height: 1.7;
    color: var(--h-text-light);
    margin-bottom: 25px;
}

/* Mini Facilities Grid */
.h-facility-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.mini-feat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--h-bg-soft);
    padding: 15px;
    border-radius: 18px;
    border: 1px solid var(--h-border);
}

.mini-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--h-primary);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mini-text strong {
    display: block;
    font-size: 1rem;
    color: var(--h-text);
}

.mini-text span {
    font-size: 0.8rem;
    color: var(--h-text-light);
}

/* Footer */
.h-modal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--h-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-cert-labels {
    display: flex;
    gap: 30px;
    color: var(--h-text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.h-cert-labels i {
    color: var(--h-secondary);
    margin-right: 8px;
}

@keyframes h-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes h-modal-slide {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@media (max-width: 992px) {
    .h-modal-stats {
        grid-template-columns: 1fr 1fr;
    }

    .h-modal-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .h-modal-content {
        padding: 40px 25px;
    }

    .h-modal-footer {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
/* Hospital Button Overrides */
.btn-primary {
    background: var(--h-primary) !important;
    color: white !important;
}

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

.btn-secondary {
    border-color: var(--h-primary) !important;
    color: var(--h-primary) !important;
}

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