﻿

.section-badge {
    background: linear-gradient(135deg, #175cdd15, #175cdd08);
    color: #ff0101;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: 0 auto 20px; /* ✅ THIS LINE CENTERS IT */
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(23, 92, 221, 0.12);
    }

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #175cdd, #0a4bc2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: scale(1);
}

.service-icon i {
    font-size: 22px;
    color: #ffffff;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 20px;
}

    .service-content h5 {
        font-size: 18px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .service-content p {
        font-size: 13px;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #175cdd;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .service-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .service-link:hover {
        color: #0a4bc2;
        gap: 10px;
    }

        .service-link:hover i {
            transform: translateX(4px);
        }

/* Responsive */
@media (max-width: 768px) {
    .service-image {
        height: 180px;
    }

    .service-content h5 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }
}

/* Section Title Styling */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

    .section-title h2 span {
        background: linear-gradient(135deg, #175cdd, #4a90e2);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.section-title p {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

.hero {
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

    /* Dark overlay */
    .hero-slide .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        top: 0;
        left: 0;
    }

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

    .hero-content h1 {
        font-size: 48px;
        font-weight: bold;
    }

    .hero-content p {
        font-size: 18px;
        margin: 15px 0;
    }

.highlight {
    color: #ff7a00;
}

/* Buttons */
.hero-actions .btn {
    margin-right: 10px;
    padding: 10px 20px;
}

/* Remove Bootstrap container restriction */
.hero .container {
    max-width: 1200px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }
}

.about-banner {
    position: relative;
    width: 100%;
    height: 50vh;
   
    background: linear-gradient(135deg, #0a2540 0%, #1a4a6f 100%);
    overflow: hidden;
}

    .about-banner .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
    }

    .about-banner .banner-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
    }

    .about-banner h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .about-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }

@@media (max-width: 768px) {
    .about-banner h1 {
        font-size: 36px;
    }

    .about-banner p {
        font-size: 16px;
        padding: 0 20px;
    }

    .about-banner {
        height: 40vh;
        min-height: 300px;
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 40px 0;
    background: #ffffff;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #175cdd15, #175cdd08);
    color: #eb3232;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.who-we-are h2 {
    font-size: 42px;
    font-weight: 700;
    color: #112344;
    margin-bottom: 25px;
}

.who-we-are .lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #175cdd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.who-we-are p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6a7a;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .feature-list li {
        padding: 10px 0;
        font-size: 16px;
        color: #3c4049;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .feature-list li i {
            width: 28px;
            height: 28px;
            background: #e8f0fe;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #175cdd;
            font-size: 14px;
        }

/* Image Wrapper */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .main-image {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .floating-card .icon {
        width: 45px;
        height: 45px;
        background: #175cdd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .floating-card .icon i {
            font-size: 22px;
            color: #ffffff;
        }

    .floating-card .text h4 {
        font-size: 16px;
        font-weight: 700;
        color: #112344;
        margin: 0;
    }

    .floating-card .text p {
        font-size: 12px;
        color: #6c757d;
        margin: 0;
    }

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #175cdd, #0a4bc2);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(23,92,221,0.3);
}

    .experience-badge .years {
        font-size: 28px;
        font-weight: 800;
        display: block;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 12px;
        opacity: 0.9;
    }

@@media (max-width: 768px) {
    .who-we-are {
        padding: 50px 0;
    }

        .who-we-are h2 {
            font-size: 32px;
        }

    .floating-card {
        padding: 10px 18px;
    }

        .floating-card .icon {
            width: 35px;
            height: 35px;
        }

    .experience-badge {
        padding: 10px 15px;
    }

        .experience-badge .years {
            font-size: 20px;
        }

    .who-we-are .row {
        flex-direction: column-reverse;
    }

    .who-we-are .col-lg-6:first-child {
        margin-top: 40px;
    }
}

/* Values Section */
.values-section {
    padding: 10px 0;
    background: #f8fafc;
}

    .values-section h3 {
        font-size: 38px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 15px;
    }

.value-card {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

    .value-card:hover {
        transform: translateY(-8px);
        border-color: rgba(23,92,221,0.2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #175cdd10, #175cdd05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #175cdd, #0a4bc2);
}

.value-icon i {
    font-size: 36px;
    color: #175cdd;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #ffffff;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #112344;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

@@media (max-width: 768px) {
    .values-section {
        padding: 50px 0;
    }

        .values-section h3 {
            font-size: 28px;
        }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

        .value-icon i {
            font-size: 28px;
        }
}

.facilities-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, #0a2540 0%, #1a4a6f 100%);
    overflow: hidden;
}

    .facilities-banner .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.35;
    }

    .facilities-banner .banner-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
    }

    .facilities-banner h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .facilities-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }

@media (max-width: 768px) {
    .facilities-banner h1 {
        font-size: 36px;
    }

    .facilities-banner p {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 38px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 16px;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }

/* Facility Row - Clean List Style */
.facility-row {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

    .facility-row:hover {
        background: #f8fbff;
        padding-left: 20px;
    }

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #175cdd15, #175cdd08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

    .facility-icon i {
        font-size: 28px;
        color: #175cdd;
    }

.facility-content {
    flex: 1;
}

    .facility-content h4 {
        font-size: 20px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 8px;
    }

    .facility-content p {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
        line-height: 1.5;
    }

/* Two Column Layout for Facilities */
.facilities-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .facilities-grid-two {
        grid-template-columns: 1fr;
    }

    .facility-row {
        padding: 20px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* Emergency Highlight */
.emergency-row {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 20px;
    border-bottom: none;
}

    .emergency-row .facility-icon {
        background: rgba(255,255,255,0.2);
    }

        .emergency-row .facility-icon i {
            color: #ffffff;
        }

    .emergency-row .facility-content h4 {
        color: #ffffff;
    }

    .emergency-row .facility-content p {
        color: rgba(255,255,255,0.85);
    }

/* Insurance Section */
.insurance-section {
    padding: 60px 0;
    background: #f8fafc;
}

.insurance-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.insurance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #175cdd, #0a4bc2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .insurance-icon i {
        font-size: 32px;
        color: #ffffff;
    }

.insurance-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #112344;
    margin-bottom: 15px;
}

.insurance-card p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

.insurance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.insurance-badge {
    background: #e8f0fe;
    color: #175cdd;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* Emergency Contact Bar */
.emergency-bar {
    background: #112344;
    padding: 20px 0;
    text-align: center;
}

    .emergency-bar p {
        margin: 0;
        font-size: 18px;
        color: #ffffff;
    }

    .emergency-bar a {
        color: #ffffff;
        font-weight: 700;
        text-decoration: none;
        margin-left: 15px;
        padding: 10px 25px;
        background: #175cdd;
        border-radius: 30px;
        display: inline-block;
        transition: all 0.3s ease;
    }

        .emergency-bar a:hover {
            background: #0a4bc2;
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    .emergency-bar p {
        font-size: 14px;
    }

    .emergency-bar a {
        display: block;
        margin: 15px auto 0;
        width: fit-content;
    }

    .insurance-card h3 {
        font-size: 24px;
    }
}

.doctors-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, #0a2540 0%, #1a4a6f 100%);
    overflow: hidden;
}

    .doctors-banner .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
    }

    .doctors-banner .banner-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
    }

    .doctors-banner h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .doctors-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }

/* ICU Highlight Banner */
.icu-highlight {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

    .icu-highlight::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shine 3s infinite;
    }

@keyframes shine {
    100% {
        left: 100%;
    }
}

.icu-highlight .highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.icu-highlight .highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icu-highlight .highlight-icon i {
        font-size: 30px;
        color: #ffffff;
    }

.icu-highlight .highlight-text {
    text-align: center;
}

    .icu-highlight .highlight-text .badge-text {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .icu-highlight .highlight-text h3 {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

    .icu-highlight .highlight-text p {
        font-size: 14px;
        color: rgba(255,255,255,0.9);
        margin: 5px 0 0;
    }

.icu-highlight .doctor-names {
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 50px;
}

    .icu-highlight .doctor-names span {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
    }

        .icu-highlight .doctor-names span i {
            margin-right: 8px;
        }

@media (max-width: 768px) {
    .doctors-banner h1 {
        font-size: 36px;
    }

    .icu-highlight .highlight-text h3 {
        font-size: 18px;
    }

    .icu-highlight .doctor-names {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
        margin-top: 10px;
    }

    .icu-highlight .highlight-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Doctors Section */
.doctors-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header .badge {
        display: inline-block;
        background: linear-gradient(135deg, #175cdd15, #175cdd08);
        color: #175cdd;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 38px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 16px;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }

/* Doctor Card */
.doctor-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

    .doctor-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(23,92,221,0.12);
        border-color: rgba(23,92,221,0.2);
    }

.doctor-header {
    background: linear-gradient(135deg, #175cdd, #0a4bc2);
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

    .doctor-header .doctor-icon {
        width: 70px;
        height: 70px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

        .doctor-header .doctor-icon i {
            font-size: 32px;
            color: #ffffff;
        }

.doctor-body {
    padding: 20px;
    text-align: center;
}

    .doctor-body h4 {
        font-size: 18px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 8px;
    }

.doctor-specialty {
    display: inline-block;
    background: #e8f0fe;
    color: #175cdd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.doctor-qualification {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

    .doctor-qualification strong {
        color: #112344;
        font-weight: 700;
    }

.doctor-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #175cdd, transparent);
    margin: 10px auto;
}

@media (max-width: 768px) {
    .doctors-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* CTA Section */
.cta-doctors {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a2540, #1a4a6f);
    text-align: center;
    color: #ffffff;
}

    .cta-doctors h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-doctors p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 25px;
    }

    .cta-doctors .btn-consult {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #175cdd;
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .cta-doctors .btn-consult:hover {
            background: #0a4bc2;
            transform: translateY(-3px);
            color: #ffffff;
        }

@media (max-width: 768px) {
    .cta-doctors h3 {
        font-size: 24px;
    }
}



/* Carousel Banner Section */
.divider {
    position: relative;
}

.owl-carousel-3col .item {
    padding: 10px;
}

.featured-blog {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .featured-blog img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .featured-blog:hover img {
        transform: scale(1.05);
    }

.featured-blog-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 20px 20px;
    color: #ffffff;
}

    .featured-blog-details h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .featured-blog-details p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .featured-blog-details .btn {
        background: #175cdd;
        color: #ffffff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .featured-blog-details .btn:hover {
            background: #0a4bc2;
            transform: translateY(-2px);
        }

.owl-carousel-3col .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

    .owl-carousel-3col .owl-nav button {
        background: rgba(0,0,0,0.5) !important;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        color: #ffffff !important;
        font-size: 20px !important;
        pointer-events: auto;
        transition: all 0.3s ease;
    }

        .owl-carousel-3col .owl-nav button:hover {
            background: #175cdd !important;
        }

.owl-carousel-3col .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel-3col .owl-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

    .owl-carousel-3col .owl-dot.active {
        background: #175cdd;
        width: 25px;
        border-radius: 10px;
    }

@media (max-width: 768px) {
    .featured-blog img {
        height: 250px;
    }

    .featured-blog-details h2 {
        font-size: 18px;
    }

    .owl-carousel-3col .owl-nav {
        display: none;
    }
}

/* Section Content */
.section-content {
    padding: 30px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #112344;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #175cdd;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6a7a;
    margin-bottom: 20px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    margin-bottom: 30px;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(23,92,221,0.12);
        border-color: rgba(23,92,221,0.2);
    }

    .service-card .card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .service-card .card-details {
        padding: 20px;
    }

    .service-card .card-title {
        font-size: 18px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 12px;
    }

    .service-card .card-text {
        font-size: 14px;
        line-height: 1.7;
        color: #6c757d;
        margin: 0;
        text-align:center;
    }

/* Background Section */
.bg-section {
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    padding: 60px 0;
}

/* Doctor Highlight */
.doctor-highlight {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    padding: 40px 0;
    color: #ffffff;
    text-align: center;
}

    .doctor-highlight h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .doctor-highlight .badge-text {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 4px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
    }

.doctor-names {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

    .doctor-names span {
        font-size: 18px;
        font-weight: 600;
    }

        .doctor-names span i {
            margin-right: 10px;
        }

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .doctor-highlight h3 {
        font-size: 22px;
    }

    .doctor-names span {
        font-size: 14px;
    }
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
}

    .check-list li {
        padding: 10px 0;
        font-size: 15px;
        color: #5a6a7a;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .check-list li i {
            color: #175cdd;
            font-size: 18px;
        }

.featured-blog {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .featured-blog img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .featured-blog:hover img {
        transform: scale(1.05);
    }

.featured-blog-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 20px 20px;
    color: #ffffff;
}

    .featured-blog-details h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .featured-blog-details p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .featured-blog-details .btn {
        background: #175cdd;
        color: #ffffff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .featured-blog-details .btn:hover {
            background: #0a4bc2;
            transform: translateY(-2px);
        }

.owl-carousel-3col .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

    .owl-carousel-3col .owl-nav button {
        background: rgba(0,0,0,0.5) !important;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        color: #ffffff !important;
        font-size: 20px !important;
        pointer-events: auto;
        transition: all 0.3s ease;
    }

        .owl-carousel-3col .owl-nav button:hover {
            background: #175cdd !important;
        }

.owl-carousel-3col .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel-3col .owl-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

    .owl-carousel-3col .owl-dot.active {
        background: #175cdd;
        width: 25px;
        border-radius: 10px;
    }

@media (max-width: 768px) {
    .featured-blog img {
        height: 250px;
    }

    .featured-blog-details h2 {
        font-size: 18px;
    }

    .owl-carousel-3col .owl-nav {
        display: none;
    }
}

/* Section Content */
.section-content {
    padding: 30px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #112344;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #175cdd;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6a7a;
    margin-bottom: 20px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    margin-bottom: 30px;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(23,92,221,0.12);
        border-color: rgba(23,92,221,0.2);
    }

    .service-card .card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .service-card .card-details {
        padding: 20px;
    }

    .service-card .card-title {
        font-size: 18px;
        font-weight: 700;
        color: #112344;
        margin-bottom: 12px;
    }

    .service-card .card-text {
        font-size: 14px;
        line-height: 1.7;
        color: #6c757d;
        margin: 0;
    }

/* Background Section */
.bg-section {
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    padding: 60px 0;
}

/* Conditions List */
.conditions-list {
    list-style: none;
    padding: 0;
}

    .conditions-list li {
        padding: 12px 0;
        font-size: 15px;
        color: #5a6a7a;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid #eef2f6;
    }

        .conditions-list li i {
            color: #175cdd;
            font-size: 18px;
        }

.content-box {
    height: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Better list alignment */
.conditions-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    /* Icon alignment */
    .conditions-list li i {
        margin-top: 4px;
    }

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}



.heading-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .heading-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #c52a2a;
        border-radius: 2px;
    }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 20px;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

    .breadcrumb-item a:hover {
        color: #c52a2a;
    }

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

/* Intro Text */
.contact-intro {
    background: linear-gradient(135deg, #17375a 0%, #1e4a6e 100%);
    padding: 40px;
    color: white;
    text-align: center;
}

    .contact-intro p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .contact-intro i {
        font-size: 48px;
        margin-bottom: 20px;
        color: #c52a2a;
    }

/* Contact Info Wrapper */
.contact-info-wrapper {
    padding: 40px;
    background: #ffffff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .contact-info-item:hover {
        transform: translateX(10px);
     
        box-shadow: 0 10px 30px rgba(197, 42, 42, 0.1);
    }

    .contact-info-item i {
        font-size: 32px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #c52a2a, #8b1a1a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .contact-info-item:hover i {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(197, 42, 42, 0.3);
    }

    .contact-info-item h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #17375a;
    }

    .contact-info-item p {
        margin: 0;
        color: #555;
        line-height: 1.6;
    }

    .contact-info-item a {
        color: #c52a2a;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

        .contact-info-item a:hover {
            color: #8b1a1a;
            text-decoration: underline;
        }



.contact-form-section {
    padding: 40px 25px;
}

    .contact-form-section h3 {
        font-size: 28px;
    }

.heading-title {
    font-size: 36px;
}

}

@media (max-width: 768px) {
    .page-title {
        padding: 60px 0 40px;
    }

    .heading-title {
        font-size: 28px;
    }

    .contact-info-item {
        padding: 18px;
    }

        .contact-info-item i {
            width: 45px;
            height: 45px;
            font-size: 22px;
        }

        .contact-info-item h5 {
            font-size: 16px;
        }

    .contact-form-section h3 {
        font-size: 24px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .contact-info-wrapper, .map-container {
        padding: 20px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-intro p {
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px 25px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-item {
    animation: fadeInUp 0.6s ease backwards;
}

    .contact-info-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .contact-info-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .contact-info-item:nth-child(3) {
        animation-delay: 0.3s;
    }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Main Title */
.brand-title {
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #17375a, #1e5c8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: fadeSlideIn 0.8s ease;
    font-family: 'Roboto';
    text-transform: uppercase;
}

    /* Underline effect */
    .brand-title::after {
        content: '';
        display: block;
        width: 40%;
        height: 3px;
        background: #c52a2a;
        margin-top: 4px;
        border-radius: 10px;
        transition: width 0.4s ease;
    }

.brand-text:hover .brand-title::after {
    width: 70%;
}

/* Tagline */
.brand-tagline {
    font-size: 12px;
    font-weight: 600;
    color: #c52a2a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    animation: fadeSlideIn 1s ease;
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.brand-text:hover .brand-title {
    text-shadow: 0 2px 10px rgba(23, 55, 90, 0.3);
}
@media (max-width: 576px) {
    .brand-title {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 10px;
    }
}