/* ========================================
   VLSI Banner Section - Page Specific Styles
   ======================================== */

/* Banner Section */
.vlsi-banner-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4f 50%, #0a1628 100%);
    padding: 30px 0px 60px;
    position: relative;
    overflow: hidden;
}

.vlsi-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 202, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 202, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Breadcrumb */
.vlsi-breadcrumb {
    position: absolute;
    left: 40px;
    top: 6%;
    z-index: 10;
    margin-bottom: 0;
}

.vlsi-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vlsi-breadcrumb ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.vlsi-breadcrumb ul li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.vlsi-breadcrumb ul li a {
    color: #ffca06;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vlsi-breadcrumb ul li a:hover {
    color: #fff;
}

/* Banner Content */
.vlsi-banner-content {
    position: relative;
    z-index: 1;
    min-height: auto;
    padding-top: 40px;
}

/* Left Side: Text Content */
.vlsi-banner-text {
    padding-right: 30px;
}

.vlsi-banner-subtitle {
    color: #ffca06;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.vlsi-banner-title {
    color: #fff;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease;
}

.vlsi-banner-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

/* Banner Key Points */
.vlsi-banner-key-points {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    animation: fadeInUp 1.1s ease;
}

.vlsi-banner-key-points li {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.vlsi-banner-key-points li i {
    color: #ffca06;
    font-size: 14px;
    background: rgba(255, 202, 6, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vlsi-banner-key-points li:hover {
    transform: translateX(10px);
}

.vlsi-banner-key-points li:hover i {
    background: #ffca06;
    color: #000;
}

/* Buttons */
.vlsi-banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.vlsi-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vlsi-btn::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 ease, height 0.6s ease;
}

.vlsi-btn:hover::before {
    width: 300px;
    height: 300px;
}

.vlsi-btn i {
    transition: transform 0.3s ease;
}

.vlsi-btn:hover i {
    transform: translateX(5px);
}

.vlsi-btn-primary {
    background: #ffca06;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 202, 6, 0.3);
}

.vlsi-btn-primary:hover {
    background: #e6b605;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 202, 6, 0.4);
}

.vlsi-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ffca06;
}

.vlsi-btn-secondary:hover {
    background: #ffca06;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 202, 6, 0.3);
}

/* Right Side: Form */
.vlsi-banner-form {
    background: #1e335e;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 202, 6, 0.2);
    border-radius: 16px;
    padding: 15px 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease;
}

.vlsi-form-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.vlsi-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffca06;
    border-radius: 2px;
}

.vlsi-banner-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000 !important;
    /* padding: 12px 15px; */
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.vlsi-banner-form .form-control:focus {
    background: #fff;
    border-color: #ffca06;
    box-shadow: 0 0 0 3px rgba(255, 202, 6, 0.1);
    outline: none;
    color: #000 !important;
}

.vlsi-banner-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

.vlsi-banner-form .form-control option {
    background: #fff;
    color: #000 !important;
}

.vlsi-banner-form select.form-control {
    background: rgba(255, 255, 255, 0.95);
    color: #000 !important;
    cursor: pointer;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

.vlsi-banner-form select.form-control option {
    background: #fff;
    color: #000 !important;
    padding: 10px;
}

.vlsi-banner-form select.form-control option:first-child {
    color: rgba(0, 0, 0, 0.6) !important;
}

.vlsi-banner-form input.form-control {
    color: #000 !important;
}

.vlsi-banner-form input.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

/* Ultra-specific selectors using ID for maximum specificity */
#enqur .form-control,
#enqur input.form-control,
#enqur select.form-control {
    background: #fff !important;
    color: #000 !important;
}

#enqur select.form-control option {
    background: #fff !important;
    color: #000 !important;
}

#enqur input.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

.vlsi-banner-form .btn-warning {
    background: #ffca06;
    color: #000;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
}

.vlsi-banner-form .btn-warning:hover:not(:disabled) {
    background: #e6b605;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 202, 6, 0.4);
}

.vlsi-banner-form .btn-warning:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Responsive Design */
@media (max-width: 991px) {
    .vlsi-banner-section {
        padding: 80px 0 40px;
    }

    .vlsi-banner-content {
        min-height: auto;
        padding-top: 30px;
    }

    .vlsi-banner-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .vlsi-banner-title {
        font-size: 42px;
    }

    .vlsi-banner-tagline {
        font-size: 18px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .vlsi-banner-buttons {
        justify-content: center;
    }

    .vlsi-breadcrumb {
        position: absolute;
        bottom: auto;
        left: 15px;
        right: 15px;
        top: auto;
        margin-top: 0;
        padding-left: 0;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .vlsi-banner-section {
        padding: 70px 0px 40px;
    }

    /* Ensure the banner section has enough height for carousel + form */
    #home {
        min-height: 750px;
    }

    /* Fix overlay container on mobile - remove height constraint */
    #home .container-fluid.position-absolute {
        position: relative !important;
        height: auto !important;
    }

    /* Adjust row alignment on mobile */
    #home .row.align-items-center {
        align-items: flex-start !important;
    }

    .vlsi-banner-content {
        padding-top: 10px;
    }

    .vlsi-breadcrumb {
        display: none;
        /* Hide on mobile to avoid overlap */
    }

    .vlsi-breadcrumb ul {
        font-size: 12px;
        justify-content: flex-start;
    }

    .vlsi-banner-subtitle {
        font-size: 16px;
    }

    .vlsi-banner-title {
        font-size: 32px;
    }

    .vlsi-banner-tagline {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .vlsi-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .vlsi-banner-form {
        padding: 30px 20px;
    }

    .vlsi-form-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .vlsi-banner-section {
        padding: 70px 0px 40px;
    }

    .vlsi-banner-title {
        font-size: 28px;
    }

    .vlsi-banner-tagline {
        font-size: 14px;
    }

    .vlsi-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* VLSI Sticky Navigation */
.vlsi-nav-wrapper {
    /* background-color: #000; */
    /* Removed black background as requested */
    padding: 10px 0;
    position: relative;
    /* Default state */
    z-index: 998;
    transition: all 0.3s ease;
}

/* Class to be added via JS when scrolled */
.vlsi-nav-wrapper.fixed-nav {
    position: fixed;
    top: 120px;
    /* Aligned with .main-content fixed header height */
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    /* White background for better contrast when sticky */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #ffca06;
}

.vlsi-nav-container {
    display: flex;
    justify-content: flex-start;
    /* Better for horizontal scroll */
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    /* Force single row */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 4px 15px;
}

.vlsi-nav-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.vlsi-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background-color: #1a2f4f;
    /* Brand blue variant */
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    /* Important for horizontal scroll */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
}

.vlsi-nav-item:hover {
    background-color: #ffca06;
    /* Brand yellow */
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 202, 6, 0.2);
}

.vlsi-nav-item.active {
    background-color: #ffca06;
    /* Brand yellow */
    color: #000 !important;
    border-color: #ffca06;
    box-shadow: 0 4px 15px rgba(255, 202, 6, 0.3);
}

@media (max-width: 991px) {
    .vlsi-nav-wrapper.fixed-nav {
        top: 130px;
        /* Aligned with mobile fixed header height */
    }

    .vlsi-nav-container {
        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
        gap: 10px;
    }

    .vlsi-nav-item {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Fix for section cut-off when clicking nav links */
#overview,
#Eligibility,
#prog-objectives,
#prog-highlights,
#prog-outcome,
#Coursefees,
#fees,
#Process,
#Certificate {
    scroll-margin-top: 180px;
    /* Header (120px) + Nav (~50px) + Buffer */
}

@media (max-width: 991px) {

    #overview,
    #Eligibility,
    #prog-objectives,
    #prog-highlights,
    #prog-outcome,
    #Coursefees,
    #fees,
    #Process,
    #Certificate {
        scroll-margin-top: 160px;
        /* Mobile Header (100px) + Nav (~50px) + Buffer */
    }
}

/* ============================================================ 
   VLSI Program Highlights Section (Consolidated)
   ============================================================ */

.vlsi-highlights-section {
    padding: 20px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Geometric Background Decor */
.vlsi-highlights-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(26, 47, 79, 0.03) 0%, rgba(255, 202, 6, 0.03) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -200px;
    right: -200px;
    z-index: 0;
}

.vlsi-highlights-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(238, 59, 55, 0.03) 0%, rgba(26, 47, 79, 0.03) 100%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 0;
}

.vlsi-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.vlsi-highlight-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 47, 79, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vlsi-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 47, 79, 0.1);
    border-color: #ffca06;
}

.vlsi-highlight-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a2f4f;
    margin-bottom: 12px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.vlsi-highlight-value {
    font-size: 22px;
    font-weight: 800;
    color: #1a2f4f;
    margin: 0;
}

.vlsi-highlight-card:nth-child(2) .vlsi-highlight-value {
    color: #ee3b37;
}

/* Merged Card Styling */
.vlsi-highlight-card.merged-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 20px 15px;
}

.highlight-info-block {
    width: 100%;
}

.highlight-card-divider {
    width: 60%;
    height: 1px;
    background: rgba(26, 47, 79, 0.1);
    margin: 4px auto;
}

.vlsi-highlight-value.mini {
    font-size: 16px;
    font-weight: 700;
}

/* Mobile Responsive Highlights */
@media (max-width: 1199px) {
    .vlsi-highlight-value {
        font-size: 19px;
    }

    .vlsi-highlight-value.mini {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .vlsi-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vlsi-highlights-section {
        padding: 40px 0;
    }

    .vlsi-highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vlsi-highlight-card {
        padding: 25px;
    }

    .vlsi-highlight-value {
        font-size: 20px;
    }
}

/* ============================================================ 
   PROGRAM FEATURES REDESIGN (Objectives, Highlights, Outcomes)
   Professional, Academic & Modern Aesthetics
   ============================================================ */

/* Common Section Spacing */
.vlsi-feature-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.vlsi-feature-section.alt-bg {
    background-color: #f8f9fa;
}

.vlsi-feature-section.dark-bg {
    background: linear-gradient(135deg, #1a2f4f 0%, #0a1628 100%);
    color: #fff;
}

/* Section Header Styling */
.vlsi-feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.vlsi-feature-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a2f4f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vlsi-feature-header .title-hr {
    width: 80px;
    height: 4px;
    background: #ffca06;
    margin: 0 auto;
    border: none;
    border-radius: 2px;
}

.dark-bg .vlsi-feature-header h2 {
    color: #fff;
}

/* 1. Program Objectives - Modern Glass Cards */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.objective-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #ffca06;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 47, 79, 0.1);
}

.objective-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 202, 6, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.objective-icon i {
    font-size: 24px;
    color: #1a2f4f;
}

.objective-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
    margin: 0;
}

/* 2. Program Highlights - Branded High-Impact Cards */
.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.highlight-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(255, 202, 6, 0.1);
    border-color: #ffca06;
    transform: scale(1.02);
}

.highlight-tag i {
    color: #ffca06;
    font-size: 22px;
    width: 30px;
    text-align: center;
}

.highlight-tag span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* 3. Program Outcome - Professional Results Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.outcome-box {
    background: #fff;
    padding: 40px;
    border-radius: 2px;
    /* Academic block style */
    border-top: 4px solid #1a2f4f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

.outcome-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background: #ffca06;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1a2f4f;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(255, 202, 6, 0.3);
}

.outcome-box i {
    font-size: 32px;
    color: #ee3b37;
    margin-bottom: 20px;
    display: block;
}

.outcome-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .vlsi-feature-section {
        padding: 50px 0;
    }

    .vlsi-feature-header h2 {
        font-size: 28px;
    }

    .objective-card,
    .outcome-box {
        padding: 25px;
    }

    .highlights-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ 
   PROGRAM STRUCTURE ACCORDION REDESIGN 
   Professional & Clean Grid Layout
   ============================================================ */

.curriculum-accordion-container {
    margin-top: 40px;
}

.vlsi-curriculum-accordion {
    max-width: 100%;
}

.vlsi-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(26, 47, 79, 0.1);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vlsi-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(26, 47, 79, 0.08);
}

.vlsi-accordion-header {
    border-bottom: none;
    margin-bottom: 0;
}

.vlsi-accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: #1a2f4f !important;
    background: #ffffff !important;
    padding: 20px 25px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
}

.vlsi-accordion-button:not(.collapsed) {
    background: #ffca06 !important;
    color: #1a2f4f !important;
}

.vlsi-accordion-button::after {
    display: none;
    /* Using custom FA icons instead */
}

.vlsi-accordion-button .toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.vlsi-accordion-button:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}

.vlsi-accordion-body {
    padding: 0;
    background: #fff;
}

.vlsi-accordion-body .table-responsive {
    margin: 0;
    border: none;
}

.vlsi-accordion-body .table {
    margin-bottom: 0;
    border: none !important;
}

.vlsi-accordion-body tr td {
    padding: 20px 25px !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
    vertical-align: top;
    text-align: left;
}

/* Eligibility List Styles */
.vlsi-eligibility-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 25px !important;
}

.vlsi-eligibility-list li {
    position: relative;
    padding-left: 20px !important;
    margin-bottom: 20px !important;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    transition: all 0.3s ease;
}

.vlsi-eligibility-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #1a2f4f;
    /* Theme Dark Blue */
    font-size: 15px;
    transition: all 0.3s ease;
}

.vlsi-eligibility-list li:hover {
    padding-left: 20px !important;
}

.vlsi-eligibility-list li:hover i {
    color: #ffca06;
    /* Theme Yellow */
}

/* ============================================================ 
   PREMIUM TAB STYLING (Refund/Deferment Policies)
   Modern Capsule Design with Glow Effects
   ============================================================ */

.nav-tabs#myTab {
    border: none !important;
    gap: 15px;
    margin-bottom: 30px !important;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}

.nav-tabs#myTab .nav-item {
    margin-bottom: 0;
}

.nav-tabs#myTab .nav-link {
    background: #ffffff !important;
    color: #1a2f4f !important;
    border: 1px solid rgba(26, 47, 79, 0.1) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
}

.nav-tabs#myTab .nav-link:hover {
    background: #fcfcfc !important;
    border-color: #ffca06 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05) !important;
}

.nav-tabs#myTab .nav-link.active {
    background: #ffca06 !important;
    color: #1a2f4f !important;
    border-color: #ffca06 !important;
    box-shadow: 0 8px 20px rgba(255, 202, 6, 0.4) !important;
    transform: translateY(-2px);
}

/* Enhanced Tab Content Box */
.nav-tabs#myTab~.tab-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 47, 79, 0.05);
    animation: fadeInUp 1s ease;
}

.nav-tabs#myTab~.tab-content p {
    color: #444;
    line-height: 1.8;
}

.nav-tabs#myTab~.tab-content strong {
    color: #1a2f4f;
}

@media (max-width: 768px) {
    .nav-tabs#myTab {
        justify-content: center;
        gap: 10px;
    }

    .nav-tabs#myTab .nav-link {
        font-size: 13px !important;
        padding: 10px 20px !important;
        width: 100%;
        text-align: center;
    }

    .nav-tabs#myTab~.tab-content {
        padding: 20px;
    }
}

.vlsi-accordion-body b {
    color: #1a2f4f;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}


.vlsi-accordion-body ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    list-style: disc;
    margin-left: 15px;
}

/* Grid adjustments for Desktop (2 items per row) */
@media (min-width: 992px) {
    .curriculum-accordion-grid {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .grid-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .grid-item {
        width: 100%;
    }
}

/* ============================================================ 
   NEW PROGRAM OUTCOME SECTION - Reference Image Based Design
   Two-column layout with circular icons on the left
   ============================================================ */

.program-outcomes-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center the last item only when there's an odd number of items */
.outcome-item-new:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
}

.outcome-item-new {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 47, 79, 0.08);
}

.outcome-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 47, 79, 0.12);
    border-color: #ffca06;
    background: linear-gradient(135deg, rgba(26, 47, 79, 0.03) 0%, rgba(255, 202, 6, 0.08) 100%);
}

.outcome-icon-new {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #1a2f4f 0%, #2a4870 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(26, 47, 79, 0.2);
    transition: all 0.3s ease;
}

.outcome-item-new:hover .outcome-icon-new {
    background: linear-gradient(135deg, #ffca06 0%, #e8b706 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 202, 6, 0.4);
}

.outcome-icon-new i {
    font-size: 30px;
    color: #ffca06;
    transition: all 0.3s ease;
}

.outcome-item-new:hover .outcome-icon-new i {
    color: #1a2f4f;
    transform: scale(1.1);
}

.outcome-content-new {
    flex: 1;
    display: flex;
    align-items: center;
}

.outcome-content-new p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .program-outcomes-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .outcome-item-new {
        padding: 25px;
    }

    .outcome-icon-new {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .outcome-icon-new i {
        font-size: 26px;
    }

    .outcome-content-new p {
        font-size: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .program-outcomes-new {
        gap: 20px;
    }

    .outcome-item-new {
        padding: 20px;
        gap: 18px;
    }

    .outcome-icon-new {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .outcome-icon-new i {
        font-size: 24px;
    }

    .outcome-content-new p {
        font-size: 14px;
        line-height: 1.6;
    }
}