/* ================================================
   PRAYAG HOSPITAL - SARVODAYA STYLE NAVIGATION
   Professional Healthcare Website
   ================================================ */

/* ================================================
   CSS VARIABLES - PRAYAG COLOR PALETTE
   ================================================ */
:root {
    --prayag-teal: #4A8F73;
    --prayag-teal-dark: #3D7A62;
    --prayag-teal-light: #5FA988;
    --prayag-orange: #E8964F;
    --prayag-orange-dark: #D67E3E;
    --light-bg: #F0F0F0;
    --emergency-red: #D32F2F;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --font-primary: "Inter", "Proxima Nova", Arial, Helvetica, sans-serif;
}

/* ================================================
   GLOBAL STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ================================================
   TOP UTILITY BAR (Sarvodaya Style)
   ================================================ */
.top-utility-bar {
    background-color: var(--prayag-teal);
    padding: 8px 0;
    font-size: 13px;
    color: var(--white);
}

.utility-left .dropdown {
    display: inline-block;
}

.utility-link {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    background: transparent;
    border: none;
    transition: color 0.3s ease;
}

.utility-link:hover,
.utility-link:focus {
    color: var(--prayag-orange) !important;
    text-decoration: none;
}

.utility-link::after {
    margin-left: 6px;
}

.btn-utility-cta {
    background-color: var(--prayag-orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.btn-utility-cta:hover {
    background-color: var(--prayag-orange-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.utility-helpline {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.utility-helpline:hover {
    color: var(--prayag-orange);
}

.top-utility-bar .dropdown-menu {
    background-color: var(--prayag-teal-dark);
    border: none;
    border-radius: 4px;
    margin-top: 8px;
    animation: slideDown 0.3s ease;
}

.top-utility-bar .dropdown-item {
    color: var(--white);
    font-size: 13px;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.top-utility-bar .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ================================================
   TOP NAVIGATION BAR (Green Background)
   ================================================ */
.top-nav-bar {
    background-color: var(--prayag-teal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-nav-bar .nav-row-first {
    display: flex;
    justify-content: end;
    padding-right: 30px
}

.top-nav-bar .nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.top-nav-bar .nav-item {
    position: relative;
}

.top-nav-bar .nav-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.top-nav-bar .nav-link:hover {
    color: var(--prayag-orange);
}

.top-nav-bar .nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-nav-bar .nav-link.dropdown-toggle::after {
    border-top-color: var(--white);
}

.top-nav-bar .dropdown-menu {
    background-color: var(--white);
    border: none;
    border-radius: 6px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.top-nav-bar .dropdown-item {
    color: var(--dark-text);
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.top-nav-bar .dropdown-item:hover {
    background-color: rgba(74, 143, 115, 0.1);
    color: var(--prayag-teal);
}

/* ================================================
   MAIN HEADER (Sarvodaya Style - Two Row Navigation)
   ================================================ */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* ================================================
   LOGO SECTION
   ================================================ */
.logo-section {
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.brand-logo i {
    font-size: 40px;
    color: var(--prayag-teal);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--prayag-teal);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 600;
    color: var(--prayag-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ================================================
   NAVIGATION SECTION (Two Rows)
   ================================================ */
.nav-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-row-first,
.nav-row-second {
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: var(--prayag-orange);
}

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

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

/* Dropdown arrows - Override default ::after for dropdown toggles */
.nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link.dropdown-toggle::after {
    position: static !important;
    display: inline-block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    transition: none;
}

/* Dropdown Menus */
.nav-item .dropdown-menu {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.3s ease;
    min-width: 200px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transition-delay: 0.3s;
}

/* Transparent bridge to cover the gap */
.nav-item .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-item:hover .dropdown-menu,
.nav-item .dropdown-menu:hover {
    transition-delay: 0s;
}

.nav-item .dropdown-item {
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-item .dropdown-item:hover {
    background-color: var(--prayag-teal);
    color: var(--white);
    transform: translateX(5px);
}

/* ================================================
   MEGA MENU STYLES
   ================================================ */
.mega-menu-wrapper {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    border-top: 3px solid var(--prayag-teal);
    border-radius: 0;
    margin-top: 12px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.3s ease;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-menu-column {
    padding: 0 20px;
    border-right: 1px solid #e0e0e0;
    max-height: 500px;
    overflow-y: auto;
}

.mega-menu-column:last-child {
    border-right: none;
}

/* Custom scrollbar for mega menu columns */
.mega-menu-column::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-column::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-menu-column::-webkit-scrollbar-thumb {
    background: var(--prayag-teal);
    border-radius: 10px;
}

.mega-menu-column::-webkit-scrollbar-thumb:hover {
    background: var(--prayag-teal-dark);
}

.mega-menu-title {
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--prayag-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.mega-menu-list li {
    margin-bottom: 2px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mega-menu-item i {
    font-size: 18px;
    color: var(--prayag-teal);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mega-menu-item:hover {
    background-color: #f8f9fa;
    color: var(--prayag-teal);
    transform: translateX(5px);
}

.mega-menu-item:hover i {
    color: var(--prayag-teal);
    transform: scale(1.15);
}

/* Text-only list (no icons) */
.mega-menu-list.text-only .mega-menu-item {
    padding-left: 12px;
}

/* View All Link */
.view-all-link {
    display: inline-block;
    color: var(--prayag-orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.view-all-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    transition: margin-left 0.3s ease;
}

.view-all-link:hover {
    color: var(--prayag-orange-dark);
    background-color: rgba(232, 150, 79, 0.1);
}

.view-all-link:hover::after {
    margin-left: 10px;
}

/* Mega Menu Responsive Behavior */
@media (max-width: 1200px) {
    .mega-menu-content {
        padding: 20px 30px;
    }

    .mega-menu-column {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
    }
}


/* Search Button in Navigation */


/* Book Appointment Button */
.btn-appointment {
    background-color: var(--prayag-orange);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.btn-appointment:hover {
    background-color: var(--prayag-orange-dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232, 150, 79, 0.4);
    transform: translateY(-2px);
}

/* ================================================
   MOBILE NAVIGATION
   ================================================ */
.mobile-toggle {
    background: transparent;
    border: 2px solid var(--prayag-teal);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 143, 115, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.mobile-nav {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    max-height: 70vh;
    /* Allow scrolling if menu is too long */
    overflow-y: auto;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu li a {
    display: block;
    padding: 12px 0;
    color: var(--prayag-teal);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-menu li a:hover {
    color: var(--prayag-orange);
    padding-left: 10px;
}

.mobile-menu li.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
}

/* ================================================
   MOBILE BOTTOM NAVIGATION BAR
   ================================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--prayag-teal);
    height: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 8px 0;
}

.bottom-nav-item {
    flex: 1;
    text-align: center;
}

.bottom-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-icon {
    width: 40px;
    height: 40px;
    background-color: var(--prayag-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-icon i {
    font-size: 14px;
    color: var(--white);
}

.emergency-icon {
    background-color: var(--emergency-red);
    animation: pulse 2s infinite;
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.bottom-nav-item a:hover .nav-icon {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(232, 150, 79, 0.4);
}

/* ================================================
   SEARCH MODAL
   ================================================ */
.modal-content {
    border-radius: 12px;
    border: none;
}

.search-box {
    position: relative;
    display: flex;
}

.search-box .form-control {
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--prayag-teal);
    font-size: 14px;
}

.search-box .form-control:focus {
    border-color: var(--prayag-orange);
    box-shadow: 0 0 0 0.2rem rgba(232, 150, 79, 0.25);
}

.btn-search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--prayag-orange);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-search-submit:hover {
    background-color: var(--prayag-orange-dark);
    transform: translateY(-50%) scale(1.1);
}

/* ================================================
   MAIN CONTENT
   ================================================ */
.main-content {
    padding-bottom: 70px;
    /* Space for mobile bottom nav */
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-title {
    color: var(--prayag-teal);
    font-weight: 600;
}

/* ================================================
   VIDEO HERO SECTION STYLES
   ================================================ */
.video-hero-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: hidden;
    background-color: #000;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: auto;
}

/* Video Background */
.video-background {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
}

.hero-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000016;
    z-index: 2;
}

/* Hero Content */
.video-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
}

.hero-text-wrapper {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--prayag-orange) 0%, var(--prayag-orange-dark) 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--prayag-orange-dark) 0%, var(--prayag-orange) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 150, 79, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--prayag-teal);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Video control for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }

    .hero-main-title,
    .hero-subtitle,
    .hero-cta-buttons {
        animation: none;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(211, 47, 47, 0);
    }
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Hide desktop navigation on mobile/tablet */
@media (max-width: 991px) {
    .nav-section {
        display: none;
    }

    .top-utility-bar {
        display: none;
    }

    .mobile-toggle {
        display: block !important;
    }

    .main-content {
        padding-bottom: 60px;
    }
}

/* Show desktop navigation on large screens */
@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-bottom-nav {
        display: none !important;
    }

    .main-content {
        padding-bottom: 20px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-menu {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
    }

    /* Video Hero Responsive */
    /* .video-hero-section {
        height: 80vh;
        min-height: 500px;
    } */

    .hero-main-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 32px;
        font-size: 15px;
        min-width: 180px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    body {
        font-size: 12px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-tagline {
        font-size: 10px;
    }

    .brand-logo i {
        font-size: 26px;
    }

    .main-header {
        padding: 5px 0;
    }

    .header-wrapper {
        gap: 15px;
    }

    /* Video Hero Responsive */
    /* .video-hero-section {
        height: 70vh;
        min-height: 450px;
    } */

    .hero-main-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .brand-name {
        font-size: 20px;
    }

    .nav-label {
        font-size: 10px;
    }

    .nav-icon {
        width: 36px;
        height: 36px;
    }

    .nav-icon i {
        font-size: 14px;
    }

    .mobile-bottom-nav {
        height: 65px;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-teal {
    color: var(--prayag-teal) !important;
}

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

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

.bg-orange {
    background-color: var(--prayag-orange) !important;
}

/* Desktop hover effects for dropdowns */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        z-index: 2999;
    }
}

/* ================================================
   SPECIALITIES SECTION
   ================================================ */
.specialities-section {
    padding: 40px 0;
    background-color: #daede67a;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin: 0;
    position: relative;
    display: inline-block;
}

/* Specialities Grid */
.specialities-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.specialities-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-columns: 1fr;
    /* This will be overridden by JS */
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    /* Allow it to grow horizontally */
}


.speciality-card {
    display: block;
    /* Ensure it works as an anchor */
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Inherit color */
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}



.speciality-card:hover::before {
    left: 0;
}

.speciality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--prayag-teal);
}

/* Speciality Icon */
.speciality-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(74, 143, 115, 0.1);
    transition: all 0.3s ease;
}

.speciality-icon i {
    font-size: 26px;
    color: var(--prayag-teal);
    transition: all 0.3s ease;
}

.speciality-card:hover .speciality-icon {
    background-color: var(--prayag-teal);
    transform: scale(1.1);
}

.speciality-card:hover .speciality-icon i {
    color: var(--white);
    transform: rotate(10deg);
}

.speciality-card:hover .speciality-icon img {
    filter: brightness(0) invert(1);
    transform: rotate(10deg);
}

/* Speciality Name */
.speciality-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.speciality-card:hover .speciality-name {
    color: var(--prayag-teal);
}

/* Specialities Footer */
.specialities-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all-btn {
    display: inline-block;
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.view-all-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--prayag-teal);
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    color: var(--prayag-orange);
}

.view-all-btn:hover::after {
    background-color: var(--prayag-orange);
}

/* Specialities Navigation Arrows */
.specialities-nav {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--prayag-teal);
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow i {
    color: var(--prayag-teal);
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--prayag-teal);
    border-color: var(--prayag-teal);
}

.nav-arrow:hover i {
    color: var(--white);
}

.nav-arrow:active {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 991px) {
    .specialities-grid {
        /* grid-template-columns removed to allow JS to control column width */
        gap: 15px;
    }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .specialities-section {
        padding: 30px 0;
    }

    .specialities-grid {
        /* grid-template-columns removed to allow JS to control column width */
        gap: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .specialities-footer {
        flex-direction: column;
        gap: 20px;
    }

    .speciality-card {
        padding: 25px 15px;
    }

    .speciality-icon {
        width: 60px;
        height: 60px;
    }

    .speciality-icon i {
        font-size: 28px;
    }

    .speciality-name {
        font-size: 14px;
    }
}

/* ================================================
   SPECIALITY BRIEF (NEWS SECTION STYLE)
   ================================================ */
.speciality-brief {
    flex: 0 0 350px;
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-light) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.speciality-brief-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.speciality-brief-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-view-all-specialities {
    background-color: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(232, 150, 79, 0.3);
}

.btn-view-all-specialities:hover {
    background-color: var(--prayag-orange-dark);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(232, 150, 79, 0.4);
}

.btn-view-all-specialities i {
    transition: transform 0.3s ease;
}

.btn-view-all-specialities:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Speciality Brief */
@media (max-width: 991px) {
    .speciality-brief {
        flex: 0 0 auto;
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .speciality-brief-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .speciality-brief {
        padding: 30px 25px;
    }

    .speciality-brief-title {
        font-size: 24px;
    }
}

/* Placeholder Content Styling */
.placeholder-content {
    background-color: var(--white);
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
.why-choose-section {
    padding: 40px 0;
    background-color: #daede67a;
}

.section-description {
    max-width: 900px;
    margin: 10px auto 0;
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Why Choose Carousel */
.why-choose-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

/* Why Choose Card */
.why-choose-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-width: 0;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--prayag-teal), var(--prayag-orange));
    transition: left 0.3s ease;
}

.why-choose-card:hover::before {
    left: 0;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--prayag-teal);
}

/* Stat Icon */
.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(74, 143, 115, 0.1);
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 26px;
    color: var(--prayag-teal);
    transition: all 0.3s ease;
}

.why-choose-card:hover .stat-icon {
    background-color: var(--prayag-teal);
    transform: scale(1.1) rotate(10deg);
}

.why-choose-card:hover .stat-icon i {
    color: var(--white);
}

/* Stat Number */
.stat-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin: 15px 0 10px;
    line-height: 1;
    transition: color 0.3s ease;
}

.why-choose-card:hover .stat-number {
    color: var(--prayag-orange);
}

/* Stat Label */
.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 10px 0;
    line-height: 1.3;
}

/* Stat Description */
.stat-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin: 10px 0 0;
}

/* Why Choose Footer (Navigation) */
.why-choose-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.why-choose-nav {
    display: flex;
    gap: 15px;
}

/* ================================================
   WHY CHOOSE US SECTION - STATIC GRID (NO CAROUSEL)
   ================================================ */
.why-choose-grid-static {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.why-choose-card-static {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.why-choose-card-static:hover {
    transform: translateY(-0px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--prayag-teal);
}

.stat-icon-static {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(74, 143, 115, 0.1);
    transition: all 0.3s ease;
}

.stat-icon-static i {
    font-size: 26px;
    color: var(--prayag-teal);
    transition: all 0.3s ease;
}

.why-choose-card-static:hover .stat-icon-static {
    background-color: var(--prayag-teal);
    transform: scale(1.05);
}

.why-choose-card-static:hover .stat-icon-static i {
    color: var(--white);
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-number-static {
    font-size: 26px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin: 0 0 5px 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.why-choose-card-static:hover .stat-number-static {
    color: var(--prayag-orange);
}

.stat-label-static {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 5px 0 8px 0;
    line-height: 1.3;
}

.stat-description-static {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.5;
    margin: 8px 0 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-choose-grid-static {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .why-choose-grid-static {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card-static {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

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

    .stat-icon-static {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .stat-icon-static i {
        font-size: 26px;
    }

    .stat-number-static {
        font-size: 26px;
    }
}

/* ================================================
   WORLD CLASS INFRASTRUCTURE SECTION
   ================================================ */
.infrastructure-section {
    padding: 40px 0;
    background-color: #daede67a;
}

.section-header-left {
    margin-bottom: 40px;
}

.section-title-orange {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 10px;
    line-height: 1.6;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.tech-image {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5f0 0%, #ffffff 100%);
}

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

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

.tech-content {
    padding: 25px 20px;
}

.tech-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--prayag-teal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tech-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .infrastructure-section {
        padding: 40px 0;
    }

    .section-title-orange {
        font-size: 25px;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-content {
        padding: 20px 18px;
    }

    .tech-title {
        font-size: 18px;
    }
}

/* ================================================
   PRAYAG IN NEWS SECTION
   ================================================ */
.news-section {
    padding: 40px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.news-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Left Side: Brief */
.news-brief {
    flex: 0 0 350px;
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-light) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.news-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-view-all {
    background-color: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(232, 150, 79, 0.3);
}

.btn-view-all:hover {
    background-color: var(--prayag-orange-dark);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(232, 150, 79, 0.4);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Right Side: News Slider */
.news-slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.news-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.news-item {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5f0 0%, #ffffff 100%);
}

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

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

.news-content {
    padding: 20px;
}

.news-item-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 12px;
    color: var(--prayag-teal);
    margin-bottom: 8px;
    font-weight: 500;
}

.news-excerpt {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background-color: var(--prayag-teal);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    background-color: var(--prayag-orange);
    color: #ffffff;
    transform: translateX(3px);
}

.news-read-more i {
    font-size: 11px;
}

/* Navigation Arrows */
.news-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-nav:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
    border-color: var(--prayag-teal);
}

.news-nav-prev {
    left: 0;
}

.news-nav-next {
    right: 0;
}

.news-nav i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .news-wrapper {
        flex-direction: column;
    }

    .news-brief {
        flex: 0 0 auto;
        padding: 40px 30px;
    }

    .news-item {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 40px 0;
    }

    .news-brief {
        padding: 30px 25px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .news-nav {
        width: 40px;
        height: 40px;
    }

    .news-nav-prev {
        left: 10px;
    }

    .news-nav-next {
        right: 10px;
    }
}

/* ================================================
   BLOG SECTION
   ================================================ */
.blog-section {
    padding: 40px 0;
    background-color: #daede67a !important;
}

/* Large Blog Cards */
.blog-card-large {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

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

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--prayag-orange);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-image-large {
    width: 100%;
    /* height: 280px; */
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5f0 0%, #ffffff 100%);
}

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

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

.blog-content-large {
    padding: 25px;
}

.blog-title-large {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 500;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background-color: var(--prayag-teal);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    background-color: var(--prayag-orange);
    transform: translateX(3px);
}

.blog-read-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Right Column: Compact Blog Cards */
.blog-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card-compact {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blog-badge-compact {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--prayag-orange);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.blog-compact-wrapper {
    display: flex;
    gap: 15px;
    padding: 15px;
}

.blog-image-compact {
    flex: 0 0 160px;
    /* height: 120px; */
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f5f0 0%, #ffffff 100%);
}

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

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

.blog-content-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title-compact {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-date-compact {
    font-size: 11px;
    color: var(--light-text);
    font-weight: 500;
}

.blog-read-more-compact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    background-color: var(--prayag-teal);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more-compact:hover {
    background-color: var(--prayag-orange);
    transform: translateX(2px);
}

.blog-read-more-compact i {
    font-size: 9px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-right {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-image-large {
        /* height: 220px; */
        min-height: 220px;
    }

    .blog-title-large {
        font-size: 18px;
    }

    .blog-compact-wrapper {
        flex-direction: column;
    }

    .blog-image-compact {
        flex: 0 0 auto;
        width: 100%;
        /* height: 180px; */
    }
}

/* ================================================
   CTA SECTION WITH DOCTOR IMAGE
   ================================================ */
.cta-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.cta-container {
    background: linear-gradient(135deg, rgba(74, 143, 115, 0.08) 0%, rgba(74, 143, 115, 0.12) 100%);
    border-radius: 40px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    padding-right: 30px;
}

.cta-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-schedule-appointment {
    background-color: var(--prayag-teal);
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.3);
}

.btn-schedule-appointment:hover {
    background-color: #3d7a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.4);
}

.btn-schedule-appointment i {
    font-size: 18px;
}

.cta-image {
    position: relative;
    text-align: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-container {
        padding: 50px 40px;
        border-radius: 30px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

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

@media (max-width: 767px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-container {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 15px;
    }

    .btn-schedule-appointment {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}

/* ================================================
   VIEW ALL CONTENT BUTTON (BLOG & TESTIMONIALS)
   ================================================ */
.btn-view-all-content {
    background-color: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 150, 79, 0.3);
}

.btn-view-all-content:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.4);
}

.btn-view-all-content i {
    transition: transform 0.3s ease;
}

.btn-view-all-content:hover i {
    transform: translateX(5px);
}

/* ================================================
   DOCTORS SECTION
   ================================================ */
.doctors-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.doctors-header {
    text-align: center;
    margin-bottom: 30px;
}

.doctors-main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.doctors-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

/* Doctor Card */
.doctor-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure all cards have the same height */
}

.doctor-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--prayag-teal);
}

.doctor-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-card-top {
    display: flex;
    padding: 20px;
    gap: 15px;
    flex: 1;
}

.doctor-image-container {
    position: relative;
    flex-shrink: 0;
}

.doctor-image {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--prayag-teal);
}

.doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.doctor-designation {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 1px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    /* Ensure consistent height */
}

.doctor-experience {
    font-size: 13px;
    color: var(--dark-text);
    margin-top: auto;
}

.experience-label {
    font-weight: 600;
    color: var(--prayag-teal);
}

.experience-value {
    font-weight: 500;
    color: var(--dark-text);
}

/* Doctor Actions */
.doctor-actions {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f8f9fa;
}

.btn-view-profile,
.btn-book-appointment-doc {
    flex: 1;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-view-profile {
    background-color: #ffffff;
    color: var(--prayag-teal);
    border: 2px solid var(--prayag-teal);
}

.btn-view-profile:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
}

.btn-book-appointment-doc {
    background-color: var(--prayag-orange);
    color: #ffffff;
}

.btn-book-appointment-doc:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 150, 79, 0.3);
}

/* Doctor Navigation */
.doctor-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.doctor-nav:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
    border-color: var(--prayag-teal);
}

.doctor-nav-prev {
    left: 0;
}

.doctor-nav-next {
    right: 0;
}

.doctor-nav i {
    font-size: 14px;
}

/* Doctors Footer */
.doctors-footer {
    margin-top: 40px;
}

.btn-view-all-doctors {
    background-color: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 150, 79, 0.3);
}

.btn-view-all-doctors:hover {
    background-color: var(--prayag-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .doctors-slider-wrapper {
        padding: 0 50px;
    }

    .doctors-main-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .doctors-section {
        padding: 30px 0;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doctors-slider-wrapper {
        padding: 0 15px;
    }

    .doctor-nav {
        width: 40px;
        height: 40px;
    }

    .doctor-nav-prev {
        left: -5px;
    }

    .doctor-nav-next {
        right: -5px;
    }

    .doctors-main-title {
        font-size: 28px;
    }

    .doctor-card-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .doctor-info {
        align-items: center;
    }

    .doctor-actions {
        flex-direction: column;
    }

    .btn-view-profile,
    .btn-book-appointment-doc {
        width: 100%;
    }
}

/* ================================================
   FIND DOCTOR PAGE STYLES
   ================================================ */

/* Grid Layout for Find Doctor Page */
#doctorsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Find Doctor Card (Matches visual style of index.html cards) */
.find-doctor-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.find-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 143, 115, 0.2);
    border-color: var(--prayag-teal);
}

/* Image Area */
.doctor-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f4f4f4;
}

.doctor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

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

/* Status Badge */
.doctor-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.doctor-status-badge.available {
    background-color: #28a745;
    /* Green */
}

.doctor-status-badge.tomorrow {
    background-color: #ffc107;
    /* Yellow/Orange */
    color: #333;
}

.doctor-status-badge.week {
    background-color: #17a2b8;
    /* Blue */
}

/* Content Area */
.doctor-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 5px;
}

.doctor-card-specialty {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
    font-weight: 500;
}

/* Info Stats (Experience, Rating) */
.doctor-card-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-item {
    font-size: 13px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.info-item i {
    color: var(--prayag-orange);
}

/* Expertise Tags */
.doctor-card-expertise {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
    /* Pushes actions to buttom */
}

/* Actions */
.doctor-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-view-profile,
.btn-book-now {
    flex: 1;
    background: var(--prayag-teal);
    color: #fff;
    text-align: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--prayag-teal);
}

.btn-book-now:hover {
    background: var(--prayag-teal-dark);
    border-color: var(--prayag-teal-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Grid for Find Doctor */
@media (max-width: 991px) {
    #doctorsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #doctorsGrid {
        grid-template-columns: 1fr;
    }

    .find-doctor-card {
        max-width: 100%;
        /* Allow full width */
        margin: 0 0 20px 0;
    }

    .find-doctor-card .doctor-card-image {
        height: 300px;
        /* Taller image on mobile */
    }
}

/* ================================================
   PATIENT TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 40px 0;
    background-color: #daede67a;
}

.section-header-center {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-dark {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.section-subtitle-gray {
    font-size: 14px;
    color: var(--light-text);
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-slider-container {
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.testimonial-card:hover .testimonial-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 28px;
    color: var(--prayag-teal);
    margin-left: 5px;
}

.testimonial-card:hover .play-button {
    background-color: var(--prayag-teal);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-card:hover .play-button i {
    color: #ffffff;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 25px 20px 20px;
    color: #ffffff;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.testimonial-procedure {
    font-size: 12px;
    color: var(--prayag-teal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-nav:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
    border-color: var(--prayag-teal);
}

.testimonial-nav i {
    font-size: 18px;
    transition: color 0.3s ease;
}

.testimonial-nav:hover i {
    color: #ffffff;
}

.testimonial-nav-prev {
    left: 0;
}

.testimonial-nav-next {
    right: 0;
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-nav:disabled:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: inherit;
    border-color: #e0e0e0;
}

/* YouTube Modal */
.youtube-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.youtube-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    animation: slideIn 0.3s ease;
}

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

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

.youtube-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.youtube-modal-close:hover {
    color: var(--prayag-teal);
}

.youtube-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
    }

    .testimonials-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .section-title-dark {
        font-size: 24px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-slider-wrapper {
        padding: 0 45px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav i {
        font-size: 14px;
    }

    .testimonial-thumbnail {
        height: 250px;
    }

    .youtube-modal-close {
        top: -35px;
        font-size: 35px;
    }
}

/* ================================================
   CONTACT SECTION STYLES
   ================================================ */
.contact-section {
    position: relative;
    padding: 40px 0;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Black Overlay */
.contact-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
}

/* Contact Information Container */
.contact-info-container {
    padding: 40px;
    color: var(--white);
}

.contact-main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.3);
}

.contact-info-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--prayag-orange) 0%, var(--prayag-orange-dark) 100%);
    box-shadow: 0 6px 20px rgba(232, 150, 79, 0.4);
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-details {
    flex: 1;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--prayag-orange);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-info-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-info-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--prayag-orange);
    transition: width 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--prayag-orange);
}

.contact-info-text a:hover::after {
    width: 100%;
}

/* Social Icons */
.contact-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--prayag-teal);
    border-color: var(--prayag-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 143, 115, 0.4);
}



/* Responsive Design */
@media (max-width: 991px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-info-container {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .contact-main-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .contact-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-info-item {
        margin-bottom: 25px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .contact-info-title {
        font-size: 14px;
    }

    .contact-info-text {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-form-subtitle {
        font-size: 13px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .btn-contact-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {

    .contact-info-container,
    .contact-form-container {
        padding: 25px 15px;
    }

    .contact-main-title {
        font-size: 24px;
    }

    .contact-form-title {
        font-size: 22px;
    }
}

/* ================================================
   DOCTORS SECTION STYLES
   ================================================ */
.doctors-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}


/* Header */
.doctors-header {
    text-align: center;
    margin-bottom: 30px;
}

.doctors-main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Doctors Grid */
.doctors-slider-wrapper {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.doctors-slider-wrapper .doctors-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
    overflow: visible;
}

.doctors-slider-wrapper .doctor-card {
    min-width: calc((100% - 60px) / 3);
    flex: 0 0 calc((100% - 60px) / 3);
}

/* Navigation Arrows */
.doctor-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.3);
}

.doctor-nav:hover {
    background: linear-gradient(135deg, var(--prayag-orange) 0%, var(--prayag-orange-dark) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 150, 79, 0.4);
}

.doctor-nav i {
    font-size: 18px;
}

.doctor-nav-prev {
    left: 0;
}

.doctor-nav-next {
    right: 0;
}

.doctor-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: linear-gradient(135deg, #999 0%, #777 100%);
}

.doctor-nav:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.3);
}

/* Doctor Card */
.doctor-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(74, 143, 115, 0.2);
    border-color: var(--prayag-teal);
}

.doctor-card-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Doctor Card Top - Horizontal Layout */
.doctor-card-top {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

/* Doctor Image Container */
.doctor-image-container {
    position: relative;
    flex-shrink: 0;
}

.doctor-image {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--prayag-teal);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 143, 115, 0.15);
}

.doctor-card:hover .doctor-image {
    border-color: var(--prayag-orange);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.25);
}

/* Specialty Badge */
.doctor-specialty-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(74, 143, 115, 0.3);
    transition: all 0.3s ease;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-card:hover .doctor-specialty-badge {
    background: linear-gradient(135deg, var(--prayag-orange) 0%, var(--prayag-orange-dark) 100%);
    transform: scale(1.05);
}

/* Doctor Info */
.doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.doctor-designation {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 1px;
    line-height: 1.5;
}

.doctor-experience {
    font-size: 14px;
    color: var(--dark-text);
    margin-bottom: 0;
    font-weight: 500;
}

.experience-label {
    color: var(--light-text);
    font-weight: 400;
}

.experience-value {
    color: var(--prayag-teal);
    font-weight: 600;
}

/* Doctor Actions */
.doctor-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-view-profile {
    flex: 1;
    background: transparent;
    color: var(--prayag-teal);
    border: 2px solid var(--prayag-teal);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
}

.btn-view-profile:hover {
    background: var(--prayag-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 143, 115, 0.3);
}

.btn-book-appointment-doc {
    flex: 1;
    /* background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%); */
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

.btn-book-appointment-doc:hover::before {
    width: 250px;
    height: 250px;
}

.btn-book-appointment-doc:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 143, 115, 0.4);
}

/* Footer Section */
.doctors-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 20px;
}

/* Pagination Dots */
.doctors-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--prayag-teal);
    width: 32px;
    border-radius: 6px;
}

.pagination-dot:hover {
    background: var(--prayag-orange);
}

/* View All Button */
.btn-view-all-doctors {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-view-all-doctors::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--prayag-orange);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-view-all-doctors:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view-all-doctors:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 143, 115, 0.35);
}

/* Responsive Design */
@media (max-width: 991px) {
    .doctors-section {
        padding: 40px 0;
    }

    .doctors-main-title {
        font-size: 26px;
    }

    .doctors-slider-wrapper {
        padding: 0 50px;
    }

    .doctor-card {
        min-width: calc((100% - 30px) / 2);
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .doctor-nav {
        width: 40px;
        height: 40px;
    }

    .doctor-nav i {
        font-size: 14px;
    }

    .doctor-card-inner {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .doctors-section {
        padding: 40px 0;
    }

    .doctors-main-title {
        font-size: 28px;
    }

    .doctors-header {
        margin-bottom: 15px;
    }

    .doctors-slider-wrapper {
        padding: 0 45px;
    }

    .doctor-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .doctor-card-inner {
        padding: 16px;
    }

    /* Stack layout on mobile */
    .doctor-card-top {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .doctor-image {
        width: 120px;
        height: 140px;
    }

    .doctor-name {
        font-size: 16px;
    }

    .doctor-designation {
        font-size: 12px;
    }

    .doctor-actions {
        flex-direction: column;
    }

    .btn-view-profile,
    .btn-book-appointment-doc {
        width: 100%;
    }

    .doctor-nav {
        width: 36px;
        height: 36px;
    }

    .doctor-nav i {
        font-size: 14px;
    }

    .doctors-footer {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .btn-view-all-doctors {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .doctors-main-title {
        font-size: 24px;
    }

    .doctors-slider-wrapper {
        padding: 0 40px;
    }

    .doctor-specialty-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .doctor-image {
        width: 110px;
        height: 130px;
    }

    .doctor-card-inner {
        padding: 14px;
    }

    .doctor-name {
        font-size: 16px;
    }

    .doctor-designation {
        font-size: 11px;
    }

    .doctor-experience {
        font-size: 13px;
    }

    .doctor-nav {
        width: 32px;
        height: 32px;
    }

    .doctor-nav i {
        font-size: 12px;
    }
}

/* ================================================
   YOUTUBE VIDEO MODAL
   ================================================ */
.youtube-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    animation: modalSlideIn 0.3s ease;
}

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

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

.youtube-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.youtube-modal-close:hover,
.youtube-modal-close:focus {
    color: var(--prayag-orange);
    transform: rotate(90deg);
}

.youtube-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-modal-content {
        width: 95%;
    }

    .youtube-modal-close {
        top: -35px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }
}

/* ================================================
   SERVICE PAGE STYLES - CARDIAC CARE
   ================================================ */

/* ================================================
           PRAYAG HOSPITAL - CARDIAC CARE PAGE
           Embedded Styles
           ================================================ */

/* CSS Variables - Prayag Color Palette */
:root {
    --prayag-teal: #4A8F73;
    --prayag-teal-dark: #3D7A62;
    --prayag-teal-light: #5FA988;
    --prayag-orange: #E8964F;
    --prayag-orange-dark: #D67E3E;
    --light-bg: #F0F0F0;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --font-primary: "Inter", "Proxima Nova", Arial, Helvetica, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================================
           HERO SECTION STYLES
           ================================================ */
.hero-section {
    position: relative;
    background-color: #daede67a;
    padding: 0;
    overflow: hidden;
}

.breadcrumb-wrapper {
    background-color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-item {
    color: var(--light-text);
}

.breadcrumb-item a {
    color: var(--prayag-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
    color: var(--prayag-orange);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #000;
    padding-right: 8px;
}

.hero-content-wrapper {
    padding: 40px 0;
}

.hero-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #001529;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-book-appointment {
    background-color: var(--prayag-orange);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-book-appointment:hover {
    background-color: var(--prayag-orange-dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232, 150, 79, 0.4);
    transform: translateY(-2px);
}

.btn-request-callback {
    background-color: transparent;
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid var(--prayag-teal);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-request-callback:hover {
    background-color: var(--prayag-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-stat-item {
    font-size: 13px;
    color: var(--dark-text);
    line-height: 1.4;
}

.hero-stat-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content-wrapper {
        padding: 40px 0;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-book-appointment,
    .btn-request-callback {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-main-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .btn-book-appointment,
    .btn-request-callback {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Utility Classes */
.text-dark-blue {
    color: #001529;
}

.text-teal {
    color: var(--prayag-teal);
}

.text-orange {
    color: var(--prayag-orange);
}

/* ================================================
           FEATURE BOXES SECTION STYLES
           ================================================ */
.features-section {
    background-color: var(--white);
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.feature-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 10px 15px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e8e8e8;
}

.feature-box:hover {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.15);
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: var(--prayag-teal);
}

.feature-icon i {
    font-size: 24px;
    color: var(--prayag-teal);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles for Features */
@media (max-width: 991px) {
    .features-section {
        padding-top: 40px;
    }

    .feature-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .feature-box {
        padding: 15px;
        gap: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }
}

/* ================================================
           TABLE OF CONTENTS NAVIGATION STRIP
           ================================================ */
.toc-section {
    background-color: #EDF6F3;
    border-top: 1px solid #e0e0e0;
    border-bottom: 2px solid var(--prayag-teal);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.toc-nav::-webkit-scrollbar {
    display: none;
}

.toc-nav-item {
    flex: 0 0 auto;
}

.toc-nav-link {
    display: block;
    padding: 18px 24px;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.toc-nav-link:hover {
    color: var(--prayag-teal);
    background-color: rgba(74, 143, 115, 0.05);
}

.toc-nav-link.active {
    color: var(--prayag-teal);
    border-bottom-color: var(--prayag-orange);
    background-color: rgba(74, 143, 115, 0.08);
}

/* Responsive Styles for TOC */
@media (max-width: 991px) {
    .toc-nav {
        justify-content: flex-start;
        padding: 0 15px;
    }

    .toc-nav-link {
        padding: 15px 20px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .toc-nav-link {
        padding: 12px 16px;
        font-size: 12px;
    }
}

/* ================================================
           OVERVIEW SECTION
           ================================================ */
.overview-section {
    background-color: var(--white);
    padding: 40px 0;
}

.overview-content {
    margin-bottom: 30px;
}

.overview-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text {
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.overview-text:last-child {
    margin-bottom: 0;
}

.overview-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.overview-highlight {
    padding: 15px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    border-left: 4px solid var(--prayag-teal);
    border-radius: 8px;
}

.overview-highlight i {
    color: var(--prayag-orange);
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.overview-highlight h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.overview-highlight p {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Styles for Overview Section */
@media (max-width: 991px) {
    .overview-heading {
        font-size: 24px;
    }

    .overview-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .overview-heading {
        font-size: 22px;
    }

    .overview-highlights {
        grid-template-columns: 1fr;
    }
}

/* ================================================
           CONDITIONS WE TREAT SECTION
           ================================================ */
.conditions-section {
    background-color: #daede67a;
    padding: 40px 0;
}

.condition-card {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 2px 8px rgba(74, 143, 115, 0.2);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.4);
    background: linear-gradient(135deg, var(--prayag-orange) 0%, #d67f3a 100%);
}

.condition-name {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styles for Conditions Section */
@media (max-width: 991px) {
    .condition-card {
        padding: 18px 12px;
        min-height: 75px;
    }

    .condition-name {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .condition-card {
        padding: 15px 10px;
        min-height: 70px;
    }

    .condition-name {
        font-size: 13px;
    }
}

/* ================================================
           TYPES OF TREATMENT SECTION
           ================================================ */
.treatment-section {
    background-color: var(--white);
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 16px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0px auto 0;
    line-height: 1.6;
}

.treatment-card {
    background-color: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.treatment-card:hover {
    box-shadow: 0 8px 24px rgba(74, 143, 115, 0.15);
    transform: translateY(-5px);
    border-color: var(--prayag-teal);
}

.treatment-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5f0, #d4ede3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.treatment-card:hover .treatment-card-icon {
    background: linear-gradient(135deg, var(--prayag-teal), var(--prayag-teal-dark));
    transform: scale(1.1);
}

.treatment-card-icon i {
    font-size: 32px;
    color: var(--prayag-teal);
    transition: all 0.3s ease;
}

.treatment-card:hover .treatment-card-icon i {
    color: var(--white);
}

.treatment-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.treatment-card-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2px;
    flex-grow: 1;
}

.treatment-card-link {
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.treatment-card-link:hover {
    color: var(--prayag-orange);
    gap: 10px;
}

.treatment-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.treatment-card-link:hover i {
    transform: translateX(3px);
}

/* Responsive Styles for Treatment Section */
@media (max-width: 991px) {
    .treatment-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .treatment-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .treatment-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .treatment-card-icon {
        width: 70px;
        height: 70px;
    }

    .treatment-card-icon i {
        font-size: 28px;
    }

    .treatment-card-title {
        font-size: 17px;
    }
}

/* ================================================
           WHY CHOOSE US SECTION
           ================================================ */
.why-choose-section {
    padding: 40px 0;
}

.why-choose-content {
    margin-bottom: 40px;
}



.why-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-point:hover {
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.1);
    transform: translateX(5px);
}

.why-point-icon {
    width: 50px;
    height: 50px;
    background-color: #e8f5f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-point:hover .why-point-icon {
    background-color: var(--prayag-teal);
}

.why-point-icon i {
    font-size: 22px;
    color: var(--prayag-teal);
    transition: all 0.3s ease;
}

.why-point:hover .why-point-icon i {
    color: var(--white);
}

.why-point-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.why-point-content p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles for Why Choose Us */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-point {
        padding: 15px;
        gap: 15px;
    }

    .why-point-icon {
        width: 45px;
        height: 45px;
    }

    .why-point-icon i {
        font-size: 20px;
    }
}

/* ================================================
           DOCTORS SECTION
           ================================================ */
.doctors-section {
    background-color: #ededed;
    padding: 40px 0;
}

.doctor-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--prayag-teal);
}

.doctor-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-card-top {
    display: flex;
    padding: 20px;
    gap: 15px;
    flex: 1;
}

.doctor-image-container {
    position: relative;
    flex-shrink: 0;
}

.doctor-image {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--prayag-teal);
}

.doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.doctor-designation {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 1px;
    line-height: 1.4;
}

.doctor-experience {
    font-size: 13px;
    color: var(--dark-text);
    margin-top: auto;
}

.experience-label {
    font-weight: 600;
    color: var(--prayag-teal);
}

.experience-value {
    font-weight: 500;
    color: var(--dark-text);
}

.doctor-actions {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f8f9fa;
}

.btn-view-profile,
.btn-book-appointment-doc {
    flex: 1;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-view-profile {
    background-color: #ffffff;
    color: var(--prayag-teal);
    border: 2px solid var(--prayag-teal);
}

.btn-view-profile:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
}

.btn-book-appointment-doc {
    background-color: var(--prayag-orange);
    color: #ffffff;
}

.btn-book-appointment-doc:hover {
    transform: translateY(-1px);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(232, 150, 79, 0.3);
}

/* Responsive Styles for Doctors Section */
@media (max-width: 991px) {
    .doctors-section {
        padding: 40px 0;
    }

    .doctor-name {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .doctors-section {
        padding: 40px 0;
    }

    .doctor-card {
        margin-bottom: 20px;
    }

    .doctor-card-top {
        padding: 15px;
    }

    .doctor-image {
        width: 80px;
        height: 100px;
    }

    .doctor-name {
        font-size: 14px;
    }

    .doctor-designation {
        font-size: 12px;
    }

    .doctor-actions {
        padding: 12px 15px;
    }
}

/* ================================================
           PATIENT SPEAK SECTION (VIDEO TESTIMONIALS)
           ================================================ */
.patient-speak-section {
    padding: 40px 0;
    background-color: #daede67a;
}

.section-header-center {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-dark {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.section-subtitle-gray {
    font-size: 14px;
    color: var(--light-text);
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-slider-container {
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.testimonial-card:hover .testimonial-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 28px;
    color: var(--prayag-teal);
    margin-left: 5px;
}

.testimonial-card:hover .play-button {
    background-color: var(--prayag-teal);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-card:hover .play-button i {
    color: #ffffff;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 25px 20px 20px;
    color: #ffffff;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.testimonial-procedure {
    font-size: 12px;
    color: var(--prayag-teal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-nav:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
    border-color: var(--prayag-teal);
}

.testimonial-nav i {
    font-size: 18px;
    transition: color 0.3s ease;
}

.testimonial-nav:hover i {
    color: #ffffff;
}

.testimonial-nav-prev {
    left: 0;
}

.testimonial-nav-next {
    right: 0;
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Styles for Patient Speak */
@media (max-width: 991px) {
    .patient-speak-section {
        padding: 40px 0;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12.5px);
        min-width: calc(50% - 12.5px);
    }

    .testimonials-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 767px) {
    .patient-speak-section {
        padding: 40px 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-slider-wrapper {
        padding: 0 40px;
    }

    .testimonial-thumbnail {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 24px;
    }
}

/* ================================================
           BLOG SECTION
           ================================================ */
.blog-section {
    background-color: #daede67a !important;
    padding: 40px 0;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(74, 143, 115, 0.15);
    transform: translateY(-5px);
    border-color: var(--prayag-teal);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--prayag-teal);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--light-text);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-item i {
    color: var(--prayag-orange);
    font-size: 12px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--prayag-teal-dark);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Blog Section */
@media (max-width: 991px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-content {
        padding: 20px 15px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 13px;
    }
}

/* ================================================
           FAQ SECTION
           ================================================ */
.faq-section {
    padding: 40px 0;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--prayag-teal);
    box-shadow: 0 4px 12px rgba(74, 143, 115, 0.1);
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--prayag-teal);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--prayag-teal);
    width: auto;
    height: auto;
    background-size: auto;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068";
    color: var(--white);
    transform: none;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.7;
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
}

.accordion-body ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0;
}

.accordion-body li {
    margin-bottom: 8px;
    color: var(--light-text);
}

/* Responsive Styles for FAQ Section */
@media (max-width: 991px) {
    .faq-section {
        padding: 40px 0;
    }

    .accordion-button {
        font-size: 15px;
        padding: 18px 20px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px 18px;
    }

    .accordion-body {
        padding: 15px 18px;
        font-size: 14px;
    }
}

/* ================================================
   DOCTOR PROFILE PAGE STYLES
   ================================================ */

/* Doctor Profile Hero Section */
.doctor-profile-hero {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 40px 0;
}

.doctor-profile-image-container {
    position: relative;
    margin-bottom: 30px;
}

.doctor-profile-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff;
}

.doctor-verification-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--prayag-teal);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(74, 143, 115, 0.4);
}

.doctor-verification-badge i {
    font-size: 18px;
}

.doctor-profile-header {
    padding: 0;
}

.doctor-profile-name {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.doctor-profile-designation {
    font-size: 20px;
    color: var(--prayag-teal);
    font-weight: 600;
    margin-bottom: 30px;
}

.doctor-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.profile-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.profile-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.15);
}

.profile-stat-item i {
    font-size: 28px;
    color: var(--prayag-orange);
    width: 40px;
    text-align: center;
}

.profile-stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1;
}

.profile-stat-item span {
    font-size: 13px;
    color: var(--light-text);
}

.doctor-profile-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-primary-prayag {
    background-color: var(--prayag-orange);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-prayag:hover {
    background-color: var(--prayag-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 150, 79, 0.4);
    color: #ffffff;
}

.btn-outline-prayag {
    background-color: transparent;
    color: var(--prayag-teal);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--prayag-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-prayag:hover {
    background-color: var(--prayag-teal);
    color: #ffffff;
    transform: translateY(-2px);
}

.doctor-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #ffffff;
    border-left: 4px solid var(--prayag-teal);
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark-text);
}

.doctor-availability i {
    color: var(--prayag-teal);
    font-size: 18px;
}

/* About Doctor Section */
.doctor-about-section {
    padding: 40px 0;
    background: #ffffff;
}

.content-section {
    margin-bottom: 50px;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--prayag-teal);
    display: inline-block;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Education Timeline */
.education-timeline {
    position: relative;
    padding-left: 40px;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--prayag-teal), var(--prayag-orange));
}

.education-item {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    gap: 25px;
}

.education-icon {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 3px solid var(--prayag-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.education-icon i {
    color: var(--prayag-teal);
    font-size: 14px;
}

.education-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.education-content .institution {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.education-content .year {
    display: inline-block;
    background: var(--prayag-orange);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expertise-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--prayag-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 143, 115, 0.15);
}

.expertise-card i {
    font-size: 36px;
    color: var(--prayag-teal);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.expertise-card:hover i {
    color: var(--prayag-orange);
    transform: scale(1.1);
}

.expertise-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 13px;
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

/* Awards List */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.award-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-left: 4px solid var(--prayag-orange);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.award-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--prayag-teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.award-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.award-details p {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
}

/* Publications List */
.publications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publications-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-left: 4px solid var(--prayag-teal);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.publications-list li:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.publications-list strong {
    display: block;
    color: var(--dark-text);
    font-size: 15px;
    margin-bottom: 5px;
}

.publications-list span {
    color: var(--prayag-teal);
    font-size: 13px;
    font-style: italic;
}

/* Memberships Grid */
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.membership-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.membership-badge:hover {
    border-color: var(--prayag-teal);
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.membership-badge i {
    color: var(--prayag-orange);
    font-size: 20px;
}

.membership-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
}

/* Sidebar Styles */
.sidebar-sticky {
    position: sticky;
    top: 20px;
}

.appointment-sidebar-card,
.contact-info-card,
.services-offered-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.appointment-sidebar-card h3,
.contact-info-card h3,
.services-offered-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

/* Appointment Form */
.appointment-quick-form .form-group {
    margin-bottom: 20px;
}

.appointment-quick-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.appointment-quick-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.appointment-quick-form .form-control:focus {
    outline: none;
    border-color: var(--prayag-teal);
    box-shadow: 0 0 0 3px rgba(74, 143, 115, 0.1);
}

/* Contact Info */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 13px;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--prayag-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--prayag-orange);
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--dark-text);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list i {
    color: var(--prayag-teal);
    font-size: 16px;
    margin-top: 2px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-profile-name {
        font-size: 32px;
    }

    .doctor-profile-designation {
        font-size: 18px;
    }

    .doctor-profile-stats {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .memberships-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .doctor-profile-hero {
        padding: 40px 0 30px;
    }

    .doctor-profile-name {
        font-size: 28px;
    }

    .doctor-profile-designation {
        font-size: 16px;
    }

    .doctor-profile-actions {
        flex-direction: column;
    }

    .btn-primary-prayag,
    .btn-outline-prayag {
        width: 100%;
        justify-content: center;
    }

    .award-item {
        flex-direction: column;
        gap: 15px;
    }

    .award-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

/* ================================================
   FIND A DOCTOR PAGE STYLES
   ================================================ */

/* Hero Section */
.find-doctor-hero {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.find-doctor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.hero-content-center {
    text-align: center;
    position: relative;
    z-index: 1;
}

.find-doctor-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.find-doctor-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 70 0px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.doctor-search-bar {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--light-text);
    font-size: 18px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    color: var(--dark-text);
}

.search-input::placeholder {
    color: var(--light-text);
}

.btn-search {
    background: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--prayag-orange-dark);
    transform: scale(1.05);
}

/* Doctors Listing Section */
.doctors-listing-section {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
}

.filter-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.filter-header i {
    color: var(--prayag-teal);
}

.btn-clear-filters {
    background: transparent;
    border: 1px solid var(--prayag-teal);
    color: var(--prayag-teal);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    background: var(--prayag-teal);
    color: #ffffff;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.filter-option:hover {
    color: var(--prayag-teal);
}

.filter-option input[type=checkbox],
.filter-option input[type=radio] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--prayag-teal);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-count h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.results-count span {
    color: var(--prayag-teal);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-options label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.sort-select {
    padding: 8px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark-text);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--prayag-teal);
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Doctor Card */
.find-doctor-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.find-doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(74, 143, 115, 0.2);
}

.doctor-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.doctor-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.doctor-status-badge.available {
    background: #28a745;
}

.doctor-status-badge.tomorrow {
    background: var(--prayag-orange);
}

.doctor-status-badge.week {
    background: var(--prayag-teal);
}

.doctor-card-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.doctor-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
    line-height: 1.3;
}

.doctor-card-specialty {
    font-size: 15px;
    color: var(--prayag-teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-card-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--light-text);
}

.info-item i {
    color: var(--prayag-orange);
    font-size: 14px;
}

.doctor-card-expertise {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.doctor-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-view-profile,
.btn-book-now {
    padding: 3px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-view-profile {
    background: transparent;
    border: 2px solid var(--prayag-teal);
    color: var(--prayag-teal);
}

.btn-view-profile:hover {
    background: var(--prayag-teal);
    color: #ffffff;
}

.btn-book-now {
    background: var(--prayag-orange);
    border: 2px solid var(--prayag-orange);
    color: #ffffff;
}

.btn-book-now:hover {
    background: var(--prayag-orange-dark);
    border-color: var(--prayag-orange-dark);
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 15px;
}

.no-results i {
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 16px;
    color: var(--light-text);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .find-doctor-title {
        font-size: 36px;
    }

    .find-doctor-subtitle {
        font-size: 16px;
    }

    .doctor-search-bar {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-input {
        border-radius: 10px;
    }

    .btn-search {
        border-radius: 10px;
        justify-content: center;
    }

    .filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .doctors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .find-doctor-hero {
        padding: 40px 0;
    }

    .find-doctor-title {
        font-size: 28px;
    }

    .find-doctor-subtitle {
        font-size: 14px;
    }

    .results-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .sort-options {
        width: 100%;
        justify-content: space-between;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
    }

    .doctor-card-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .doctor-card-image {
        height: 250px;
    }

    .doctor-card-name {
        font-size: 18px;
    }

    .filter-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-clear-filters {
        width: 100%;
    }
}

/* ================================================
   BLOG PAGE STYLES
   ================================================ */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.blog-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.blog-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Search */
.blog-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-input-group i {
    position: absolute;
    left: 20px;
    color: var(--light-text);
    font-size: 17px;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
}

.btn-blog-search {
    background: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-blog-search:hover {
    background: var(--prayag-orange-dark);
    transform: scale(1.05);
}

/* Blog Content Section */
.blog-content-section {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Category Pills */
.category-pills-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-pill {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid #e8e8e8;
    background: #ffffff;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-pill:hover {
    border-color: var(--prayag-teal);
    color: var(--prayag-teal);
}

.category-pill.active {
    background: var(--prayag-teal);
    border-color: var(--prayag-teal);
    color: #ffffff;
}

/* Results Header */
.blog-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-results-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.blog-results-header span {
    color: var(--prayag-teal);
}

.blog-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-sort-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.blog-sort-select {
    padding: 8px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.blog-sort-select:focus {
    border-color: var(--prayag-teal);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Blog Post Card */
.blog-post-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 143, 115, 0.15);
}

.blog-post-image {
    position: relative;
    width: 250px;
    flex-shrink: 0;
    overflow: hidden;
}

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

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

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--prayag-teal);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--light-text);
}

.meta-item i {
    color: var(--prayag-orange);
}

.blog-post-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
    color: var(--prayag-teal);
}

.blog-post-excerpt {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--prayag-teal);
}

.author-info span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prayag-teal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: var(--prayag-orange);
    gap: 12px;
}

/* No Results */
.blog-no-results {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 15px;
}

.blog-no-results i {
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.blog-no-results h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.blog-no-results p {
    font-size: 16px;
    color: var(--light-text);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.pagination-btn {
    padding: 12px 24px;
    border: 2px solid var(--prayag-teal);
    background: #ffffff;
    color: var(--prayag-teal);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--prayag-teal);
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid #e8e8e8;
    background: #ffffff;
    color: var(--dark-text);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    border-color: var(--prayag-teal);
    color: var(--prayag-teal);
}

.pagination-number.active {
    background: var(--prayag-teal);
    border-color: var(--prayag-teal);
    color: #ffffff;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--prayag-teal);
}

/* Popular Posts */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-post-date {
    font-size: 12px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid #f0f0f0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: var(--prayag-teal);
    padding-left: 10px;
}

.categories-list i {
    color: var(--prayag-orange);
    margin-right: 10px;
}

.categories-list span {
    color: var(--light-text);
    font-size: 13px;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    color: #ffffff;
}

.newsletter-widget .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.btn-subscribe {
    background: var(--prayag-orange);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-subscribe:hover {
    background: var(--prayag-orange-dark);
    transform: translateY(-2px);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: var(--dark-text);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--prayag-teal);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-hero-title {
        font-size: 40px;
    }

    .blog-post-card {
        flex-direction: column;
    }

    .blog-post-image {
        width: 100%;
        height: 250px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .blog-hero-section {
        padding: 50px 0 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-hero-subtitle {
        font-size: 16px;
    }

    .blog-search-wrapper {
        flex-direction: column;
        border-radius: 15px;
    }

    .blog-search-input {
        border-radius: 10px;
    }

    .btn-blog-search {
        border-radius: 10px;
        justify-content: center;
    }

    .category-pills-wrapper {
        gap: 8px;
    }

    .category-pill {
        font-size: 13px;
        padding: 8px 18px;
    }

    .blog-results-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .blog-post-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .pagination-numbers {
        display: none;
    }
}

/* ================================================
   NEW MOBILE NAVIGATION STYLES (Overrides)
   ================================================ */
/* Base Mobile Links */
.mobile-menu li a {
    display: block;
    padding: 12px 10px;
    color: var(--prayag-teal);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    /* Reset */
}

.mobile-menu li a[data-bs-toggle="collapse"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu li a[data-bs-toggle="collapse"]::after {
    content: '\f107';
    /* FontAwesome Angle Down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.mobile-menu li a[data-bs-toggle="collapse"][aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.mobile-menu li a:hover {
    color: var(--prayag-orange);
    padding-left: 15px;
    background-color: #fafafa;
}

/* Submenu Styles */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-submenu li a {
    padding-left: 30px;
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
}

.mobile-submenu li a:hover {
    padding-left: 35px;
    background-color: #f0f0f0;
}

/* Nested Submenu (Level 3) */
.mobile-submenu .mobile-submenu li a {
    padding-left: 50px;
    font-size: 13.5px;
}

.mobile-submenu .mobile-submenu li a:hover {
    padding-left: 55px;
}

/* Mobile Menu Section Headings (for Specialities) */
.mobile-menu-heading {
    padding: 15px 20px 5px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--prayag-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #f9f9f9;
}

/* ================================================
   FOOTER SECTION
   ================================================ */
.main-footer {
    background-color: #002a20;
    /* Deep Dark Teal for premium look matching Prayag Brand */
    color: #fff;
    padding: 40px 0 20px;
    font-size: 14px;
    border-top: 5px solid var(--prayag-orange);
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 5-Column Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* On very large screens, ensure it doesn't stretch too wide if container is fixed, 
   but usually container constraints width. */

.footer-col {
    margin-bottom: 20px;
}

/* Typography Updates */
.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--prayag-orange);
}

.footer-links {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none !important;
    /* Force remove standard bullets */
}

.footer-links li::before,
.footer-links li::after {
    content: none !important;
    /* Ensure no pseudo-elements create dots */
    display: none !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    display: inline-block;
    line-height: 1.4;
}

.footer-links a:hover {
    color: var(--prayag-orange);
    transform: translateX(5px);
    color: #fff;
}

/* Footer Bottom Section */
.footer-bottom {
    padding-top: 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.copyright-text {
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--prayag-orange);
}

/* Responsive Breakpoints for 5-Col Grid */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols on medium screens */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablets */
        gap: 30px;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
    }

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

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }
}

/* Map and Contact Section */
.footer-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-contact-box .footer-contact li {
    margin-bottom: 25px;
}

.footer-contact-box>ul {
    list-style-type: none !important;
    padding-left: 0px !important;
    margin-bottom: 0px;
}

.footer-contact-box .footer-contact i {
    width: 25px;
    height: 25px;
    text-align: center;
    margin-right: 15px;
    color: var(--prayag-orange);
    font-size: 18px;
    margin-top: 3px;
    /* Align with first line of text */
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.footer-social a:hover {
    background-color: var(--prayag-orange);
    transform: translateY(-3px);
    color: #fff;
}

/* ================================================
   DOCTORS SLIDER STYLES
   ================================================ */
.doctors-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 10px 0 10px 0;
    margin: 0 -15px;
    /* Offset container padding if needed */
}

.doctors-grid {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping to ensure slider works */
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 10px 15px;
    /* Padding for shadows */
}

.doctor-card {
    flex: 0 0 320px;
    /* Fixed width for slider items */
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.doctor-card-inner {
    padding: 20px;
}

.doctor-image-container {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    margin-bottom: 15px;
    overflow: hidden;
    margin: 0 auto 15px auto;
}

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

.doctor-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 5px;
}

.doctor-designation {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 1px;
}

.doctor-experience {
    font-size: 13px;
    color: var(--dark-text);
    background: #e8f5e9;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
}

.experience-label {
    font-weight: 600;
}

.doctor-actions {
    display: flex;
    gap: 10px;
}

.btn-view-profile,
.btn-book-appointment-doc {
    flex: 1;
    padding: 8px 0;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-profile {
    background: transparent;
    border: 1px solid var(--prayag-teal);
    color: var(--prayag-teal);
}

.btn-view-profile:hover {
    background: var(--prayag-teal);
    color: #fff;
}



/* Nav Buttons for Doctor Slider */
.doctor-nav-prev,
.doctor-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--prayag-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.doctor-nav-prev:hover,
.doctor-nav-next:hover {
    background: var(--prayag-teal);
    color: #fff;
}

.doctor-nav-prev {
    left: 0;
}

.doctor-nav-next {
    right: 0;
}

@media (max-width: 991px) {
    .doctors-slider-wrapper .doctor-card {
        flex: 0 0 280px;
        width: 280px;
    }
}

@media (max-width: 768px) {
    .doctors-slider-wrapper .doctor-card {
        flex: 0 0 100%;
        width: 100%;
        /* Adjusted for full width on mobile if desired, or keep as cards */
        max-width: 320px;
    }
}

/* ================================================
   SPECIALITIES SLIDER FIX (FORCE OVERRIDES)
   ================================================ */
.specialities-carousel {
    overflow: hidden !important;
    width: 100% !important;
    position: relative;
    padding: 10px 0 0px 0;
    margin: 0 -10px;
}


/* ================================================
   SPECIALITIES SLIDER FIX (2-ROW GRID LAYOUT)
   ================================================ */
.specialities-carousel {
    overflow: hidden !important;
    width: 100% !important;
    position: relative;
    padding: 10px 0 10px 0;
    margin: 0 -10px;
}

.specialities-grid {
    display: grid !important;
    grid-template-rows: repeat(2, 1fr) !important;
    /* 2 Rows force */
    grid-auto-flow: column !important;
    /* Flow items vertically first then horizontally */
    gap: 20px !important;
    transition: transform 0.5s ease-in-out;
    padding: 10px 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop: 4 items per row, 2 rows total -> 4 columns */
/* Width of one column is approx 25% */
.specialities-grid {
    grid-auto-columns: calc(25% - 15px) !important;
}

.speciality-card {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    flex: none !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    margin: 0 !important;

    /* PREVENT SQUASHING: Force minimum width */
    min-width: 210px !important;
}

.speciality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--prayag-teal);
}

/* Ensure icons and text look good */
.speciality-icon {
    width: 60px;
    height: 60px;
    background: #f0fcf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--prayag-teal);
    font-size: 24px;
    transition: all 0.3s ease;
}

.speciality-card:hover .speciality-icon {
    background: var(--prayag-teal);
    color: #fff;
}

.speciality-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

/* Precise Navigation Button Positioning */
.specialities-carousel .speciality-nav-prev,
.specialities-carousel .speciality-nav-next {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--prayag-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
    top: 45%;
    transform: translateY(-50%);
}

.specialities-carousel .speciality-nav-prev {
    left: 5px;
}

.specialities-carousel .speciality-nav-next {
    right: 5px;
}

.specialities-carousel .speciality-nav-prev:hover,
.specialities-carousel .speciality-nav-next:hover {
    background: var(--prayag-teal);
    color: #fff;
}

@media (max-width: 991px) {
    .specialities-grid {
        gap: 15px !important;
        grid-auto-columns: calc(33.333% - 10px) !important;
        /* Tablet: 3 columns */
    }
}

@media (max-width: 768px) {
    .specialities-carousel {
        padding: 15px 0 0px 0;
        /* Tighten container padding */
        margin: 0 !important;
        /* Fix clipping issue: remove negative margin */
    }

    .specialities-grid {
        gap: 8px !important;
        /* Smaller gap */
        /* Ensure 2 columns fit perfectly: (100% - gap) / 2 */
        grid-auto-columns: calc(50% - 4px) !important;
        padding: 0 5px;
        /* Minimal side padding */
    }

    .speciality-card {
        font-size: 13px;
        /* Slightly smaller text */
        min-height: 150px;
        padding: 10px;
        /* Compact padding */
        min-width: 160px !important;
        /* Force items to have width */
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100% !important;
        /* Fill the grid cell */
    }

    .speciality-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .speciality-name {
        font-size: 14px;
        line-height: 1.3;
    }

    /* Fix Button Overlap on Mobile */
    .specialities-carousel .speciality-nav-prev,
    .specialities-carousel .speciality-nav-next {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        font-size: 12px;
        /* Push buttons to extreme edges */
        z-index: 100;
    }

    .specialities-carousel .speciality-nav-prev {
        left: -5px;
        /* Pull slightly outside */
    }

    .specialities-carousel .speciality-nav-next {
        right: -5px;
    }
}

/* ================================================
   TRUST & CTA SECTION
   ================================================ */
.trust-cta-section {
    background-color: #ededed;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.trust-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 5px;
}

.trust-subtext {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
}

.trust-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps logos blend if they have white bg */
}

/* Custom Button Styles for this section */
.btn-outline-teal {
    color: var(--prayag-teal);
    border: 2px solid var(--prayag-teal);
    background: transparent;
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.btn-outline-teal:hover {
    background: var(--prayag-teal);
    color: #fff;
}

.btn-primary-orange {
    background: var(--prayag-orange);
    border: 2px solid var(--prayag-orange);
    color: #fff;
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.btn-primary-orange:hover {
    background: var(--prayag-orange-dark);
    border-color: var(--prayag-orange-dark);
}

@media (max-width: 768px) {
    .trust-cta-section {
        text-align: center;
    }

    .trust-logos {
        justify-content: center;
        margin: 20px 0;
    }

    .trust-actions {
        /* Side by side on mobile if space allows */
        gap: 10px;
    }
}

/* About Us Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.prayaghospital.in/images/banner1.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-custom {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--prayag-teal-dark);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--prayag-orange);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #000
}

/* Introduction Section */
.intro-section {
    padding: 40px 0;
}

.intro-content h2 {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Section */
.mission-vision-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid var(--prayag-teal);
}

.vision-card {
    border-top-color: var(--prayag-orange);
}

.mv-icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--prayag-teal);
}

.vision-card .mv-icon {
    color: var(--prayag-orange);
}

.mv-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.mv-text {
    color: var(--light-text);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 40px 0;
    background-color: #daede67a;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--prayag-teal);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 143, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--prayag-teal);
    font-size: 28px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--prayag-teal);
    color: white;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

/* Infrastructure Teaser */
.infra-teaser {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    padding: 40px 0;
    color: white;
    text-align: center;
}

.infra-teaser h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.infra-teaser p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn-outline-light-custom {
    border: 2px solid white;
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--prayag-teal);
}

/* Chairman Message Section */
.chairman-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.chairman-img-wrapper {
    position: relative;
    padding: 20px;
}

.chairman-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--prayag-orange);
    border-left: 5px solid var(--prayag-orange);
    z-index: 1;
}

.chairman-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--prayag-teal);
    border-right: 5px solid var(--prayag-teal);
    z-index: 1;
}

.chairman-img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.chairman-content h3 {
    color: var(--prayag-teal);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.chairman-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.chairman-quote {
    font-size: 18px;
    font-style: italic;
    color: #555;
    border-left: 4px solid var(--prayag-orange);
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.chairman-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 5px;
}

.chairman-title {
    color: #777;
    font-size: 16px;
}

/* Journey Timeline Section */
.journey-section {
    padding: 40px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--prayag-teal);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    /* opacity: 0.3; */
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--prayag-orange);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 25px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 25px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--prayag-teal);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.year-badge {
    background-color: var(--prayag-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 15px;
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .timeline-left::after,
    .timeline-right::after {
        left: 21px;
    }

    .timeline-right {
        left: 0%;
    }
}

/* Page-Specific Styles */
.patient-portal-hero {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.patient-portal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,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>') bottom center no-repeat;
    background-size: cover;
}

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

.hero-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.patient-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    color: var(--prayag-orange);
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-top: 5px;
}

/* Portal Cards */
.portal-section {
    padding: 40px 0;
}

.portal-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--prayag-teal), var(--prayag-orange));
}

.portal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.portal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--prayag-teal), var(--prayag-teal-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.portal-icon i {
    font-size: 32px;
    color: white;
}

.portal-card-title {
    color: var(--prayag-teal);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.portal-card-description {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.portal-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.portal-card-features li {
    color: var(--dark-text);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

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

.portal-card-features li i {
    color: var(--prayag-orange);
    margin-right: 12px;
    font-size: 12px;
}

.portal-btn {
    background: var(--prayag-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.portal-btn:hover {
    background: var(--prayag-orange-dark);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(232, 150, 79, 0.4);
}

/* Quick Access Section */
.quick-access-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-description {
    color: var(--light-text);
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.quick-access-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-access-card:hover {
    background: var(--prayag-teal);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.3);
}

.quick-access-card:hover .quick-icon,
.quick-access-card:hover .quick-title,
.quick-access-card:hover .quick-subtitle {
    color: white;
}

.quick-icon {
    font-size: 48px;
    color: var(--prayag-orange);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.quick-title {
    color: var(--prayag-teal);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.quick-subtitle {
    color: var(--light-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Login Section */
.login-section {
    padding: 40px 0;
    background: white;
}

.login-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.login-left {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, var(--prayag-teal-dark) 100%);
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

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

.login-left h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.login-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.login-features {
    list-style: none;
    padding: 0;
}

.login-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.login-features li i {
    color: var(--prayag-orange);
    margin-right: 15px;
    font-size: 18px;
}

.login-right {
    padding: 60px;
}

.login-form-title {
    color: var(--prayag-teal);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-form-subtitle {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 35px;
}

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

.form-label {
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--prayag-teal);
    box-shadow: 0 0 0 0.2rem rgba(74, 143, 115, 0.15);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-text);
}

.forgot-password {
    color: var(--prayag-orange);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--prayag-orange-dark);
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: var(--prayag-teal);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn:hover {
    background: var(--prayag-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 143, 115, 0.3);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: var(--light-text);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.register-text {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--dark-text);
}

.register-link {
    color: var(--prayag-teal);
    font-weight: 600;
    text-decoration: none;
}

.register-link:hover {
    color: var(--prayag-teal-dark);
    text-decoration: underline;
}

/* Help Section */
.help-section {
    background: linear-gradient(135deg, var(--prayag-orange) 0%, var(--prayag-orange-dark) 100%);
    padding: 60px 0;
    color: white;
}

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

.help-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-btn {
    background: white;
    color: var(--prayag-orange);
    padding: 14px 35px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.help-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.help-btn-outline:hover {
    background: white;
    color: var(--prayag-orange);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 32px;
    }

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

    .portal-section {
        padding: 50px 0;
    }

    .login-left,
    .login-right {
        padding: 40px;
    }

    .login-left h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .patient-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .portal-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .login-left,
    .login-right {
        padding: 30px;
    }

    .help-title {
        font-size: 26px;
    }

    .help-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .help-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   ADMISSION GUIDE STYLES
   ================================================ */
.admission-process-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--prayag-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--prayag-teal);
}

.step-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateX(5px);
    border-color: var(--prayag-teal);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.step-desc {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.checklist-section {
    padding: 0px 0;
    background-color: #fff;
}

.checklist-card {
    background-color: #e8f5f0;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}

.checklist-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--prayag-teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.custom-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--prayag-teal);
}

.info-box {
    background: #fff5eb;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--prayag-orange);
    margin: 30px 0px;
}

.info-box h4 {
    color: var(--prayag-orange);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* ================================================
   CAREER PAGE STYLES
   ================================================ */
.career-benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.career-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--prayag-green);
}

.job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.job-card:hover {
    border-color: var(--prayag-teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-info h4 {
    color: var(--prayag-teal);
    margin-bottom: 5px;
    font-weight: 600;
}

.job-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.job-meta span {
    margin-right: 20px;
}

.job-meta i {
    color: var(--prayag-green);
    margin-right: 5px;
}

.apply-btn {
    background: var(--prayag-teal);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--prayag-green);
    color: #fff;
}

.application-form-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.application-form-section .form-control:focus {
    border-color: var(--prayag-green);
    box-shadow: none;
}

/* ================================================
   TPA & INSURANCE PAGE STYLES
   ================================================ */
.tpa-content-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.process-step {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    border-left: 4px solid var(--prayag-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 30px;
    font-weight: 700;
    color: rgba(74, 143, 115, 0.2);
    margin-bottom: 15px;
    line-height: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tpa-grid-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.tpa-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    min-height: 100px;
}

.tpa-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--prayag-teal);
    transform: scale(1.02);
}

.tpa-name {
    font-weight: 600;
    color: #444;
    font-size: 15px;
    margin: 0;
}

.documents-box {
    background-color: #e8f5f0;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(74, 143, 115, 0.2);
}

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

.documents-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}

/* ================================================
   VISITING HOURS PAGE STYLES
   ================================================ */
.visiting-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.hours-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 5px solid var(--prayag-teal);
}

.hours-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.hours-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-subtitle {
    font-size: 14px;
    color: #666;
}

.time-slot {
    padding: 20px 25px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}

.time-slot:last-child {
    border-bottom: none;
}

.slot-icon {
    width: 40px;
    height: 40px;
    background-color: #e8f5f0;
    color: var(--prayag-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.slot-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #444;
}

.slot-details p {
    margin-bottom: 0;
    color: #777;
    font-size: 14px;
}

.guidelines-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

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

.guideline-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.guideline-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--prayag-teal);
}

.pass-info-card {
    background: linear-gradient(135deg, var(--prayag-teal) 0%, #2c5c4b 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.pass-icon {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.9;
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 1.6rem;
    }
}

/* ================================================
   DEPARTMENT PAGE STYLES (TOC)
   ================================================ */
.toc-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 68px;
    /* Adjust based on header height */
    z-index: 1010;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: top 0.3s ease;
}

.toc-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.toc-nav::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.toc-nav-item {
    margin: 0 15px;
}

.toc-nav-link {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.toc-nav-link:hover,
.toc-nav-link.active {
    color: var(--prayag-teal);
    border-bottom-color: var(--prayag-teal);
}

@media (max-width: 991px) {
    .toc-section {
        top: 65px;
        /* Slightly smaller sticky offset for mobile if needed */
    }

    .toc-nav {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .toc-nav-item {
        margin: 0 12px;
        flex-shrink: 0;
    }
}

/* Footer Contact Alignment Fix */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact li i {
    flex-shrink: 0;
    margin-top: 5px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.footer-contact li span {
    flex: 1;
}

/* ================================================
   CONTACT US PAGE STYLES
   ================================================ */
.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 143, 115, 0.1);
    color: var(--prayag-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.contact-card-text {
    color: var(--light-text);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--prayag-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.form-subtitle {
    color: var(--light-text);
    margin-bottom: 30px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--prayag-teal);
}

.btn-submit {
    background-color: var(--prayag-orange);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e67e22;
    filter: brightness(0.9);
}

.map-section {
    height: 450px;
    width: 100%;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================================
   EVENTS PAGE STYLES
   ================================================ */
.event-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.event-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.event-date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--prayag-orange);
    line-height: 1;
}

.event-date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-text);
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.status-upcoming {
    background-color: #e8f5f0;
    color: var(--prayag-teal);
}

.status-completed {
    background-color: #f0f0f0;
    color: #888;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.4;
}

.event-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.event-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.event-meta-item i {
    width: 20px;
    color: var(--prayag-teal);
    margin-right: 10px;
}

.event-description {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-event {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-register {
    background-color: var(--prayag-teal);
    color: #fff;
    border: none;
}

.btn-register:hover {
    background-color: var(--prayag-orange);
    color: #fff;
}

.btn-view {
    background-color: transparent;
    color: #888;
    border: 1px solid #ddd;
}

.btn-view:hover {
    background-color: #f9f9f9;
    color: #555;
}

/* ================================================
   OUR HOSPITALS PAGE STYLES
   ================================================ */
.hospital-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
}

.hospital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.hospital-image {
    width: 100%;
    object-fit: cover;
}

.hospital-details {
    padding: 25px;
}

.hospital-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 15px;
}

.hospital-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--light-text);
}

.hospital-info-item i {
    color: var(--prayag-orange);
    width: 20px;
    margin-top: 5px;
    margin-right: 15px;
}

.hospital-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.feature-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--prayag-teal);
    margin-right: 8px;
    font-size: 12px;
}

/* Health Checkup Page Styles */
.health-package-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.health-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--prayag-teal);
}

.health-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--prayag-teal);
}

.health-package-icon {
    width: 60px;
    height: 60px;
    background: rgba(19, 137, 104, 0.1);
    color: var(--prayag-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.health-package-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.health-package-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.health-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.health-package-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.health-package-features li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--prayag-teal);
    font-size: 0.85rem;
}

.btn-health-package {
    padding: 12px 20px;
    background-color: transparent;
    color: var(--prayag-teal);
    border: 2px solid var(--prayag-teal);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
}

.btn-health-package:hover {
    background-color: var(--prayag-teal);
    color: #fff;
}

.mob-cta-btn {
    background-color: var(--prayag-orange) !important;
    color: #fff !important;
}

/* Doctor Profile - Specialization List */
.specialization-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.specialization-list li {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.specialization-list li:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.specialization-list li i {
    color: var(--prayag-teal);
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .specialization-list {
        grid-template-columns: 1fr;
    }
}

/* All Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card-link {
    display: flex;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #e8f5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prayag-teal);
    font-size: 28px;
}

.service-content {
    flex: 1;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.service-category {
    font-size: 13px;
    color: var(--prayag-teal);
    font-weight: 500;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

    .service-card-link {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* International Patients Page Styles */

/* Hero Section */
.international-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.hero-subtitle {
    color: var(--prayag-teal);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-content i {
    font-size: 32px;
    color: var(--prayag-teal);
}

.badge-content strong {
    display: block;
    font-size: 24px;
    color: #1a1a1a;
}

.badge-content span {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Stats Section */
.stats-section {
    padding: 40px 0 0px;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #e8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin: 0 0 8px 0;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 80px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--prayag-teal), var(--prayag-orange));
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--prayag-teal), var(--prayag-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--prayag-teal);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prayag-teal);
    font-size: 24px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.step-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.step-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--prayag-teal);
    margin-bottom: 12px;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.step-details ul li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: start;
    gap: 10px;
}

.step-details ul li i {
    color: var(--prayag-teal);
    margin-top: 4px;
}

.step-details p {
    margin: 0;
    color: #666;
}

.step-details p strong {
    color: var(--prayag-orange);
}

/* Services Section */
.services-section {
    padding: 40px 0;
}

.service-feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #e8f5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prayag-teal);
    font-size: 28px;
}

.service-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.international-patient-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.international-patient-form .form-control {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.international-patient-form .form-control:focus {
    border-color: var(--prayag-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.1);
}


.faq-section .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button {
    font-size: 16px;
    font-weight: 600;
    padding: 20px 24px;
    background: white;
    color: #1a1a1a;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--prayag-teal);
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.faq-section .accordion-body ul {
    margin-top: 12px;
    padding-left: 20px;
}

.faq-section .accordion-body ul li {
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
}

.contact-info-item i {
    font-size: 32px;
    color: white;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .process-step::after {
        left: 29px;
        top: 60px;
    }

    .step-content {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .cta-title {
        font-size: 28px;
    }


    .cta-description {
        font-size: 16px;
    }
}

/* ================================================
   TPA & INSURANCE PAGE STYLES
   ================================================ */

.tpa-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tpa-content-section .process-step {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 0;
}

.tpa-content-section .process-step::after {
    display: none;
}

.tpa-content-section .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--prayag-teal);
}

.tpa-content-section .step-number {
    width: 70px;
    height: 70px;
    background: var(--prayag-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.tpa-content-section .step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.tpa-content-section .step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Documents Box */
.documents-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.documents-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    display: flex;
    align-items: start;
    gap: 12px;
}

.documents-list li:last-child {
    border-bottom: none;
}

/* TPA Grid Section */
.tpa-grid-section {
    padding: 60px 0;
}

.tpa-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.tpa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--prayag-teal);
}

.tpa-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .tpa-content-section .process-step {
        padding: 24px;
    }

    .tpa-content-section .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .tpa-content-section .step-title {
        font-size: 18px;
    }

    .tpa-content-section .step-desc {
        font-size: 14px;
    }
}

/* ================================================
   FEATURED VIDEO SECTION STYLES
   ================================================ */

.featured-video-section {
    padding: 60px 0;
    background: #fff;
}

.featured-video-section .video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-video-section .video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .featured-video-section {
        padding: 40px 0;
    }

    .featured-video-section .video-wrapper {
        border-radius: 12px;
    }
}

/* ================================================
   CONTACT PAGE REDESIGN STYLES
   ================================================ */

.contact-layout-section {
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    background-color: #fff;
}

.contact-details-wrapper {
    background: #fff;
    padding-right: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.location-block,
.contact-block {
    margin-bottom: 25px;
}

.location-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.location-address {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
    margin-left: 28px;
    /* Align with text start after icon */
}

.contact-text {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 5px;
    margin-left: 28px;
}

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

/* Maps Section */
.maps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: 1px solid #eee;
}

.map-container iframe {
    height: 250px !important;
}

.map-label {
    background: var(--prayag-teal);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    margin: 0;
}

/* Form Section Refinement */
.contact-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--prayag-teal);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--light-text);
    margin-bottom: 30px;
}

/* Button Override */
.btn-primary-orange {
    background-color: var(--prayag-orange);
    border-color: var(--prayag-orange);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary-orange:hover {
    background-color: var(--prayag-orange-dark);
    border-color: var(--prayag-orange-dark);
    color: white;
    transform: translateY(-2px);
}