﻿:root {
    --primary-red: #cd373b;
    --dark-blue: #0a2540;
}

body {
    font-family: Inter, sans-serif;
}
a{
    text-decoration:none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-weight:600;
}
/* Top Bar */
.top-bar {
    background: #19385a;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
    }

        .top-bar a:hover {
            color: #ffd1d9;
        }

.top-contact {
    color: #d6e0e8;
}

    .top-contact i {
        color: #cd373b;
    }

.utility-links {
    align-items: center;
    display: flex;
    gap: 18px;
}

    .utility-links a {
        white-space: nowrap;
    }

    .utility-links .admission-link {
        background: var(--primary-red);
        border-radius: 999px;
        color: #fff;
        font-weight: 700;
        padding: 5px 12px;
    }

        .utility-links .admission-link:hover {
            background: #df3652;
            color: #fff;
        }

/* Navbar */

.navbar {
    border-bottom: 1px solid #e9edf0;
    box-shadow: 0 5px 18px rgba(10,37,64,.07);
    min-height: 74px;
}

.navbar-brand img {
    height: 88px;
}
@media (max-width:776px){
    .navbar-brand img {
        height: 58px;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #253749 !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 650;
    padding: 27px 20px !important;
    position: relative;
}

    .nav-link::after {
        transition: transform .2s ease;
    }

    .nav-link:not(.dropdown-toggle)::before {
        background: var(--primary-red);
        bottom: 17px;
        content: '';
        height: 2px;
        left: 10px;
        position: absolute;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease;
        width: calc(100% - 20px);
    }

    .nav-link:hover, .nav-link:focus,
    .nav-item.active > .nav-link,
    .nav-item.show > .nav-link {
        color: var(--primary-red) !important;
    }

        .nav-link:hover::before, .nav-link:focus::before,
        .nav-item.active > .nav-link::before,
        .nav-item.show > .nav-link::before {
            transform: scaleX(1);
        }

.navbar .dropdown-menu {
    border: 1px solid #edf0f2;
    border-radius: 10px;
    box-shadow: 0 16px 35px rgba(10,37,64,.14);
    margin-top: -8px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown:focus-within > .dropdown-menu,
.navbar .dropdown.show > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar .dropdown-item {
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
}

    .navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
        background: #fff0f2;
        color: var(--primary-red);
    }

.nav-apply {
    background: var(--primary-red);
    border-radius: 7px;
    color: #fff !important;
    font-size: 12px;
    margin-left: 8px;
    padding: 10px 14px !important;
}

    .nav-apply:hover, .nav-apply:focus {
        background: #a01830;
        color: #fff !important;
    }

    .nav-apply::before {
        display: none;
    }

/* Hero Banner (use image) */
.hero-banner {
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
    min-height: 420px;
    position: relative;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0.3) 100%);
    }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
}

.hero-badge {
    background: #fdd92b;
    color: #cd373b;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 0 20px;
    margin-top: 12px;
}

/* Rank Cards */
.rank-card {
    background: linear-gradient( 193deg, #cd373b 80%, #a92131);
    border-radius: 12px;
    overflow: hidden;
    color:#fff;
    box-shadow: 0 0px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.25s;
    margin: 5px;
}

    .rank-card:hover {
        transform: translateY(-6px);
    }

    .rank-card img {
        width: 100%;
        object-fit: cover;
    }

.rank-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fdd92b;
    line-height: 1;
    margin: 8px 0 4px;
}

.rank-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.rank-meta {
    font-size: 11px;
    opacity:0.8;
}

.rank-badge {
    background: #f0f0f0;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 6px;
    color:#111;
}

/* Partner Logos */
.partner-logos img {
    height: 42px;
    object-fit: contain;
    margin: 0 18px;
    opacity: 0.85;
}

.partner-logo {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 8px 18px;
    opacity: .8;
    white-space: nowrap;
}

.image-fallback {
    background: linear-gradient(135deg, #f7d4d9, #dfeaf2);
}

.brand-mark {
    align-items: center;
    color: var(--primary-red);
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 800;
    gap: 8px;
    line-height: 1;
}

    .brand-mark i {
        font-size: 2rem;
    }

    .brand-mark small {
        color: var(--dark-blue);
        display: block;
        font-size: .55rem;
        letter-spacing: .08em;
        margin-top: 3px;
    }

/* Section Titles */
.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--primary-red);
        margin: 10px auto 0;
    }

/* Course Cards */
.course-category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s;
    height: 100%;
    text-align: center;
}

    .course-category-card:hover {
        transform: translateY(-5px);
    }

    .course-category-card img {
        width: 100%;
    }

    .course-category-card .card-body {
        padding: 14px;
        font-weight: 600;
        font-size: 14px;
        color:#111;
    }
    .course-category-card p {
        font-size: 11px;
        opacity: 0.7;
        color: #111;
    }
        /* Stats Bar */
        .stats-bar {
            background: linear-gradient(356deg, #eb6100, #cd373b);
            color: #fff;
            padding: 48px 0;
        }

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}





.btn-know-more {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
}

    .btn-know-more:hover {
        background: #a01830;
        color: #fff;
    }

/* Resource Cards */
.resource-card {
    border-radius: 12px;
    padding: 30px 25px;
    color: #fff;
    height: 100%;
}

    .resource-card.red {
        background: linear-gradient(135deg, #cd373b, #e63950);
    }

    .resource-card.blue {
        background: linear-gradient(135deg, #0a2540, #1a3a5c);
    }

    .resource-card h4 {
        font-weight: 700;
    }

    .resource-card .btn {
        background: #fff;
        color: #333;
        font-weight: 600;
        border: none;
        margin-top: 12px;
    }

/* Blog Cards */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

    .blog-card img {
        height: 160px;
        object-fit: cover;
        width: 100%;
    }

.blog-date {
    background: var(--primary-red);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.08);
    height: 100%;
    margin: 8px;
}

    .testimonial-card img {
        max-width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
    }

.stars {
    color: #ffc107;
    font-size: 14px;
}

/* Footer */
footer {
    background: #19385a;
    color: #bbb;
    padding: 64px 0 20px;
}

    footer h6 {
        color: #fff;
        font-weight: 600;
        font-size: .86rem;
        letter-spacing: .06em;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    footer a {
        color: #bbb;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 10px;
        font-size: 14px;
    }
    footer .footer-links a{
        display:block;
    }
    footer a:hover {
        color: #fff;
    }

    footer .brand-mark small {
        color: #d3e0eb;
    }

.footer-intro {
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

    .footer-social a {
        align-items: center;
        background: rgba(255,255,255,.1);
        border-radius: 50%;
        display: inline-flex;
        height: 34px;
        justify-content: center;
        margin: 0;
        width: 34px;
    }

        .footer-social a:hover {
            background: var(--primary-red);
        }

.footer-contact {
    line-height: 1.65;
}

    .footer-contact i {
        color: #cd373b;
        width: 18px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    margin-top: 48px;
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .nav-link {
        padding: 11px 0 !important;
    }

        .nav-link:not(.dropdown-toggle)::before {
            bottom: 5px;
            left: 0;
            width: 42px;
        }

    .nav-apply {
        display: inline-block;
        margin: 8px 0;
        padding: 9px 12px !important;
    }
}

/* Owl Nav */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: #333 !important;
    font-size: 20px !important;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #ccc !important;
}

.owl-dot.active span {
    background: var(--primary-red) !important;
}
.bg-yellow {
    background-color: #fdd92b;
}
.instavideos video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    cursor: pointer;
    border-radius: 8px;
}
#wa-fix {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 60px;
    display: inline-block;
    max-width: 80px;
}
.floating-contact {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    writing-mode: vertical-rl;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 8px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}


.floating-contact {
    box-shadow: 0 0 0 0 rgba(211,47,47,0.7);
    animation: proShineBtn 2.8s infinite, pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(211,47,47,0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(211,47,47,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211,47,47,0);
    }
}
/* Popup */
.counselling-modal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.counselling-modal .modal-header {
    border: 0;
    padding: 25px 25px 12px;
    justify-content: center;
    position: relative;
}

.counselling-modal .modal-title {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    color: #172033;
}

.counselling-modal .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background-size: 12px;
    opacity: .6;
}

.counselling-modal .modal-body {
    padding: 15px 28px 30px;
}

.popup-subtitle {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 22px;
}

input,
select {
    height: 50px;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    box-shadow: none !important;
}

    input:focus,
    select:focus {
        border-color: #172033;
        background: #fff;
    }

.popup-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    background: #cd373b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

    .popup-btn:hover {
        background: #b9282c;
        transform: translateY(-1px);
    }

.popup-note {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 14px;
}

/* Dark overlay */
.counselling-modal.modal {
    --bs-modal-width: 430px;
}

.modal-backdrop.show {
    opacity: .65;
}

@media (max-width: 576px) {
    .counselling-modal .modal-content {
        border-radius: 14px;
    }

    .counselling-modal .modal-body {
        padding: 12px 20px 25px;
    }

    .counselling-modal .modal-title {
        font-size: 21px;
    }
}
.page-banner {
    background: #fdd92b;
    padding: 25px 0 10px;
    color: #111;
}

    .page-banner h1 {
        margin: 0;
        font-weight: 800;
        margin-bottom:-15px;
    }

    .page-banner .breadcrumb {
        background: transparent;
        padding: 0;
        margin-top: 16px;
        color: rgba(255,255,255,0.8);
    }

        .page-banner .breadcrumb a {
            color: #111;
        }

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-box {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    box-shadow: 0 8px 10px rgba(10,37,64,0.06);
    padding: 28px 20px;
    height: 100%;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .contact-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(10,37,64,0.09);
    }

.contact-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    color: var(--primary-red);
    font-size: 1.6rem;
}

.contact-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.contact-box p,
.contact-box a {
    color: var(--muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

    .contact-box a:hover {
        color: var(--primary-red);
    }

.contact-form-wrap {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 15px rgba(10,37,64,0.08);
    padding: 32px;
    border: 1px solid #edf1f4;
}
.btn-primary {
    background: var(--primary-red);
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    letter-spacing: 0.02em;
    transition: background 0.2s ease;
}

    .btn-primary:hover {
        background: #a01830;
    }
.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}



    .content-card h2 {
        font-size: clamp(2rem, 3vw, 2.8rem);
        font-weight: 800;
        color: var(--dark-blue);
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .content-card p {
        color: var(--text);
        font-size: 1.03rem;
        margin-bottom: 18px;
    }

    .content-card em {
        color: var(--primary-red);
        font-style: normal;
        font-weight: 600;
    }

    .content-card strong {
        color: var(--dark-blue);
    }

    .content-card ul {
        padding-left: 18px;
        margin: 20px 0;
    }

    .content-card li {
        margin-bottom: 10px;
        color: var(--text);
    }

.highlight-box {
    background: linear-gradient(135deg, #fff0f2, #f3f7ff);
    border-left: 4px solid var(--primary-red);
    border-radius: 16px;
    padding: 22px 24px;
    margin: 28px 0;
}

    .highlight-box p {
        margin: 0;
        font-size: 1.08rem;
        color: var(--dark-blue);
    }

.mission-grid {
    margin-top: 30px;
}

.mission-item {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 26px 20px;
    height: 100%;
    box-shadow: 0 5px 12px rgba(10,37,64,0.1);
}

    .mission-item .icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f1f1f1;
        color: var(--primary-red);
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .mission-item h4 {
        color: var(--dark-blue);
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .mission-item p {
        color: var(--muted);
        margin: 0;
        font-size: 0.98rem;
    }

.quote-box {
    background: var(--dark-blue);
    color: #fff;
    border-radius: 20px;
    padding: 28px 26px;
    margin-top: 28px;
    text-align: center;
}

    .quote-box h3 {
        font-size: clamp(1.4rem, 2vw, 2rem);
        margin: 0;
        font-weight: 800;
        line-height: 1.4;
    }

    .course-card p {
        color: var(--text);
        font-size: 1.03rem;
        margin-bottom: 18px;
    }
.course-card {
    margin-bottom: 30px;
}
.course-card ul{
    padding-left:0;
    
}
.course-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 9px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.6;
    list-style: none;
    text-align: left;
}

            .course-card ul li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 4px;
                width: 18px;
                height: 18px;
                background: #fef2f2;
                color: #dc2626;
                border-radius: 50%;
                font-size: 11px;
                font-weight: 700;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid #fecaca;
            }

   