/* Ziya India Meditour - Main Stylesheet */

:root {
    --primary-blue: #15509f;
    --light-blue: #2aa9e1;
    --primary-orange: #f09340;
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --light-gray: #F9FAFB;
    --white: #FFFFFF;
    --light-bg: #e8f4fb;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

html {
    scroll-behavior: smooth;
}

/* Main Header - New Design */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Mobile Header Search Bar */
.mobile-header-search {
    display: none;
    padding: 0.5rem 0;
    border-top: 1px solid #E5E7EB;
}

.mobile-header-search input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 0.8rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.8rem;
}

.mobile-header-search input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.mobile-header-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 991px) {
    .main-header {
        padding: 0.5rem 0 0;
    }

    .mobile-header-search {
        display: block;
    }

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

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /*padding: 0.5rem 1rem;*/
    /*border: 1px solid #E5E7EB;*/
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.language-selector img {
    width: 24px !important;
    height: auto;
}
.gt_float_switcher {
    font-size: 15px !important;
    line-height: 12px !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0 1px 3px !important;
    margin-top: 7px !important;
}
.header-center {
    flex: 1;
    max-width: 500px;
}

.header-search-new {
    position: relative;
    width: 100%;
}

.header-search-new input {
    width: 100%;
    padding: 0.85rem 3rem 0.85rem 1.2rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.9rem;
}

.header-search-new input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.header-search-new button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-orange);
}

.consultation-btn {
    background: linear-gradient(135deg, var(--primary-orange), #e87d2a);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(240, 147, 64, 0.3);
    white-space: nowrap;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 147, 64, 0.4);
    color: var(--white);
}

.header-icon-btn {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(42, 169, 225, 0.25);
    font-size: 0.85rem;
}

/* Navigation - Centered Menu */
.main-nav {
    background: var(--white);
    border-top: 1px solid #E5E7EB;
    padding: 0;
}

.main-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

.main-nav.sticky .container {
    justify-content: space-between;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-nav {
    margin: 0 auto;
}

.main-nav.sticky .navbar-nav {
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--light-blue);
}

.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: none;
    padding: 0.8rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--light-blue);
    padding-left: 2rem;
}

/* Sticky Actions */
.sticky-actions {
    display: none;
    align-items: center;
    gap: 0.8rem;
}

.main-nav.sticky .sticky-actions {
    display: flex;
}

.sticky-search-box {
    position: relative;
    width: 300px;
}

.sticky-search-box input {
    width: 100%;
    padding: 0.7rem 1rem;
    padding-right: 45px;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.85rem;
}

.sticky-search-box input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.sticky-search-box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
}

.sticky-consult-btn {
    background: linear-gradient(135deg, var(--primary-orange), #e87d2a);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sticky-consult-btn:hover {
    background: linear-gradient(135deg, #e87d2a, var(--primary-orange));
    color: var(--white);
    transform: translateY(-2px);
}

.sticky-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sticky-icon-btn:hover {
    transform: translateY(-2px);
}

.sticky-icon-btn.phone {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.sticky-icon-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1fb855);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(21, 80, 159, 0.92), rgba(42, 169, 225, 0.88)),
                url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920') center/cover;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.8rem;
    font-weight: 400;
    opacity: 0.95;
}

.btn-primary-custom {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(240, 147, 64, 0.25);
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    color: var(--white);
    background: #e87d2a;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border: 2px solid var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Google Reviews */
.patient-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reviews-stats {
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.google-logo {
    width: 50px;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, #e8f4fb, #f5f5f5);
    padding: 2.5rem 0;
}

.stat-card {
    background: var(--white);
    border: 2px solid #d0e8f7;
    border-radius: 10px;
    padding: 1rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(42, 169, 225, 0.15);
    border-color: var(--light-blue);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-orange));
    border-radius: 2px;
}

/* Page Header (for list pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 0rem 0 2rem;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Treatments Section */
.treatments {
    background: var(--white);
    padding: 4rem 0;
}

.treatment-card-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.treatment-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(42, 169, 225, 0.2);
}

.treatment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 80, 159, 0.7), rgba(42, 169, 225, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
}

.treatment-card-new h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.treatment-card-new p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.treatment-price-new {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.treatment-btn-new {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.treatment-btn-new:hover {
    background: #e87d2a;
    color: var(--white);
    transform: scale(1.05);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25);
}

.cta-banner h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: var(--white);
    color: #6366F1;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    color: #6366F1;
}

/* Committed to Excellence */
.committed-excellence {
    background: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.doctor-circle-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.doctor-circle-bg {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3F2FD, #90CAF9, #42A5F5);
    position: relative;
    overflow: hidden;
}

.doctor-main-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 95%;
    object-fit: cover;
    object-position: center bottom;
}

.stat-badge {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
}

.stat-badge.top-right {
    top: 15%;
    right: -5%;
}

.stat-badge.bottom-left {
    bottom: 20%;
    left: -5%;
}

.stat-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-badge-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.stat-badge-text p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin: 0;
}

.excellence-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.excellence-item {
    text-align: center;
}

.excellence-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.excellence-item:hover .excellence-icon {
    transform: scale(1.1);
}

.excellence-icon i {
    font-size: 2rem;
    color: var(--white);
}

.excellence-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.7rem;
}

.excellence-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 3.5rem 0;
    position: relative;
}

.how-it-works .section-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.how-it-works .section-header p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
/*     max-width: 900px; */
    margin: 0 auto;
}

@media (min-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.8rem;
    }
}

@media (max-width: 575px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

.step-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem 0.6rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(42, 169, 225, 0.15);
    border-color: var(--light-blue);
}

.step-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-orange), #e87d2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    box-shadow: 0 3px 8px rgba(240, 147, 64, 0.3);
}

.step-badge span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
}

.step-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.step-title {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    min-height: 30px;
}

.step-description {
    font-size: 0.65rem;
    color: var(--medium-gray);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    min-height: 32px;
}

.step-duration {
    display: inline-block;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: #E65100;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
}

.step-duration i {
    font-size: 0.55rem;
    margin-right: 0.15rem;
}

/* Medical Destinations */
.medical-destinations {
    background: linear-gradient(135deg, #e8f4fb, #f5f5f5);
    padding: 4rem 0;
}

.destination-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(42, 169, 225, 0.15);
    border-color: var(--light-blue);
}

.destination-card img {
    width: 45px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

.destination-card h5 {
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
}

/* Request Consultation */
.request-consultation {
    background: linear-gradient(135deg, #1a65af, #2aa9e1);
    padding: 4rem 0;
    color: var(--white);
}

.doctor-emoji-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.doctor-image-circle {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.consult-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.consult-btn.new-patient {
    background: #EF4444;
    color: var(--white);
}

.consult-btn.new-patient:hover {
    background: #DC2626;
    color: var(--white);
}

.consult-btn.returning {
    background: var(--light-blue);
    color: var(--white);
}

.consult-btn.returning:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.consult-btn.refer {
    background: var(--white);
    color: #5B6DCE;
}

.consult-btn.refer:hover {
    background: #F3F4F6;
    color: #5B6DCE;
}

/* Expert Team */
.expert-team {
    background: var(--white);
    padding: 4rem 0;
}

.doctor-card {
    border-radius: 14px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
        /*background: linear-gradient(135deg, #3eb1e2, #1c6cb4);
    border-radius: 14px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;*/
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 124, 181, 0.15);
    border-color: #31ace2;
    /*transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.3);*/
}

.doctor-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 0.8rem;
    border-radius: 50%;
    background: var(--white);
    padding: 5px;
    position: relative;
}

.doctor-emoji {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #F0FDFC, #E0F2FE);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.flag-badge img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
}

.doctor-specialty {
    background: #2aa9e1;
    color: #fff;
   /* background: var(--white);
    color: var(--primary-blue);*/
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.doctor-info {
    background: var(--white);
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
}

.doctor-name {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.doctor-qualifications {
    color: var(--medium-gray);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.doctor-experience {
    color: var(--light-blue);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.doctor-rating {
    font-size: 0.85rem;
}

.rating-value {
    font-weight: 700;
    color: var(--primary-blue);
}

.book-btn, .whatsapp-doctor-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.book-btn {
        background: linear-gradient(135deg, #f09340, #f09340);
    color: var(--white);
}

.book-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.whatsapp-doctor-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-doctor-btn:hover {
    background: #1fb855;
    color: var(--white);
}

/* Video Testimonials */
.video-testimonials {
    background: var(--light-gray);
    padding: 4rem 0;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(42, 169, 225, 0.15);
}
.video-testimonials .video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}
.video-thumbnail {
    position: relative;
    /*padding-top: 56.25%;
    background: #000;*/
}

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

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h5 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--light-blue);
    font-size: 0.9rem;
    margin: 0;
}

#videoTestimonialsCarousel {
    padding: 2rem 0;
}

#videoTestimonialsCarousel .carousel-control-prev,
#videoTestimonialsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

#videoTestimonialsCarousel .carousel-control-prev {
    left: -60px;
}

#videoTestimonialsCarousel .carousel-control-next {
    right: -60px;
}

#videoTestimonialsCarousel .carousel-control-prev:hover,
#videoTestimonialsCarousel .carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary-orange), #e87d2a);
}

#videoTestimonialsCarousel .carousel-indicators {
    bottom: -50px;
}

#videoTestimonialsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-blue);
    opacity: 0.5;
    border: none;
}

#videoTestimonialsCarousel .carousel-indicators button.active {
    opacity: 1;
    background: var(--primary-orange);
}

/* Testimonials */
.testimonials {
    background: var(--white);
    padding: 4rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    height: 100%;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 4px solid var(--light-blue);
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 4rem 0;
}

.why-choose-us .section-header h2,
.why-choose-us .section-header p {
    color: var(--white);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(42, 169, 225, 0.3);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.4rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.7rem;
}

/* Hospitals */
.hospitals {
    background: var(--light-bg);
    padding: 4rem 0;
}

.hospital-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.hospital-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.hospital-card-link:hover .hospital-card {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(42, 169, 225, 0.15);
}

.hospital-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hospital-info {
    padding: 1.5rem;
    text-align: center;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d3a6b 0%, #15509f 50%, #1e6bb8 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

footer h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 0.8rem;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

footer ul {
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

footer a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-orange), #e87d2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--white);
    box-shadow: 0 3px 8px rgba(240, 147, 64, 0.25);
}

.footer-contact-info h6 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-info p,
.footer-contact-info a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-social a:hover {
/*     background: var(--primary-orange); */
    transform: translateY(-3px);
    border-color: var(--primary-orange);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    line-height: 1.8;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 999;
}

.scroll-top.active {
    display: flex;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: 40px;
    background: linear-gradient(135deg, #25D366, #1fb855);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 999;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.sticky-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
    color: var(--white);
}

.sticky-whatsapp i {
    font-size: 1.1rem;
    margin-right: 6px;
}

/* Mobile Bottom Sticky Buttons */
.mobile-sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
    padding: 0.5rem;
}

.mobile-sticky-buttons .row {
    margin: 0;
}

.mobile-consult-btn {
    background: linear-gradient(135deg, var(--primary-orange), #e87d2a);
    color: var(--white);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.mobile-consult-btn:hover {
    color: var(--white);
}

.mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1fb855);
    color: var(--white);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.mobile-whatsapp-btn:hover {
    color: var(--white);
}

/* Mobile Menu */
.navbar-toggler {
    border: 2px solid var(--primary-orange);
    padding: 0.4rem 0.6rem;
    background: var(--white);
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(240, 147, 64, 0.2);
}

.navbar-toggler-icon {
    width: 24px;
    height: 20px;
    position: relative;
    display: inline-block;
    background: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .sticky-whatsapp {
        display: none;
    }

    .mobile-sticky-buttons {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .main-header {
        padding: 0.8rem 0;
    }

    .header-left {
        justify-content: space-between;
        width: 100%;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        padding: 1.5rem 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid #E5E7EB;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        color: var(--dark-gray);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--light-bg);
        border-radius: 0;
        padding-left: 1rem;
    }

    .dropdown-menu .dropdown-item {
        padding: 0.7rem 1.5rem;
    }

    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-gray);
        cursor: pointer;
        z-index: 2001;
    }

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

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

    .hero {
        min-height: 70vh;
        padding: 2rem 0 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .sticky-search-box {
        width: 200px;
    }

    .excellence-heading {
        font-size: 2rem;
    }

    .stat-badge {
        padding: 0.8rem 1.2rem;
    }

    .stat-badge.top-right {
        right: 0;
        top: 10%;
    }

    .stat-badge.bottom-left {
        left: 0;
        bottom: 15%;
    }

    .stat-badge-text h4 {
        font-size: 1.1rem;
    }

    .stat-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .scroll-top {
        bottom: 100px;
    }
    .navbar-nav {
        background: #fff;
    }
    .treatment-card-new h3 {
        font-size: 1.1rem;
    }

    .treatment-card-new p {
        font-size: 0.75rem;
    }

    .treatment-price-new {
        font-size: 1rem;
    }

    .treatment-btn-new {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .treatment-overlay {
        padding: 1rem;
    }

    .feature-card h4 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .hospital-info h5 {
        font-size: 0.95rem;
    }

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

    .stat-card {
        padding: 0.8rem 0.5rem;
    }

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

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

    .committed-excellence {
        padding: 3rem 0;
    }

    .excellence-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .doctor-circle-image {
        max-width: 350px;
        margin-bottom: 2rem;
    }

    .stat-badge {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin: 1rem auto;
        max-width: 250px;
    }

    .request-consultation .d-flex {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .consult-btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .cta-banner {
        padding: 1.5rem;
        text-align: center;
    }

    .cta-banner h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .cta-banner p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .step-card {
        padding: 0.8rem 0.5rem;
    }

    .step-title {
        font-size: 0.75rem;
        min-height: 28px;
    }

    .step-description {
        font-size: 0.6rem;
        min-height: 30px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 1.1rem;
    }

    #videoTestimonialsCarousel .carousel-control-prev {
        left: 0;
    }

    #videoTestimonialsCarousel .carousel-control-next {
        right: 0;
    }

    #videoTestimonialsCarousel .carousel-control-prev,
    #videoTestimonialsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    footer {
        padding: 3rem 0 0;
    }

    .footer-contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .step-card {
        padding: 0.8rem 0.5rem;
    }

    .step-title {
        font-size: 0.75rem;
        min-height: 28px;
    }

    .step-description {
        font-size: 0.6rem;
        min-height: 30px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 1.1rem;
    }
}
/* ============================================
   BLOG PAGE STYLES
   Add these styles to your existing styles.css file
   ============================================ */

/* Blog Categories Filter */
.blog-categories {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.category-filter {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid #15509f;
    color: #15509f;
    background: transparent;
    transition: all 0.3s ease;
}

.category-filter:hover {
    background: #15509f;
    color: white;
    transform: translateY(-2px);
}

.category-filter.active {
    background: #15509f;
    color: white;
    border-color: #15509f;
}

/* Blog Listing Section */
.blog-listing {
    background: #ffffff;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(21, 80, 159, 0.15);
    border-color: #15509f;
}

/* Blog Image */
.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: #15509f;
    font-size: 0.85rem;
}

.blog-title {
    margin-bottom: 0.8rem;
    flex-shrink: 0;
}

.blog-title a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #15509f;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-read-more {
    color: #15509f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #1a73e8;
    gap: 0.6rem;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

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

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
}

.blog-pagination .pagination {
    gap: 0.5rem;
}

.blog-pagination .page-link {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #1f2937;
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0;
}

.blog-pagination .page-link:hover {
    background: #15509f;
    color: white;
    border-color: #15509f;
    transform: translateY(-2px);
}

.blog-pagination .page-item.active .page-link {
    background: #15509f;
    border-color: #15509f;
    color: white;
}

.blog-pagination .page-item.disabled .page-link {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #15509f, #1a73e8);
    color: white;
}

.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.newsletter-form .input-group {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #f3f4f6;
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mb-gt .gt_switcher {
    width: 138px;
    border: 2px solid #36afe4;
    top: 13px;
    border-radius: 7px;
    right: 70px;
}

    .blog-image {
        height: 180px;
    }

    .blog-title a {
        font-size: 1rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .newsletter-section h2 {
        font-size: 1.5rem;
    }

    .newsletter-section p {
        font-size: 0.95rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-form .form-control {
        border-radius: 12px 12px 0 0;
        text-align: center;
    }

    .newsletter-form .btn {
        border-radius: 0 0 12px 12px;
        width: 100%;
    }

    .blog-pagination .page-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .category-filter {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 576px) {
    .blog-card {
        margin-bottom: 1rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.4rem;
    }

    .blog-category {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }
}

/* Animation for filtered items */
[data-category] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Additional hover effects */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 80, 159, 0.05), rgba(26, 115, 232, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.blog-card:hover::before {
    opacity: 1;
}
/* ============================================
   ADDITIONAL PAGES STYLES
   For: Contact Us, About Us, Privacy Policy, Terms of Use
   Add these styles to your existing styles.css file
   ============================================ */

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(21, 80, 159, 0.15);
    border-color: #15509f;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(21, 80, 159, 0.3);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #15509f;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form Page */
.contact-form-page .form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-form-page .form-control,
.contact-form-page .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form-page .form-control:focus,
.contact-form-page .form-select:focus {
    border-color: #15509f;
    box-shadow: 0 0 0 3px rgba(21, 80, 159, 0.1);
}

/* Office Locations */
.office-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #15509f;
}

.office-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.office-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
}

.office-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Social Icons Large */
.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon-large:hover {
    background: white;
    color: #15509f;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Us Page Styles */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #15509f;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Mission, Vision, Values Cards */
.mvv-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(21, 80, 159, 0.15);
    border-color: #15509f;
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(21, 80, 159, 0.3);
}

.mvv-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.mvv-card p {
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
}

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

.values-list li {
    padding: 0.5rem 0;
    color: #1f2937;
    font-weight: 500;
}

.values-list li i {
    color: #15509f;
    margin-right: 0.5rem;
}

/* Service Boxes */
.service-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(21, 80, 159, 0.15);
    border-color: #15509f;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(21, 80, 159, 0.3);
}

.service-box h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
}

.service-box p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Boxes */
.why-choose-box {
    padding: 1.5rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: #15509f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-choose-box h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.why-choose-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Certification Badges */
.certification-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Policy Pages Styles */
.policy-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.policy-sidebar h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e5e7eb;
}

.policy-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    display: block;
    padding: 0.6rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.policy-nav a:hover {
    background: #f3f4f6;
    color: #15509f;
    padding-left: 1.3rem;
}

/* Policy Content */
.policy-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.policy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: #1f2937;
    font-weight: 600;
}

.contact-details-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #15509f;
    margin-top: 1rem;
}

.contact-details-box p {
    margin-bottom: 0.5rem;
}

.contact-details-box a {
    color: #15509f;
    text-decoration: none;
    font-weight: 600;
}

.contact-details-box a:hover {
    text-decoration: underline;
}

.policy-footer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #15509f;
    margin-top: 2rem;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.alert-warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-warning strong {
    color: #92400e;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .policy-sidebar {
        margin-bottom: 2rem;
        position: static !important;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
    
    .mvv-card,
    .service-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .mvv-icon,
    .service-icon,
    .why-icon,
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
    
    .office-card {
        margin-bottom: 1rem;
    }
    
    .social-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
/* ============================================
   HOSPITAL DETAIL PAGE STYLES
   Add these styles to your existing styles.css file
   ============================================ */

/* Hospital Hero Section */
.hospital-hero {
    padding: 6rem 0 4rem;
    position: relative;
    color: white;
    margin-bottom: 0;
}

.hospital-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hospital-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
}

.hospital-quick-stats {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.hospital-quick-stats h5 {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.25rem;
}

.stat-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-item {
    padding: 0.5rem 0;
}

.stat-item h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.stat-item small {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Hospital Overview Section */
section.py-5 {
    padding: 4rem 0 !important;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

section .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.7;
}

/*section p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}*/

/* Feature Highlights - IMPROVED */
.feature-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #15509f, #1a73e8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-highlight:hover::before {
    transform: scaleX(1);
}

.feature-highlight:hover {
    border-color: #15509f;
    box-shadow: 0 12px 32px rgba(21, 80, 159, 0.12);
    transform: translateY(-8px);
    background: white;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(21, 80, 159, 0.25);
    transition: all 0.3s ease;
}

.feature-highlight:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(21, 80, 159, 0.35);
}

.feature-highlight h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-highlight p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Sidebar Widgets - IMPROVED */
.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 8px 28px rgba(21, 80, 159, 0.1);
    border-color: #e5e7eb;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #15509f;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, transparent);
}

.widget-content {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.8;
}

.widget-content .d-flex {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.widget-content .d-flex:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-content strong {
    color: #15509f;
    font-weight: 600;
}

.accreditation-badge {
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.accreditation-badge:hover {
    border-color: #15509f;
    transform: scale(1.05);
}

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

/* Specialty Cards - IMPROVED */
.specialty-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #15509f, #1a73e8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(21, 80, 159, 0.15);
    border-color: #15509f;
}

.specialty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(21, 80, 159, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.specialty-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #15509f);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(21, 80, 159, 0.4);
}

.specialty-card:hover .specialty-icon::after {
    opacity: 1;
}

.specialty-card:hover .specialty-icon i {
    position: relative;
    z-index: 1;
}

.specialty-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.specialty-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Facility Cards - IMPROVED */
.facility-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 80, 159, 0.05), rgba(26, 115, 232, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(21, 80, 159, 0.15);
    border-color: #15509f;
}

.facility-card:hover::after {
    opacity: 1;
}

.facility-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.facility-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-card:hover .facility-img::after {
    opacity: 1;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-card:hover .facility-img img {
    transform: scale(1.15);
}

.facility-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.5rem 1.5rem 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.facility-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Appointment Form - IMPROVED */
.appointment-form {
    border: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.appointment-form .form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.appointment-form .form-control,
.appointment-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: #15509f;
    box-shadow: 0 0 0 4px rgba(21, 80, 159, 0.1);
    outline: none;
}

.appointment-form .btn-primary {
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(21, 80, 159, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.appointment-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.appointment-form .btn-primary:hover {
    background: linear-gradient(135deg, #1a73e8, #15509f);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(21, 80, 159, 0.4);
}

/* Contact Info List - IMPROVED */
.contact-info-list {
    margin-top: 2.5rem;
}

.contact-info-list .d-flex {
    margin-bottom: 1.5rem;
}

.contact-icon-white {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-info-list .d-flex:hover .contact-icon-white {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-info-list h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-info-list p {
    opacity: 0.95;
    font-size: 0.95rem;
}

/* Location Info - IMPROVED */
.location-info {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.location-info:hover {
    border-color: #15509f;
    box-shadow: 0 8px 24px rgba(21, 80, 159, 0.1);
}

.location-info h5 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.location-info h5 i {
    color: #15509f;
}

.location-info p {
    color: #4b5563;
    line-height: 1.9;
    font-size: 0.95rem;
}

.location-info ul {
    padding-left: 0;
    list-style: none;
}

.location-info ul li {
    color: #4b5563;
    line-height: 2;
    font-size: 0.95rem;
    padding-left: 0;
}

.location-info ul li strong {
    color: #1f2937;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

/* Section Background Variations */
section.py-5:nth-of-type(odd) {
    background: #ffffff;
}

section.py-5:nth-of-type(even) {
    background: linear-gradient(135deg, #f8fafc, #f9fafb);
}

/* Text Center Sections */
.text-center.mb-5 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.text-center.mb-5 h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #15509f, #1a73e8);
    border-radius: 2px;
}

.text-center.mb-5 p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

/* View All Button */
.text-center .btn-primary {
    background: linear-gradient(135deg, #15509f, #1a73e8);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(21, 80, 159, 0.3);
    transition: all 0.3s ease;
}

.text-center .btn-primary:hover {
    background: linear-gradient(135deg, #1a73e8, #15509f);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(21, 80, 159, 0.4);
}

/* Responsive Styles - IMPROVED */
@media (max-width: 991px) {
    .hospital-hero {
        padding: 4rem 0 3rem;
    }

    .hospital-hero-content h1 {
        font-size: 2.5rem;
    }

    .hospital-quick-stats {
        margin-top: 2rem;
    }

    .sidebar-widget {
        margin-bottom: 2rem;
    }

    section.py-5 {
        padding: 3rem 0 !important;
    }

    section h2,
    .text-center.mb-5 h2 {
        font-size: 2rem;
    }

    .feature-highlight,
    .specialty-card,
    .facility-card,
    .doctor-card,
    .testimonial-box {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hospital-hero {
        padding: 3rem 0 2rem;
    }

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

    .hospital-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    section h2,
    .text-center.mb-5 h2 {
        font-size: 1.8rem;
    }

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

    .feature-icon-box {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .specialty-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .stat-icon-small {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .facility-img {
        height: 200px;
    }

    .doctor-photo {
        width: 90px;
        height: 90px;
    }

    .contact-info-list {
        margin-top: 2rem;
    }

    .contact-icon-white {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

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

    .location-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hospital-hero {
        padding: 2.5rem 0 2rem;
    }

    .hospital-hero-content h1 {
        font-size: 1.75rem;
    }

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

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

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    section.py-5 {
        padding: 2.5rem 0 !important;
    }

    section h2,
    .text-center.mb-5 h2 {
        font-size: 1.6rem;
    }

    .text-center.mb-5 h2::after {
        width: 60px;
    }

    .feature-highlight,
    .specialty-card,
    .facility-card,
    .doctor-card,
    .testimonial-box {
        margin-bottom: 1.2rem;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .specialty-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .doctor-photo {
        width: 85px;
        height: 85px;
    }

    .book-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

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

    .appointment-form .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .sticky-whatsapp,
    .mobile-sticky-buttons,
    .scroll-top,
    .navbar,
    .appointment-form,
    .cta-button,
    .book-btn,
    .whatsapp-btn,
    footer {
        display: none !important;
    }

    .hospital-hero {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
    }

    .hospital-hero-content h1,
    .hospital-hero-content p,
    .hospital-hero-content .lead {
        color: black !important;
    }

    section.py-5 {
        padding: 1.5rem 0 !important;
        background: white !important;
    }

    .feature-highlight,
    .specialty-card,
    .facility-card,
    .doctor-card,
    .testimonial-box {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}


.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(122, 193, 66, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.price-estimate-form .form-control,
.price-estimate-form .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.price-estimate-form .form-control:focus,
.price-estimate-form .form-select:focus {
    border-color: #7AC142;
    box-shadow: 0 0 0 0.2rem rgba(122, 193, 66, 0.15);
}

.price-estimate-form .input-group-text {
    border-radius: 8px 0 0 8px;
}

.price-estimate-form label {
    color: #1B2F5C;
    margin-bottom: 8px;
}

.btn-close {
    background-size: 20px;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
    }
}