@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');

:root {
    /* New Professional Color Palette */
    --primary-burgundy: #460b2f;
    --primary-gold: #ffb800;
    --primary-magenta: #931962;

    /* Lighter Shades for Refined Aesthetic */
    --light-burgundy: #6b1446;
    --lighter-burgundy: #8f1d5c;
    --pale-burgundy: #f5e6ed;

    --light-gold: #ffc933;
    --lighter-gold: #ffd966;
    --pale-gold: #fff9e6;

    --light-magenta: #b02378;
    --lighter-magenta: #cd2d8e;
    --pale-magenta: #f7e6f0;

    /* Gradient Combinations */
    --accent-gradient: linear-gradient(135deg, #460b2f 0%, #931962 100%);
    --gold-gradient: linear-gradient(135deg, #ffb800 0%, #ffc933 100%);
    --magenta-gradient: linear-gradient(135deg, #931962 0%, #b02378 100%);
    --elegant-gradient: linear-gradient(135deg, #460b2f 0%, #931962 50%, #ffb800 100%);

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #64748b;
    --text-dark: #2d1b24;
    --text-light: #000;

    /* Spacing */
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(70, 11, 47, 0.05);
    --shadow-md: 0 4px 6px rgba(70, 11, 47, 0.1);
    --shadow-lg: 0 10px 25px rgba(70, 11, 47, 0.15);
    --shadow-xl: 0 20px 40px rgba(70, 11, 47, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Blinker', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography - Playfair Display for Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header Styles */
.header-main {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-main .navbar {
    padding: 0.75rem 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-burgundy) !important;
    background: rgba(70, 11, 47, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    color: var(--primary-burgundy);
    transition: color var(--transition-fast);
}

.dropdown-item:hover i {
    color: var(--white);
}

/* Hover dropdown for desktop */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Add padding area to prevent dropdown from disappearing */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        top: 100%;
        left: 0;
    }

    /* Create invisible bridge between nav item and dropdown */
    .dropdown::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 10px;
    }
}

/* Apply Button */
.btn-apply {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(70, 11, 47, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(70, 11, 47, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-inner {
    height: calc(100vh - var(--header-height));
    min-height: 700px;
}

.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(70, 11, 47, 0.8) 0%, rgba(70, 11, 47, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    text-align: left;
    z-index: 2;
    padding: 0;
}

.caption-content {
    max-width: 800px;
}

.caption-content h1 {
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.caption-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Carousel Control Customization */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 0;
    transition: all var(--transition-normal);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-gold);
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: var(--white);
    opacity: 0.6;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition-normal);
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.3);
}

/* Inquiry Form Styles */
.hero-form-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.hero-form-card {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-top: 5px solid var(--primary-gold);
}

.hero-form-card .mb-3 {
    margin-bottom: 0.75rem !important;
}

.hero-form-card .form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.hero-form-card .form-subtitle {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 4px rgba(70, 11, 47, 0.1);
}

/* Mobile Responsiveness for Slider */
@media (min-width: 992px) {
    .caption-content {
        max-width: 100%;
        /* Column grid handles width now */
    }

    .hero-form-card {
        max-width: 420px;
        margin-left: auto;
        /* Push to right of column */
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .caption-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-form-card {
        padding: 1.5rem;
        max-width: 100%;
        /* Fill the col-lg-5 */
    }

    .hero-form-card .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 1199px) {
    .hero-form-card {
        padding: 2rem;
    }

    .hero-form-card .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 991px) {
    .hero-form-card {
        padding: 1.75rem;
        margin: 0 auto;
        max-width: 450px;
    }

    .caption-content {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-slider .carousel-inner {
        height: auto;
        min-height: auto;
    }

    .hero-slider .carousel-item {
        height: 400px;
    }

    .caption-content h1 {
        font-size: 1.75rem !important;
    }

    .caption-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-form-container {
        position: relative;
        top: 0;
        transform: none;
        padding: 40px 0;
        background: var(--white);
        z-index: 5;
    }

    .hero-form-card {
        box-shadow: var(--shadow-lg);
        margin: 0 15px;
        max-width: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-burgundy) !important;
    transform: translateY(-3px);
}

/* Quick Links Section */
.quick-links {
    background: var(--light-gray);
    position: relative;
    z-index: 10;
}

.quick-link-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.quick-link-card:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.quick-link-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quick-link-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--light-burgundy);
}

/* Featured Program Section */
.featured-program {
    padding: 5rem 0;
    background: var(--white);
}

.section-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-burgundy);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-program h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.program-image-wrapper {
    position: relative;
}

.program-image-wrapper::before {
    /* content: ''; */
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 16px;
    z-index: -1;
}

.program-image-wrapper img {
    border-radius: 16px;
}

/* Stats Section */
.stats-section {
    background: #4c0b32;
    /* Solid burgundy background */
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Pentagon geometric pattern on right side */
.stats-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg,
            rgba(255, 184, 0, 0.08) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    clip-path: polygon(30% 0%,
            100% 0%,
            100% 100%,
            30% 100%,
            0% 50%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle accent line */
.stats-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 184, 0, 0.15) 45%,
            rgba(255, 184, 0, 0.15) 55%,
            transparent 100%);
    clip-path: polygon(30% 0%,
            100% 0%,
            100% 100%,
            30% 100%,
            0% 50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.stat-card {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.stats-section .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem !important;
    /* Override any conflicts */
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--white) !important;
    /* Ensure white color */
}

.stats-section .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    color: var(--white);
}

/* Footer */
.footer {
    background: #4c0b32;
    color: var(--white);
    padding: 40px 0 20px 0;
}

.footer-logo {
    height: 80px;
    width: auto;
    background: #fff;
    padding: 5px;
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: rgba(70, 11, 47, 0.05);
        margin-top: 0;
    }

    .carousel-item {
        height: 500px;
    }

    .caption-content h1 {
        font-size: 2rem !important;
    }

    .caption-content p {
        font-size: 1rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* About & Facts Section Styles - Redesign V3 */
.about-facts-section {
    padding: 40px 0;
    background-color: #4c0b32 !important;
    /* Force footer background color */
    color: var(--white);
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Premium Geometric Background with Mirror Effect */
.about-facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Top geometric pattern */
        radial-gradient(circle at 20% 30%, rgba(255, 184, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        /* Mirror effect - bottom geometric pattern */
        radial-gradient(circle at 20% 70%, rgba(255, 184, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        /* Diagonal lines for premium look */
        repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            rgba(255, 184, 0, 0.02) 60px,
            rgba(255, 184, 0, 0.02) 120px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 60px,
            rgba(255, 255, 255, 0.02) 120px);
    pointer-events: none;
    z-index: 1;
}

.about-facts-section * {
    z-index: 2;
    /* Ensure content is above background */
    position: relative;
}

/* Container override for full width alignment */
.about-facts-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* About Column */
/* .about-col {
    padding-right: 3rem;
} */

.about-text-content .section-badge {
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary-gold);
}

.about-text-content h2 {
    color: var(--white);
}

.about-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-about {
    background: var(--primary-gold);
    color: #4c0b32;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-about:hover {
    background: var(--white);
    color: #4c0b32;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Facts Column & Slider */
.facts-slider-wrapper {
    background: rgba(255, 255, 255, 0.03);
    /* Subtle backdrop */
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-header-row .section-badge {
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary-gold);
}

.slider-header-row h2 {
    color: var(--white);
}

/* Navigation Buttons */
.slider-nav-buttons {
    gap: 1rem;
}

.btn-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-gold);
    color: #4c0b32;
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

/* Slider Track */
.facts-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    /* Remove masking for cleaner look if preferred, or keep */
}

.facts-track {
    display: flex;
    gap: 24px;
    /* Matches JS gap */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
    /* Animation removed in JS, relying on transform */
}

.fact-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: auto;
    /* Width handled by JS */
    min-width: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 11, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon img {
    height: 35px;
    width: auto;
}

.fact-card p {
    color: #4c0b32;
    /* Contrast text */
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

/* Why Business AI Section Styles */
.why-business-ai-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-business-ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-business-ai-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    /* margin-bottom: 3rem; */
}

.highlight-cyan {
    color: #63133f;
    position: relative;
}

/* AI Statistics Cards */
.ai-stat-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ai-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ai-stat-card:hover::before {
    transform: translateX(100%);
}

.ai-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.ai-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-blue {
    background: linear-gradient(135deg, #6d1745 0%, #4c0b32 100%);
}

.icon-teal {
    background: linear-gradient(135deg, #8b1f50 0%, #5d0e3a 100%);
}

.icon-purple {
    background: linear-gradient(135deg, #4c0b32 0%, #6d1745 100%);
}

.icon-green {
    background: linear-gradient(135deg, #5d0e3a 0%, #3a0823 100%);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* AI Tagline */
.ai-tagline {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Responsive Logic */
/* Desktop (> 1024px) handled by Bootstrap col-lg & col-xl naturally side-by-side */

/* Tablet & Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .about-col {
        padding-right: 0.75rem;
        /* Reset extra padding */
        margin-bottom: 30px;
    }

    .about-facts-section {
        padding: 4rem 0;
    }

    /* Center align for stacked view */
    .about-text-content {
        text-align: left;
    }

    .about-description {
        text-align: left;
    }

    .facts-slider-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-facts-section {
        padding: 4rem 0;
    }
}

/* Business AI Section - Responsive Styles */
@media (max-width: 991px) {
    .why-business-ai-section .section-title {
        font-size: 2rem;
    }

    .ai-tagline {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .logo {
        height: 45px;
    }

    .carousel-item {
        height: 400px;
    }

    .caption-content h1 {
        font-size: 1.75rem !important;
    }

    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .quick-links {
        margin-top: 0;
    }

    .featured-program {
        padding: 3rem 0;
    }
}

/* Page Transitions */
.page-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-burgundy);
    color: var(--white);
}

/* ========================================
   HBSU Constituent Colleges Section - CSS Grid
   ======================================== */
.constituent-colleges-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #faf5f7 0%, #ffffff 40%, #f5f0f2 100%);
    position: relative;
    overflow: hidden;
}

/* Enhanced decorative elements */
.constituent-colleges-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(70, 11, 47, 0.08) 0%, rgba(147, 25, 98, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.constituent-colleges-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, rgba(255, 200, 50, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Wrapper with max-width */
.colleges-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.colleges-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.constituent-colleges-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.constituent-colleges-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.highlight-burgundy {
    color: var(--primary-burgundy);
}

/* CSS Grid Layout */
.colleges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

/* College Card - Compact Design */
.college-card {
    position: relative;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 120px;
}

/* Logo Wrapper - Smaller Size */
.college-logo-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.college-card:hover .college-logo-wrapper {
    box-shadow: 0 8px 20px rgba(70, 11, 47, 0.15);
    transform: translateY(-5px);
}

/* College Logo - Smaller and Sharper */
.college-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100px;
    max-height: 100px;
}

/* Ribbon - Hidden by default, slides down on hover (Desktop only) */
.college-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-gradient);
    padding: 10px 8px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    border-radius: 0 0 12px 12px;
}

.college-card:hover .college-ribbon {
    transform: translateY(0);
}

.college-ribbon span {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Name - Hidden on desktop, shown on mobile */
.college-name-mobile {
    display: none;
}

/* Desktop: Hide mobile name, show ribbon on hover */
@media (min-width: 992px) {
    .college-name-mobile {
        display: none;
    }

    .college-ribbon {
        display: block;
    }
}

/* Tablet: 3 columns */
@media (max-width: 991px) {
    .constituent-colleges-section {
        padding: 2.5rem 0;
    }

    .colleges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .college-card {
        max-width: 200px;
    }

    .constituent-colleges-section .section-title {
        font-size: 1.85rem;
    }

    .college-ribbon {
        display: none !important;
    }

    .college-name-mobile {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary-burgundy);
        margin-top: 0.75rem;
        text-align: center;
        line-height: 1.3;
    }

    .college-logo-wrapper {
        padding: 10px;
    }

    .college-logo {
        max-width: 90px;
        max-height: 90px;
    }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
    .constituent-colleges-section {
        padding: 2rem 0;
    }

    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .college-card {
        max-width: 180px;
    }

    .constituent-colleges-section .section-title {
        font-size: 1.5rem;
    }

    .colleges-header {
        margin-bottom: 2rem;
    }

    .college-name-mobile {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .college-logo-wrapper {
        padding: 8px;
    }

    .college-logo {
        max-width: 75px;
        max-height: 75px;
    }
}

/* Small Mobile: Smaller logos */
@media (max-width: 575px) {
    .colleges-wrapper {
        padding: 0 15px;
    }

    .colleges-grid {
        gap: 0.75rem;
    }

    .college-card {
        max-width: 150px;
    }

    .college-name-mobile {
        font-size: 0.7rem;
    }

    .college-logo-wrapper {
        padding: 6px;
    }

    .college-logo {
        max-width: 65px;
        max-height: 65px;
    }
}

/* ========================================
   Why Choose HBSU Section
   ======================================== */
.why-choose-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.why-choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-choose-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* CSS Grid for Why Choose Cards */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-burgundy);
    box-shadow: 0 15px 40px rgba(70, 11, 47, 0.15);
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(70, 11, 47, 0.1) 0%, rgba(147, 25, 98, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-burgundy);
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-icon-wrapper {
    background: var(--accent-gradient);
    transform: scale(1.1) rotate(360deg);
}

.why-choose-card:hover .why-icon-wrapper i {
    color: var(--white);
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Why Choose Section */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-header .section-title {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-choose-header .section-title {
        font-size: 1.75rem;
    }

    .why-choose-header .section-subtitle {
        font-size: 1rem;
    }

    .why-choose-card {
        padding: 1.75rem 1.25rem;
    }

    .why-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .why-icon-wrapper i {
        font-size: 1.75rem;
    }

    .why-title {
        font-size: 1.15rem;
    }

    .why-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   FAQ Section Styling with Brand Colors
   ======================================== */

.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

/* FAQ Wrapper - for index.html structure */
.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion Container */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Container - for faqs.html structure */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #931962;
    box-shadow: 0 4px 15px rgba(147, 25, 98, 0.1);
}

.faq-item.active {
    border-color: #460b2f;
    box-shadow: 0 4px 20px rgba(70, 11, 47, 0.15);
}

/* FAQ Question - supports both button and div structures */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, rgba(70, 11, 47, 0.02) 0%, rgba(147, 25, 98, 0.02) 100%);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(70, 11, 47, 0.05) 0%, rgba(147, 25, 98, 0.05) 100%);
}

/* Support for both span (index.html) and .question-text (faqs.html) */
.faq-question>span,
.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    padding-right: 1rem;
}

.faq-item.active .faq-question>span,
.faq-item.active .question-text {
    color: #460b2f;
}

/* Support for both direct i (index.html) and .faq-icon div (faqs.html) */
.faq-question>i.faq-icon,
.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #460b2f 0%, #931962 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 0.9rem;
}

/* For direct i element styling */
.faq-question>i.faq-icon {
    min-width: 40px;
}

.faq-icon i {
    color: #ffffff;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question>i.faq-icon,
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #931962 0%, #ffb800 100%);
}

.faq-item.active .faq-question>i.faq-icon,
.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Support for both direct p (index.html) and .answer-text (faqs.html) */
.faq-answer>p,
.answer-text {
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 2px solid #f0f0f0;
}

/* Responsive - FAQ Section */
@media (max-width: 991px) {
    .faq-header .section-title {
        font-size: 2rem;
    }

    .faq-header .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-header .section-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question>span,
    .question-text {
        font-size: 1rem;
    }

    .faq-question>i.faq-icon,
    .faq-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* ========================================
   Breadcrumb Custom Styling
   ======================================== */
.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    /* font-size: 1.2rem; */
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Inquiry Form Card
   ======================================== */
.inquiry-form-card,
.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.inquiry-form-card .form-title,
.hero-form-card .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-form-card .form-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Form Controls */
.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control-custom:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 0.2rem rgba(70, 11, 47, 0.1);
    outline: none;
}

.form-control-custom::placeholder {
    color: #999;
}

.form-select.form-control-custom {
    cursor: pointer;
}

/* CAPTCHA Wrapper */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.captcha-wrapper input {
    flex: 1;
}

.captcha-display {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    text-align: center;
    min-width: 100px;
    user-select: none;
}

.btn-refresh-captcha {
    background: var(--primary-burgundy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refresh-captcha:hover {
    background: var(--primary-gold);
    transform: rotate(180deg);
}

.btn-refresh-captcha i {
    font-size: 1rem;
}

/* Submit Button */
.btn-submit {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(70, 11, 47, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 11, 47, 0.4);
    color: var(--white);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Form Text */
.form-text {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .inquiry-form-card {
        margin-top: 2rem;
    }

    .captcha-wrapper {
        flex-wrap: wrap;
    }

    .captcha-display {
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767px) {
    .inquiry-form-card {
        padding: 1.5rem;
    }

    .inquiry-form-card .form-title {
        font-size: 1.5rem;
    }

    .form-control-custom {
        padding: 0.65rem 0.875rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   Why Choose B.Sc. in Business AI Section
   ======================================== */
.why-choose-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Styled AI Text - Antique & Aesthetic */
.ai-styled {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(70, 11, 47, 0.1);
}

.ai-styled::before {
    content: 'AI';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    transform: translateX(-2px) translateY(-2px);
}

/* Why Choose Points Container */
.why-choose-points,
.why-choose-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Individual Point Item */
.why-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Mirror Reflection Effect */
.why-point-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Shiny Overlay Effect */
.why-point-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

/* Hover Effects */
.why-point-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: 0 15px 40px rgba(70, 11, 47, 0.15),
        0 -5px 20px rgba(70, 11, 47, 0.05);
}

.why-point-item:hover::after {
    opacity: 1;
    transform: scaleY(-1);
}

.why-point-item:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Continuous Subtle Animation on Hover */
@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.why-point-item:hover {
    animation: floatAnimation 2s ease-in-out infinite;
}

/* Icon Styling */
.why-point-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-point-icon i {
    font-size: 1.75rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Icon Shine Effect */
.why-point-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.why-point-item:hover .why-point-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(70, 11, 47, 0.3);
}

.why-point-item:hover .why-point-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.why-point-item:hover .why-point-icon i {
    transform: scale(1.1);
}

/* Content Styling */
.why-point-content {
    flex: 1;
}

.why-point-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.why-point-item:hover .why-point-title {
    color: var(--primary-burgundy);
}

.why-point-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .why-choose-heading {
        font-size: 1.75rem;
        text-align: center;
    }

    .ai-styled {
        font-size: 1.9rem;
    }

    .why-point-item {
        padding: 1.25rem;
    }

    .why-point-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .why-point-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .why-choose-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ai-styled {
        font-size: 1.65rem;
    }

    .why-choose-points,
    .why-choose-points-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-point-item {
        padding: 1rem;
        gap: 1rem;
    }

    .why-point-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .why-point-icon i {
        font-size: 1.35rem;
    }

    .why-point-title {
        font-size: 1.05rem;
    }

    .why-point-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .why-point-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-point-icon {
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   AI-Integrated Business Degree Section
   ======================================== */
.ai-integrated-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ai-integrated-heading {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ai-integrated-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* AI Integrated Cards */
.ai-integrated-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ai-integrated-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: 0 12px 30px rgba(70, 11, 47, 0.15);
}

.ai-card-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.ai-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.ai-integrated-card:hover .ai-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(70, 11, 47, 0.3);
}

.ai-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.ai-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-card-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.98rem;
}

.ai-card-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-burgundy);
    font-size: 0.85rem;
}

.ai-card-list li:last-child {
    margin-bottom: 0;
}

/* India's AI Growth Card */
.ai-growth-card {
    background: var(--accent-gradient);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(70, 11, 47, 0.2);
    position: relative;
    overflow: hidden;
}

.ai-growth-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ai-growth-stat {
    position: relative;
    z-index: 2;
}

.ai-growth-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.ai-growth-label {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-growth-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.ai-growth-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ai-integrated-heading {
        font-size: 1.85rem;
    }

    .ai-integrated-subtitle {
        font-size: 1.05rem;
    }

    .ai-integrated-card {
        padding: 1.75rem;
    }

    .ai-card-icon {
        width: 65px;
        height: 65px;
    }

    .ai-card-icon i {
        font-size: 1.75rem;
    }

    .ai-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .ai-integrated-heading {
        font-size: 1.5rem;
    }

    .ai-integrated-subtitle {
        font-size: 1rem;
    }

    .ai-integrated-card {
        padding: 1.5rem;
    }

    .ai-card-icon {
        width: 60px;
        height: 60px;
    }

    .ai-card-icon i {
        font-size: 1.5rem;
    }

    .ai-card-title {
        font-size: 1.25rem;
    }

    .ai-card-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .ai-growth-card {
        padding: 2rem;
    }

    .ai-growth-number {
        font-size: 3rem;
    }

    .ai-growth-label {
        font-size: 1.1rem;
    }

    .ai-growth-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .ai-growth-text {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .ai-growth-card {
        padding: 1.5rem;
    }

    .ai-growth-number {
        font-size: 2.5rem;
    }

    .ai-growth-label {
        font-size: 1rem;
    }
}

/* ========================================
   Career Opportunities Section - Redesigned
   ======================================== */
.career-opportunities-section {
    background: var(--accent-gradient);
    position: relative;
    overflow: hidden;
}

/* Two Column Layout */
.career-opportunities-section .row {
    min-height: auto;
}

/* Left Column: Content Wrapper with Brand Background */
.career-content-wrapper {
    /* background: var(--accent-gradient); */
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 600px;
}

/* Section Header */
.career-header {
    margin-bottom: 2rem;
}

.career-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.career-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.career-heading-gradient {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--lighter-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.career-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 450px;
}

/* Career Icons List - Grid Layout (2 Columns) */
.career-icons-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Individual Career Icon Item - Ribbon Effect */
.career-icon-item {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0;
}

/* Icon Circle - Smaller Size */
.career-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.career-icon-circle i {
    font-size: 1.25rem;
    color: var(--primary-burgundy);
    transition: all 0.3s ease;
}

/* Text Ribbon - Always Visible */
.career-text-ribbon {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.65rem 1.5rem;
    padding-left: 1.75rem;
    margin-left: -0.75rem;
    border-radius: 0 25px 25px 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 100%;
    /* Allow full width in grid cell */
    position: relative;
    z-index: 1;
}

.career-role-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: all 0.3s ease;
}

/* Hover Effects */
.career-icon-item:hover .career-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    background: var(--white);
}

.career-icon-item:hover .career-icon-circle i {
    transform: scale(1.1);
    color: var(--primary-magenta);
}

.career-icon-item:hover .career-text-ribbon {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transform: translateX(5px);
}

.career-icon-item:hover .career-role-title {
    color: var(--primary-burgundy);
}

/* Right Column: Image Wrapper with Arch Shape */
.career-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    /* Changed to hidden to clip image */
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Removing padding for full bleed effect optionally, or keep consistent */
}

/* Image Container with Arch Shape */
.career-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Triangle / Diagonal Shape */
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 0;
    border: none;
    /* Removed border */
    box-shadow: none;
    /* Simplified for clean look, or add subtle shadow if needed */
    transform: none;
    /* Removed skew */
    position: relative;
    z-index: 2;
}

/* Career Image Overlay - Removed Skew */
.career-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(70, 11, 47, 0.2) 0%, rgba(70, 11, 47, 0.6) 100%);
    pointer-events: none;
    /* Match Triangle Shape */
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 0;
    transform: none;
    z-index: 3;
    display: none;
    /* Hiding overlay for cleaner image look, or keep */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .career-content-wrapper {
        padding: 2.5rem 2rem;
        min-height: 550px;
    }

    .career-heading {
        font-size: 2rem;
    }

    .career-icon-circle {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .career-icon-circle i {
        font-size: 1.2rem;
    }

    .career-role-title {
        font-size: 0.95rem;
    }

    .career-image-wrapper {
        min-height: 550px;
    }
}

/* Below 1024px: Stack Layout */
@media (max-width: 1024px) {
    .career-opportunities-section .row {
        min-height: auto;
    }

    .career-content-wrapper {
        min-height: auto;
        padding: 2.5rem 2rem;
    }

    /* Change grid to 1 column on smaller tablet screens if needed, otherwise keep 2 */
    .career-icons-list {
        gap: 1.25rem;
    }

    .career-image-wrapper {
        min-height: 450px;
        padding: 2rem;
        /* Reset shape for mobile if desired, or keep arch */
        border-radius: 16px;
    }

    .career-full-image {
        border-radius: 16px;
        /* Return to standard rounded rect on mobile stack */
    }

    .career-heading {
        font-size: 1.85rem;
    }

    .career-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    /* Switch to 1 column grid for mobile */
    .career-icons-list {
        grid-template-columns: 1fr;
    }

    .career-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .career-header {
        margin-bottom: 1.5rem;
    }

    .career-heading {
        font-size: 1.75rem;
    }

    .career-subtitle {
        font-size: 0.95rem;
    }

    .career-icons-list {
        gap: 0.85rem;
    }

    .career-icon-circle {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .career-icon-circle i {
        font-size: 1.15rem;
    }

    .career-text-ribbon {
        padding: 0.6rem 1.25rem;
        padding-left: 1.5rem;
    }

    .career-role-title {
        font-size: 0.9rem;
    }

    .career-image-wrapper {
        min-height: 300px;
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .career-content-wrapper {
        padding: 1.75rem 1rem;
    }

    .career-heading {
        font-size: 1.5rem;
    }

    .career-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .career-icon-circle {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .career-icon-circle i {
        font-size: 1.1rem;
    }

    .career-text-ribbon {
        padding: 0.55rem 1rem;
        padding-left: 1.25rem;
        margin-left: -0.5rem;
    }

    .career-role-title {
        font-size: 0.85rem;
    }

    .career-image-wrapper {
        min-height: 250px;
        padding: 1rem;
    }
}

/* ========================================
   Admission Process Section
   ======================================== */
.admission-process-section {
    background: #f8fafc;
    position: relative;
    padding: 5rem 0 !important;
}

.admission-steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 1rem;
    /* padding: 3rem 1rem; */
}

/* Connecting Line - Horizontal */
.admission-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 10.5%;
    right: 10.5%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-burgundy) 0%,
            var(--primary-magenta) 50%,
            var(--primary-gold) 100%);
    z-index: 1;
    border-radius: 10px;
}

.admission-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    max-width: 180px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admission-step-item:hover {
    transform: translateY(-15px);
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(70, 11, 47, 0.15);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    transition: all 0.4s ease;
}

.admission-step-item:hover .step-icon {
    background: var(--accent-gradient);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(147, 25, 98, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--primary-magenta);
    transition: all 0.4s ease;
}

.admission-step-item:hover .step-icon i {
    color: var(--white);
    transform: scale(1.15);
}

.step-number {
    position: absolute;
    top: -5px;
    /* top: -10px; */
    right: 45px;
    /* right: -10px; */
    background: var(--accent-gradient);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.step-content {
    padding: 0 5px;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--dark-gray);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .admission-step-item {
        max-width: 160px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .admission-steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 2rem 1rem;
    }

    /* Vertical Connecting Line for Mobile */
    .admission-steps-wrapper::before {
        top: 40px;
        bottom: 40px;
        left: 50%;
        width: 3px;
        height: auto;
        right: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg,
                var(--primary-burgundy) 0%,
                var(--primary-magenta) 50%,
                var(--primary-gold) 100%);
    }

    .admission-step-item {
        width: 100%;
        max-width: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .admission-step-item:hover {
        transform: translateY(-10px);
        box-shadow: none;
    }

    .step-icon-wrapper {
        margin-bottom: 1rem;
        margin-right: 0;
        flex-shrink: 0;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-number {
        right: -5px;
        top: -5px;
    }

    .step-content {
        flex: 0;
        padding: 10px;
        background-color: #fff;
        border-radius: 10px;
    }
}

@media (max-width: 575px) {
    .admission-step-item {
        padding: 1.25rem;
        max-width: 100%;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.35rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-desc {
        font-size: 0.8rem;
    }
}


/* ========================================
   Course Structure Section
   ======================================== */
.course-structure-section {
    background: #ffffff;
    position: relative;
    padding: 5rem 0 !important;
}

.course-structure-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

/* Accordion Wrapper - Two Column Layout */
.accordion-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual Accordion */
.accordion {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(70, 11, 47, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion:hover {
    box-shadow: 0 6px 20px rgba(70, 11, 47, 0.15);
}

/* Accordion Header */
.accordion-header {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(70, 11, 47, 1) 0%, rgba(147, 25, 98, 1) 100%);
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: var(--white);
}

.accordion-content.active {
    max-height: 1000px;
    padding: 1.5rem;
}

/* Course Table Styling */
.crs-tab {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.crs-tab tr {
    border-bottom: 1px solid #e5e7eb;
}

.crs-tab tr:last-child {
    border-bottom: none;
}

.crs-tab td {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: middle;
}

.crs-tab td:first-child {
    font-weight: 700;
}

.crs-tab td:last-child {
    font-weight: 700;
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .accordion-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .course-structure-heading {
        font-size: 2rem;
    }

    .accordion-header {
        font-size: 1.1rem;
        padding: 1rem 1.25rem;
    }

    .crs-tab td {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .course-structure-section {
        padding: 3rem 0 !important;
    }

    .course-structure-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .accordion-content.active {
        padding: 1rem;
    }

    .crs-tab td {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
    }

    .crs-tab td:last-child {
        min-width: 100px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .course-structure-heading {
        font-size: 1.5rem;
    }

    .accordion-header {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
    }

    .crs-tab td {
        padding: 0.5rem 0.625rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   Program Fee Section
   ======================================== */
.program-fee-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    padding: 5rem 0 !important;
    overflow: hidden;
}

.program-fee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 25, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.program-fee-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(70, 11, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.program-fee-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

/* Glassmorphism Fee Cards */
.fee-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 32px rgba(70, 11, 47, 0.1),
        0 4px 16px rgba(147, 25, 98, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.fee-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 16px 48px rgba(70, 11, 47, 0.15),
        0 8px 24px rgba(147, 25, 98, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 1);
    border-color: rgba(147, 25, 98, 0.2);
}

.fee-card:hover::before {
    transform: scaleX(1);
}

/* Fee Icon */
.fee-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 20px rgba(147, 25, 98, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.fee-card:hover .fee-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 28px rgba(147, 25, 98, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.fee-icon {
    font-size: 2rem;
    color: var(--white);
}

/* Fee Amount */
.fee-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fee Label */
.fee-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* EMI Badge */
.emi-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.emi-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Fee Buttons */
.fee-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.fee-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fee-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fee-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.fee-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.fee-btn-outline {
    background: transparent;
    color: #2563eb;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.fee-btn-outline:hover {
    background: #2563eb;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .program-fee-heading {
        font-size: 2rem;
    }

    .fee-card {
        padding: 2.5rem 1.5rem;
    }

    .fee-amount {
        font-size: 2.25rem;
    }

    .fee-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .fee-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .program-fee-section {
        padding: 3rem 0 !important;
    }

    .program-fee-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .fee-card {
        padding: 2rem 1.25rem;
    }

    .fee-amount {
        font-size: 2rem;
    }

    .fee-label {
        font-size: 1rem;
    }

    .fee-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .fee-btn-primary,
    .fee-btn-outline {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .program-fee-heading {
        font-size: 1.5rem;
    }

    .fee-amount {
        font-size: 1.75rem;
    }

    .fee-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .fee-icon {
        font-size: 1.5rem;
    }

    .emi-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Banner Info Boxes Styles */
.banner-info-container {
    max-width: 100%;
}

.banner-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.banner-info-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: var(--primary-burgundy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    font-weight: 700;
}

.info-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
}

.info-emi-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--primary-burgundy);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .banner-info-box {
        padding: 1rem;
    }

    .info-value {
        font-size: 0.9rem;
    }
}

/* Banner Action Buttons */
.banner-action-buttons {
    margin-top: 2rem;
}

.btn-brochure {
    background: var(--primary-gold);
    color: var(--primary-burgundy);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-brochure:hover {
    background: var(--white);
    color: var(--primary-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.btn-apply-outline {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-apply-outline:hover {
    background: var(--white);
    color: var(--primary-burgundy) !important;
    transform: translateY(-3px);
}

/* Sub Anchor Nav Styles */
.sub-anchor-nav {
    background: var(--white);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 2px solid var(--medium-gray);
    position: sticky;
    top: calc(var(--header-height) - -14px);
    z-index: 999;
    transition: all 0.3s ease;
    padding: 0;
}

.sub-anchor-nav .nav-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 0.75rem 0;
    gap: 0.5rem;
}

.sub-anchor-nav .nav-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.anchor-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.anchor-link:hover {
    color: var(--primary-magenta);
}

.anchor-link.active {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(70, 11, 47, 0.2);
}

@media (max-width: 768px) {
    .sub-anchor-nav .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .anchor-link {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .sub-anchor-nav {
        top: 80px;
        /* Approximate header height for mobile if different */
    }
}

/* Fix horizontal overflow in banner for mobile */
@media (max-width: 768px) {

    .banner-info-container,
    .banner-action-buttons {
        max-width: 100%;
        /* overflow-x: hidden; */
    }

    .hero-form-card {
        margin: 0;
        max-width: 100%;
    }

    .text-white {
        word-wrap: break-word;
    }
}

/* FAQ Section Premium Background Enhancement */
.faq-section {
    background-color: #0d0108;
    /* Ultra dark burgundy base */
    background-image:
        radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1.5px, transparent 0);
    /* Subtle Gold Dots */
    background-size: 48px 48px;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

/* Galaxy/Nebula Glow Effects */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(70, 11, 47, 0.45) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(139, 16, 80, 0.35) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

/* Adjust text colors for dark background */
.faq-section .section-title {
    color: var(--white) !important;
}

.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.faq-section .question-text {
    color: var(--white);
}

.faq-section .answer-text,
.faq-section .faq-answer p {
    color: rgba(255, 255, 255, 0.85);
}

.faq-section .faq-icon i {
    color: var(--primary-gold);
}

/* Active State for FAQ Items */
.faq-section .faq-item.active {
    background: rgba(70, 11, 47, 0.3);
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {

    .navbar>.container,
    .navbar>.container-fluid {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-brand {
        order: 1 !important;
        grid-row: 1 !important;
        grid-column: 1 !important;
        justify-self: start !important;
        margin: 0 !important;
    }

    .btn-apply.d-lg-none {
        order: 2 !important;
        grid-row: 1 !important;
        grid-column: 2 !important;
        justify-self: center !important;
        margin: 0 !important;
    }

    .navbar-toggler {
        order: 3 !important;
        grid-row: 1 !important;
        grid-column: 3 !important;
        justify-self: end !important;
        margin: 0 !important;
    }

    .navbar-collapse {
        order: 4 !important;
        grid-row: 2 !important;
        grid-column: 1 / span 3 !important;
        width: 100% !important;
        background: #fff !important;
    }

    .navbar-nav {
        width: 100% !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
    }

    .nav-item {
        width: 100% !important;
        margin: 0 !important;
    }

    .nav-link {
        width: 100% !important;
        padding: 15px 20px !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .dropdown-menu {
        width: 100% !important;
        border: none !important;
        background: #f8f9fa !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dropdown-item {
        padding: 12px 40px !important;
        width: 100% !important;
    }
}

/* Header Top Contact Info */
.header-top {
    background: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

.contact-link {
    color: var(--primary-burgundy) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-link:hover {
    color: var(--primary-magenta) !important;
}

.contact-link i {
    color: var(--primary-magenta);
}

@media (max-width: 768px) {
    .contact-link {
        font-size: 0.75rem !important;
        margin-right: 15px !important;
    }

    .contact-link:last-child {
        margin-right: 0 !important;
    }

    .contact-link i {
        font-size: 0.8rem !important;
    }
}