:root {
    --blue-1: #3385c2;
    --blue-2: #5183b8;
    --purple: #8c52fd;
    --orange: #fd904e;
    --gradient-primary: linear-gradient(135deg, var(--blue-1) 0%, var(--purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%);
    --gradient-accent: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-alt: 'Lato', sans-serif;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
}

body {
    font-family: var(--font-body);
    color: #2c3e50;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fbfdff;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #1a2a3a;
}

.inner-banner h1 {
    color: #fff;
}

.section-padding {
    padding: 40px 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header & Sticky */
.top-bar {
    background: var(--gradient-primary);
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-alt);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: none;
    transition: all 0.3s;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    color: var(--orange);
    margin-right: 5px;
}

.main-header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-header-wrapper.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sticky-header .top-bar {
    display: none;
}

/* Navigation */
.navbar-brand img {
    /* height: 60px; */
    width: 300px;
    transition: height 0.3s;
}

.sticky-header .navbar-brand img {
    /* height: 50px; */
    width: 300px;
}

.nav-link {
    font-family: var(--font-alt);
    font-weight: 700;
    color: #333 !important;
    padding: 0px 18px !important;
    transition: all 0.3s;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-1) !important;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
    margin-top: 5px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@media(max-width : 1091px) {
    .navbar-brand img {
        width: 180px;
    }
}

/* Unified Responsive Nav */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 999999;
        display: block !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 0 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .close-nav {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--blue-1);
        cursor: pointer;
        z-index: 2001;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.3s;
    }

    .close-nav:hover {
        background: rgba(51, 133, 194, 0.1);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        padding: 0 20px;
    }

    .nav-item {
        border-bottom: 1px solid #f9f9f9;
        margin-bottom: 5px;
    }

    .nav-link {
        padding: 15px 10px !important;
        font-size: 16px;
    }

    .nav-link::after {
        display: none !important;
    }

    .dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        background: #fcfcfc;
        margin: 0 !important;
        padding: 0 15px 15px;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* .nav-buttons {
        display: none !important;
    } */
}

.fs-xs {
    font-size: 10px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px !important;
    animation: slideUp 0.3s ease-out;
}

.dropdown-item {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: #f0f7ff;
    color: var(--blue-1);
    transform: translateX(5px);
}

/* Desktop Hover Menu */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
}

/* Unified Header Overlays & Body State */
body.nav-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.hamburger-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--blue-1);
    cursor: pointer;
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-links li {
    border-bottom: 1px solid #f9f9f9;
}

.mobile-links li a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-alt);
    transition: all 0.3s;
}

.mobile-links li a:hover,
.mobile-links li a.active {
    background: #f0f7ff;
    color: var(--blue-1);
}

.rotate-icon {
    transform: rotate(180deg);
}

.fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    background: #fcfcfc;
}

.mobile-submenu li a {
    padding-left: 45px;
    font-size: 14px;
    font-weight: 500;
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
}

.btn-apply {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.btn-apply:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(140, 82, 253, 0.4);
}

.btn-pro {
    background: transparent;
    border: 2px solid var(--blue-1);
    color: var(--blue-1);
    padding: 5px ;
    border-radius: 6px;
    font-weight: 700;
    /* margin-left: 15px; */
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-pro:hover {
    background: var(--blue-1);
    color: #fff;
}

/* Slider */
.hero-slider {
    min-height: 600px;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    height: 100%;
    min-height: 600px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 15px;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--blue-1);
    border-color: var(--blue-1);
    transform: scale(1.1);
}

.hero-main-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-form-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    pointer-events: none;
}

.hero-form-wrapper .container {
    height: 100%;
}

.banner-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    max-width: 400px;
    margin-left: auto;
}

.banner-form-card--wide {
    max-width: 520px;
    padding: 28px 30px 24px;
}

.form-header h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 20px;
    font-size: 1.45rem;
}

.form-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* 2-Column Form Grid */
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-grid-item {
    min-width: 0;
}

.banner-form-card .form-control,
.banner-form-card .form-select {
    padding: 11px 14px;
    background: #fff;
    border: 1px solid #d0d7de;
    font-family: var(--font-body);
    font-size: 13.5px;
    border-radius: 6px;
    color: #2c3e50;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}

.banner-form-card .form-control::placeholder {
    color: #8a929a;
}

.banner-form-card .form-select {
    color: #8a929a;
}

.banner-form-card .form-select option:not([value="0"]) {
    color: #333;
}

.banner-form-card .form-control:focus,
.banner-form-card .form-select:focus {
    background: #fff;
    border-color: var(--blue-1);
    box-shadow: 0 0 0 3px rgba(51, 133, 194, 0.12);
    outline: none;
}

/* Form Checkbox */
.banner-form-card .form-check {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-form-card .form-check-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: #2c3e50;
    font-weight: 500;
    cursor: pointer;
}

.banner-form-card .form-check-input {
    border-color: #b0b8c1;
    margin-top: 3px;
}

.banner-form-card .form-check-input:checked {
    background-color: var(--blue-1);
    border-color: var(--blue-1);
}

/* Form Submit Button */
.btn-submit-form {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 140px;
}

.btn-submit-form:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(140, 82, 253, 0.4);
}



.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s both;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
}

/* Responsive Banner */
@media (max-width: 991px) {
    .hero-slider {
        height: 60vh;
    }

    .hero-form-wrapper .container {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: auto;
        min-height: 400px;
    }

    .hero-slide {
        position: relative;
        height: 400px;
        /* Fixed height on mobile for slides */
        opacity: 0;
        display: none;
        /* Hide by default */
    }

    .hero-slide.active {
        opacity: 1;
        display: flex;
    }

    .hero-main-wrapper {
        display: block;
        /* Normal block flow */
    }

    .hero-form-wrapper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        pointer-events: auto;
        padding: 70px 15px;
        background: var(--gradient-primary);
        z-index: 10;
        transform: none;
    }

    .banner-form-card {
        margin: 0 auto;
        max-width: 520px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid #e0eaf3;
        background: #fff;
        padding: 30px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding: 20px;
    }

    .hero-content p {
        margin: 0 auto 20px;
    }
}

/* Footer */
footer {
    background: #0d1b2a;
    color: #fff;
    padding: 40px 0 20px;
    font-family: var(--font-alt);
}

.footer-logo {
    /* height: 75px; */
    width: 100%;
    /* padding: 10px; */
    background-color: #fff;
    margin-bottom: 25px;
    filter: brightness(1.2);
}

.footer-desc {
    color: #b0c4de;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.footer-links li i {
    margin-right: 12px;
    color: var(--blue-1);
    font-size: 14px;
}

.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff !important;
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Page Specific Styles Migrated from HTML */
.bg-light-blue {
    background-color: #f0f7ff;
}

.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 24px;
}

.banner-tag {
    background: var(--orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.inner-banner {
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('../images/new-ban.jpg') center/cover no-repeat;
    padding: 120px 0 60px;
    color: #fff;
    text-align: center;
}

.mission-vision-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vision-icon,
.mission-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.vision-icon {
    color: var(--orange);
}

.mission-icon {
    color: var(--blue-1);
}

.director-img-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.director-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    z-index: -1;
    border-radius: 10px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--blue-1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 30px;
    color: var(--blue-1);
    margin-bottom: 15px;
}

.highlight-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.tool-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--purple);
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateX(5px);
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f3f5;
}

.faq-answer {
    padding: 20px;
    display: none;
    background: #fff;
}

.admission-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.admission-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.admission-step::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 25px;
    bottom: -30px;
    width: 2px;
    background: #eee;
}

.admission-step:last-child::after {
    display: none;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 30px;
    color: var(--blue-1);
    margin-bottom: 20px;
}

.form-control {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 15px rgba(51, 133, 194, 0.15);
    border-color: var(--blue-1);
}

.send-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    box-shadow: 0 5px 15px rgba(140, 82, 253, 0.4);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .nav-buttons {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .glass-info-box p {
        font-size: 16px !important;
    }

    .info-box-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media (max-width: 375px) {
    .glass-info-box p {
        font-size: 12px !important;
    }
}

/* --- About Professional Section --- */
.about-professional-section {
    padding: 50px 0;
    overflow: hidden;
}

.text-blue-1 {
    color: var(--blue-1);
}

.section-tag {
    display: inline-block;
    color: var(--blue-1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--blue-1);
}

.content-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #1a2a3a;
    font-weight: 500;
    line-height: 1.6;
}

.about-paragraph {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}

.btn-professional {
    background: var(--blue-1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-professional:hover {
    background: #266da3;
    color: #fff;
    box-shadow: 0 10px 20px rgba(51, 133, 194, 0.2);
    transform: translateY(-2px);
}

.legacy-years {
    display: flex;
    flex-direction: column;
}

.legacy-years .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-1);
    line-height: 1;
}

.legacy-years .text {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.geometric-accents .accent-line {
    position: absolute;
    background: rgba(51, 133, 194, 0.05);
    z-index: 0;
}

.line-1 {
    width: 300px;
    height: 2px;
    top: 20%;
    left: -100px;
    transform: rotate(-45deg);
}

.line-2 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(51, 133, 194, 0.03);
    bottom: 5%;
    right: 5%;
    border-radius: 50%;
}

.about-visual-block {
    position: relative;
}

.image-frame {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    display: inline-block;
    border-radius: 4px;
}

.stats-float-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    border-left: 5px solid var(--blue-1);
    border-radius: 4px;
    min-width: 200px;
}

.stats-item .stats-val {
    font-size: 22px;
    font-weight: 800;
    color: #1a2a3a;
    line-height: 1.2;
}

.stats-item .stats-label {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

@media (max-width: 991px) {
    .stats-float-box {
        position: static;
        margin-top: 30px;
        left: 0;
        bottom: 0;
    }

    .about-text-content {
        padding-right: 0 !important;
    }
}

/* --- Why Choose Professional Section --- */
.why-choose-professional {
    background: linear-gradient(rgba(10, 25, 47, 0.92), rgba(10, 25, 47, 0.92)), url('../images/why-choose.png') center/cover no-repeat fixed;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 50px 0;
}

.why-choose-professional .section-tag {
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-weight: 700;
    padding-left: 50px;
    position: relative;
    display: table;
}

.why-choose-professional .section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.why-choose-professional h2 {
    color: #fff;
}

.professional-point-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px 30px 30px;
    border-radius: 4px;
    /* More institutional square-ish look */
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.professional-point-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.professional-point-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--blue-1);
    transition: width 0.4s ease;
}

.professional-point-card:hover::after {
    width: 100%;
}

.point-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    background: var(--blue-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
}

.point-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    margin-top: 10px;
}

.point-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

/* --- Leading Through AI Section --- */
.leading-ai-section {
    background: linear-gradient(rgba(10, 25, 47, 0.88), rgba(10, 25, 47, 0.88)),
        url('../images/DSC00243.JPG') center/cover no-repeat;
    background-attachment: fixed;
    padding: 50px 0;
}

.text-blue-light {
    color: #4da3ff;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.geometric-bg .shape {
    position: absolute;
    background: rgba(77, 163, 255, 0.05);
    /* Very subtle brand color */
}

.shape-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -250px;
    left: -100px;
    border: 2px solid rgba(77, 163, 255, 0.03);
    background: none !important;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(77, 163, 255, 0.03), transparent) !important;
    bottom: 10%;
    right: 5%;
    transform: rotate(45deg);
}

.shape-3 {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    /* Gold touch */
    top: 20%;
    right: 15%;
    border-radius: 30px;
}

.ribbon-brand {
    position: absolute;
    top: 40px;
    right: -50px;
    background: var(--blue-1);
    color: #fff;
    padding: 10px 100px;
    transform: rotate(45deg);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.ai-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.ai-content-point {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-content-point:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(77, 163, 255, 0.2);
    transform: translateY(-5px);
}

.ai-point-line {
    width: 40px;
    height: 2px;
    background: #ffd700;
    margin-bottom: 20px;
}

.ai-content-point p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

/* --- Horizontal Program Card --- */
.horizontal-program-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #eee !important;
}

.horizontal-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-img-wrapper {
    min-height: 350px;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.6s ease;
}

.horizontal-program-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.duration-badge {
    background: #f0f7ff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--blue-1);
}

.feature-icon-sm {
    width: 32px;
    height: 32px;
    background: rgba(51, 133, 194, 0.1);
    color: var(--blue-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.text-justify {
    text-align: justify;
}

@media (max-width: 991px) {
    .card-img-wrapper {
        min-height: 250px;
    }

    .ai-content-grid {
        grid-template-columns: 1fr;
    }

    .ribbon-brand {
        top: 20px;
        right: -60px;
        font-size: 12px;
        padding: 8px 80px;
    }
}

/* Programs Section Override */
.horizontal-program-card .card-text {
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

/* Redesigned Inner Banner with Form */
.inner-banner-redesign {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('../images/DSC00223.JPG') center/cover no-repeat;
    color: #fff;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('../images/DSC00223.JPG') center/cover no-repeat;
    color: #fff;
}

/* Glass Info Box Styles */
.info-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.glass-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px 20px;
    position: relative;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.glass-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.glass-info-box i {
    font-size: 20px;
    color: var(--orange);
    position: absolute;
    top: -10px;
    left: -10px;
    margin: 0;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.glass-info-box p {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    margin-top: 5px;
}

.box-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Banner Form Adjustments for Inner Page */
.banner-form-card.inner-page-form {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    /* Spacing on mobile if stacked */
}

@media (min-width: 992px) {
    .banner-form-card.inner-page-form {
        margin-top: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .inner-banner-redesign {
        text-align: center;
    }

    .inner-banner-redesign h1 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .info-box-grid {
        margin-bottom: 40px;
        text-align: left;
        /* Keep boxes internal alignment */
    }

    .glass-info-box {
        text-align: left;
    }
}

/* Brochure Modal Styling */
.custom-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.custom-modal .modal-header {
    background: #f0f7ff;
    padding: 20px 30px;
}

.custom-modal .modal-title {
    color: var(--blue-1);
    font-size: 1.5rem;
}

.custom-modal .modal-body {
    padding: 30px;
    background: #fff;
}

.custom-modal .form-control,
.custom-modal .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e6ed;
    background: #fcfcfc;
}

.custom-modal .form-control:focus,
.custom-modal .form-select:focus {
    border-color: var(--blue-1);
    box-shadow: 0 0 0 4px rgba(51, 133, 194, 0.1);
    background: #fff;
}

.custom-modal .form-label {
    font-weight: 600;
    color: #1a2a3a;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Custom Banner Styling */
.banner-program-title {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.banner-action-btn {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
}

.form-submit-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .banner-program-title {
        font-size: 28px;
        /* Adjustment for mobile */
    }
}

/* --- Restructured Overview Section --- */
.overview-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.overview-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.overview-content {
    flex: 1;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.overview-content .lead {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.eligibility-box {
    width: 40%;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--orange);
    position: relative;
    z-index: 2;
}

.eligibility-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

.eligibility-list li i {
    color: var(--blue-1);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 25px;
}

.eligibility-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--blue-1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.eligibility-btn:hover {
    background: var(--orange);
    color: #fff;
}

/* --- Who Is This For Section --- */
.who-for-section {
    padding: 80px 0;
    background: #fff;
}

.who-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.who-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.who-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.who-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(51, 133, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.who-card:hover .icon-wrapper {
    background: var(--blue-1);
}

.who-card .icon-wrapper i {
    font-size: 28px;
    color: var(--blue-1);
    transition: all 0.3s ease;
}

.who-card:hover .icon-wrapper i {
    color: #fff;
}

.who-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.who-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 991px) {
    .overview-container {
        flex-direction: column;
        gap: 40px;
    }

    .eligibility-box {
        width: 100%;
    }

    .who-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .who-for-grid {
        grid-template-columns: 1fr;
    }

    .eligibility-box {
        padding: 30px 20px;
    }
}

/* --- Who Is This For (Circular Design) --- */
.who-circles-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.who-circle-card {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(51, 133, 194, 0.4);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.who-circle-card:hover {
    border-color: var(--blue-1);
    box-shadow: 0 15px 40px rgba(51, 133, 194, 0.15);
    transform: translateY(-5px);
}

.who-circle-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(51, 133, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.who-circle-card i {
    font-size: 24px;
    color: var(--blue-1);
}

.who-circle-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

/* Circle Dots */
.circle-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--blue-1);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(51, 133, 194, 0.2);
}

.dot-top-right {
    top: 15%;
    right: 10%;
}

.dot-bottom-left {
    bottom: 15%;
    left: 10%;
}

.dot-top-left {
    top: 15%;
    left: 10%;
}

/* Responsive - Stack/Fluid on Mobile */
@media (max-width: 991px) {
    .who-circle-card {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .who-circles-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .who-circle-card {
        width: 100%;
        height: auto;
        border-radius: 16px;
        /* Switch to rounded rect on mobile for better text fit if needed, or keep circle if text is short. Let's keep circle but allow auto height if text overflows? No, user wants exactly like screenshot. Stick to fixed size or flex basis. */
        min-height: 250px;
        aspect-ratio: auto;
    }
}

/* --- Who Is This For (Image + List Design) --- */
.who-for-section {
    background: linear-gradient(135deg, #0a192f 0%, #3385c2 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.who-image-wrapper {
    position: relative;
    padding-bottom: 20px;
    /* Space for accent if needed */
    padding-left: 20px;
}

.who-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.who-image-wrapper::after {
    /* content: ''; */
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 140px;
    height: 140px;
    border-left: 20px solid #ffb600;
    border-bottom: 20px solid #ffb600;
    border-bottom-left-radius: 35px;
    /* Ensures inner corner is rounded */
    z-index: 3;
}

.who-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.who-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.who-list-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.who-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.who-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.who-icon-box i {
    font-size: 20px;
    color: var(--orange);
}

.who-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

/* --- Industry Insights (Glassy Design) --- */
.industry-insights-section {
    background: linear-gradient(180deg, #020c1b 0%, #0a192f 100%);
    padding: 40px 0;
    position: relative;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.insight-stat {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffb600, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.insight-desc {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.insight-brand {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
}

/* Brand Specifics */
.brand-forbes-icon {
    color: #ffffff;
}

.brand-mckinsey-icon {
    color: #051c2c;
    /* Or White/Blue if dark bg */
    color: #4facfe;
}

.brand-linkedin-icon {
    color: #0077b5;
}

.brand-forbes {
    color: #ffffff;
    font-family: serif;
}

.brand-mckinsey {
    color: #ffffff;
}

.brand-linkedin {
    color: #0077b5;
}

/* Netflix Brand */
.brand-netflix-icon {
    color: #E50914;
}

.brand-netflix {
    color: #E50914;
}

/* Font Size Adjustment for Longer Text */
.insight-desc.small {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Key Benefits Section --- */
.benefits-section {
    background: #f0f4ff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Circle — top right */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 80px;
    width: 120px;
    height: 120px;
    border: 12px solid rgba(51, 133, 194, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: geo-float 7s ease-in-out infinite alternate;
}

/* Square — bottom left */
.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 60px;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(255, 182, 0, 0.2);
    transform: rotate(45deg);
    pointer-events: none;
    animation: geo-float 9s ease-in-out infinite alternate-reverse;
}

@keyframes geo-float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-20px) rotate(15deg);
    }
}

.benefit-card {
    background: #fff;
    border: 1px solid #e0e8f5;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    background: #fff;
    border-color: rgba(51, 133, 194, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(51, 133, 194, 0.12);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--blue-1), #3385c2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.benefit-card p {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

/* --- Skills Section --- */
.skills-section {
    background: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(51, 133, 194, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid rgba(51, 133, 194, 0.2);
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3a5c;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: default;
}

.skill-tag:hover {
    background: var(--blue-1);
    color: #fff;
    border-color: var(--blue-1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(51, 133, 194, 0.3);
}

.skill-tag i {
    font-size: 1.1rem;
    color: var(--blue-1);
    transition: color 0.3s ease;
}

.skill-tag:hover i {
    color: #fff;
}

/* ============================================================   Program Highlights Section — Two-Column Redesign   ============================================================ */
.highlights-section {
    background: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* ---- Geometric Background Accents ---- */
.hl-geo {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hl-geo-circle-lg {
    width: 420px;
    height: 420px;
    border: 40px solid rgba(51, 133, 194, 0.06);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    animation: hl-float 10s ease-in-out infinite alternate;
}

.hl-geo-ring {
    width: 220px;
    height: 220px;
    border: 18px solid rgba(253, 144, 78, 0.1);
    border-radius: 50%;
    bottom: 60px;
    left: 38%;
    animation: hl-float 13s ease-in-out infinite alternate-reverse;
}

.hl-geo-dot-grid {
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, rgba(51, 133, 194, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    top: 60px;
    left: 42%;
    opacity: 0.6;
}

@keyframes hl-float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-22px) rotate(12deg);
    }
}

/* ---- Inner Wrapper — left sets height, right is absolute ---- */
.hl-inner-wrap {
    position: relative;
    z-index: 1;
}

/* ---- LEFT Column — normal flow, pads right to leave room for image panel ---- */
.hl-left {
    width: 65%;
    padding: 70px 0% 70px 5%;
    /* right padding reserves 45% + small gap for the absolutely-positioned right panel */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.hl-heading {
    margin-bottom: 36px;
}

.hl-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hl-subtitle {
    color: #000;
    font-size: 1rem;
    margin: 0;
}

/* ---- List of Highlights ---- */
.hl-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 0;
}

.hl-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(51, 133, 194, 0.1);
    transition: background 0.25s ease;
}

.hl-item:first-child {
    padding-top: 0;
}

.hl-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Icon */
.hl-icon-wrap {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--blue-1) 0%, #5b6ed4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.25s ease;
}

.hl-item:hover .hl-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
}

/* Text */
.hl-text h5 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.hl-text p {
    font-size: 0.88rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* ---- RIGHT Panel — absolutely positioned on the right side of the section ---- */
.hl-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    /* always spans full section height — no clipping */
    overflow: hidden;
    z-index: 2;
}

/* Stacked image container — identical to parent so images are pinned inside it */
.hl-image-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pattern: covers the entire panel as a seamless background layer */
.hl-pattern-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    mix-blend-mode: multiply;
    z-index: 1;
}

/* Girl: anchored to the very bottom of the panel, never cut off */
.hl-girl-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 2;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .hl-left {
        padding: 60px 48% 60px 4%;
    }
}

/* Tablet & Mobile: stack vertically; right panel becomes a normal block */
@media (max-width: 991px) {
    .hl-left {
        padding: 50px 24px 40px;
        /* no right-pad needed — right panel goes below */
        width: 100%;
    }

    /* On mobile the right panel exits absolute mode and sits below content */
    .hl-right {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 420px;
        overflow: hidden;
    }

    .hl-image-stack {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hl-pattern-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.55;
        mix-blend-mode: multiply;
        z-index: 1;
    }

    .hl-girl-img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
        z-index: 2;
    }
}

@media (max-width: 575px) {
    .hl-right {
        height: 320px;
    }

    .hl-list {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }

    .hl-heading h2 {
        font-size: 1.6rem;
    }

    .hl-item {
        gap: 14px;
        padding: 13px 0;
    }

    .hl-icon-wrap {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
    }
}

/* --- Tools Section --- */
.tools-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.tool-card-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.tool-card-new:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 182, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.tool-icon-wrap {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: linear-gradient(135deg, #ffb600, #ff8c00);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.tool-content h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tool-purpose {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffb600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tool-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    /* font-size: 0.92rem; */
    line-height: 1.6;
    margin: 0;
}

/* --- Program Outcome Grids --- */
/* Top row: 4 equal columns */
.outcome-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* Bottom row: 3 equal columns */
.outcome-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Tablet: 2 columns for both grids */
@media (max-width: 991px) {

    .outcome-grid-4,
    .outcome-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 575px) {

    .outcome-grid-4,
    .outcome-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================   Tools & Rationale Table Section   ============================================================ */
.tools-table-section {
    background: linear-gradient(135deg, #0a3d3d 0%, #0d5959 55%, #062e2e 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Geometric decorative element 1 — large blurred circle, top-right */
.tools-table-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Geometric decorative element 2 — medium ring outline, bottom-left */
.tools-table-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

/* Geometric accent spans */
.tts-geo {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Diamond — rotated square outline, centre-left */
.tts-geo-diamond {
    left: 4%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 90px;
    height: 90px;
    border: 3px solid rgba(255, 182, 0, 0.18);
    border-radius: 6px;
}

/* Dot grid — small repeating dots, top-centre */
.tts-geo-dots {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.6;
}

.tools-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.tools-table-header {
    text-align: center;
    margin-bottom: 48px;
}

.tools-table-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.tools-table-header h2 span {
    color: #ffb600;
}

/* Horizontal scroll wrapper for small screens */
.tools-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tools-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

/* Header row */
.tools-table thead tr {
    background: linear-gradient(90deg, #ffb600 0%, #ff8c00 100%);
}

.tools-table thead th {
    padding: 18px 22px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-align: left;
    white-space: nowrap;
}

/* Body rows */
.tools-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease;
}

.tools-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.tools-table tbody tr:hover {
    background: rgba(255, 182, 0, 0.06);
}

.tools-table tbody td {
    padding: 18px 22px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    vertical-align: top;
    line-height: 1.65;
}

/* Tool name column — bold & white */
.tt-tool {
    font-weight: 700;
    color: #fff !important;
    width: 22%;
    font-size: 0.875rem !important;
}

/* Purpose column — styled orange badge */
.tt-purpose {
    width: 22%;
}

.tt-purpose::before {
    /* content: ''; */
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffb600;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Mobile: card layout */
@media (max-width: 575px) {
    .tools-table-section {
        padding: 50px 0;
    }

    .tools-table-container {
        padding: 0 16px;
    }

    .tools-table-scroll {
        overflow-x: auto;
        border-radius: 12px;
    }

    .tools-table {
        min-width: 580px;
    }

    .tools-table thead th,
    .tools-table tbody td {
        padding: 14px 14px;
        font-size: 0.82rem;
    }
}

/* ============================================================   Case Studies Section — Two-Column Redesign   ============================================================ */
.case-studies-section {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

/* Full-width two-column wrapper — no container needed */
.cs-wrap {
    display: flex;
    align-items: stretch;
    min-height: 580px;
}

/* ---- LEFT: Image Panel (40%) ---- */
.cs-image-panel {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    overflow: hidden;
}

.cs-institute-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ---- RIGHT: Content Panel (60%) ---- */
.cs-content-panel {
    flex: 0 0 60%;
    max-width: 60%;
    background: #f4f7fb;
    display: flex;
    align-items: center;
}

.cs-inner {
    padding: 60px 56px 60px 56px;
    max-width: 740px;
}

.cs-inner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 18px;
    line-height: 1.25;
}

.cs-intro {
    color: #000;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.cs-sub-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

/* Brand bullet list */
.cs-brand-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.cs-brand-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #3a4a5c;
    line-height: 1.5;
}

.cs-brand-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, var(--blue-1) 0%, #5b6ed4 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.cs-brand-list strong {
    color: #1a2a3a;
    font-weight: 700;
}

.cs-closing {
    font-size: 0.92rem;
    color: #000;
    line-height: 1.7;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid #e0e8f5;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .cs-inner {
        padding: 50px 36px;
    }

    .cs-brand-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .slider-nav {
        position: absolute;
        bottom: auto;
        top: 39%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        display: flex;
        gap: 15px;
        pointer-events: none;
    }

    .cs-wrap {
        flex-direction: column;
        min-height: auto;
    }

    .cs-image-panel {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 280px;
        position: relative;
    }

    .cs-institute-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cs-content-panel {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .cs-inner {
        padding: 40px 20px;
    }
}

/* Admission Process Redesign */
.admission-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: none;
    height: 100%;
    position: relative;
    /* overflow: hidden; Removed for connected line */
    transition: all 0.4s ease;
    z-index: 1;
    text-align: center;
}

.admission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Connected Line (Desktop) */
@media (min-width: 1200px) {
    .admission-card::after {
        content: '';
        position: absolute;
        top: 60px;
        /* Center of icon padding + half height */
        left: 50%;
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(to right, #e0e0e0 0, #e0e0e0 10px, transparent 10px, transparent 20px);
        z-index: -1;
    }

    /* Hide line for the last item */
    .col-xl-2-4:last-child .admission-card::after {
        display: none;
    }
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(140, 82, 253, 0.3);
    position: relative;
    z-index: 2;
}

.admission-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-1);
    position: relative;
    z-index: 2;
}

.admission-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* FAQ Redesign Tweaks */
.faq-section {
    background: #f8fbff;
}

.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--orange);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #6c757d;
    display: none;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

/* Admission Background Icons */
.admission-bg-icon {
    position: absolute;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    pointer-events: none;
}

.admission-bg-icon i {
    font-size: 15rem;
    /* Very large icons */
}

.admission-bg-icon.icon-1 {
    top: -50px;
    left: -50px;
    transform: rotate(-15deg);
}

.admission-bg-icon.icon-2 {
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
}

.admission-bg-icon.icon-3 {
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(5deg) scale(0.8);
    opacity: 0.5;
}

/* 5 Column Grid for XL screens */
@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Program Module Section */
.program-module-section {
    background: #f4f8ff;
    /* Light brand blue for contrast */
}

.program-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(51, 133, 194, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.program-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(140, 82, 253, 0.15);
}

.program-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}

.program-header:hover {
    background: #f8fbff;
}

.program-item.active .program-header {
    background: #fff;
    padding-bottom: 20px;
}

.module-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a2a3a;
    margin: 0;
    transition: color 0.3s ease;
}

.program-item.active .module-title {
    color: var(--blue-1);
}

.program-header i {
    color: var(--purple);
    font-size: 0.85rem;
    transition: all 0.4s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 82, 253, 0.06);
    border-radius: 50%;
}

.program-item.active .program-header i {
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(140, 82, 253, 0.3);
}

.program-body {
    display: none;
    background: #fff;
}

.module-content-wrapper {
    padding: 0 30px 30px 30px;
}

/* Module Table Styling - Premium Version */
.module-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.module-table th {
    background: var(--purple);
    /* Swapped to purple */
    color: #fff;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
}

.module-table th:first-child {
    background: var(--blue-1);
    /* First child (Week) is now blue */
}

.module-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: top;
    color: #4a5a6a;
    line-height: 1.6;
}

.module-table tr:last-child td {
    border-bottom: none;
}

.module-table td:first-child {
    font-weight: 800;
    width: 120px;
    background: #f9fbff;
    color: var(--blue-1);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.module-table ol {
    margin: 0;
    padding-left: 18px;
}

.module-table li {
    margin-bottom: 10px;
}

.module-table li::marker {
    color: var(--purple);
    font-weight: 700;
}

.module-table li:last-child {
    margin-bottom: 0;
}

/* Responsive Table */
@media (max-width: 768px) {
    .module-content-wrapper {
        padding: 0 20px 20px 20px;
    }

    .module-table,
    .module-table tbody,
    .module-table tr,
    .module-table td {
        display: block;
        width: 100%;
    }

    .module-table thead {
        display: none;
    }

    .module-table tr {
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 15px;
        box-shadow: var(--shadow-sm);
    }

    .module-table td {
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 20px;
    }

    .module-table td:first-child {
        background: #f4f8ff;
        border-bottom: 1px solid rgba(51, 133, 194, 0.15);
        width: 100%;
        font-size: 1.1rem;
    }
}

/* =============================================   IIT Roorkee Edge – Rankings Section   ============================================= */
.iitr-edge-section {
    background: linear-gradient(160deg, #f0f7ff 0%, #faf5ff 50%, #fff8f3 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.iitr-edge-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.iitr-edge-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.iitr-edge-circle-1 {
    width: 480px;
    height: 480px;
    background: var(--gradient-primary);
    top: -180px;
    right: -120px;
}

.iitr-edge-circle-2 {
    width: 320px;
    height: 320px;
    background: var(--gradient-accent);
    bottom: -100px;
    left: -80px;
}

/* Rank Cards */
.iitr-rank-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: 0 8px 32px rgba(51, 133, 194, 0.10);
    border: 1.5px solid rgba(51, 133, 194, 0.10);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.iitr-rank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.iitr-rank-card--accent::before {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue-2) 100%);
}

.iitr-rank-card--warm::before {
    background: var(--gradient-accent);
}

.iitr-rank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(51, 133, 194, 0.18);
}

/* Badge area */
.iitr-rank-badge {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
}

/* Rank Logo */
.iitr-rank-logo {
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
}

.iitr-rank-logo img {
    max-height: 70px;
    width: 100%;
    object-fit: contain;
}

.iitr-rank-number {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    display: inline-block;
}

.iitr-rank-card--accent .iitr-rank-number {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

.iitr-rank-card--warm .iitr-rank-number {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.iitr-rank-number sup {
    font-size: 0.45em;
    vertical-align: super;
}

.iitr-rank-label {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 700;
    color: #7a8fa6;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

/* Source tag */
.iitr-rank-source {
    margin-bottom: 16px;
}

.iitr-rank-source-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(51, 133, 194, 0.1) 0%, rgba(140, 82, 253, 0.1) 100%);
    color: var(--blue-1);
    font-family: var(--font-alt);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(51, 133, 194, 0.18);
    letter-spacing: 0.3px;
}

.iitr-rank-card--accent .iitr-rank-source-tag {
    background: linear-gradient(135deg, rgba(140, 82, 253, 0.1) 0%, rgba(81, 131, 184, 0.1) 100%);
    color: var(--purple);
    border-color: rgba(140, 82, 253, 0.2);
}

.iitr-rank-card--warm .iitr-rank-source-tag {
    background: linear-gradient(135deg, rgba(253, 144, 78, 0.1) 0%, rgba(140, 82, 253, 0.1) 100%);
    color: var(--orange);
    border-color: rgba(253, 144, 78, 0.2);
}

/* Description text */
.iitr-rank-desc {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #4a5a6a;
    line-height: 1.75;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .iitr-rank-card {
        padding: 28px 22px 24px;
    }

    .iitr-rank-number {
        font-size: 2.4rem;
    }

    .iitr-edge-circle-1 {
        width: 260px;
        height: 260px;
        top: -80px;
        right: -60px;
    }

    .iitr-edge-circle-2 {
        width: 180px;
        height: 180px;
        bottom: -60px;
        left: -40px;
    }
}

/* =============================================   About Us Page – Premium Redesign   ============================================= */
.au-about-section {
    background: linear-gradient(160deg, #f8fbff 0%, #fdf9ff 60%, #fffaf7 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative circles */
.au-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.au-deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.au-deco-c1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -180px;
    right: -140px;
}

.au-deco-c2 {
    width: 280px;
    height: 280px;
    background: var(--gradient-accent);
    bottom: -80px;
    left: -60px;
}

/* About content card */
.au-content-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(51, 133, 194, 0.09);
    border: 1.5px solid rgba(51, 133, 194, 0.08);
    display: flex;
    overflow: hidden;
}

.au-accent-bar {
    width: 6px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 20px 0 0 20px;
}

.au-content-body {
    padding: 36px 40px;
}

.au-para {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #3a4d60;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

/* Vision & Mission Cards */
.au-vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 32px;
    box-shadow: 0 8px 32px rgba(51, 133, 194, 0.09);
    border: 1.5px solid rgba(51, 133, 194, 0.09);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.au-vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.au-vm-card--mission::before {
    background: var(--gradient-accent);
}

.au-vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(51, 133, 194, 0.16);
}

.au-vm-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(51, 133, 194, 0.12) 0%, rgba(140, 82, 253, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.au-vm-icon-wrap i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.au-vm-icon-wrap--mission {
    background: linear-gradient(135deg, rgba(253, 144, 78, 0.12) 0%, rgba(140, 82, 253, 0.12) 100%);
}

.au-vm-icon-wrap--mission i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.au-vm-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 14px;
}

.au-vm-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4a5a6a;
    line-height: 1.8;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .au-content-card {
        flex-direction: column;
    }

    .au-accent-bar {
        width: 100%;
        height: 5px;
        border-radius: 20px 20px 0 0;
    }

    .au-content-body {
        padding: 24px 20px;
    }

    .au-vm-card {
        padding: 28px 22px 24px;
    }

    .au-deco-c1 {
        width: 260px;
        height: 260px;
        top: -80px;
        right: -70px;
    }
}

/* =============================================   Banner Highlight Points – Program Page   ============================================= */
.banner-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.banner-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    padding: 9px 16px 9px 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.banner-highlight-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.bhl-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bhl-icon i {
    color: #fff;
    font-size: 0.8rem;
}

.bhl-text {
    font-family: var(--font-alt);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: 0.1px;
}

/* Mobile: stack to single column on very small screens */
@media (max-width: 480px) {
    .banner-highlight-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bhl-text {
        font-size: 0.8rem;
    }
}

/* =============================================
   Campus Immersion Section � Single View Layout
   ============================================= */
.ci-section {
    background: linear-gradient(160deg, #f0f7ff 0%, #faf5ff 55%, #fff8f3 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0px;
}

/* Decorative rings */
.ci-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.ci-deco-ring {
    position: absolute;
    border-radius: 50%;
}

.ci-deco-ring-1 {
    width: 520px;
    height: 520px;
    border: 2px solid rgba(51, 133, 194, 0.09);
    top: -180px;
    right: -120px;
}

.ci-deco-ring-2 {
    width: 320px;
    height: 320px;
    border: 2px solid rgba(140, 82, 253, 0.07);
    bottom: -100px;
    left: -70px;
}

/* Tag */
.ci-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-alt);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Heading */
.ci-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 28px;
    line-height: 1.2;
}

/* Intro paragraph � left aligned */
.ci-intro-text {
    font-size: 1rem;
    color: #3a4d60;
    line-height: 1.85;
    margin: 0 0 16px;
    max-width: 100%;
}

/* Fee note � left aligned */
.ci-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(51, 133, 194, 0.14);
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 0;
    max-width: 680px;
    box-shadow: 0 3px 14px rgba(51, 133, 194, 0.07);
}

.ci-fee-note i {
    color: var(--orange);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.ci-fee-note span {
    font-family: var(--font-alt);
    font-size: 0.88rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.6;
}

/* Gradient divider */
.ci-divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(51, 133, 194, 0.25) 0%, rgba(140, 82, 253, 0.18) 50%, transparent 100%);
    margin: 38px 0 34px;
    border-radius: 2px;
}

/* Column titles */
.ci-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a2a3a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.ci-col-title--included {
    border-color: var(--blue-1);
}

.ci-col-title--included i {
    color: var(--blue-1);
    font-size: 1rem;
}

.ci-col-title--excluded {
    border-color: var(--orange);
}

.ci-col-title--excluded i {
    color: var(--orange);
    font-size: 1rem;
}

/* Lists */
.ci-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ci-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(51, 133, 194, 0.08);
}

.ci-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ci-list--excl .ci-list-item {
    border-color: rgba(253, 144, 78, 0.10);
}

/* Icon */
.ci-list-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(51, 133, 194, 0.11) 0%, rgba(140, 82, 253, 0.11) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ci-list-icon i {
    font-size: 0.85rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ci-list-icon--excl {
    background: linear-gradient(135deg, rgba(253, 144, 78, 0.12) 0%, rgba(140, 82, 253, 0.10) 100%);
}

.ci-list-icon--excl i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.ci-list-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ci-list-text strong {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.3;
}

.ci-list-text span {
    font-size: 0.86rem;
    color: #4a5a6a;
    line-height: 1.7;
}

/* Vertical separator */
.ci-col-sep {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
}

.ci-vsep {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(51, 133, 194, 0.2) 20%, rgba(140, 82, 253, 0.15) 80%, transparent);
    flex: 1;
    margin-top: 46px;
}

/* Column side padding */
.ci-left-col {
    padding-right: 24px;
}

.ci-right-col {
    padding-left: 8px;
}

/* Mobile */
@media (max-width: 991px) {
    .ci-section {
        padding: 50px 0 56px;
    }

    .ci-left-col {
        padding-right: 0;
        margin-bottom: 36px;
    }

    .ci-right-col {
        padding-left: 0;
    }

    .ci-col-sep {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .ci-fee-note {
        flex-direction: column;
        gap: 6px;
    }

    .ci-list-item {
        gap: 12px;
        padding: 12px 0;
    }
}

/* =============================================
   Program Coordinators Section
   ============================================= */
.pc-section {
    background: linear-gradient(160deg, #f8fbff 0%, #f3f0ff 50%, #fff8f3 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative rings */
.pc-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.pc-deco-ring {
    position: absolute;
    border-radius: 50%;
}

.pc-deco-ring-1 {
    width: 480px;
    height: 480px;
    border: 2px solid rgba(51, 133, 194, 0.09);
    top: -180px;
    right: -140px;
}

.pc-deco-ring-2 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(140, 82, 253, 0.08);
    bottom: -100px;
    left: -80px;
}

/* Section Tag */
.pc-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-alt);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Heading */
.pc-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Subheading */
.pc-subheading {
    font-size: 1rem;
    color: #5a6a7a;
    margin: 0 auto 10px;
    max-width: 500px;
}

/* Card */
.pc-card {
    background: #fff;
    border-radius: 22px;
    border: 1.5px solid rgba(51, 133, 194, 0.10);
    box-shadow: 0 8px 32px rgba(51, 133, 194, 0.09);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    height: 100%;
    position: relative;
}

.pc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 22px 22px 0 0;
}

.pc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(51, 133, 194, 0.16);
}

/* Image area */
.pc-card-img-wrap {
    background: linear-gradient(135deg, #f0f7ff 0%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 30px 32px;
}

.pc-card-img-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(51, 133, 194, 0.25);
    border: 4px solid #fff;
}

.pc-card-img-placeholder i {
    font-size: 2.8rem;
    color: #fff;
}

.pc-card-img-wrap img.pc-prof-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(51, 133, 194, 0.2);
}

.pc-prof-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(51, 133, 194, 0.2);
}

/* Card body */
.pc-card-body {
    padding: 24px 28px 16px;
    text-align: center;
    flex: 1;
}

.pc-prof-name {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 6px;
}

.pc-prof-designation {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.pc-prof-institute {
    font-size: 0.88rem;
    color: #6a7a8a;
    margin: 0;
    line-height: 1.5;
}

/* Card footer */
.pc-card-footer {
    padding: 16px 28px 28px;
    text-align: center;
    border-top: 1px solid rgba(51, 133, 194, 0.07);
}

.pc-read-more-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-alt);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2px;
}

.pc-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(51, 133, 194, 0.35);
}

.pc-read-more-btn i {
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.pc-read-more-btn:hover i {
    transform: translateX(4px);
}

/* Modal styles */
.pc-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.pc-modal-header {
    background: linear-gradient(135deg, #f0f7ff 0%, #f3f0ff 100%);
    padding: 24px 30px;
    border-bottom: 1px solid rgba(51, 133, 194, 0.10);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pc-modal-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(51, 133, 194, 0.3);
    border: 3px solid #fff;
}

.pc-modal-avatar i {
    font-size: 1.6rem;
    color: #fff;
}

.pc-prof-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
}

.pc-modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 4px;
}

.pc-modal-desig {
    font-family: var(--font-alt);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-1);
    line-height: 1.5;
}

.pc-modal-close {
    flex-shrink: 0;
    margin-top: 4px;
}

.pc-modal-body {
    padding: 28px 32px 32px;
    background: #fff;
}

.pc-modal-text {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #3a4d60;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.pc-modal-text:last-child {
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .pc-card-img-wrap {
        padding: 34px 20px 24px;
    }

    .pc-card-img-placeholder {
        width: 90px;
        height: 90px;
    }

    .pc-card-img-placeholder i {
        font-size: 2.2rem;
    }

    .pc-card-body {
        padding: 20px 20px 12px;
    }

    .pc-card-footer {
        padding: 12px 20px 22px;
    }

    .pc-modal-header {
        padding: 20px;
        flex-wrap: wrap;
    }

    .pc-modal-body {
        padding: 20px;
    }

    .pc-deco-ring-1 {
        width: 260px;
        height: 260px;
        top: -80px;
        right: -70px;
    }

    .pc-deco-ring-2 {
        width: 160px;
        height: 160px;
        bottom: -50px;
        left: -40px;
    }
}

/* Anchor Nav Styles */
.anchor-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 998;
    position: relative;
    transition: background 0.3s ease;
}

.anchor-links-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.anchor-links-scroll::-webkit-scrollbar {
    display: none;
}

.anchor-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    white-space: nowrap;
    justify-content: center;
}

.anchor-link {
    display: inline-block;
    padding: 18px 25px;
    color: #444;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.anchor-link:hover {
    color: var(--blue-1);
}

.anchor-link.active {
    color: var(--blue-1);
}

.anchor-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 4px;
    background: var(--blue-1);
    border-radius: 4px 4px 0 0;
}

.anchor-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideDownNav 0.4s ease;
}

@keyframes slideDownNav {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .anchor-links {
        justify-content: flex-start;
        padding: 5px 0;
    }

    .anchor-link {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
}

/* =====================================================
   A Glimpse of IIT Roorkee – Gallery Slider
   All classes prefixed with iitr-glimpse- to avoid conflicts
   ===================================================== */

/* ── Section Shell ─────────────────────────────────── */
.iitr-glimpse-section {
    padding: 40px 0;
    background: #f4f7fb;
    position: relative;
}

/* ── Header ─────────────────────────────────────────── */
.iitr-glimpse-header {
    text-align: center;
    padding: 0 20px 50px;
    max-width: 700px;
    margin: 0 auto;
}

.iitr-glimpse-tag {
    display: inline-block;
    color: var(--blue-1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    padding-left: 48px;
    position: relative;
    margin-bottom: 14px;
}

.iitr-glimpse-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 2px;
    background: var(--blue-1);
}

.iitr-glimpse-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #0a192f;
    margin-bottom: 12px;
    line-height: 1.2;
}

.iitr-glimpse-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iitr-glimpse-subtitle {
    color: #667;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Slider Wrapper (holds outer + buttons) ──────────── */
.iitr-glimpse-slider-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 56px;
    /* space for nav buttons */
    box-sizing: border-box;
}

/* ── Overflow Clip ────────────────────────────────────── */
.iitr-glimpse-track-outer {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.iitr-glimpse-track-outer:active {
    cursor: grabbing;
}

/* ── Flex Track ───────────────────────────────────────── */
.iitr-glimpse-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Slides ─────────────────────────────────────────── */
/*  Each slide is a box-sizing:border-box item.
    Width set via class injected by JS on init.
    Default (desktop): 33.333%  */
.iitr-glimpse-slide {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    padding: 0 8px;
    /* creates 16px visual gap between cards */
    position: relative;
}

.iitr-glimpse-slide-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.iitr-glimpse-slide-inner:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

.iitr-glimpse-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.iitr-glimpse-slide-inner:hover img {
    transform: scale(1.05);
}

/* ── Caption ─────────────────────────────────────────── */
.iitr-glimpse-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 16px 16px;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.82) 0%, transparent 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 10px;
}

/* ── Nav Buttons ─────────────────────────────────────── */
.iitr-glimpse-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #0a192f;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease,
        box-shadow 0.25s ease, transform 0.25s ease;
    outline: none;
}

.iitr-glimpse-btn:hover {
    background: var(--blue-1);
    color: #fff;
    box-shadow: 0 8px 22px rgba(51, 133, 194, 0.42);
    transform: translateY(-50%) scale(1.1);
}

.iitr-glimpse-btn--prev {
    left: 0;
}

.iitr-glimpse-btn--next {
    right: 0;
}

/* ── Dots ────────────────────────────────────────────── */
.iitr-glimpse-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.iitr-glimpse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b0bec5;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.iitr-glimpse-dot.iitr-dot-active {
    background: var(--blue-1);
    width: 26px;
    border-radius: 5px;
}

/* ── Responsive ─────────────────────────────────────── */

/* Tablet: 2-up */
@media (max-width: 991px) {
    .iitr-glimpse-slide {
        flex: 0 0 50%;
    }

    .iitr-glimpse-slider-wrap {
        padding: 0 48px;
    }
}

/* Mobile: 1-up */
@media (max-width: 575px) {
    .iitr-glimpse-slide {
        flex: 0 0 100%;
        padding: 0 4px;
    }

    .iitr-glimpse-slider-wrap {
        padding: 0 40px;
    }

    .iitr-glimpse-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .iitr-glimpse-section {
        padding: 60px 0 50px;
    }

    .iitr-glimpse-header {
        padding-bottom: 36px;
    }
}

/* =====================================================
   Program Snapshot Section (pgsnap-)
   Standalone section above Overview � unique prefix to avoid conflicts
   ===================================================== */

.pgsnap-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0d2137 100%);
    overflow: hidden;
    z-index: 1;
}

/* -- Decorative geometry -- */
.pgsnap-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pgsnap-deco {
    position: absolute;
    border-radius: 50%;
    background: transparent;
}

.pgsnap-deco-1 {
    width: 420px;
    height: 420px;
    border: 2px solid rgba(77, 163, 255, 0.07);
    top: -140px;
    left: -100px;
}

.pgsnap-deco-2 {
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 215, 0, 0.06);
    bottom: -80px;
    right: 5%;
}

.pgsnap-deco-3 {
    width: 140px;
    height: 140px;
    background: rgba(77, 163, 255, 0.04);
    top: 30%;
    right: 20%;
    border-radius: 30px;
    transform: rotate(30deg);
}

/* -- 4-column card grid -- */
.pgsnap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* -- Individual card -- */
.pgsnap-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 36px 24px 28px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease,
        box-shadow 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pgsnap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-1), #4da3ff);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pgsnap-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(77, 163, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pgsnap-card:hover::before {
    opacity: 1;
}

/* -- Icon bubble -- */
.pgsnap-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-1) 0%, #4da3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(51, 133, 194, 0.4);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.pgsnap-card:hover .pgsnap-icon-wrap {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 10px 28px rgba(51, 133, 194, 0.55);
}

/* -- Labels & values -- */
.pgsnap-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-1);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(51, 133, 194, 0.4);
    z-index: 3;
}

.pgsnap-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 6px;
}

.pgsnap-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-top: 2px;
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .pgsnap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pgsnap-section {
        padding: 40px 0;
    }

    .pgsnap-card {
        padding: 24px 20px;
    }
}

/* ========== FAQ Section ========== */
.faq-section {
    background: #f7f9fc;
}

.faq-accordion {
    border: none;
}

.faq-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(51, 133, 194, 0.07);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(51, 133, 194, 0.12);
}

.faq-item .accordion-button {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: #1a2a3a;
    background: #fff;
    border: none;
    padding: 18px 24px;
    border-radius: 12px !important;
    box-shadow: none;
    transition: color 0.3s, background 0.3s;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--blue-1);
    background: #f0f7ff;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233385c2' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
    background-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-item .accordion-body {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    padding: 0 24px 20px;
    background: #f0f7ff;
}

.faq-item .accordion-collapse {
    border: none;
}

@media (max-width: 768px) {
    .faq-item .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-item .accordion-body {
        font-size: 13.5px;
        padding: 0 18px 16px;
    }
}

/* =====================================================
   Premium Brochure Form - Aesthetic Upgrade
   Scoped to modal form only to avoid global side effects
   ===================================================== */
.custom-modal .premium-modal-form {
    background: linear-gradient(165deg, #f8fbff 0%, #f2f7ff 55%, #eef4ff 100%);
    border: 1px solid #dbe8f6;
    border-radius: 16px;
    padding: 18px 16px 16px;
    box-shadow: 0 14px 30px rgba(17, 34, 68, 0.08);
}

.custom-modal .premium-modal-form .form-group {
    position: relative;
}

.custom-modal .premium-modal-form .brochure-input {
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid #d6e3f1;
    background: #ffffff;
    color: #1b2a3a;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.custom-modal .premium-modal-form .brochure-input::placeholder {
    color: #7f8fa4;
    font-weight: 500;
}

.custom-modal .premium-modal-form .brochure-input:hover {
    border-color: #bdd4ec;
}

.custom-modal .premium-modal-form .brochure-input:focus {
    border-color: var(--blue-1);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(51, 133, 194, 0.14);
    transform: translateY(-1px);
}

.custom-modal .premium-modal-form .number-control {
    letter-spacing: 0.2px;
}

.custom-modal .premium-modal-form #phone-error {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
    min-height: 16px;
}

.custom-modal .premium-modal-form .brochure-modal-submit {
    margin-top: 14px;
}

.custom-modal .premium-modal-form .brochure-submit-btn {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--blue-1) 0%, #2d6fa8 100%);
    color: #fff;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(51, 133, 194, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.custom-modal .premium-modal-form .brochure-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 14px 30px rgba(51, 133, 194, 0.36);
}

.custom-modal .premium-modal-form .brochure-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(51, 133, 194, 0.28);
}

.custom-modal .premium-modal-form .brochure-submit-btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(51, 133, 194, 0.2), 0 10px 24px rgba(51, 133, 194, 0.3);
}

@media (max-width: 767px) {
    .custom-modal .premium-modal-form {
        padding: 14px 12px 12px;
        border-radius: 14px;
    }

    .custom-modal .premium-modal-form .brochure-input {
        min-height: 46px;
        font-size: 0.92rem;
    }

    .custom-modal .premium-modal-form .brochure-submit-btn {
        padding: 11px 16px;
        font-size: 0.92rem;
    }
}

/* --- Certificate Section --- */
.certificate-section {
    background-color: #fff;
    position: relative;
}

.certificate-content h3 {
    font-size: 1.75rem;
    color: #1a2a3a;
}

.certificate-content p {
    font-size: 1.05rem;
    color: #4b5563;
}

.certificate-benefits span {
    font-weight: 600;
    color: #2c3e50;
}

.certificate-frame {
    transition: transform 0.4s ease;
}

.certificate-frame:hover {
    transform: scale(1.02);
}

.certificate-display .certificate-frame img {
    width: 100%;
    height: auto;
}



/* Modern Fees Section Redesign - Light Theme Table */
.light-theme-fees {
    background: #f8f9fa; /* Light background */
    padding: 40px 0;
    color: #333;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.fees-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #edf2f7;
    margin-bottom: 30px;
}

.fees-modern-table {
    width: 100%;
    border-collapse: collapse;
}

.fees-modern-table th {
    background-color: #f1f5f9;
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 25px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.fees-modern-table td {
    padding: 20px 25px;
    vertical-align: middle;
    border-bottom: 1px solid #edf2f7;
    color: #475569;
    font-size: 16px;
    transition: background-color 0.2s;
}

.fees-modern-table tbody tr:hover td {
    background-color: #f8fafc;
}

.table-cell-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0f172a;
}

.table-icon {
    color: #fd904e;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.amount-cell {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
}

.amount-cell span {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

.fees-modern-table tfoot td {
    padding: 0;
    border-bottom: none;
}

.fee-table-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: linear-gradient(135deg, #fff7f3 0%, #ffffff 100%);
    border-top: 2px solid #fd904e;
}

.fee-table-total-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fee-total-icon-light {
    background: rgba(253, 144, 78, 0.15);
    color: #fd904e;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.total-text {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.total-sub {
    font-size: 14px;
    color: #64748b;
    margin-top: 2px;
}

.total-amount {
    font-size: 28px;
    font-weight: 800;
    color: #fd904e;
}

.total-amount span {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
}

.light-theme-fees .text-orange {
    color: #fd904e !important;
}

@media (max-width: 768px) {
    .fees-modern-table th, .fees-modern-table td {
        padding: 15px;
    }
    .fee-table-total {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .fee-table-total-left {
        flex-direction: column;
    }
    
    /* Make table scrollable vertically on very small screens instead of breaking layout */
    .fees-table-wrapper {
        overflow-x: auto;
    }
    .fees-modern-table {
        min-width: 600px; /* Ensures minimum width so table data isn't crushed */
    }
}