:root {
    --primary: #035aa6;
    --secondary: #727273;
    --primary-light: #3a56a8;
    --secondary-light: #bfbfca;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #e6e7e8;
    --light-gold: #f9eedd;
    --light-blue: #ebeaf4;
    --text-dark: #262626;
    --text-light: #6c757d;
    --text-primary: #035aa6 !important;
    --text-gold: #727273 !important;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-gold {
    color: var(--text-gold) !important;
}

.bg-gold {
    background-color: var(--secondary);
    color: white;
}

.bg-blue {
    background-color: var(--primary);
    color: white;
}

.bg-light-gold {
    background-color: var(--light-gold);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.bg-primary {
    background-color: var(--primary);
    color: white;
}

/* Modern Top Bar */
.modern-top-bar {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.modern-top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--secondary),
        #ffd700,
        var(--secondary)
    );
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.modern-top-bar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.modern-top-bar a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.modern-top-bar a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffd700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-top-bar a:hover::after {
    transform: scaleX(1);
}

/* Modern Logo Section */
.modern-logo-section {
    padding: 20px 0;
    background: white;
    position: relative;
    z-index: 1000;
}

.modern-logo-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--secondary);
}

.modern-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.modern-logo-img {
    width: 200px !important;
    width: auto;
    transition: var(--transition);
}

.modern-logo-img:hover {
    transform: scale(1.05);
}

.institute-details {
    flex: 1;
    text-align: center;
    position: relative;
}

.modern-institute-name {
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.modern-tagline {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.modern-tagline::before,
.modern-tagline::after {
    content: "✦";
    color: var(--secondary);
    margin: 0 10px;
}

.modern-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary);
}

.modern-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.modern-contact-item:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.modern-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Modern Navigation */
.modern-navbar {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(43, 68, 140, 0.2);
}

.modern-navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--secondary),
        #ffd700,
        var(--secondary)
    );
}

.modern-navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.modern-nav-item {
    position: static;
    flex: 1;
    text-align: center;
}

.modern-nav-link {
    color: white !important;
    font-weight: 600;
    padding: 22px 15px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-nav-item:last-child .modern-nav-link {
    border-right: none;
}

.modern-nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.modern-nav-link:hover::before {
    left: 100%;
}

.modern-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-2px);
}

.modern-nav-link.active {
    background: rgba(255, 255, 255, 0.15);
}

.modern-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background-color: var(--secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

.modern-nav-link:hover::after,
.modern-nav-link.active::after {
    left: 20%;
    right: 20%;
}

.modern-dropdown-toggle::after {
    margin-left: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.modern-dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Modern Mega Menu */
.modern-dropdown-menu.megamenu {
    width: 100%;
    left: 0 !important;
    right: 0;
    margin-top: 0;
    border: none;
    border-top: 3px solid var(--secondary);
    border-radius: 0 0 20px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-10px);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-megamenu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.modern-menu-section {
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-menu-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modern-menu-section h5 {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-menu-section h5::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

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

.modern-menu-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.modern-menu-list li:hover::before {
    opacity: 1;
    left: -10px;
}

.modern-menu-list a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: var(--transition);
    font-weight: 500;
    border-radius: 8px;
    background: linear-gradient(
        to right,
        transparent 50%,
        rgba(166, 116, 55, 0.1) 50%
    );
    background-size: 200% 100%;
    background-position: right bottom;
}

.modern-menu-list a:hover {
    color: var(--primary);
    padding-left: 25px;
    background-position: left bottom;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.modern-menu-list a i {
    color: var(--secondary);
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.modern-menu-list a:hover i {
    color: var(--primary);
    transform: scale(1.2);
}

/* Modern Secondary Info Bar */
.modern-info-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modern-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-highlights {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--secondary-light) 100%
    );
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(166, 116, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(166, 116, 55, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 1399.98px) {
    .modern-institute-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 1199.98px) {
    .modern-institute-name {
        font-size: 1.6rem;
    }

    .modern-nav-link {
        padding: 18px 12px !important;
        font-size: 0.85rem;
    }

    .modern-contact-info {
        padding: 12px 15px;
    }
}

@media (max-width: 991.98px) {
    .modern-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .modern-contact-info {
        text-align: center;
        margin-top: 10px;
    }

    .modern-navbar-nav {
        flex-direction: column;
    }

    .modern-nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modern-nav-link {
        border-right: none;
        text-align: left;
        padding: 15px 20px !important;
        justify-content: space-between;
        display: flex;
    }

    .modern-dropdown-menu.megamenu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        padding: 20px;
        border-radius: 0;
    }

    .modern-megamenu-container {
        padding: 0;
    }

    .modern-info-content {
        justify-content: center;
    }

    .info-highlights {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .modern-top-bar {
        font-size: 0.8rem;
    }

    .modern-logo-img {
        height: 65px;
    }

    .modern-institute-name {
        font-size: 1.4rem;
    }

    .modern-tagline {
        font-size: 0.85rem;
    }

    .info-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .modern-info-content {
        flex-direction: column;
        gap: 15px;
    }

    .modern-logo-img {
        height: 45px;
    }

    .info-highlights {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .info-item {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Menu Toggle */
.modern-navbar-toggler {
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    transition: var(--transition);
}

.modern-navbar-toggler:hover {
    color: var(--secondary);
}

/* hero section */

.banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
    padding: 8rem 0 6rem 0;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* backgrounds */
.home-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("Images/banner/home-banner.jpg") center/cover no-repeat;
}

.about-bg {
    background: linear-gradient(rgba(17, 22, 44, 0.7), rgba(77, 77, 77, 0.7)),
        url("Images/school-images/school-1.png") center/cover no-repeat;
}

.bms-bg {
    background: linear-gradient(rgba(17, 22, 44, 0.7), rgba(77, 77, 77, 0.7)),
        url("Images/banner/bms.jpg") center/cover no-repeat;
}

.baf-bg {
   background: linear-gradient(rgba(17, 22, 44, 0.7), rgba(77, 77, 77, 0.7)),
        url("Images/banner/baf.jpg") center/cover no-repeat;
}

.vision-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/vision-mission-banner.jpg");
}

.awards-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/awards-banner.jpg");
}

.chairman-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/leader-messages-banner.avif");
}

.principle-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/leader-messages-banner.avif");
}

.bed-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/academic-details-banner.jpg");
}

.faculty-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/faculty-banner.jpg");
}

.admission-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("Images/banner/admission-banner.jpg") center/cover no-repeat;
}

.eligibility-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/eligibility-banner.jpg");
}

.exam-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/examination-result-banner.avif");
}

.fees-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/fees-banner.avif");
}

.infrastructure-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/school-images/campus-1.jpg");
}

.campus-overview-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("Images/banner/campus-overview.png") center/cover no-repeat;
}

.contact-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/contact-info-banner.avif");
}

.scholarship-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/scholarship-banner.jpg");
}

.studentlife-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/student-life-banner.jpg");
}

.support-bg {
    background-image: linear-gradient(
            rgba(17, 22, 44, 0.6),
            rgba(77, 77, 77, 0.6)
        ),
        url("Images/banner/student-support-banner.jpg");
}

.hero-content {
    max-width: 700px;
    padding: 40px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* about section  */
.s-about-program {
    position: relative;
    z-index: 1;
}

.s-about-program .img-wrapper {
    margin-bottom: 1rem;
}

.s-about-program .img-wrapper img {
    max-width: unset;
    width: 50vw;
}

/* what we offer */

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    padding: 2rem;
    color: #fff;
}

.feature-card img {
    height: 300px;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.75)
    );
}

.feature-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.feature-card h5 {
    font-weight: 600;
    line-height: 1.4;
}

/* Color Cards */
.bg-purple {
    background: #5b4bc4;
}

.bg-mint {
    background: #3fa9a0;
}

.bg-lavender-rose {
    background: #9b6fa6;
}

.bg-orange {
    background: #e46b2c;
}

.bg-pink {
    background: #c13c6a;
}

.bg-teal {
    background: #1f7a7a;
}

.icon-box i {
    font-size: 28px;
}

/* why section */
.career-section {
    background: #ffffff;
}

.career-box {
    background: var(--primary);
    border-radius: 16px;
    padding: 60px 40px;
    color: #fff;
    overflow: hidden;
}

.career-title {
    font-size: 36px;
    font-weight: 300;
}

.career-title span {
    font-weight: 700;
    color: var(--secondary);
}

.career-pill {
    background: var(--secondary);
    border-radius: 50px;
    padding: 12px 22px;
    margin-bottom: 22px;
    font-size: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.career-right .career-pill::before {
    left: auto;
    right: -28px;
}

.student-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, #6b67c7, #2a2477);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.student-circle img {
    max-height: 360px;
    margin-top: -40px;
}

/* program section */
.programs-section::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.075;
    background: #fff url(assets/Images/common/swirl.png) center / cover;
    transform: rotate(-180deg);
    z-index: -1;
}

.program-wrapper {
    border: 1.5px solid #9ee3ff;
    border-radius: 14px;
    background: #ffffff;
}

.program-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 20px;
    height: 100%;
}

.program-card h5 {
    font-weight: 700;
    color: #00a8ff;
    margin-bottom: 10px;
}

.program-card strong {
    font-size: 14px;
}

.program-card p {
    font-size: 14px;
    color: #333;
}

.program-icon {
    width: 46px;
    height: 46px;
    background: var(--light-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 22px;
}

.launch-sec .launch-contents .launch-title {
    max-width: 50.25rem;
}

.launch-sec .launch-contents .launch-desc {
    max-width: 45.625rem;
}

.pt-24 {
    padding-top: 1.5rem !important;
}

.font-blue-bg {
    color: var(--blue-varient-2);
}

/* career stat section */

.launch-desc {
    max-width: 720px;
    font-size: 16px;
    opacity: 0.9;
}

.counter-wrap {
    margin-top: 60px;
}

.counter-item {
    padding: 0 40px;
}

.border-start-md {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.counter-number {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(90deg, #ed93b5 20%, #f7b551 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.85;
}

/* Mobile Fix */
@media (max-width: 767px) {
    .border-start-md {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        margin-top: 30px;
        padding-top: 30px;
    }

    .counter-item {
        padding: 0;
    }

    .counter-number {
        font-size: 56px;
    }
}

/* recruiter section */
/* recruiter section */
.recruite {
    position: relative;
    padding: 40px 0;
}

.recruite .heading {
    padding: 40px;
}

.recruite .logos {
    position: absolute;
    width: 70%;
    bottom: 5px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    z-index: 2;
}

.logo-content {
    display: flex;
    align-items: center;
}

.logo-content .logo-item {
    text-align: center;
    padding: 10px;
}

.logo-content img {
    max-height: 100px;
    object-fit: contain;
    margin: auto;
}

/* 🔥 MOBILE FIX */
@media (max-width: 991px) {
    .recruite {
        padding-bottom: 0;
    }

    .recruite .heading {
        padding: 20px;
        text-align: center;
    }

    .recruite .logos {
        position: relative;
        /* remove absolute */
        width: 100%;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        padding: 20px;
    }

    .logo-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-content .logo-item {
        flex: 0 0 50%;
        /* 2 logos per row */
        max-width: 50%;
    }

    .logo-content img {
        max-height: 80px;
    }
}

/* EXTRA SMALL */
@media (max-width: 576px) {
    .logo-content .logo-item {
        flex: 0 0 100%;
        /* 1 logo per row if needed */
        max-width: 100%;
    }
}

/* reserach section */
.title-top {
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 10px;
}

.title-main {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 16px;
    color: #444;
    max-width: 720px;
    line-height: 1.6;
}

.stats-row {
    align-items: center;
}

.stat-box {
    padding: 30px 15px;
}

.stat-border {
    border-left: 1px solid #c7c7f5;
    border-right: 1px solid #c7c7f5;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(90deg, #f7a6a6, #f3b17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .title-main {
        font-size: 32px;
    }

    .stat-border {
        border: none;
    }

    .stat-number {
        font-size: 44px;
    }
}

/* learning resources section */

.lab-slider .lab-card {
    position: relative;
    padding: 0 15px;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.lab-slider .slick-center {
    transform: scale(1);
}

.lab-card img {
    border-radius: 16px;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.lab-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    border-radius: 0 0 16px 16px;
    color: #fff;
}

.lab-title {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.lab-overlay p {
    font-size: 13px;
    margin: 8px 0 0;
}

/* Custom arrows */
.slider-arrows button {
    background: var(--secondary);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 18px;
}

/* campus gallery */
.campus-card {
    overflow: hidden;
    border-radius: 16px;
}

.campus-card img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.campus-card:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .campus-title {
        font-size: 26px;
    }

    .campus-card img {
        height: 200px;
    }
}

/* vision mission css */
.image-card {
    position: relative;
    min-height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.image-card-body {
    position: relative;
    z-index: 1;
    max-width: 280px;
}

@media (min-width: 992px) {
    .image-card:hover img {
        transform: scale(1.08);
    }
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.footer-heading:after {
    background-color: var(--secondary);
    border-radius: 3px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px;
}

/* entreprenaurship section */
.info-card {
    padding: 32px;
    border-radius: 16px;
    min-height: 220px;
}

/* sports section */
.facility-card {
    border: 1px solid #e5e7eb;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.sports-gallery img {
    border-radius: 12px;
    height: 160px;
}

.facility-card i {
    font-size: 1.5rem;
    color: var(--primary);
    /* or your brand color */
}

.community-wrapper {
    background: var(--light-blue);
    border-radius: 18px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.community-image {
    width: 300px;
    min-width: 300px;
}

.athlete-img {
    position: relative;
    z-index: 2;
    max-height: 340px;
}

/* Decorative Shapes */
.shape-circle {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 220px;
    height: 220px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: 1;
}

.shape-star {
    position: absolute;
    top: 30px;
    left: -10px;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

.shape-diamond {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    transform: rotate(45deg);
}

/* Content */
.community-content {
    max-width: 520px;
}

.community-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .community-image {
        width: auto;
        min-width: auto;
    }

    .shape-circle {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* news and events section */
/* News Item */
.news-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.news-icon {
    color: var(--primary);
    font-size: 14px;
    margin-top: 4px;
}

.news-content {
    flex: 1;
}

.news-content h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.news-content a {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
}

.news-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

/* Right Cards */
.featured-card {
    background: var(--primary);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
}

.featured-card a {
    color: #fff;
    text-decoration: underline;
    font-size: 0.85rem;
}

.event-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
}

.news-scroll {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Upcoming events scroll */
.events-scroll {
    max-height: 260px;
    overflow-y: auto;
    margin-top: 10px;
}

/* Scrollbar styling */
.news-scroll::-webkit-scrollbar,
.events-scroll::-webkit-scrollbar {
    width: 6px;
}

.news-scroll::-webkit-scrollbar-thumb,
.events-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.step-no {
    width: 28px;
    height: 28px;
    background: #ede9fe;
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.image-wrapper {
    background: var(--primary);
    padding: 40px;
    border-radius: 24px;
}

.step-image {
    border-radius: 20px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-height: 400px;
}

.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

/* cta button  */
.international-community p {
    line-height: 1.6;
}

/* CTA CARD */
.cta-card {
    background: var(--secondary);
    border-radius: 20px;
    padding: 40px;
}

.cta-image {
    max-width: 260px;
    position: relative;
    z-index: 2;
}

/* Decorative shapes (optional but matches UI feel) */
.cta-card::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 40px;
    width: 180px;
    height: 180px;
    background: #f59e9b;
    border-radius: 50%;
    opacity: 0.6;
}

.cta-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 120px;
    width: 120px;
    height: 120px;
    background: #fbbf24;
    border-radius: 50%;
    opacity: 0.5;
}

/* vision mission section  */
.icon-circle {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mission-image-wrap {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: #fff3e6;
    border-radius: 24px;
}

.mission-image-wrap img {
    border-radius: 20px;
}

/* timeline section  */
.timeline-wrapper {
    position: relative;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
}

.timeline-col {
    width: 45%;
}

.timeline-col.center {
    width: 10%;
    display: flex;
    justify-content: center;
    position: relative;
}

.dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 50%;
    z-index: 2;
    margin-top: 8px;
}

.date-pill {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(142, 45, 226, 0.2);
}

.timeline-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.timeline-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .dot {
        display: none !important;
    }

    .timeline-divider {
        margin-bottom: 40px;
    }

    .timeline-wrapper::before {
        /* left: 30px; */
        display: none !important;
    }

    .timeline-row,
    .timeline-row.reverse {
        flex-direction: row;
        margin-bottom: 60px;
        padding-left: 60px;
        width: 100%;
    }

    .timeline-col {
        width: 100% !important;
        padding-left: 0 !important;
    }

    .timeline-col.left {
        order: 1;
        margin-bottom: 15px;
    }

    .timeline-col.right {
        order: 3;
    }

    .timeline-col.center {
        position: absolute;
        left: 23px;
        top: 0;
        width: auto;
    }

    .date-pill {
        margin-bottom: 15px;
    }

    .timeline-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .timeline-row,
    .timeline-row.reverse {
        padding-left: 50px;
        margin-bottom: 50px;
    }

    .timeline-wrapper::before {
        /* left: 30px; */
        display: none;
    }

    .timeline-col.center {
        left: 18px;
    }

    .timeline-heading {
        font-size: 20px;
    }
}

/* core values section  */
.core-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto;
}

/* Center */
.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-align: center;
    padding-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-center i {
    font-size: 34px;
}

.core-center h3 {
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.1;
}

/* Segments */
.core-segment {
    position: absolute;
    width: 140px;
    height: 90px;
    background: #fff;
    border-radius: 120px 120px 0 0;
    color: #333;
    text-align: center;
    padding-top: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.core-segment i {
    display: block;
    font-size: 22px;
}

.core-segment span {
    font-size: 13px;
    font-weight: 600;
}

/* Positioning */
.seg-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.seg-2 {
    top: 70px;
    right: -30px;
    transform: rotate(60deg);
}

.seg-3 {
    bottom: 70px;
    right: -30px;
    transform: rotate(120deg);
}

.seg-4 {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.seg-5 {
    bottom: 70px;
    left: -30px;
    transform: rotate(240deg);
}

.seg-6 {
    top: 70px;
    left: -30px;
    transform: rotate(300deg);
}

/* Side Text */
.side-text {
    position: absolute;
    width: 260px;
    font-size: 14px;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--secondary);
}

.side-text h6 {
    font-weight: 600;
}

.left.top {
    left: 30px;
    top: 130px;
}

.left.bottom {
    left: 30px;
    bottom: 100px;
}

.right.top {
    right: 30px;
    top: 130px;
}

.right.bottom {
    right: 30px;
    bottom: 100px;
}

/* Mobile */
@media (max-width: 768px) {
    .core-values-ui {
        padding: 40px 0;
    }

    .core-wrapper {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    /* Center */
    .core-center {
        width: 120px;
        height: 120px;
        padding-top: 22px;
    }

    .core-center i {
        font-size: 26px;
    }

    .core-center h3 {
        font-size: 16px;
    }

    /* Segments */
    .core-segment {
        width: 100px;
        height: 65px;
        padding-top: 12px;
    }

    .core-segment i {
        font-size: 16px;
    }

    .core-segment span {
        font-size: 11px;
    }

    /* Re-position segments INSIDE wrapper */
    .seg-1 {
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .seg-2 {
        top: 50px;
        right: -10px;
        transform: rotate(60deg);
    }

    .seg-3 {
        bottom: 50px;
        right: -10px;
        transform: rotate(120deg);
    }

    .seg-4 {
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%) rotate(180deg);
    }

    .seg-5 {
        bottom: 50px;
        left: -10px;
        transform: rotate(240deg);
    }

    .seg-6 {
        top: 50px;
        left: -10px;
        transform: rotate(300deg);
    }

    /* Hide side text on mobile */
    .side-text {
        display: none !important;
    }
}

/* accrediation section  */

/* Enhanced Icon Circle */
.accreditation-icon-circle {
    width: 110px;
    height: 110px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 8px solid white;
}

.accreditation-icon-circle::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--icon-color1), var(--icon-color2));
    z-index: -1;
    opacity: 0.9;
}

.icon-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Enhanced Dotted vertical line */
.dot-line {
    display: block;
    width: 3px;
    height: 60px;
    margin: 0 auto;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary, #ddd),
        var(--primary, #ddd) 6px,
        transparent 6px,
        transparent 12px
    );
    position: relative;
    margin-top: 20px;
}

.dot-line::before,
.dot-line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary, #ddd);
}

.dot-line::before {
    top: -6px;
}

.dot-line::after {
    bottom: -6px;
}

.accreditation-item {
    position: relative;
    padding: 20px;
    text-align: center;
}

.accreditation-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.accreditation-item:hover .accreditation-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .accreditation-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .accreditation-ui {
        padding: 3rem 0;
    }

    .accreditation-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .accreditation-item {
        margin-bottom: 2rem;
    }
}

/* leadership section  */
/* Leadership Cards */
.leadership-ui {
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-ui:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.leadership-ui p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.leadership-ui .card-body {
    padding: 1.25rem;
}

/* Image */
.leadership-img {
    height: 260px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

/* Role Badge */
.role-badge {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    /* allow wrapping */
    word-break: break-word;
    /* break long words */
    text-align: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 30px;
    background: transparent;
    line-height: 1.3;
}

/* Read more */
.read-more {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .leadership-img {
        height: 220px;
    }
}

/* admission page css  */
/* ---------- Header block like screenshot ---------- */

/* ---------- Icon mini cards (Programs / Year / Intake / Reservation) ---------- */
.mini-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

.mini-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.mini-ic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--ring);
    flex: 0 0 auto;
}

.mini-ic.gold {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: var(--ring-gold);
}

.mini-info h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.mini-info p {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--text-light);
}

/* ---------- Docs cards ---------- */

/* ---------- Eligibility “glance” cards ---------- */
.glance-card {
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 55px rgba(0, 0, 0, 0.08);
    padding: 22px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glance-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(
            500px 240px at 20% 0%,
            rgba(43, 68, 140, 0.1),
            transparent 60%
        ),
        radial-gradient(
            520px 240px at 90% 30%,
            rgba(166, 116, 55, 0.12),
            transparent 55%
        );
    pointer-events: none;
}

.glance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

.gl-ic {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--ring);
    position: relative;
    z-index: 1;
}

.glance-card h5 {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    font-weight: 800;
    color: var(--primary);
}

.gl-val {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 44px;
    letter-spacing: -1px;
    color: var(--primary);
    margin: 10px 0 6px;
}

.glance-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
}

/* ---------- Payment methods ---------- */
.method {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    padding: 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.method:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
}

.method i {
    font-size: 34px;
    color: var(--primary);
}

.method span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    color: var(--primary);
}

/* ---------- Exam breakdown ---------- */

/* Document Card */
.document-card {
    background: white;
    border-radius: var(--radius-xl, 20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.document-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--gray);
}

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

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(3, 90, 166, 0.2);
}

.document-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-left: 15px;
}

.document-card h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

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

.document-list li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--light-blue);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.document-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gold);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.document-note p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.document-count {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light-blue);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .document-card {
        padding: 1.5rem;
    }

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

@media (max-width: 768px) {
    .document-card {
        margin-bottom: 1.5rem;
    }
}

/* Card */
.program-card {
    border-radius: 1.25rem;
    overflow: hidden;
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-8px);
}

/* Header */
.program-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.header-media {
    background: linear-gradient(135deg, var(--secondary), #8a8a8b);
}

.header-finance {
    background: linear-gradient(135deg, var(--primary-light), #4a66b3);
}

/* Icon */
.program-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
}

/* Progress */
.progress {
    height: 8px;
}

/* List */
.components-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* syllabus section */

.syllabus-tabs .nav-pills .nav-link {
    background: #f8f9fa;
    color: var(--primary);
    border: 2px solid transparent;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.syllabus-tabs .nav-pills .nav-link:hover {
    background: rgba(34, 85, 128, 0.1);
    border-color: var(--primary);
}

.syllabus-tabs .nav-pills .nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.semester-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.subject-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.subject-item:hover {
    background: rgba(34, 85, 128, 0.05);
    transform: translateX(5px);
}

.subject-item i {
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.subject-item span {
    font-weight: 500;
    color: #333;
}

.pedagogy-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pedagogy-option {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pedagogy-option:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .syllabus-tabs .nav-pills {
        flex-direction: column;
        align-items: center;
    }

    .syllabus-tabs .nav-pills .nav-link {
        margin: 4px 0;
        width: 200px;
    }

    .subjects-grid {
        grid-template-columns: 1fr;
    }

    .pedagogy-options {
        justify-content: center;
    }
}
