:root {
    --primary-red: #B60004;
    --text-dark: #222222;
    --text-muted: #555555;
}

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



body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px !important;
}


/* ========== ABOUT BANNER ========== */
.about-banner-section {
    background: linear-gradient(rgba(11, 52, 121, 0.5), rgba(11, 52, 121, 0.5)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200&h=400&fit=crop') center/cover;
    padding: 120px 0 140px 0;
    text-align: center;
    color: #ffffff;
}

.about-banner-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========== SECTION STYLES ========== */
.sub-heading-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #B60004;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.sub-heading-bar::before {
    content: "";
    width: 24px;
    height: 3px;
    background-color: #B60004;
    border-radius: 2px;
    margin-right: 8px;
}

.main-section-heading {
    font-size: 34px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.section-p {
    color: #555555;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-view-more {
    background-color: #B60004;
    color: #ffffff;
    border-radius: 50px;
    padding: 9px 26px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-view-more:hover {
    background-color: #8c0003;
}

/* ========== WELCOME SECTION ========== */
.welcome-section {
    padding: 70px 0 80px 0;
    background-color: #ffffff;
}

.vision-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.vision-section h5 {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.vision-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

/* ========== ADMISSION CARD ========== */
.admission-card {
    background: linear-gradient(135deg, #092c68 0%, #0e4194 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(182, 0, 4, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

.admission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.admission-card-header {
    background-color: #B60004;
    color: #ffffff;
    padding: 14px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.admission-card-body {
    padding: 32px 24px;
    color: #ffffff;
    text-align: center;
}

.admission-badge {
    display: inline-block;
    background-color: #ffc107;
    color: #111111;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pharma-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.duration-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.admission-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin: 16px 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.call-section {
    background-color: #B60004;
    padding: 14px;
    border-radius: 6px;
    margin-top: 20px;
}

.call-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-bottom: 6px;
}

.call-numbers {
    font-size: 14px;
    font-weight: 800;
    display: block;
    line-height: 1.4;
}

.location-text {
    font-size: 12px;
    margin-top: 12px;
    opacity: 0.9;
}

/* ========== WHY CHOOSE SECTION ========== */
.why-section {
    padding: 70px 0;
    background-color: #fbfbfd;
}

.why-content {
    padding-right: 40px;
}

.why-content h2 {
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.why-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ========== FEATURE BOXES ========== */
.feature-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-box {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: block !important;
}

.feature-box:hover {
    border-color: #B60004;
    box-shadow: 0 8px 24px rgba(182, 0, 4, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 68px;
    height: 68px;
    background-color: #B60004;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.5;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(90deg, #092c68 0%, #0e4194 100%);
    padding: 70px 0;
    text-align: center;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    max-width: 600px;
}

.btn-apply-now {
    background-color: #B60004;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-now:hover {
    background-color: #8c0003;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(182, 0, 4, 0.3);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 75px 0 60px 0;
    background-color: #fafbfc;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 36px 32px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.05);
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #B60004;
    box-shadow: 0 8px 32px rgba(182, 0, 4, 0.12);
    transform: translateY(-4px);
}

.stars-rating {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ddd;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.slider-btn:hover {
    background: #B60004;
    color: #ffffff;
    border-color: #B60004;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-dot.active {
    background-color: #B60004;
    width: 24px;
    border-radius: 10px;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .about-banner-title {
        font-size: 42px;
    }

    .main-section-heading {
        font-size: 28px;
    }

    .why-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .cta-content {
        gap: 24px;
    }

    .cta-text {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .about-banner-title {
        font-size: 32px;
    }

    .main-section-heading {
        font-size: 24px;
    }

    .cta-text {
        font-size: 20px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .admission-card-body {
        padding: 24px 16px;
    }
}
