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

:root {
    --primary-blue: #004e9e;
    --primary-blue-dark: #003d7a;
    --primary-blue-light: #ecf0f9;
    --deep-red: #c1121f;
    /* deep professional red */
    --deep-red-dark: #8b0d15;
    --deep-red-soft: #fdeff1;

    --elegant-gold: #c7a252;
    /* requested gold color */
    --elegant-gold-dark: #a07d38;
    --elegant-gold-light: #fff8e7;
    --accent-red: #e63946;
    --gray-light: #f7f9fc;
    --gray-border: #e9edf2;
    --ivory: #fdf8f5;
    --text-dark: #1e2a3e;
    --text-muted: #5a6e85;
    --shadow-elegant: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    --shadow-sm:
        0 10px 25px -5px rgba(0, 0, 0, 0.05),
        0 8px 10px -6px rgba(0, 0, 0, 0.02);

    --shadow-md:
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 10px 10px -5px rgba(0, 0, 0, 0.01);

    --shadow-lg:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 15px 25px -10px rgba(0, 0, 0, 0.08);

    --shadow-xl:
        0 35px 80px -15px rgba(0, 0, 0, 0.2),
        0 25px 40px -20px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-lux: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1.05);
}

body {
    font-family: "Manrope", sans-serif;
    color: #1e2a3e;
    background: var(--ivory);
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-indigo);
    border-radius: 10px;
}

h1,
h2,
h3,
h4,
h4,
.serif-heading {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gold-gradient-text {
    background: linear-gradient(
        125deg,
        var(--elegant-gold) 0%,
        var(--elegant-gold-dark) 80%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.btn-luxury {
    background: linear-gradient(
        95deg,
        var(--primary-blue-dark) 0%,
        var(--deep-red) 100%
    );
    color: white;
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 600;
    transition: var(--transition-lux);
    border: none;
    box-shadow: 0 5px 15px rgba(155, 34, 38, 0.3);
}

.btn-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -8px rgba(155, 34, 38, 0.5);
    color: white;
}

.btn-outline-gold {
    border: 1.5px solid var(--elegant-gold);
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    color: var(--primary-blue-dark);
    transition: var(--transition-lux);
}

.btn-outline-gold:hover {
    background: var(--elegant-gold);
    color: var(--deep-indigo);
    border-color: var(--elegant-gold);
    transform: translateY(-2px);
}

.bg-300 {
    background: linear-gradient(135deg, #fef5e7 0%, #fffaf4 100%);
}
.bg-500 {
    background: linear-gradient(135deg, #fef5e7 0%, #fdf0df 100%);
}
.red-gradient {
    background: radial-gradient(
        circle at 10% 20%,
        rgb(11, 37, 69) 0%,
        rgb(107, 4, 15) 100%
    );
}

.blue-gradient {
    background: linear-gradient(135deg, var(--primary-blue-dark), #001f4d);
}

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

.bg-red-light {
    background-color: var(--deep-red-soft) !important;
}

.bg-golden-light {
    background-color: var(--elegant-gold-light) !important;
}

.bg-golden-dark {
    background-color: var(--elegant-gold-dark) !important;
}

.bg-blue-dark {
    background-color: var(--primary-blue-dark) !important;
}

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

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

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

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

.border-bottom-gold {
    border-bottom: 2px solid var(--elegant-gold) !important;
}

.btn-copy {
    background: #fff8e7;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold-dark);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 8px;
}

.nav-gold {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(233, 196, 106, 0.2);
}

.section-badge-lux {
    background: rgba(233, 196, 106, 0.15);
    color: var(--deep-red);
    padding: 6px 24px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(4px);
}

@media (min-width: 992px) {
    .powered-by-section {
        border-left: 1px solid rgba(255,255,255,.50);
        padding-left: 1rem;
        margin-left: .5rem;
    }
}

/* PREMIUM NAVBAR */
/* =========================
   PREMIUM NAVBAR
========================= */

.nav-premium {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 48px;
}

/* MENU LINKS */

.navbar-nav {
    gap: 6px;
}

.nav-link {
    position: relative;
    font-weight: bold;
    color: #1e2a3e !important;
    padding: 12px 18px !important;
    transition: 0.35s;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 45%;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    transition: 0.35s;
}

.nav-link:hover {
    color: var(--deep-red) !important;
}

/* .nav-link:hover::after,
.nav-link.active::after {
    width: 10%;
} */

/* APPLY BUTTON */

.nav-btn {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s;
    box-shadow: 0 15px 35px rgba(193, 18, 31, 0.2);
}

.nav-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(193, 18, 31, 0.3);
}

/* =========================
   DROPDOWN
========================= */

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu-premium {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 320px;

    background: #fff;
    border-radius: 20px;

    padding: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05);

    border: 1px solid rgba(0, 0, 0, 0.04);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: 0.35s ease;

    z-index: 999;
}

/* Show Dropdown */

.nav-item.dropdown:hover .dropdown-menu-premium {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Links */

.dropdown-menu-premium a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border-radius: 12px;

    color: #1e2a3e;
    font-weight: bold;

    transition: 0.3s;
    font-family: "Cormorant Garamond", serif;
}

.dropdown-menu-premium a:hover {
    background: rgba(0, 78, 158, 0.06);
    color: var(--deep-red);

    transform: translateX(5px);
}

.dropdown-menu-premium a i {
    width: 18px;
    color: var(--deep-red);
}

/* Academics Wider */

.academics-menu {
    width: 380px;
}

/* Divider */

.dropdown-divider-custom {
    margin: 8px 0;
    border-top: 1px solid #ececec;
}

/* Arrow */

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* =========================
   TOGGLER
========================= */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 24px;
    color: var(--primary-blue-dark);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .nav-premium {
        padding: 12px 0;
    }

    .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 14px 0 !important;
    }

    .dropdown-menu-premium {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;

        width: 100%;
        min-width: 100%;

        margin-top: 10px;
        margin-bottom: 10px;

        display: none;

        box-shadow: none;
        border: 1px solid #eee;
    }

    .nav-item.dropdown.show .dropdown-menu-premium {
        display: block;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .navbar-brand img {
        height: 42px;
    }
}

.dropdown-two-col{
    min-width: 550px;
    padding: 15px;
}



.dropdown-two-col a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 15px;
}

.dropdown-two-col i{
    width:20px;
    color:var(--deep-red);
}

@media(max-width:991px){

    .dropdown-two-col{
        min-width:100%;
        padding:10px;
    }

    /* .dropdown-two-col .col-lg-6:first-child{
        border-right:none;
        border-bottom:1px solid rgba(0,0,0,.08);
        margin-bottom:10px;
        padding-bottom:10px;
    } */
}

.hero-extreme {
    background:
        linear-gradient(
            115deg,
            rgba(11, 37, 69, 0.92) 0%,
            rgba(107, 4, 15, 0.85) 100%
        ),
        url("../images/hero-banner.jpg");
    background-size: cover;
    background-position: center 30%;
    padding: 140px 0;
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    padding: 2rem;
    transition: var(--transition-lux);
    border: 1px solid rgba(233, 196, 106, 0.3);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.glass-card-premium:hover {
    transform: translateY(-12px);
    border-color: var(--elegant-gold);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.2);
}

.icon-shine {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #fef5e7, #faeedb);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--deep-red);
    margin-bottom: 1.8rem;
}

.stat-number-gold {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: "Cormorant Garamond", serif;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--elegant-gold-dark);
    width: 50px;
    height: 50px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(233, 196, 106, 0.2) 0%,
        rgba(155, 34, 38, 0) 70%
    );
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-extreme h1 {
        font-size: 2.2rem;
    }
}

/* vision mission luxury */
.vm-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-center-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.vm-center-image img {
    width: 320px;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        rgba(193, 18, 31, 0.12),
        rgba(0, 78, 158, 0.12),
        transparent 70%
    );
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.vm-side {
    width: 50%;
    position: relative;
    z-index: 2;
}

.vision-side {
    padding-right: 200px;
}

.mission-side {
    padding-left: 200px;
}

.vm-card-luxury {
    background: white;
    padding: 45px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.5s;
}

.vm-card-luxury:hover {
    transform: translateY(-12px);
}

.vm-card-luxury::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(rgba(199, 162, 82, 0.1), transparent 70%);
    top: -100px;
    right: -100px;
}

.vm-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 25px;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );
    box-shadow: 0 15px 30px rgba(0, 78, 158, 0.25);
}

.mission-icon {
    background: linear-gradient(135deg, var(--deep-red), #ff4d5e);
    box-shadow: 0 15px 30px rgba(193, 18, 31, 0.25);
}

.vm-big-title {
    font-size: 2rem;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--deep-red);
    display: block;
    margin-bottom: 15px;
}

.vm-line {
    width: 120px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
}

.vm-bottom-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vm-mini-box {
    padding: 30px;
    border-radius: 30px;
    background: white;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.vm-mini-box:hover {
    transform: translateY(-8px);
}

@media (max-width: 991px) {
    .vm-wrapper {
        min-height: auto;
        display: block;
    }

    .vm-center-image {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        text-align: center;
        margin-bottom: 40px;
    }

    .vm-center-image img {
        width: 280px;
    }

    .vision-side,
    .mission-side {
        padding: 0;
        width: 100%;

        margin-bottom: 30px;
    }

    .vm-card-luxury {
        padding: 35px;
    }

    .vm-card-luxury h3 {
        font-size: 38px;
    }

    .vm-bottom-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .vm-bottom-strip {
        grid-template-columns: 1fr;
    }

    .vm-card-luxury h3 {
        font-size: 32px;
    }

    .navbar-brand img {
        height: 45px;
    }
}

/* overlay background image */

.vm-card-luxury::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transition: 1s ease;
    z-index: 0;
    transform: scale(1);
}

.vision-side .vm-card-luxury::after {
    background-image: url("../../assets/images/common/social-responsibility-vision.webp");
}

.mission-side .vm-card-luxury::after {
    background-image: url("../../assets/images/common/social-responsibility-mission.webp");
}

.vm-card-luxury > * {
    position: relative;
    z-index: 2;
}

.vm-card-luxury:hover::after {
    transform: scale(1.08) rotate(2deg);

    opacity: 0.18;
}

.vm-card-luxury:hover {
    transform: translateY(-12px);

    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.feature-card {
    border-radius: 28px;
    padding: 28px;
    transition: var(--transition-lux);
    height: 100%;
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--elegant-gold);
}

.icon-box {
    width: 58px;
    height: 58px;
    background: var(--primary-blue-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--deep-indigo);
}

.bg-orange .icon-box {
    background: #fff3e6;
    color: #e67e22;
}

.bg-purple .icon-box {
    background: #f3e8ff;
    color: #8e44ad;
}

.bg-pink .icon-box {
    background: #fde8f0;
    color: #d81b60;
}

.bg-teal .icon-box {
    background: #e0f7fa;
    color: #00838f;
}

/* ===== FUTURE READY PREMIUM ===== */
.future-img-wrap {
    position: relative;
}

.main-student-img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.float-box {
    position: absolute;
    background: #fff;
    padding: 18px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.float1 {
    top: -50px;
    right: 10px;
}

.float2 {
    bottom: -40px;
    left: 55px;
}

.float-box h4 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.float-box p {
    font-size: 13px;
    margin: 0;
    color: #777;
}

.skill-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    color: white;
    font-size: 28px;
}

/* ===== CAREER ORBIT ===== */
.career-luxury {
    background: linear-gradient(135deg, #fef5e7 0%, #fdf0df 100%);
    position: relative;
    overflow: hidden;
}

.career-luxury:before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(rgba(0, 78, 158, 0.08), transparent 70%);
    top: -300px;
    right: -200px;
}

.career-roadmap {
    position: relative;
    min-height: 850px;
}

.student-center {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.student-center:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.15),
        rgba(193, 18, 31, 0.15)
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.student-center img {
    width: 400px;
}

.path-line {
    position: absolute;
    width: 65%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.career-node {
    position: absolute;
    width: 280px;
    background: #fff;
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.career-node:hover {
    transform: translateY(-12px);
}

.career-node h4 {
    color: var(--primary-blue-dark);
    margin-top: 15px;
}

.career-node ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.career-node li {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.career-node li i {
    color: var(--deep-red);
    margin-right: 8px;
}

.node-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    font-size: 24px;
    color: white;
}

/* positioning */

.n1 {
    top: 40px;
    left: 20px;
}

.n2 {
    top: 80px;
    right: 20px;
}

.n3 {
    bottom: 80px;
    left: 20px;
}

.n4 {
    bottom: 50px;
    right: 20px;
}

@media (max-width: 991px) {
    .student-center,
    .career-node {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-bottom: 25px;
    }

    .student-center {
        text-align: center;
        margin-bottom: 40px;
    }

    .student-center img {
        width: 280px;
    }

    .path-line {
        display: none;
    }

    .career-roadmap {
        min-height: auto;
    }
}

.accordion-button {
    font-size: 1.5rem;
    background: linear-gradient(145deg, #fff, #fefaf5);
}

/* learning section */
.learning-luxury {
    background: linear-gradient(180deg, #fff, #f8fafc);
    position: relative;
    overflow: hidden;
}

.learning-image-wrap {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
}

.learning-image-wrap img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.learning-image-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.75), transparent);
    z-index: 1;
}

.learning-float {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    padding: 20px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.learning-float h3 {
    color: var(--deep-red);
    margin: 0;
    font-size: 40px;
}

.learning-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--deep-red);
}

.mini-label {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--elegant-gold);
    display: block;
    margin-bottom: 10px;
}

.learning-box h4 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.ecosystem-box {
    background: linear-gradient(135deg, #07162a 0%, #1d1037 45%, #5e0013 100%);
    border-radius: 40px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.ecosystem-box::before {
    content: "";
    position: absolute;
    height: 450px;
    width: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    right: -100px;
    top: -100px;
}

.startup-content {
    color: white;
}

.small-title {
    letter-spacing: 3px;
    font-size: 12px;
    opacity: 0.7;
}

.startup-content h2 {
    font-size: 50px;
    margin: 20px 0;
    font-family: "Cormorant Garamond", serif;
}

.startup-img {
    max-width: 320px;
}

.journey-step-home {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.journey-step-home i {
    font-size: 28px;
    color: white;
}

.bottom-innovation {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.innovation-mini {
    padding: 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-mini i {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.innovation-program {
    grid-column: span 1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.05)
    );
    padding: 25px;
    border-radius: 30px;
    color: white;
}

@media (max-width: 991px) {
    .bottom-innovation {
        grid-template-columns: 1fr;
    }
}

/* sports css */
.sports-arena {
    background: linear-gradient(135deg, #fef5e7 0%, #fdf0df 100%);
    overflow: hidden;
}

.sports-feature {
    height: 480px;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.sports-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}

.sports-feature:hover img {
    transform: scale(1.08);
}

.sports-overlay {
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 25px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    max-width: 350px;
}

.sports-points div {
    margin-bottom: 15px;
    font-weight: 500;
}

.sports-points i {
    color: var(--deep-red);
    margin-right: 10px;
}

.sport-box {
    padding: 25px 10px;
    text-align: center;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    transition: var(--transition-lux);
    border: 1px solid rgba(233, 196, 106, 0.3);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.sport-box:hover {
    transform: translateY(-12px);
    border-color: var(--elegant-gold);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 2rem;
}

.g-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.g-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.g-item.big {
    grid-row: span 2;
}

.g-item.big img {
    height: 340px;
}

.g-item span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title {
    font-size: 42px;
    font-weight: bold;
}

/* academic framework */
.academic-luxury-v2 {
    background: linear-gradient(135deg, #fef5e7 0%, #fffaf4 100%);
    position: relative;
    overflow: hidden;
}

.academic-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.05),
        rgba(193, 18, 31, 0.05)
    );
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 520px;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.academic-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.academic-right {
    position: relative;
}

.academic-panel {
    position: relative;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: white;
    padding: 28px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 2;
    transition: 0.4s;
}

.academic-panel:hover {
    transform: translateY(-8px);
}

.offset-panel {
    margin-left: 60px;
}

.panel-icon {
    width: 50px;
    height: 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.blue {
    background: linear-gradient(135deg, var(--primary-blue-dark), #0066d4);
}
.purple {
    background: linear-gradient(135deg, #7b2cbf, #9d4edd);
}
.gold {
    background: linear-gradient(135deg, #d4a017, #f4c542);
}
.teal {
    background: linear-gradient(135deg, #008c9e, #00b4d8);
}

.panel-content span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--deep-red);
}

.panel-content p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.academic-bottom-ribbon {
    margin-top: 40px;
    background: linear-gradient(135deg, #0b2545, #3a1238, #7c0017);
    border-radius: 35px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    color: white;
}

.academic-bottom-ribbon-rp {
    margin-top: 40px;
    background: linear-gradient(135deg, #0b2545, #3a1238, #7c0017);
    border-radius: 35px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    color: white;
}

.ribbon-item h3 {
    font-size: 42px;
    margin-bottom: 10px;
}

.ribbon-item p {
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .academic-shell {
        grid-template-columns: 1fr;
        padding: 35px;
    }
    .academic-main-title {
        font-size: 52px;
    }
    .offset-panel {
        margin-left: 0;
    }
    .academic-bottom-ribbon {
        grid-template-columns: 1fr 1fr;
    }
    .academic-bottom-ribbon-rp {
        grid-template-columns: 1fr 1fr;
    }
}

/* admission css */
.admission-premium {
    background: linear-gradient(135deg, #fef5e7, #fffaf4);
}

.admission-lux-box {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.admission-lux-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(rgba(0, 78, 158, 0.08), transparent 70%);
    right: -120px;
    top: -120px;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.step-row:last-child {
    border: none;
}

.step-row span {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    color: white;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.step-row h5 {
    margin-bottom: 6px;
    color: var(--primary-blue-dark);
}

.step-row p {
    margin: 0;
    color: #666;
}

/* ===== ULTRA PREMIUM FOOTER ===== */
.footer-ultra-premium {
    position: relative;
    background: linear-gradient(135deg, #07162a 0%, #1d1037 45%, #5e0013 100%);
    padding-top: 120px;
    overflow: hidden;
    color: white;
}

/* glowing circles */
.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
}

.footer-glow-1 {
    width: 450px;
    height: 450px;
    background: var(--primary-blue-dark);
    top: -120px;
    left: -120px;
}

.footer-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--deep-red);
    bottom: -200px;
    right: -120px;
}

/* logo */

.footer-logo {
    height: 75px;
    margin-bottom: 28px;
}

.footer-desc {
    line-height: 1.9;
    opacity: 0.8;
    padding-right: 20px;
}

.footer-heading {
    font-size: 30px;
    margin-bottom: 30px;
    position: relative;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 65px;
    height: 3px;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--elegant-gold), #fff);
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.4s;
    position: relative;
}

.footer-links a:hover {
    padding-left: 10px;
    color: white;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 18px;
    transition: 0.4s;
}

.footer-socials a:hover {
    transform: translateY(-8px);
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
}

.footer-contact-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgb(255 255 255 / 38%);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    .footer-heading {
        margin-top: 10px;
    }
}

.apply-now {
    position: fixed;
    top: 450px;
    right: -35px;
    z-index: 9;
}

button.btn.btn-primary.enquire_now2 {
    background-color: var(--elegant-gold-dark);
    color: #fff;
    font-weight: 600;
    transform: rotate(-90deg);
    border: none;
    border-radius: 0 !important;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* about us css */

.btn-luxury {
    background: linear-gradient(
        95deg,
        var(--primary-blue-dark) 0%,
        var(--deep-red) 100%
    );
    color: white;
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 600;
    transition: var(--transition-lux);
    border: none;
    box-shadow: 0 5px 15px rgba(155, 34, 38, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -8px rgba(155, 34, 38, 0.5);
    color: white;
}

.btn-outline-gold {
    border: 1.5px solid var(--elegant-gold);
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    color: var(--primary-blue-dark);
    transition: var(--transition-lux);
    display: inline-block;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue-dark);
    border-color: var(--elegant-gold);
    transform: translateY(-2px);
}

/* HERO specific */
.hero-banner {
    background: linear-gradient(
        115deg,
        rgba(11, 37, 69, 0.92) 0%,
        rgba(107, 4, 15, 0.85) 100%
    );
    background-size: cover;
    background-position: center 30%;
    padding: 100px 0 100px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--elegant-gold) !important;
}

.badge-approval {
    background: rgba(255, 255, 240, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* philosophy row */
.philosophy-block {
    background: linear-gradient(145deg, #ffffff, #fefaf5);
    border-radius: 38px;
    padding: 38px 28px;
    transition: 0.3s;
    height: 100%;
}

/* legacy section premium background */
.legacy-strip {
    background: linear-gradient(135deg, #07162a 0%, #1d1037 45%, #5e0013 100%);
    border-radius: 48px;
    padding: 60px 40px;
    color: white;
}

/* values wall */
.value-card-premium {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(199, 162, 82, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.value-card-premium::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(199, 162, 82, 0.08);
    right: -70px;
    top: -70px;
}

.value-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--elegant-gold);
}

.value-icon {
    width: 75px;
    height: 75px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
}

.value-card-premium h4 {
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-premium p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* leadership 3d cards */
.leader-card-3d {
    background: white;
    border-radius: 42px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: 0.4s;
}

.leader-card-3d:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: var(--shadow-elegant);
}

.avatar-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, var(--primary-blue-light), #e0e8f2);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--primary-blue-dark);
}

/* advantage grid */
.advantage-tile {
    background: white;
    border-radius: 30px;
    padding: 32px 18px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.advantage-tile:hover {
    border-bottom-color: var(--deep-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.journey-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.journey-road {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.journey-step {
    position: absolute;
    z-index: 2;
    text-align: center;
}

.journey-content {
    width: 180px;
    border: 1px solid rgba(233, 196, 106, 0.3);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-lux);
}

.journey-content:hover {
    transform: translateY(-12px);
    border-color: var(--elegant-gold);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.2);
}

.journey-content h6 {
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 8px;
}

.journey-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.journey-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin: auto;
    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.journey-circle::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.blue {
    background: var(--primary-blue-dark);
}

.gold {
    background: var(--elegant-gold);
}

.red {
    background: var(--deep-red);
}

/* Exact positions */

.step-1 {
    left: 5%;
    bottom: 54px;
}

.step-2 {
    left: 28%;
    bottom: 172px;
}

.step-3 {
    left: 55%;
    top: 116px;
}

.step-4 {
    right: 0%;
    top: 14px;
}

/* Mobile */

@media (max-width: 1200px) {
    .journey-wrapper {
        height: auto;
    }

    .journey-road {
        display: none;
    }

    .journey-step {
        position: relative;
        inset: auto;
        margin-bottom: 40px;
    }

    .journey-content {
        width: 100%;
        max-width: 300px;
        margin: auto auto 15px;
    }
}

.aeren-advantage {
    background: linear-gradient(180deg, #ffffff, #faf7f2);
    position: relative;
    overflow: hidden;
}

.adv-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--elegant-gold);
    color: var(--deep-red);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
}

.featured-advantage {
    background: linear-gradient(
        135deg,
        rgba(199, 162, 82, 0.15),
        rgba(199, 162, 82, 0.05)
    );
    border-left: 5px solid var(--elegant-gold);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.featured-advantage h4 {
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.mini-stat {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mini-stat h3 {
    color: var(--deep-red);
    margin: 0;
    font-size: 2rem;
}

.mini-stat span {
    color: #666;
}

.adv-item {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}

.adv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.adv-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 162, 82, 0.15);
    color: var(--deep-red);
    font-size: 24px;
    flex-shrink: 0;
}

.adv-item h4 {
    color: var(--primary-blue-dark);
    margin-bottom: 8px;
}

.adv-number {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 70px;
    font-weight: 800;
    color: var(--deep-red);
    opacity: 0.05;
}

.recognition-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.recognition-pill {
    background: #fff;
    border-radius: 50px;
    padding: 16px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #2c3e50;
}

.recognition-pill i {
    margin-right: 10px;
    color: var(--deep-red);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
}

.value-dot {
    width: 10px;
    height: 10px;
    background: var(--deep-red);
    border-radius: 50%;
}

.signature-img {
    font-family: "Brush Script MT", cursive;
    font-size: 32px;
    color: var(--elegant-gold);
    margin-bottom: 10px;
}

.recruiter-highlight {
    background: radial-gradient(
        circle at 10% 20%,
        rgb(11, 37, 69) 0%,
        rgb(107, 4, 15) 100%
    );
    color: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    height: 100%;
}

.recruiter-highlight h3 {
    color: #fff;
}

.recruiter-highlight .icon-shine {
    margin-bottom: 25px;
}

.recruiter-tile {
    background: #fff;
    border: 1px solid rgba(199, 162, 82, 0.25);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue-dark);
    transition: 0.35s;
    height: 100%;
}

.recruiter-tile:hover {
    transform: translateY(-8px);
    border-color: var(--elegant-gold);
}

.recruiter-strip {
    background: #fff;
    border-radius: 50px;
    padding: 18px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue-dark);
    border: 1px solid rgba(199, 162, 82, 0.25);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--deep-red-soft);
    border-radius: 50%;
    color: var(--deep-red);
    font-size: 20px;
    transition: all 0.3s;
    margin-right: 12px;
}

.internship-luxury{
    background:linear-gradient(180deg,#fff,#faf7f2);
}

.internship-card{
    text-align:center;
}

.company-wall{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.company-wall span{
    padding:12px 22px;
    background:#fff;
    border-radius:50px;
    border:1px solid rgba(199,162,82,.25);
    font-weight:600;
    color:var(--primary-blue-dark);
    transition:.3s;
}

.company-wall span:hover{
    transform:translateY(-4px);
    border-color:var(--elegant-gold);
}

.internship-credit-box{
    background:linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    color:#fff;
    text-align:center;
    padding:30px;
    border-radius:25px;
}

/* ===========================
   MMS CURRICULUM PREMIUM
=========================== */

.curriculum-luxury {
    position: relative;
    overflow: hidden;
}

.curriculum-luxury::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(
        rgba(0, 78, 158, .08),
        transparent 70%
    );
}

.curriculum-luxury::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -180px;
    left: -180px;
    border-radius: 50%;
    background: radial-gradient(
        rgba(193, 18, 31, .08),
        transparent 70%
    );
}

.curriculum-subtitle {
    max-width: 750px;
    margin: auto;
    color: var(--text-muted);
    font-size: 18px;
}

/* TOP INFO BOXES */

.info-box-lux {
    background: rgba(255,255,255,.95);
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(199,162,82,.18);
    box-shadow: var(--shadow-sm);
    transition: .4s;
    height: 100%;
}

.info-box-lux:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.info-box-lux h6 {
    color: var(--deep-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 10px;
}

.info-box-lux h3 {
    color: var(--primary-blue-dark);
    margin: 0;
}

/* ELIGIBILITY */

.eligibility-card {
    background: white;
    border-radius: 35px;
    padding: 40px;
    border-left: 5px solid var(--elegant-gold);
    box-shadow: var(--shadow-sm);
}

.eligibility-card h4 {
    color: var(--primary-blue-dark);
    margin-bottom: 25px;
}

/* TABS */

.curriculum-tabs {
    gap: 12px;
}

.curriculum-tabs .nav-link {
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    background: rgba(255,255,255,.8);
    color: var(--primary-blue-dark) !important;
    font-weight: 700;
    border: 1px solid rgba(199,162,82,.20) !important;
    transition: .35s;
}

.curriculum-tabs .nav-link:hover {
    transform: translateY(-2px);
}

.curriculum-tabs .nav-link.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red)
    );
    color: #fff !important;
    box-shadow: 0 15px 30px rgba(193,18,31,.18);
}

.curriculum-download {
    background: #fff;
    color: var(--primary-blue-dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(199,162,82,.20);
    box-shadow: var(--shadow-sm);
}

.curriculum-download:hover {
    color: var(--deep-red);
}

/* SEMESTER CARD */

.semester-card-lux {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    padding: 40px;
    border: 1px solid rgba(199,162,82,.20);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.semester-card-lux::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(199,162,82,.08);
}

.semester-card-lux h4 {
    color: var(--primary-blue-dark);
    margin-bottom: 25px;
}

/* SEMESTER CHIP */

.semester-chip {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sem-1 {
    background: rgba(0,78,158,.10);
    color: var(--primary-blue-dark);
}

.sem-2 {
    background: rgba(193,18,31,.10);
    color: var(--deep-red);
}

.sem-3 {
    background: rgba(199,162,82,.15);
    color: var(--elegant-gold-dark);
}

.sem-4 {
    background: #f7f1ff;
    color: #6a1b9a;
}

/* COURSE LIST */

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

.course-list li {
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* ELECTIVE */

.elective-box-lux {
    background: linear-gradient(
        135deg,
        rgba(199,162,82,.12),
        rgba(199,162,82,.04)
    );
    border-radius: 28px;
    padding: 30px;
}

.elective-box-lux h5 {
    color: var(--deep-red);
    margin-bottom: 20px;
}

/* SPECIALIZATION */

.specialization-premium {
    background: white;
    border-radius: 35px;
    padding: 35px;
    height: 100%;
    border: 1px solid rgba(199,162,82,.18);
    box-shadow: var(--shadow-sm);
    transition: .4s;
}

.specialization-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.finance {
    border-top: 4px solid var(--primary-blue-dark);
}

.hr {
    border-top: 4px solid var(--deep-red);
}

.marketing {
    border-top: 4px solid var(--elegant-gold);
}

.spec-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--elegant-gold-light);
    color: var(--deep-red);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MOBILE */

@media(max-width:991px){

    .curriculum-tabs{
        flex-wrap:wrap;
    }

    .curriculum-tabs .nav-link{
        width:100%;
    }

    .semester-card-lux{
        padding:25px;
    }
}

.specialization-premium{
    height:100%;
}

.specialization-premium .course-list{
    max-height:450px;
    overflow-y:auto;
    padding-right:10px;
}

.specialization-premium .course-list::-webkit-scrollbar{
    width:6px;
}

.specialization-premium .course-list::-webkit-scrollbar-thumb{
    background:var(--elegant-gold);
    border-radius:20px;
}