/* Global Styles - Kumbhare Multispeciality Hospital Exact Color Scheme */
:root {
    --primary-color: #245E74;
    --secondary-color: #EBA75E;
    --text-color: #2E3031;
    --light-bg: #F5F5F5;
    --accent-bg: #E6F1F7;
    --dark-bg: #2A3D53;
}

body {
    font-family: 'Poppins', 'Helvetica', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #000;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Common Classes */
.section-title {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    color: #2A3D53;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.btn-custom {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
}
.top-btn {
    background: var(--secondary-color);
    color: #fff !important;
    padding: 3px 15px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.top-btn:hover {
    background: #d99650;
}

/* Main Navigation */
.main-nav {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Keep navbar stable on scroll (no up/down movement) */
.main-nav {
    /* Ensure browser doesn't re-render it during scroll */
    will-change: transform;
}

/* If any page relies on sticky, force stable behavior */
.main-nav {
    position: sticky;
    top: 0;
}



.logo-img {
    max-height: 80px;
    width: 220px;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-header-book {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    margin-left: 15px;
}

.btn-header-book:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Features Section */
.feature-item {
    margin-bottom: 20px;
}

.feature-item h4 {
    color: #2A3D53;
}

.stats-card {
    border: 2px solid var(--accent-bg);
    background-color: #fff;
}

/* Specialties Cards */
.spec-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.spec-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.spec-card h5 {
    color: #2A3D53;
}

/* Service Box */
.service-box {
    border-left: 4px solid var(--primary-color);
    transition: 0.3s;
}
.service-box:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.read-more {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* ========== INFINITE SLIDER STYLES ========== */
.infinite-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.infinite-slider-track {
    display: flex;
    gap: 24px;
    animation: scrollInfinite 28s linear infinite;
    width: max-content;
}

.infinite-slide {
    flex: 0 0 auto;
    width: 320px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.infinite-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.infinite-slide:hover img {
    transform: scale(1.08);
}

.infinite-slider-wrapper:hover .infinite-slider-track {
    animation-play-state: paused;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Insurance */
.grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}
.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== GALLERY & PAGE HEADER STYLES ========== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(36, 94, 116, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(36, 94, 116, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    margin: 0;
}

/* Category Buttons */
.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.cat-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cat-btn:hover, .cat-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, #245E74 0%, #1a4a5c 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    opacity: 0.15;
}

.page-header-section h1 {
    font-size: 48px;
    font-weight: 500;
    margin-top: 190px;
    color: #000000;
    position: relative;
    z-index: 1;
}

.page-header-section p {
    color: rgba(0, 0, 0, 0.9);
    font-size: 25px;
    font-weight: 700;
    /* margin-top: 120px; */
    position: relative;
    z-index: 1;
}

/* Page Specific Section Title Override */
.page-header-section + .section-title,
.page-specific-title {
    color: #1a4a5c;
    margin-bottom: 15px;
}

.page-specific-title + .divider {
    margin: 15px auto;
    background-color: var(--secondary-color);
}

/* Footer Styles */
.footer-section {
    background: #245E74 !important;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EBA75E, #245E74, #EBA75E);
}

.footer-logo {
    max-width: 200px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-section h5 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #EBA75E;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #EBA75E;
    transform: translateX(5px);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.contact-info {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: #EBA75E;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #EBA75E;
    color: #245E74;
    transform: scale(1.1);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #EBA75E;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #EBA75E;
    color: #245E74;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.copyright a {
    color: #EBA75E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Contact Us Box - NO BACKGROUND COLOR */
.contact-us-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Scroll Button */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

#scrollBtn:hover {
    background-color: var(--secondary-color);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Remove any background from contact sections */
section.contact-section,
.contact-info-section,
.contact-details,
.contact-box {
    background: transparent !important;
}


/* ===================================
   FULL RESPONSIVE DESIGN
   =================================== */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .logo-img {
        width: 180px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 32px;
    }
    
    .logo-img {
        width: 160px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    /* Hero Section Mobile Fix */
    .hero-section {
        height: 70vh;
        text-align: center; /* Forces text to center on mobile */
    }

    /* Navbar + Specialties mobile: make dropdowns fully readable */
    .navbar-nav {
        max-height: 75vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        margin: 0;
        padding: 10px 12px;
    }
    .dropdown-menu {
        border: 0;
        margin: 8px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    .dropdown-item {
        white-space: normal;
        line-height: 1.35;
        padding: 10px 14px;
    }

    /* Specialties cards in content area (optional safety) */
    .specialties-section .spec-card {
        padding: 14px !important;
    }
    .specialties-section .spec-icon {
        width: 72px;
        height: 72px;
    }
    .specialties-section .spec-icon i {
        font-size: 2.2rem;
    }

    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-section .row {
        justify-content: center !important; /* Overrides right/left align on mobile */
    }

    .section-title {
        font-size: 28px;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .btn-header-book {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    
    .infinite-slide {
        width: 260px;
        height: 195px;
    }
    
    .infinite-slider-track {
        gap: 16px;
        animation-duration: 22s;
    }

    .page-header-section {
        padding: 50px 0;
    }

    .page-header-section h1 {
        font-size: 32px;
    }

    .page-header-section p {
        font-size: 16px;
    }

    .gallery-item img {
        height: 200px;
    }
    
    /* Footer Responsive */
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section h5 {
        display: block;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-section p {
        text-align: center;
    }

    /* About Page Responsive */
    .about-page-title {
        font-size: 28px;
    }
    .stat-number {
        font-size: 36px;
    }
    .about-page-divider {
        margin: 20px auto;
    }

    /* Doctor Page Responsive */
    .doctor-page-title {
        font-size: 24px;
    }
    .custom-table th, .custom-table td {
        padding: 8px 10px;
        font-size: 12px;
    }

    /* Blog Page Responsive */
    .sidebar-widget {
        margin-top: 30px;
    }

    /* Contact Page Responsive */
    .contact-form-wrapper {
        padding: 25px;
        margin-top: 30px;
        position: relative;
        z-index: 10; /* Fixes mobile keyboard overlap issue */
    }
    .map-section {
        height: 250px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-custom {
        padding: 8px 24px;
        font-size: 14px;
    }

    .logo-img {
        max-height: 60px;
        width: 140px;
    }

    .infinite-slide {
        width: 220px;
        height: 165px;
    }

    .top-bar span, .top-bar a {
        font-size: 11px;
    }

    .page-header-section h1 {
        font-size: 26px;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* Ultra small devices (Very small phones, less than 400px) */
@media (max-width: 399.98px) {
    .top-bar .row > div {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 5px;
    }
    .top-btn {
        margin-left: 0 !important;
        margin-top: 5px;
        display: inline-block;
    }
}
 

.page-header-section {
    background: url('Assets/RECEPTION_HOSPITAL\ INTERIORS_MR.SAURABH\ KUMBHARE.jpg.jpeg') no-repeat center center;
    background-size: cover;
    height: 300px; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Optional: Dark overlay for better text visibility */
.page-header-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Make text appear above overlay */
.page-header-section .container {
    position: relative;
    z-index: 1;
    color: white;
}
/*team*/
.team {
    background: url('Assets/teamimages.jpeg') no-repeat center center;
    background-size: cover;
    padding: 160px 0; /* spacing ke liye */
    color: white; /* text visible rahe */
}



/* ==================== VIDEO SECTION ==================== */
.video-card {
    transition: all 0.4s;
    border: 1px solid #f0f0f0;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: #FF8C42;
}

.video-card video {
    object-fit: cover;
    width: 100%;
    background: #000;
}
/* ==================== BLOG PAGE STYLES ==================== */

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(36, 94, 116, 0.12);
    border-color: #245E74;
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: #FFF3EB;
    color: #FF8C42;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 10px;
}

.blog-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #245E74;
}

.blog-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 12px;
}

.blog-meta i {
    color: #FF8C42;
    margin-right: 3px;
}

.blog-excerpt {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #245E74;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more-btn:hover {
    color: #FF8C42;
    gap: 10px;
}

/* ==================== SIDEBAR WIDGETS ==================== */

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #245E74;
}

/* Search Widget */
.btn-search {
    background: #245E74;
    color: #fff;
    border: none;
    padding: 10px 20px;
    transition: background 0.3s;
}

.btn-search:hover {
    background: #1d4d61;
    color: #fff;
}

.sidebar-widget .form-control {
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.sidebar-widget .form-control:focus {
    box-shadow: none;
    border-color: #245E74;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f5f5f5;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.category-list li a:hover {
    color: #245E74;
    padding-left: 8px;
}

.category-list li a span {
    background: #f5f5f5;
    color: #888;
    font-size: 0.78rem;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.category-list li a:hover span {
    background: #245E74;
    color: #fff;
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:first-child {
    padding-top: 0;
}

.recent-post-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.recent-post-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-title a:hover {
    color: #245E74;
}

.recent-post-date {
    font-size: 0.78rem;
    color: #aaa;
}

.recent-post-date i {
    color: #FF8C42;
    margin-right: 3px;
}

/* Tags */
.tag-item {
    display: inline-block;
    background: #f5f5f5;
    color: #555;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tag-item:hover {
    background: #245E74;
    color: #fff;
    border-color: #245E74;
    transform: translateY(-2px);
}

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .blog-img {
        height: 180px;
    }

    .blog-card .blog-content {
        padding: 16px;
    }

    .blog-title {
        font-size: 0.95rem;
    }

    .blog-excerpt {
        -webkit-line-clamp: 2;
    }
}

/* ==================== CONTACT PAGE STYLES ==================== */

/* Page Header */
/* .blog {
    background: #245E74;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
} */

/* .page-header-section-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
} */

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Assets/LOBBY_HOSPITAL\ INTERIORS_MR.SAURABH\ KUMBHARE.jpg.jpeg') center/cover no-repeat;
    opacity: 0.15;
}

.page-header-section h1 {
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.page-header-section p {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    margin-top: 10px;
    font-size: 1.05rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(36, 94, 116, 0.12);
    border-color: #245E74;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #FFF3EB;
    color: #FF8C42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.contact-info-card:hover .contact-icon {
    background: #245E74;
    color: #fff;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-info-card .btn-link {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-info-card .btn-link:hover {
    letter-spacing: 1px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: #fafafa;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    box-shadow: none;
    border-color: #245E74;
    background: #fff;
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #245E74;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1d4d61;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 94, 116, 0.3);
}

/* Map Section */
.map-section {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Hours & Complaints Card */
.hours-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.hours-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.hours-card .d-flex span {
    font-size: 0.9rem;
    color: #555;
}

.hours-card .fw-semibold {
    color: #1a1a2e;
}

.hours-card hr {
    border-color: #f0f0f0;
}

/* Emergency CTA Button */
.btn-emergency {
    background: #FF8C42;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-emergency:hover {
    background: #e67a30;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

/* Contact Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-bottom: 30px;
    }

    .map-section iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .page-header-section {
        padding: 40px 0;
    }

    .page-header-section h1 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .hours-card {
        padding: 20px;
    }
}
.contact {
    background: url('Assets/contactimg.jpeg') no-repeat center center;
    background-size: cover;
    padding: 170px 0; /* spacing ke liye */
    color: white; /* text visible rahe */
}

.contact h1 {
    text-align: left;
    margin-left: 300px; /* jitna side chahiye utna adjust kar */
}
.blog {
    /* background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80') no-repeat center center; */
    background-size: cover;
    padding: 160px 0; /* spacing ke liye */
    color: white; /* text visible rahe */
     background: #245E74;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gallery {
    background: url('Assets/WAITING\ AREA_HOSPITAL\ INTERIORS_MR.SAURABH\ KUMBHARE.jpg.jpeg') no-repeat center center;
    background-size: cover;
    padding: 190px 0; /* spacing ke liye */
    color: white; /* text visible rahe */
}
.video {
    background: url('Assets/LOBBY_HOSPITAL\ INTERIORS_MR.SAURABH\ KUMBHARE.jpg.jpeg') no-repeat center center;
    background-size: cover;
    padding: 180px 0; /* spacing ke liye */
    color: white; /* text visible rahe */
}
 .emergency-contact {
        background: rgba(235, 167, 94, 0.15);
        padding: 8px 12px;
        border-radius: 8px;
        margin-top: 5px;
        border-left: 3px solid #EBA75E;
    }
    .emergency-contact i {
        color: #EBA75E !important;
        font-size: 1.3rem;
    }
    .contact-item a {
        text-decoration: none;
        transition: 0.3s;
    }
    .contact-item a:hover {
        color: #EBA75E !important;
    }
