
    :root {
        --primary: #0b3d91;
        --accent: #fffd06;
        --nav1: #254e9b;
        --nav2: #1c3f82;
        --nav3: #2b5cc0;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #fff;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

/* TOP BAR */

.top-bar{
background:#0b2c5f;
color:#fff;
font-size:14px;
}

.top-container{
max-width:90vw;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
}

.top-left{
display:flex;
gap:20px;
}

.top-left a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.top-left a:hover {
    color: #ffd33d;
}

.top-left i {
    color: #ffd33d;
    font-size: 13.5px;
}

.top-marquee-container {
    flex: 1;
    margin: 0 25px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3px 25px 3px 4px;
    overflow: hidden;
    height: 32px;
}

.top-marquee-tag {
    background: linear-gradient(135deg, #ffd33d, #ffb800);
    color: #0b2c5f;
    font-size: 11px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 211, 61, 0.3);
    flex-shrink: 0;
    margin-right: 10px;
}

.top-marquee-tag i {
    font-size: 10px;
    animation: marqueeBlink 1.5s infinite;
}

@keyframes marqueeBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.top-marquee {
    flex: 1;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.marquee-item {
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
}

.marquee-item i.text-gold {
    color: #ffd33d;
    font-size: 10px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.marquee-item:hover i.text-gold {
    transform: rotate(360deg) scale(1.3);
}

.marquee-apply-link {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.marquee-apply-link:hover {
    color: #ffd33d !important;
    transform: scale(1.02);
    animation: marqueeGlowPulse 1.5s infinite ease-in-out;
}

.marquee-apply-link i {
    color: #ffd33d !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.marquee-apply-link:hover i {
    color: #ffffff !important;
    transform: translate(2px, -2px) rotate(15deg);
}

@keyframes marqueeGlowPulse {
    0%, 100% { text-shadow: 0 0 6px rgba(255, 211, 61, 0.4); }
    50% { text-shadow: 0 0 14px rgba(255, 211, 61, 0.8), 0 0 22px rgba(255, 211, 61, 0.4); }
}

.top-right{
display:flex;
gap:10px;
align-items:center;
}

.top-right a{
color:#fff;
text-decoration:none;
padding:10px 22px;
border-radius:30px;
font-size:14px;
font-weight:600;
transition:.3s;
display:inline-flex;
align-items:center;
justify-content:center;
}

.top-right a i{
margin-right:6px;
font-size:14px;
}

/* Grievance Button */
.top-right a.top-grievance-btn {
    background: #ffff00;
    color: #000000;
}

.top-right a.top-grievance-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Apply Now Button */
.top-right a.top-apply-btn {
    background: #e00000;
    color: #ffffff;
}

.top-right a.top-apply-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* NAVBAR */

.web-header{
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
position: relative;
z-index: 1000;
}

.web-header.fixed{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* CONTAINER */

.web-container{
max-width:90vw;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 20px;
}

/* LOGO */

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

.web-logo img{
    height:45px;
    display: block;
    max-width: 100%;
}

/* NAVIGATION */

.web-nav{
display:flex;
gap:25px;
align-items:center;
}

.web-nav a{
text-decoration:none;
color:#4b5563;
font-weight:550;
font-size:16.5px;
transition:color 0.2s ease;
}

.web-nav a:hover,
.web-nav a.active,
.dropdown:hover > a,
.dropdown.active > a {
color:#0b2c5f;
}

.web-nav a .home-text {
    display: none;
}
.web-nav a .home-icon {
    display: inline-block;
}

/* DROPDOWN & MENU EFFECTS */

.dropdown{
position:relative;
z-index:1000;
display:inline-flex;
justify-content:center;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px; /* Generous width matching dropdown menu to prevent hover loss */
    height: 48px; /* Spans the gap so hover is not lost */
    background: transparent;
    display: none;
    z-index: 999;
}
.dropdown:hover::after {
    display: block;
}

/* Caret Icon Styling */
.nav-caret {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

/* Desktop Sliding Underline & Dot Indicator */
@media (min-width: 901px) {
    .web-nav > a, 
    .dropdown > a {
        position: relative;
        padding: 6px 0;
    }
    
    .web-nav > a::after, 
    .dropdown > a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #0b2c5f;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .web-nav > a:hover::after, 
    .dropdown:hover > a::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    /* Active Link Indicator Dot/Line */
    .web-nav > a.active::after,
    .dropdown.active > a::after {
        transform: scaleX(1);
        background-color: #0b2c5f;
    }
    
    /* Dot indicator on active elements */
    .web-nav > a.active::before,
    .dropdown.active > a::before {
        content: '•';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        color: #0b2c5f;
        font-size: 16px;
        font-weight: bold;
    }
}

.dropdown-menu{
position:absolute;
top:calc(100% + 42px);
left:-40px;
background:rgba(255, 255, 255, 0.95); /* High quality frosty white */
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);
    box-shadow: 0 15px 40px rgba(11, 44, 95, 0.12); /* Premium soft shadow */
    border: 1px solid rgba(11, 44, 95, 0.08);
    border-radius:20px; /* Large rounded corners as requested */
    display:flex;
flex-direction:column;
min-width:280px; /* Wider to support premium layout */
max-width:450px;
width:max-content;
padding:16px;
gap:10px;
opacity:0;
visibility:hidden;
transform:translateY(12px);
transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
pointer-events:none;
z-index: 1000;
}

/* Upward pointing triangle arrow (Bordered to stand out on white background) */
.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 75px;
    border: 9px solid transparent;
    border-bottom-color: rgba(11, 44, 95, 0.08); /* Outer triangle matching shadow/border color */
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 75px;
    border: 8px solid transparent;
    border-bottom-color: #ffffff; /* Inner white triangle */
}

.dropdown-menu a.dropdown-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    white-space: normal; /* Allow text wrap */
    border-bottom: none !important;
}

.dropdown-menu a.dropdown-item-premium:hover {
    background: rgba(11, 44, 95, 0.04);
}

.dropdown-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(11, 44, 95, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b2c5f;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.dropdown-menu a.dropdown-item-premium:hover .dropdown-item-icon {
    background: #0b2c5f;
    color: #ffffff;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.dropdown-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.25s ease;
    white-space: nowrap; /* Keep on one single line */
}

.dropdown-menu a.dropdown-item-premium:hover .dropdown-item-title {
    color: #0b2c5f;
}

.dropdown-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.4;
}

.dropdown:hover .dropdown-menu{
opacity:1;
visibility:visible;
transform: translateY(0);
pointer-events:auto;
}

/* APPLY BUTTON */

.apply-btn{
background:#0b2c5f;
color:#fff;
padding:13px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
font-size:15px;
display:inline-flex;
align-items:center;
transition:all 0.2s ease;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.apply-btn i{
margin-left:8px;
font-size:14px;
transition:transform 0.2s ease;
}

.apply-btn:hover{
background:#ffd33d;
color:#0b2c5f;
box-shadow:0 6px 15px rgba(255, 211, 61, 0.4);
}

.apply-btn:hover i{
transform:translateX(3px);
}

/* MOBILE */

.menu-toggle{
display:none;
flex-direction:column;
justify-content:space-between;
width:26px;
height:18px;
cursor:pointer;
position:relative;
z-index:9999;
}

.menu-toggle span{
display:block;
width:100%;
height:2.5px;
background-color:#0b2c5f;
border-radius:2px;
transition:all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Backdrop Overlay Blur */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 44, 95, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999; /* Just below mobile nav */
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* RESPONSIVE */

@media(max-width:900px){

.web-container {
    padding: 10px 15px;
}

.web-logo img {
    height: 35px;
}

.top-bar{
display:none;
}

.web-nav{
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(255, 255, 255, 0.98);
backdrop-filter:blur(10px);
flex-direction:column;
align-items:flex-start;
padding:10px 0;
display:none;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
border-top:1px solid #f1f3f7;
border-bottom:3px solid #0b2c5f;
border-bottom-left-radius:16px;
border-bottom-right-radius:16px;
gap:2px;
}

.web-nav.active{
display:flex;
animation: slideInMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInMobile {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.web-nav > a, .dropdown > a {
    width:calc(100% - 30px);
    padding:8px 16px;
    margin:1px 15px;
    font-size:14px;
    font-weight:500;
    color:#4b5563;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-sizing: border-box;
    border-radius:8px;
    transition: background 0.25s ease, color 0.25s ease;
    border-bottom:none;
}

.web-nav > a, .web-nav > .dropdown {
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.25s ease, color 0.25s ease;
}

.web-nav.active > a, .web-nav.active > .dropdown {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered transition delays */
.web-nav.active > *:nth-child(1) { transition-delay: 0.04s; }
.web-nav.active > *:nth-child(2) { transition-delay: 0.08s; }
.web-nav.active > *:nth-child(3) { transition-delay: 0.12s; }
.web-nav.active > *:nth-child(4) { transition-delay: 0.16s; }
.web-nav.active > *:nth-child(5) { transition-delay: 0.20s; }
.web-nav.active > *:nth-child(6) { transition-delay: 0.24s; }
.web-nav.active > *:nth-child(7) { transition-delay: 0.28s; }
.web-nav.active > *:nth-child(8) { transition-delay: 0.32s; }
.web-nav.active > *:nth-child(9) { transition-delay: 0.36s; }
.web-nav.active > *:nth-child(10) { transition-delay: 0.40s; }
.web-nav.active > *:nth-child(11) { transition-delay: 0.44s; }
.web-nav.active > *:nth-child(12) { transition-delay: 0.48s; }

.web-nav a:hover,
.web-nav a.active,
.dropdown:hover > a,
.dropdown.active > a {
    background:#f0f4ff;
    color:#0b2c5f;
}

.web-nav a .home-text {
    display: inline-block;
}
.web-nav a .home-icon {
    display: none;
}

.web-nav a::after{
    display:none;
}

.dropdown{
    width:100%;
    display:block;
}

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

.dropdown-menu::before,
.dropdown-menu::after {
    display: none !important;
}

.dropdown-menu{
    position:static;
    box-shadow:none;
    width:calc(100% - 45px);
    background:rgba(11, 44, 95, 0.02);
    padding:0px;
    margin:0px 15px 0px 30px;
    display:block;
    max-height:0;
    border:none;
    border-radius:12px;
    opacity:0;
    visibility:hidden;
    transform:none;
    pointer-events:none;
    gap:4px;
    border-left:3px solid #0b2c5f;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
    overflow: hidden;
}

/* Open state for mobile dropdown */
.dropdown.open .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 6px;
    margin: 4px 15px 4px 30px;
}

/* Also rotate caret on mobile when open */
.dropdown.open .nav-caret {
    transform: rotate(180deg) !important;
}

/* Enable hover menu display on mobile menu items when hovered on desktop/mouse simulation */
.dropdown:hover .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 6px;
    margin: 4px 15px 4px 30px;
}
.dropdown:hover .nav-caret {
    transform: rotate(180deg) !important;
}

.dropdown-menu a.dropdown-item-premium {
    padding: 8px 10px;
    gap: 10px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
}

.dropdown-menu a.dropdown-item-premium:hover {
    background: rgba(11, 44, 95, 0.04);
}

.dropdown-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 13px;
}

.dropdown-item-title {
    font-size: 13px;
    white-space: normal !important; /* Allow wrapping on small screens to prevent overflow */
}

.dropdown-item-desc {
    font-size: 10.5px;
}

.menu-toggle{
display:flex;
}

/* Transform spans into close X when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 1.5px);
}

.menu-toggle.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -1.5px);
}

.apply-btn{
display:none;
}

.mobile-buttons-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-top: 1px dashed rgba(11, 44, 95, 0.15);
    gap: 8px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 0.4s ease 0.5s;
}

.web-nav.active .mobile-buttons-container {
    opacity: 1;
    transform: translateY(0);
}

.mobile-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 16px !important;
    font-weight: 600;
    border: none !important;
    font-size: 14px !important;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(11, 44, 95, 0.08);
}

.mobile-btn i {
    margin-right: 6px;
}

.mobile-apply-now-btn {
    background: linear-gradient(135deg, #e00000, #ff3333) !important;
    color: #fff !important;
}

.mobile-apply-now-btn:active {
    transform: scale(0.98);
}

.mobile-erp-login-btn {
    background: linear-gradient(135deg, #0b2c5f, #1e4b8f) !important;
    color: #fff !important;
}

.mobile-erp-login-btn:active {
    transform: scale(0.98);
}

/* Quick Contact / Social Bar inside Menu */
.mobile-social-bar {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 0 10px 0;
    margin-top: 5px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.54s, opacity 0.4s ease 0.54s;
}

.web-nav.active .mobile-social-bar {
    opacity: 1;
    transform: translateY(0);
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(11, 44, 95, 0.05);
    color: #0b2c5f !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: none !important;
}

.social-icon-btn:active {
    background: #0b2c5f;
    color: #fff !important;
    transform: scale(0.9);
}

}



.psf-why{
    max-width:1200px;
    margin:80px auto;
}
.lms-outer{
    max-width:1200px;
    margin:80px auto;
}




/* ===== PREMIUM CONTAINER SYSTEM ===== */
.psf-why,
.lms-outer{
    width:100%;
    padding:100px 20px;
}

.psf-why > *,
.lms-wrapper{
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

/* ===== FULLWIDTH BACKGROUND EFFECT ===== */
.psf-why{
    background:linear-gradient(135deg,#f8f9fb,#eef2ff,#f8f9fb);
}

.lms-outer{
    background:linear-gradient(135deg,#1e2c5c,#243673);
    border-radius:0;
}

/* ===== PREMIUM SPACING ===== */
.psf-grid{
    margin-top:50px;
}

.lms-grid{
    gap:60px;
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
img{
    max-width:100%;
    height:auto;
}

*{
    scroll-behavior:smooth;
}





/* ===== LMS FULL WIDTH WHITE BACKGROUND FIX ===== */
.lms-outer{
    width:100%;
    background:#ffffff !important;
    padding:100px 20px;
}

.lms-wrapper{
    max-width:1200px;
    margin:0 auto;
    background:#243673;
    border-radius:30px;
}




    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

    .bca-fullwidth {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    /* HERO SLIDER */
    .bca-hero-slider {
        position: relative;
        width: 100%;
        height: calc(100vh - 124px);
        min-height: calc(100vh - 124px);
        overflow: hidden;
        background: #0b2c5f;
    }

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

    .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
        z-index: 1;
        color: #ffffff;
    }

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

    /* Background Zoom Animation on Active Slide */
    .slide.active::before {
        content: "";
        position: absolute;
        inset: 0;
        background: inherit;
        background-size: cover;
        background-position: center;
        animation: zoomActiveBg 8s ease-out forwards;
        z-index: -1;
    }

    .slide.no-zoom.active::before {
        animation: none !important;
        background-position: center !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
    }

    @keyframes zoomActiveBg {
        from {
            transform: scale(1.06);
        }
        to {
            transform: scale(1);
        }
    }

    /* Slide Content Animation */
    .slide .bca-hero-content > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .slide.active .bca-hero-content > * {
        opacity: 1;
        transform: translateY(0);
    }

    /* Cascade delays for content elements */
    .slide.active .bca-hero-content .join-badge { transition-delay: 0.1s; }
    .slide.active .bca-hero-content h1 { transition-delay: 0.25s; }
    .slide.active .bca-hero-content p { transition-delay: 0.4s; }
    .slide.active .bca-hero-content .bca-cta-wrap { transition-delay: 0.55s; }

    /* Arrows Navigation */
    .slider-arrow {
        display: none !important;
    }

    .bca-hero-slider:hover .slider-arrow {
        opacity: 1;
    }

    .prev-arrow {
        left: 25px;
    }

    .next-arrow {
        right: 25px;
    }

    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.08);
    }

    /* Navigation Dots */
    .slider-dots {
        position: absolute;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .slider-dots .dot.active {
        width: 28px;
        border-radius: 5px;
        background: #ffd33d;
        box-shadow: 0 0 10px rgba(255, 211, 61, 0.5);
    }

    /* FLOATING PARTICLES */
    #slider-particles {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        pointer-events: none;
    }

    /* CONTENT */
    .bca-hero-content {
        position: relative;
        z-index: 5;
        max-width: 1100px;
        padding: 40px 20px;
    }

    /* BADGE */
    .join-badge {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #ffffff;
        background: rgba(8, 30, 70, 0.75);
        padding: 9px 24px;
        border-radius: 40px;
        margin-bottom: 25px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .join-badge i {
        color: #ffd33d;
        margin-right: 6px;
    }

    /* HEADING */
    .bca-hero-slider h1 {
        margin-bottom: 25px;
        line-height: 1.25;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.75));
    }

    .degree-small {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 8px;
        text-transform: uppercase;
        color: #ffd33d;
        margin-bottom: 10px;
        text-shadow: 0 2px 10px rgba(255, 211, 61, 0.25);
    }

    .degree-large {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        font-weight: 800;
        margin-top: 8px;
        letter-spacing: -0.025em;
        background: linear-gradient(180deg, #ffffff 40%, #e2e8f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* GRADIENT FADING UNDERLINE */
    .bca-hero-slider h1::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #ffd33d, transparent);
        margin: 22px auto 0;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(255, 211, 61, 0.6);
    }

    /* PARAGRAPH */
    .bca-hero-slider p {
        font-family: 'Inter', sans-serif;
        font-size: 17.5px;
        line-height: 1.8;
        max-width: 780px;
        margin: 0 auto 35px;
        color: #e2e8f0;
        font-weight: 450;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    }

    /* BUTTON WRAP */
    .bca-cta-wrap {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* PRIMARY GOLD BUTTON */
    .bca-btn.primary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 42px !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        background: linear-gradient(135deg, #ffd33d, #ffa500) !important;
        color: #0b2c5f !important;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 20px rgba(255, 184, 0, 0.25) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .bca-btn.primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
        );
        transition: all 0.6s ease;
        z-index: -1;
    }

    .bca-btn.primary:hover::before {
        left: 100%;
    }

    .bca-btn.primary:hover {
        background: linear-gradient(135deg, #ffe066, #ffb800) !important;
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4) !important;
    }

    .bca-btn.primary i {
        transition: transform 0.3s ease;
    }
    
    .bca-btn.primary:hover i {
        transform: rotate(15deg) scale(1.15);
    }

    .bca-btn.primary:active {
        transform: translateY(-1px) scale(0.98);
    }

    /* WHATSAPP BUTTON */
    .bca-btn.whatsapp {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 42px !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        background: linear-gradient(135deg, #1ebd59, #128c45) !important;
        color: #fff !important;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 20px rgba(30, 189, 89, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .bca-btn.whatsapp::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
        transition: all 0.6s ease;
        z-index: -1;
    }

    .bca-btn.whatsapp:hover::before {
        left: 100%;
    }

    .bca-btn.whatsapp:hover {
        background: linear-gradient(135deg, #2cfb7a, #16ab55) !important;
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(30, 189, 89, 0.35) !important;
    }

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

    .bca-btn.whatsapp:hover i {
        transform: scale(1.2);
    }

    .bca-btn.whatsapp:active {
        transform: translateY(-1px) scale(0.98);
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22px;
        opacity: 0.7;
        animation: bounce 2s infinite;
        z-index: 5;
    }

    @keyframes bounce {
        0%,
        100% {
            transform: translate(-50%, 0);
        }
        50% {
            transform: translate(-50%, 8px);
        }
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
        .slide {
            background-image: linear-gradient(135deg, #081a38 0%, #0b2c5f 50%, #0f172a 100%) !important;
        }
        .slide.active::before {
            animation: none !important;
        }
        #slider-particles {
            display: none !important;
        }
        .degree-large {
            font-size: 50px;
        }
    }

    @media(max-width:768px) {
        .bca-hero-slider {
            height: calc(100vh - 108px);
            min-height: calc(100vh - 108px);
        }

        .degree-large {
            font-size: 36px;
            letter-spacing: -0.02em;
        }

        .degree-small {
            font-size: 13px;
            letter-spacing: 4px;
        }

        .bca-hero-slider p {
            font-size: 15px;
        }

        .bca-btn.primary, .bca-btn.whatsapp {
            padding: 12px 28px !important;
            font-size: 14px !important;
        }

        .bca-cta-wrap {
            gap: 12px;
            padding-bottom: 30px;
        }

        .slider-arrow {
            width: 38px !important;
            height: 38px !important;
            font-size: 14px !important;
            opacity: 0.75 !important;
            left: 12px;
        }
        .next-arrow {
            right: 12px;
        }
    }

    @media(max-width:480px) {
        .degree-large {
            font-size: 26px;
        }
        .degree-small {
            font-size: 11px;
            letter-spacing: 3px;
        }
        .bca-hero-slider p {
            font-size: 14px;
        }

        .bca-btn.primary, .bca-btn.whatsapp {
            padding: 10px 20px !important;
            font-size: 13px !important;
        }

        .bca-cta-wrap {
            gap: 8px;
            padding-bottom: 35px;
        }

        .slider-arrow {
            width: 32px !important;
            height: 32px !important;
            font-size: 12px !important;
            opacity: 0.65 !important;
            left: 8px;
        }
        .next-arrow {
            right: 8px;
        }
    }

    @media (max-height: 800px) and (min-width: 769px) {
        .bca-hero-slider {
            height: calc(100vh - 124px);
            min-height: calc(100vh - 124px);
        }
        .bca-hero-content {
            padding: 20px 20px;
        }
        .join-badge {
            margin-bottom: 15px;
            padding: 6px 20px;
        }
        .degree-large {
            font-size: 58px;
            margin-top: 8px;
        }
        .degree-small {
            font-size: 16px;
            letter-spacing: 5px;
        }
        .bca-hero-slider h1::after {
            margin: 18px auto 0;
            width: 100px;
        }
        .bca-hero-slider p {
            font-size: 16.5px;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        .bca-btn.primary, .bca-btn.whatsapp {
            padding: 12px 30px !important;
            font-size: 15px !important;
        }
    }



    /* SECTION LAYOUT */
    /* SECTION LAYOUT */
    .about-news-section {
        padding: 80px 0;
        background: #f8fafc;
    }

    .about-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        gap: 60px;
        align-items: center;
    }

    /* FIRST COLUMN */
    .first-column {
        flex: 1;
    }

    .first-column h2 {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 24px;
        color: #0b2c5f;
        line-height: 1.2;
    }
    
    .first-column h2::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: #2b50ed;
        margin-top: 14px;
        border-radius: 2px;
    }

    .first-column p {
        font-size: 16.5px;
        line-height: 1.8;
        color: #4b5563;
        text-align: justify;
        margin-bottom: 20px;
    }
    
    .first-column p strong {
        color: #0b2c5f;
    }

    /* SECOND COLUMN WRAPPER (News Board) */
    .second-column {
        flex: 0 0 420px;
        position: relative;
        padding: 0;
    }

    .wp-news-card {
        width: 100%;
        max-width: 420px;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(11, 44, 95, 0.08);
        box-shadow: 0 20px 40px rgba(11, 44, 95, 0.06), 0 1px 3px rgba(0,0,0,0.02);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .wp-news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(11, 44, 95, 0.12);
    }

    .wp-news-header {
        background: linear-gradient(135deg, #0b2c5f 0%, #2b50ed 100%);
        color: #ffffff;
        text-align: center;
        padding: 18px;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .wp-news-body {
        height: 280px;
        padding: 15px 20px;
        overflow: hidden;
        position: relative;
    }

    .news-ticker-container {
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .news-ticker-content {
        display: flex;
        flex-direction: column;
        animation: scrollNews 15s linear infinite;
    }

    .news-ticker-container:hover .news-ticker-content {
        animation-play-state: paused;
    }

    @keyframes scrollNews {
        0% { transform: translateY(280px); }
        100% { transform: translateY(-100%); }
    }

    .wp-news-item {
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(11, 44, 95, 0.06);
        padding-bottom: 14px;
        transition: all 0.2s ease;
    }

    .wp-news-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .wp-news-date {
        display: inline-block;
        background: rgba(43, 80, 237, 0.09);
        color: #2b50ed;
        font-weight: 700;
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .wp-news-item p {
        margin: 0;
        font-size: 14.5px;
        color: #374151;
        line-height: 1.5;
        text-align: justify;
    }
    
    .wp-news-item p strong {
        color: #0b2c5f;
    }

    /* Responsive */
    @media(max-width: 992px) {
        .about-container {
            flex-direction: column;
            gap: 40px;
        }

        .second-column {
            width: 100%;
            max-width: 100%;
        }
        
        .wp-news-card {
            max-width: 100%;
        }
    }

    @media(max-width: 768px) {
        .first-column h2 {
            font-size: 24px;
        }
    }



    /* ============================================================
       PREMIUM BCA COURSE CARDS - Section
    ============================================================ */
    .bca-courses-section {
        background: linear-gradient(160deg, #f0f4ff 0%, #fafbff 50%, #f5f0ff 100%);
        padding: 80px 20px 60px;
        position: relative;
        overflow: hidden;
    }

    .bca-courses-section::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(76, 91, 212, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    /* --- Section Header --- */
    .bca-courses-header {
        text-align: center;
        margin-bottom: 52px;
    }

    .bca-courses-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #4c5bd4, #2b50ed);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 6px 18px;
        border-radius: 50px;
        margin-bottom: 18px;
    }

    .bca-courses-title {
        font-size: 38px;
        font-weight: 800;
        color: #0b1f5c;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .bca-courses-title::after {
        content: '';
        display: block;
        width: 64px;
        height: 4px;
        background: linear-gradient(90deg, #4c5bd4, #f59e0b);
        border-radius: 4px;
        margin: 14px auto 0;
    }

    .bca-courses-subtitle {
        font-size: 15px;
        color: #6b7280;
        margin-top: 10px;
    }

    /* --- Cards Grid --- */
    .bca-courses-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 1160px;
        margin: 0 auto;
        align-items: stretch;
    }

    /* --- Individual Card --- */
    .bca-course-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(11, 31, 92, 0.10);
        border: 1.5px solid rgba(76, 91, 212, 0.08);
        transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
                    box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1);
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .bca-course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 60px rgba(76, 91, 212, 0.18);
    }

    .featured-card {
        border-color: rgba(76, 91, 212, 0.30);
        box-shadow: 0 12px 40px rgba(76, 91, 212, 0.16);
    }

    .featured-card:hover {
        box-shadow: 0 32px 70px rgba(76, 91, 212, 0.26);
    }

    /* --- Card Image Area --- */
    .bca-card-img-wrap {
        position: relative;
        overflow: hidden;
        height: 210px;
        flex-shrink: 0;
    }

    .bca-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .bca-course-card:hover .bca-card-img {
        transform: scale(1.07);
    }

    .bca-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            transparent 30%,
            rgba(8, 20, 60, 0.55) 100%
        );
    }

    /* --- Year Badge (top-left on image) --- */
    .bca-year-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(255,255,255,0.18);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.35);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 5px;
        letter-spacing: 0.5px;
    }

    .popular-badge {
        background: rgba(245, 158, 11, 0.28);
        border-color: rgba(245, 158, 11, 0.5);
    }

    .year3-badge {
        background: rgba(16, 185, 129, 0.22);
        border-color: rgba(16, 185, 129, 0.45);
    }

    /* --- Price Float (bottom-right on image) --- */
    .bca-card-price-float {
        position: absolute;
        bottom: 12px;
        right: 14px;
        background: rgba(255,255,255,0.95);
        color: #0b1f5c;
        font-size: 13px;
        font-weight: 800;
        padding: 4px 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }

    /* --- Core Year Badge (top strip on featured card) --- */
    .bca-core-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        background: linear-gradient(90deg, #1a237e, #3949ab, #f59e0b);
        background-size: 200% 100%;
        animation: badgeShimmer 3s ease infinite;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        box-shadow: 0 3px 12px rgba(57, 73, 171, 0.35);
        position: relative;
        z-index: 5;
    }

    .bca-core-badge i {
        color: #ffd54f;
        font-size: 11px;
    }

    /* --- Foundation Year Badge (Card 1 - Green) --- */
    .bca-foundation-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        background: linear-gradient(90deg, #064e3b, #059669, #34d399);
        background-size: 200% 100%;
        animation: badgeShimmer 3s ease infinite;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        box-shadow: 0 3px 12px rgba(5, 150, 105, 0.35);
        position: relative;
        z-index: 5;
    }

    .bca-foundation-badge i {
        color: #fde68a;
        font-size: 11px;
    }

    /* --- Final Year Badge (Card 3 - Purple) --- */
    .bca-final-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        background: linear-gradient(90deg, #4a044e, #7c3aed, #c084fc);
        background-size: 200% 100%;
        animation: badgeShimmer 3s ease infinite;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        box-shadow: 0 3px 12px rgba(124, 58, 237, 0.35);
        position: relative;
        z-index: 5;
    }

    .bca-final-badge i {
        color: #fde68a;
        font-size: 11px;
    }

    @keyframes badgeShimmer {
        0%   { background-position: 0% 50%; }
        50%  { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* --- Card Body --- */
    .bca-card-body {
        padding: 22px 22px 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    /* --- Subject Tags --- */
    .bca-card-tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 14px;
    }

    .bca-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 50px;
        letter-spacing: 0.3px;
    }

    .tag-blue   { background: rgba(76, 91, 212, 0.10); color: #3b50cc; }
    .tag-purple { background: rgba(139, 92, 246, 0.10); color: #7c3aed; }
    .tag-green  { background: rgba(16, 185, 129, 0.10); color: #059669; }
    .tag-orange { background: rgba(245, 158, 11, 0.12); color: #d97706; }

    /* --- Card Title & Description --- */
    .bca-card-title {
        font-size: 20px;
        font-weight: 800;
        color: #0b1f5c;
        margin: 0 0 10px;
        line-height: 1.25;
    }

    .featured-card .bca-card-title {
        color: #2b3cb5;
    }

    .bca-card-desc {
        font-size: 14px;
        color: #5a6478;
        line-height: 1.65;
        margin-bottom: 18px;
        flex: 1;
        text-align: justify;
    }

    /* --- Progress Bar --- */
    .bca-progress-wrap {
        margin-bottom: 20px;
    }

    .bca-progress-label {
        display: flex;
        justify-content: space-between;
        font-size: 11.5px;
        color: #9ca3af;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .bca-progress-bar {
        height: 6px;
        background: #e9ecf5;
        border-radius: 10px;
        overflow: hidden;
    }

    .bca-progress-fill {
        height: 100%;
        border-radius: 10px;
        background: linear-gradient(90deg, #4c5bd4, #7b88e8);
        transition: width 1s ease;
    }

    .featured-fill {
        background: linear-gradient(90deg, #f59e0b, #fb923c);
    }

    .year3-fill {
        background: linear-gradient(90deg, #10b981, #34d399);
    }

    /* --- Card Footer (Fee + Button) --- */
    .bca-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 18px;
        border-top: 1px solid #edf0f8;
        margin-top: auto;
    }

    .bca-fee-info {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .bca-fee-amount {
        font-size: 18px;
        font-weight: 800;
        color: #0b1f5c;
        line-height: 1;
    }

    .bca-bssc-tag {
        font-size: 10.5px;
        color: #059669;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .bca-card-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: linear-gradient(135deg, #2b3cb5, #4c5bd4);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
        box-shadow: 0 4px 14px rgba(76, 91, 212, 0.25);
    }

    .bca-card-btn:hover {
        background: linear-gradient(135deg, #1a2a9e, #3748c2);
        box-shadow: 0 8px 24px rgba(76, 91, 212, 0.38);
        transform: translateY(-2px);
        color: #fff;
    }

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

    .bca-card-btn:hover i {
        transform: translateX(4px);
    }

    .featured-btn {
        background: linear-gradient(135deg, #d97706, #f59e0b);
        box-shadow: 0 4px 14px rgba(245,158,11,0.30);
    }

    .featured-btn:hover {
        background: linear-gradient(135deg, #b45309, #d97706);
        box-shadow: 0 8px 24px rgba(245,158,11,0.40);
    }

    /* --- Bottom CTA Strip --- */
    .bca-courses-cta-strip {
        max-width: 1160px;
        margin: 40px auto 0;
        background: linear-gradient(135deg, #0b1f5c, #243673);
        border-radius: 16px;
        padding: 20px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        box-shadow: 0 10px 36px rgba(11, 31, 92, 0.22);
    }

    .bca-cta-left {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255,255,255,0.85);
        font-size: 15px;
        font-weight: 500;
    }

    .bca-cta-left i {
        color: #f59e0b;
        font-size: 20px;
    }

    .bca-strip-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f59e0b, #fb923c);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 26px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        white-space: nowrap;
    }

    .bca-strip-btn:hover {
        background: linear-gradient(135deg, #e08d00, #ea7b1c);
        box-shadow: 0 8px 28px rgba(245,158,11,0.50);
        transform: translateY(-2px);
        color: #fff;
    }

    /* --- Responsive --- */
    @media (max-width: 1024px) {
        .bca-courses-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .bca-course-card:last-child {
            grid-column: 1 / -1;
            max-width: 480px;
            margin: 0 auto;
            width: 100%;
        }
    }

    @media (max-width: 680px) {
        .bca-courses-grid {
            grid-template-columns: 1fr;
        }
        .bca-course-card:last-child {
            grid-column: auto;
            max-width: 100%;
        }
        .bca-courses-title {
            font-size: 26px;
        }
        .bca-courses-cta-strip {
            flex-direction: column;
            text-align: center;
        }
        .bca-cta-left {
            justify-content: center;
        }
    }



    /* ================= BASE ================= */
    .it-pyramid-section {
        padding: 90px 20px;
        
        background: #fdfaf6;
    }

    .it-pyramid-container {
        max-width: 1200px;
        margin: auto;
    }

    /* ================= HEADER ================= */
    .it-pyramid-header {
        margin-bottom: 70px;
        text-align: center;
    }

    .it-pyramid-header span {
        font-size: 14px;
        font-weight: 600;
        color: #f59e0b;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .it-pyramid-header h2 {
        font-size: 40px;
        font-weight: 800;
        color: #0f172a;
        margin-top: 12px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ================= GRID ================= */
    .it-pyramid-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
    }

    /* ================= PYRAMID ================= */
    .pyramid {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    @media (min-width: 992px) {
        .pyramid {
            position: sticky;
            top: 120px;
        }
    }

    .pyramid-level {
        width: 100%;
        padding: 28px 22px;
        margin-bottom: 16px;
        border-radius: 14px;
        text-align: center;
        font-weight: 600;
        transition: all 0.35s ease;
    }

    /* DEFAULT ACTIVE (YEAR 1) */
    .level-1 {
        background: #0f1b4c;
        color: #ffffff;
        max-width: 420px;
        font-weight: 700;
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
    }

    .level-2 {
        background: #fff1db;
        max-width: 380px;
    }

    .level-3 {
        background: #d6d6d6;
        max-width: 320px;
    }

    .level-4 {
        background: #f4f1ff;
        max-width: 260px;
    }

    /* ================= STEPS ================= */
    .it-pyramid-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .step-box {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 24px 26px;
        position: relative;
        transition: all 0.35s ease;
    }

    .step-box:hover {
        transform: translateY(-4px);
    }

    .step-number {
        position: absolute;
        left: -18px;
        top: 22px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #d1d5db;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        transition: all 0.35s ease;
    }

    .step-box h4 {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 700;
    }

    .step-box p {
        margin: 0;
        font-size: 14px;
        color: #475569;
    }

    /* ================= STEP COLORS ================= */
    .step-box[data-step="1"]:hover {
        background: #fff4d6;
        border-color: #f59e0b;
    }

    .step-box[data-step="2"]:hover {
        background: #eef4ff;
        border-color: #3b82f6;
    }

    .step-box[data-step="3"]:hover {
        background: #f5f3ff;
        border-color: #8b5cf6;
    }

    .step-box[data-step="4"]:hover {
        background: #ecfdf5;
        border-color: #10b981;
    }

    .step-box:hover .step-number {
        color: #fff;
    }

    .step-box[data-step="1"]:hover .step-number {
        background: #f59e0b;
    }

    .step-box[data-step="2"]:hover .step-number {
        background: #3b82f6;
    }

    .step-box[data-step="3"]:hover .step-number {
        background: #8b5cf6;
    }

    .step-box[data-step="4"]:hover .step-number {
        background: #10b981;
    }

    /* ================= STEP → PYRAMID LINK ================= */
    .it-pyramid-grid:has(.step-box[data-step="2"]:hover) .level-2,
    .it-pyramid-grid:has(.step-box[data-step="3"]:hover) .level-3,
    .it-pyramid-grid:has(.step-box[data-step="4"]:hover) .level-4 {
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
    }

    /* ================= MOBILE ================= */
    @media (max-width:768px) {
        .it-pyramid-grid {
            grid-template-columns: 1fr;
        }

        .pyramid {
            margin-bottom: 40px;
        }

        .step-number {
            left: 16px;
        }

        .step-box {
            padding-left: 60px;
        }

        .it-pyramid-header h2 {
            font-size: 32px;
        }
    }



    :root {
        --psf-primary: #2f57eb;
        --psf-glow: rgba(47, 87, 235, 0.28);
    }

    /* Fade + stagger */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .psf-why {
        
        padding: 45px 25px;
        border-radius: 22px;
        background: linear-gradient(120deg, #f8f9fb, #eef2ff, #f8f9fb);
        background-size: 300% 300%;
        animation: bgMove 10s ease infinite;
    }

    @keyframes bgMove {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    .psf-why h2 {
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        color: #0a2540;
        margin-bottom: 40px;
    }

    /* Grid */
    .psf-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

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

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

    /* Card */
    .psf-item {
        display: flex;
        gap: 16px;
        padding: 22px;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid #eef0f4;
        text-decoration: none;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
        transition: transform .35s ease, box-shadow .35s ease;
    }

    /* Stagger delay */
    .psf-item:nth-child(1) {
        animation-delay: .1s
    }

    .psf-item:nth-child(2) {
        animation-delay: .2s
    }

    .psf-item:nth-child(3) {
        animation-delay: .3s
    }

    .psf-item:nth-child(4) {
        animation-delay: .4s
    }

    .psf-item:nth-child(5) {
        animation-delay: .5s
    }

    .psf-item:nth-child(6) {
        animation-delay: .6s
    }

    .psf-item:nth-child(7) {
        animation-delay: .7s
    }

    .psf-item:nth-child(8) {
        animation-delay: .8s
    }

    /* Hover */
    .psf-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    }

    /* Icon */
    .psf-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .psf-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Text */
    .psf-item h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #0a2540;
    }

    .psf-item p {
        margin: 6px 0 0;
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

    /* Bigger icons on mobile */
    @media (max-width:600px) {
        .psf-icon {
            width: 56px;
            height: 56px;
        }
    }



  <style>.lms-outer {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0;
    border-radius: 30px;
    background: transparent;
  }

  .lms-wrapper {
    background: #243673;
    border-radius: 28px;
    padding: 60px 50px;
    color: #ffffff;
  }

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

  .lms-small {
    font-size: 18px;
    opacity: 0.9;
  }

  .lms-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    margin: 28px 0 30px;
  }

  /* CTA Button Group */
  .lms-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
  }

  .lms-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 22px rgba(249, 115, 22, 0.45);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
  }

  .lms-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff22, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lms-cta:hover::before {
    opacity: 1;
  }

  .lms-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.55);
    color: #fff;
  }

  .lms-arrow {
    transition: transform 0.3s ease;
  }

  .lms-cta:hover .lms-arrow {
    transform: translateX(5px);
  }

  /* WhatsApp Button */
  .lms-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
  }

  .lms-wa-btn i {
    font-size: 18px;
    color: #4ade80;
  }

  .lms-wa-btn:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.40);
  }

  .lms-wa-btn:hover i {
    color: #fff;
  }

  .lms-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }

  .lms-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.3s ease;
  }

  .lms-item:hover {
    transform: translateY(-4px);
  }

  .lms-icon {
    background: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .lms-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .lms-item p {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }

  /* ================= MOBILE RESPONSIVE ================= */
  @media (max-width: 992px) {
    .lms-wrapper {
      padding: 45px 35px;
    }

    .lms-title {
      font-size: 42px;
    }
  }

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

    .lms-wrapper {
      padding: 40px 25px;
    }

    .lms-title {
      font-size: 36px;
    }

    .lms-small {
      font-size: 16px;
    }

    .lms-cta-group {
      flex-direction: column;
      align-items: stretch;
    }

    .lms-cta,
    .lms-wa-btn {
      width: 100%;
      justify-content: center;
    }

    .lms-features {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .lms-wrapper {
      padding: 30px 20px;
      border-radius: 22px;
    }

    .lms-title {
      font-size: 30px;
    }

    .lms-features {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .lms-icon {
      width: 48px;
      height: 48px;
    }

    .lms-icon img {
      width: 22px;
      height: 22px;
    }

    .lms-item p {
      font-size: 14px;
    }
  }



  .testimonial-section {
    padding: 80px 0;
    background: #f5f7fb;
    text-align: center;
    overflow: hidden;
  }

  .testimonial-section h2 {
    font-size: 36px;
    color: #1f2933;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
  }

  .testimonial-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
  }

  .testimonial-marquee-wrapper::before,
  .testimonial-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .testimonial-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f5f7fb, rgba(245, 247, 251, 0));
  }
  .testimonial-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f5f7fb, rgba(245, 247, 251, 0));
  }

  .testimonial-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testimonial-home-scroll 80s linear infinite;
  }

  .testimonial-marquee-track:hover {
    animation-play-state: paused;
  }

  @keyframes testimonial-home-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 360px;
    flex-shrink: 0;
    box-sizing: border-box;
    text-align: left;
  }

  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  }

  .quote {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
    text-align: justify;
  }

  .student {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .student img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
  }

  .student h4 {
    margin: 0;
    font-size: 16px;
    color: #111827;
  }

  .student span {
    font-size: 13px;
    color: #6b7280;
  }

  .cta-box {
    margin-top: 60px;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  .cta-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #111827;
  }

  .cta-box p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 35px;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .btn-primary {
    background: #4f46e5;
    color: #ffffff;
  }

  .btn-whatsapp {
    background: #25d366;
    color: #ffffff;
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .note {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #6b7280;
    background: transparent !important;
  }

  @media (max-width: 600px) {
    .testimonial-section h2 {
      font-size: 28px;
    }

    .cta-box h3 {
      font-size: 22px;
    }
  }

  @media (max-width: 768px) {
    .testimonial-marquee-track {
      animation: testimonial-home-scroll 180s linear infinite;
    }
  }



    /* ===============================
       FOOTER MAIN
    ================================= */
    .km-footer {
        background: linear-gradient(180deg, #071c3d 0%, #030d1d 100%) !important;
        color: #cbd5e1;
        position: relative;
        overflow: hidden;
        border-top: 2px solid rgba(255, 211, 61, 0.15);
    }

    .km-footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 60%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 211, 61, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .km-footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 20px 20px;
        position: relative;
        z-index: 1;
    }

    .km-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 10px;
    }

    .km-logo img {
        height: 65px;
        margin-bottom: 10px;
        width: auto;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .km-desc {
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 14px;
        color: #cbd5e1;
        max-width: 480px;
        text-align: justify;
    }

    .km-social {
        display: flex;
        gap: 12px;
    }

    .km-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
        font-size: 16px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .km-social a:hover {
        background: linear-gradient(135deg, #ffd33d, #ffb800);
        border-color: #ffd33d;
        color: #071c3d;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(255, 211, 61, 0.35);
    }

    .km-heading {
        font-size: 19px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.5px;
        margin-bottom: 25px;
        display: inline-block;
    }

    .km-heading span {
        position: relative;
        padding-bottom: 8px;
        display: inline-block;
    }

    .km-heading span::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #ffd33d, #ffb800);
        box-shadow: 0 0 8px rgba(255, 211, 61, 0.5);
    }

    .km-links,
    .km-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

    .km-links a {
        color: #e2e8f0;
        text-decoration: none;
        transition: all 0.25s ease;
        font-size: 14.5px;
        position: relative;
        display: inline-block;
        padding-bottom: 2px;
    }

    .km-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1.5px;
        background: #ffd33d;
        transition: width 0.3s ease;
    }

    .km-links a:hover::after {
        width: 100%;
    }

    .km-links a:hover {
        color: #ffd33d;
        transform: translateX(4px);
    }

    .km-contact li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .icon-box {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        background: rgba(255, 211, 61, 0.1);
        border: 1px solid rgba(255, 211, 61, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffd33d;
        font-size: 16px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .km-contact li:hover .icon-box {
        background: rgba(255, 211, 61, 0.25);
        border-color: #ffd33d;
        transform: scale(1.08);
    }

    .km-contact a {
        color: #e2e8f0;
        text-decoration: none;
        font-size: 14.5px;
        transition: color 0.25s ease;
    }

    .km-contact a:hover {
        color: #ffd33d;
    }

    .km-disclaimer {
        font-size: 13.5px;
        color: #cbd5e1;
        line-height: 1.6;
        text-align: center;
        margin: 25px auto 35px auto;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 30px;
        border-radius: 30px;
        max-width: max-content;
        font-weight: 500;
        letter-spacing: 0.5px;
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
        display: block;
    }

    .disclaimer-item {
        display: inline-block;
    }

    .disclaimer-splitter {
        color: rgba(255, 255, 255, 0.15);
        margin: 0 12px;
    }

    .km-bottom-wrapper {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
        position: relative;
    }

    .km-bottom-wrapper::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 211, 61, 0.8), transparent);
    }

    .km-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 25px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: #cbd5e1;
        position: relative;
    }

    .bottom-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    /* Waving Indian Flag Style */
    .indian-flag-wrapper {
        perspective: 1000px;
        display: inline-block;
    }

    .indian-flag {
        position: relative;
        width: 45px;
        height: 30px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        border-radius: 2px;
        overflow: hidden;
        animation: flagWave 3.5s ease-in-out infinite;
        transform-origin: left center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .indian-flag::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 25%,
            rgba(0, 0, 0, 0.18) 50%,
            rgba(255, 255, 255, 0.25) 75%,
            rgba(255, 255, 255, 0) 100%
        );
        animation: waveShimmer 3.5s linear infinite;
        pointer-events: none;
    }

    .indian-flag .stripe {
        height: 33.33%;
        width: 100%;
        position: relative;
    }

    .indian-flag .saffron {
        background-color: #FF9933;
    }

    .indian-flag .white {
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .indian-flag .green {
        background-color: #138808;
    }

    .indian-flag .ashoka-chakra {
        width: 9px;
        height: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: chakraSpin 16s linear infinite;
    }

    .indian-flag .chakra-svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    @keyframes flagWave {
        0% {
            transform: translateY(0) rotate(0deg) skewY(0deg);
        }
        25% {
            transform: translateY(-1.5px) rotate(1deg) skewY(1deg);
        }
        50% {
            transform: translateY(0) rotate(0deg) skewY(0deg);
        }
        75% {
            transform: translateY(1.5px) rotate(-1deg) skewY(-1deg);
        }
        100% {
            transform: translateY(0) rotate(0deg) skewY(0deg);
        }
    }

    @keyframes waveShimmer {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0%);
        }
    }

    @keyframes chakraSpin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .bottom-right span {
        color: #fff;
    }

    @media (max-width: 768px) {
        .km-footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .km-social {
            justify-content: center;
        }

        .km-desc {
            margin: 0 auto 30px;
        }

        .km-contact li {
            justify-content: center;
        }

        .km-bottom {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .bottom-center {
            display: none;
        }

        .km-scroll-top {
            position: relative;
            right: auto;
            top: auto;
            transform: none;
            margin: 10px auto 0;
        }

        .km-scroll-top:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .km-disclaimer {
            padding: 15px 20px;
            border-radius: 16px;
            max-width: 90%;
            margin: 20px auto;
        }

        .disclaimer-item {
            display: block;
            margin: 6px 0;
        }

        .disclaimer-splitter {
            display: none;
        }
    }

    /* ===============================
   SCROLL TO TOP
=================================*/
    .km-scroll-top {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: rgba(11, 44, 95, 0.85); /* Premium Deep Navy Glassmorphism */
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(255, 122, 47, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 10;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .km-scroll-top::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #ff7a2f, #ffb347); /* Brand orange-gold gradient */
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .km-scroll-top:hover {
        color: #ffffff;
        transform: translateY(calc(-50% - 3px)) scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 122, 47, 0.35);
    }

    .km-scroll-top:hover::before {
        opacity: 1;
    }

    .km-scroll-top i {
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .km-scroll-top:hover i {
        transform: translateY(-2px);
    }

    .academic-section {
        position: relative;
        width: 100%;
        min-height: 440px;
        background: url('../assets/images/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    /* Premium Blue-Indigo Overlay with soft light gradient */
    .academic-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(8, 40, 100, 0.95), rgba(15, 23, 42, 0.94), rgba(7, 10, 18, 0.97));
        z-index: 1;
    }

    .academic-section::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(96, 165, 250, 0) 70%);
        top: -10%;
        left: -10%;
        z-index: 1;
    }

  /* ABOUT PAGE HERO SECTION */
    .academic-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
    }

    .about-hero-tagline {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 700;
        color: #93c5fd;
        display: inline-block;
        margin-bottom: 15px;
        background: rgba(147, 197, 253, 0.12);
        border: 1px solid rgba(147, 197, 253, 0.2);
        padding: 6px 18px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .academic-content h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        margin-bottom: 30px;
        letter-spacing: -0.5px;
        background: linear-gradient(to right, #ffffff, #dbeafe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Toggle Container */
    .atoggle-wrapper {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        overflow: hidden;
        backdrop-filter: blur(8px);
        padding: 5px;
    }

    /* Buttons Base */
    .atoggle-btn {
        padding: 14px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Director Button */
    .atoggle-btn.director {
        background: linear-gradient(135deg, #4c4cff, #6a5cff);
        color: #fff;
    }

    /* Principal Button */
    .atoggle-btn.principal {
        background: linear-gradient(135deg, #9bff00, #c6ff4d);
        color: #000;
    }

    /* Hover Animation */
    .atoggle-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* Shine Effect */
    .atoggle-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: 0.5s;
    }

    .atoggle-btn:hover::after {
        left: 125%;
    }

    /* Center Circle */
    .atoggle-circle {
        width: 42px;
        height: 42px;
        background: #ffffff;
        border-radius: 50%;
        margin: 0 10px;
    }
	
	 /* Responsive */
    @media (max-width: 768px) {
        .academic-section {
            min-height: 320px;
        }

        .academic-content h1 {
            font-size: 28px;
        }

        .atoggle-btn {
            padding: 10px 22px;
            font-size: 14px;
        }

        .atoggle-circle {
            width: 32px;
            height: 32px;
        }
    }
	
/* END ABOUT HERO SECTION */

/* ABOUT CHAIRMAN+PRINCIPAL SECTION */
	  
	    html {
        scroll-behavior: smooth;
    }

    #chairman, #principal {
        scroll-margin-top: 130px;
    }

    .principal-section {
        background: transparent;
        padding: 80px 20px;
    }

    .principal-container {
        max-width: 1100px;
        margin: auto;
        display: flex;
        align-items: flex-start;
        gap: 60px;
        background: #ffffff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(11, 44, 95, 0.04);
        border: 1px solid #f1f5f9;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .principal-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(11, 44, 95, 0.08);
    }

    /* Overlap Sticky Scroll Effect */
    #chairman {
        position: sticky;
        top: 90px;
        z-index: 1;
    }

    #principal {
        position: relative;
        z-index: 2;
        background: transparent;
        box-shadow: none;
    }

    /* Left Image */
    .principal-image img {
        width: 280px;
        height: 340px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    /* Scroll Reveal Classes */
    .reveal {
        opacity: 0;
        transform: translateY(60px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
        display: block;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* 🔥 Hover Animation */
    .principal-image img:hover {
        transform: scale(1.03);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    /* Right Content */
    .principal-content h2 {
        font-size: 38px;
        margin-bottom: 8px;
        font-weight: 700;
        color: #1e3a8a;
    }

    .principal-content h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #475569;
    }

    .principal-content .qualification {
        color: #2563eb;
        font-weight: 600;
        margin-bottom: 25px;
        display: inline-block;
        font-size: 0.9rem;
        background: #eff6ff;
        padding: 6px 16px;
        border-radius: 50px;
        border: 1px solid #dbeafe;
    }

    .principal-content p {
        font-style: italic;
        font-size: 16px;
        line-height: 1.8;
        color: #334155;
        max-width: 650px;
    }

    /* Social Icons */
    .social-icons {
        margin-top: 30px;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #f1f5f9;
        color: #1e3a8a;
        border-radius: 50%;
        margin-right: 12px;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: #1e3a8a;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .principal-container {
            gap: 40px;
            padding: 40px;
        }

        .principal-content h2 {
            font-size: 32px;
        }
        
        .principal-image img {
            width: 240px;
            height: 300px;
        }
    }

    @media (max-width: 768px) {
        .principal-section {
            padding: 40px 15px;
        }

        .principal-container {
            flex-direction: column;
            text-align: center;
            padding: 35px 25px;
            gap: 30px;
        }

        .principal-image img {
            width: 200px;
            height: 250px;
            margin: auto;
        }

        .principal-content h2 {
            font-size: 28px;
        }

        .principal-content h4 {
            font-size: 18px;
        }

        .principal-content p {
            font-size: 15px;
            margin: 0 auto;
        }
    }
/* END ABOUT CHAIRMAN+PRINCIPAL SECTION */
/* ABOUT PSF FOUNDATION SECTION */

    .psf-section {
        width: 100%;
        padding: 80px 20px;
        background: #f8fafc;
    }

    .psf-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        background: #ffffff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(11, 44, 95, 0.04);
        border: 1px solid #f1f5f9;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .psf-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(11, 44, 95, 0.08);
    }

    /* Left Content - 60% */
    .psf-content {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .psf-content h2 {
        font-size: 1.25rem;
        white-space: nowrap;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .psf-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #334155;
        margin-bottom: 18px;
        text-align: justify;
    }

    .psf-content strong {
        color: #1e3a8a;
        font-weight: 700;
    }

    /* Right Image - 40% */
    .psf-image {
        flex: 0 0 40%;
        max-width: 40%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .psf-image img {
        max-width: 280px;
        width: 100%;
        height: auto;
        border-radius: 50%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        border: 4px solid #fff;
        transition: transform 0.4s ease;
    }

    .psf-image img:hover {
        transform: scale(1.03);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .psf-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 40px;
            gap: 40px;
        }

        .psf-content,
        .psf-image {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .psf-content h2 {
            font-size: 20px;
            white-space: normal;
        }

        .psf-content p {
            font-size: 16px;
            text-align: left;
        }

        .psf-image {
            margin-top: 10px;
        }
        
        .psf-image img {
            max-width: 220px;
        }
    }
	/* END ABOUT PSF FOUNDATION SECTION */
	
	
/* BOARD PAGE HERO SECTION */
	
    .board-section {
        position: relative;
        width: 100%;
        min-height: 480px;
        background: url('../assets/images/FRONT.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding: 60px 20px;
    }

    /* Modern Dark Gradient Overlay with subtle glow */
    .board-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 27, 75, 0.92));
        z-index: 1;
    }
    
    .board-section::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
        z-index: 1;
        pointer-events: none;
    }

    .board-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
        max-width: 1000px;
        width: 100%;
        margin: 0 auto;
    }

    .board-tagline {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 3px;
        color: #818cf8;
        display: block;
        margin-bottom: 12px;
        text-transform: uppercase;
        animation: fadeInUp 0.8s ease;
    }

    .board-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: fadeInUp 1s ease;
    }

    .board-subtext {
        font-family: 'Inter', sans-serif;
        font-size: 17px;
        color: #cbd5e1;
        max-width: 650px;
        margin: 0 auto 40px auto;
        line-height: 1.6;
        animation: fadeInUp 1.2s ease;
    }

    /* Glass Toggle Wrapper */
    .btoggle-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        animation: fadeInUp 1.4s ease;
    }

    /* Glass Buttons */
    .btoggle-btn {
        min-width: 260px;
        padding: 16px 28px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btoggle-btn i {
        font-size: 16px;
        color: #a5b4fc;
        transition: transform 0.3s ease;
    }

    /* Premium Hover */
    .btoggle-btn:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #fff;
    }

    .btoggle-btn:hover i {
        transform: scale(1.2);
        color: #fff;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .board-section {
            min-height: 420px;
            padding: 40px 15px;
        }

        .board-content h1 {
            font-size: 32px;
        }

        .board-subtext {
            font-size: 15px;
            margin-bottom: 30px;
        }

        .btoggle-btn {
            min-width: 100%;
            font-size: 14px;
            padding: 14px 20px;
        }
    }
		/* END BOARD PAGE HERO SECTION */
		
    /* Anti Discrimination Cell – PSF College (NAAC / UGC Aligned) */
    .adc-container {
        max-width: 1000px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
        
        line-height: 1.7;
        color: #333;
    }

    /* Headings */
    .adc-container h1 {
        text-align: center;
        color: #003366;
        margin-bottom: 5px;
    }

    .adc-container h2 {
        text-align: center;
        color: #555;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .adc-container h3 {
        color: #003366;
        margin-top: 30px;
        margin-bottom: 12px;
        border-left: 5px solid #003366;
        padding-left: 10px;
    }

    /* Text */
    .adc-container p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .adc-container ul {
        margin-left: 20px;
    }

    .adc-container ul li {
        margin-bottom: 8px;
    }

    /* Table Wrapper (Mobile Fix) */
    .adc-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
    }

    /* Table */
    .adc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .adc-table th,
    .adc-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .adc-table th {
        background-color: #003366;
        color: #ffffff;
    }

    /* Contact Box */
    .adc-contact {
        background: #f4f8fc;
        padding: 20px;
        border-left: 5px solid #003366;
        margin-top: 20px;
    }

    /* PDF Button */
    .adc-pdf-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 20px;
        background: #003366;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
    }

    .adc-pdf-link:hover {
        background: #002244;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .adc-container {
            padding: 20px;
        }

        .adc-container h2 {
            font-size: 16px;
        }

        .adc-container h3 {
            font-size: 17px;
        }

        .adc-container p,
        .adc-container li {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .adc-container {
            padding: 15px;
        }

        .adc-container h2 {
            font-size: 15px;
        }

        .adc-pdf-link {
            width: 100%;
            text-align: center;
        }
    }
	   /* End Anti Discrimination Cell – PSF College (NAAC / UGC Aligned) */
	   
    /* Anti Ragging Committee – PSF College (NAAC / UGC Aligned) */
    .arc-container {
        max-width: 1000px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
        
        line-height: 1.7;
        color: #333;
    }

    /* Headings */
    .arc-container h1 {
        text-align: center;
        color: #003366;
        margin-bottom: 5px;
    }

    .arc-container h2 {
        text-align: center;
        color: #555;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .arc-container h3 {
        color: #003366;
        margin-top: 30px;
        margin-bottom: 12px;
        border-left: 5px solid #003366;
        padding-left: 10px;
    }

    /* Text */
    .arc-container p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .arc-container ul {
        margin-left: 20px;
    }

    .arc-container ul li {
        margin-bottom: 8px;
    }

    /* Table Wrapper for Mobile */
    .arc-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
    }

    /* Table Styling */
    .arc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 650px;
    }

    .arc-table th,
    .arc-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .arc-table th {
        background-color: #003366;
        color: #ffffff;
    }

    /* Contact Box */
    .arc-contact {
        background: #f4f8fc;
        padding: 20px;
        border-left: 5px solid #003366;
        margin-top: 20px;
    }

    /* PDF Button */
    .arc-pdf-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 20px;
        background: #003366;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
    }

    .arc-pdf-link:hover {
        background: #002244;
    }

    /* Tablet */
    @media (max-width: 768px) {
        .arc-container {
            padding: 20px;
        }

        .arc-container h2 {
            font-size: 16px;
        }

        .arc-container h3 {
            font-size: 17px;
        }

        .arc-container p,
        .arc-container li {
            font-size: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .arc-container {
            padding: 15px;
        }

        .arc-container h2 {
            font-size: 15px;
        }

        .arc-pdf-link {
            width: 100%;
            text-align: center;
        }
    }
	    /* End Anti Ragging Committee – PSF College (NAAC / UGC Aligned) */
    /* Gender Sensitization Cell – PSF College (NAAC Aligned) */
    .gsc-container {
        max-width: 1000px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
        
        line-height: 1.7;
        color: #333;
    }

    /* Headings */
    .gsc-container h1 {
        text-align: center;
        color: #003366;
        margin-bottom: 5px;
    }

    .gsc-container h2 {
        text-align: center;
        color: #555;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .gsc-container h3 {
        color: #003366;
        margin-top: 30px;
        margin-bottom: 12px;
        border-left: 5px solid #003366;
        padding-left: 10px;
    }

    /* Text */
    .gsc-container p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .gsc-container ul {
        margin-left: 20px;
    }

    .gsc-container ul li {
        margin-bottom: 8px;
    }

    /* Table Wrapper (Mobile Fix) */
    .gsc-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
    }

    /* Table Styling */
    .gsc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 650px;
    }

    .gsc-table th,
    .gsc-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .gsc-table th {
        background-color: #003366;
        color: #fff;
    }

    /* Contact Box */
    .gsc-contact {
        background: #f4f8fc;
        padding: 20px;
        border-left: 5px solid #003366;
        margin-top: 20px;
    }

    /* PDF Button */
    .pdf-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 20px;
        background: #003366;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
    }

    .pdf-link:hover {
        background: #002244;
    }

    /* Tablet */
    @media (max-width: 768px) {
        .gsc-container {
            padding: 20px;
        }

        .gsc-container h2 {
            font-size: 16px;
        }

        .gsc-container h3 {
            font-size: 17px;
        }

        .gsc-container p,
        .gsc-container li {
            font-size: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .gsc-container {
            padding: 15px;
        }

        .gsc-container h2 {
            font-size: 15px;
        }

        .pdf-link {
            width: 100%;
            text-align: center;
        }
    }
	 /* End Gender Sensitization Cell – PSF College (NAAC Aligned) */
	 
/* ================= ACADEMIC PAGE FACULTY SECTION ================= */
.bca-faculty-section{
    padding:60px 20px;
    background:#f4f7fb;
    
}

.bca-faculty-container{
    max-width:1000px;
    margin:auto;
}

.bca-faculty-title{
    text-align:center;
    font-size:36px;
    font-weight:700;
    color:#0b3d91;
    margin-bottom:20px;
    position:relative;
}

.bca-faculty-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#ffc107;
    display:block;
    margin:12px auto 0;
    border-radius:2px;
}

/* ================= SEARCH BOX ================= */
.bca-search-box{
    text-align:right;
    margin-bottom:20px;
}

.bca-search-box input{
    padding:10px 15px;
    width:280px;
    border-radius:30px;
    border:1px solid #ccc;
    outline:none;
    font-size:14px;
    transition:.3s;
}

.bca-search-box input:focus{
    border-color:#0b3d91;
    box-shadow:0 0 0 3px rgba(11,61,145,0.1);
}

/* ================= TABLE ================= */
.bca-faculty-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border-radius:10px;
    overflow:hidden;
}

.bca-faculty-table thead{
    background:#0b3d91;
    color:#fff;
}

.bca-faculty-table th,
.bca-faculty-table td{
    padding:14px 16px;
    text-align:left;
    font-size:14px;
}

.bca-faculty-table th:first-child,
.bca-faculty-table td:first-child {
    width: auto;
}

.bca-faculty-table th{
    font-weight:600;
}

.bca-faculty-table tbody tr{
    border-bottom:1px solid #eee;
    opacity:0;
    transform:translateY(20px);
    transition:all .6s ease;
}

.bca-faculty-table tbody tr.show{
    opacity:1;
    transform:translateY(0);
}

.bca-faculty-table tbody tr:hover{
    background:#f1f6ff;
}

/* Highlight Principal */
.bca-faculty-table tbody tr:first-child{
    background:#fff8e1;
    font-weight:600;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .bca-search-box{
        text-align:center;
    }

    .bca-search-box input{
        width:100%;
    }

    .bca-faculty-table thead{
        display:none;
    }

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

    .bca-faculty-table td:first-child {
        width: 100%;
    }

    .bca-faculty-table tr{
        margin-bottom:15px;
        background:#fff;
        border-radius:8px;
        padding:10px;
    }

    .bca-faculty-table td{
        border:none;
        padding:8px 10px;
        position:relative;
    }

    .bca-faculty-table td::before{
        content:attr(data-label);
        font-weight:600;
        display:block;
        color:#0b3d91;
        font-size:12px;
        margin-bottom:3px;
    }
}

/* ================= END ACADEMIC PAGE FACULTY SECTION ================= */
	 
/* ================= FACILITIES HERO SECTION ================= */	 
    .ffacilities-section {
        position: relative;
        width: 100%;
        min-height: 440px;
        background: url('../assets/images/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    /* Dark Blue Overlay */
    .ffacilities-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(8, 40, 100, 0.95), rgba(15, 23, 42, 0.94), rgba(7, 10, 18, 0.97));
        z-index: 1;
    }

    .ffacilities-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
    }

    .ffacilities-content h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 25px;
        letter-spacing: -0.5px;
    }

    /* Toggle Container */
    .ftoggle-wrapper {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        padding: 6px;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Buttons Base */
    .ftoggle-btn {
        padding: 10px 24px;
        font-size: 14.5px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        color: rgba(255, 255, 255, 0.85);
        background: transparent;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid transparent;
        position: relative;
    }

    .ftoggle-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        transform: translateY(-2px);
    }
    
    .ftoggle-btn.active, .ftoggle-btn:active {
        background: #ffd33d;
        color: #0b2c5f;
        box-shadow: 0 4px 12px rgba(255, 211, 61, 0.3);
    }

    /* Center Circle */
    .ftoggle-circle {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 5px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ffacilities-section {
            min-height: 340px;
        }

        .ffacilities-content h1 {
            font-size: 32px;
        }

        .ftoggle-btn {
            padding: 8px 18px;
            font-size: 13.5px;
        }
    }

/* ================= NEW FACILITY SECTIONS STYLES ================= */
.facility-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.facility-section.bg-white {
    background: #ffffff;
}

.facility-section.bg-light {
    background: #f8fafc;
}

.facility-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-sizing: border-box;
}

.facility-section.row-reverse .facility-container {
    flex-direction: row-reverse;
}

.facility-content {
    flex: 0 0 55%;
    text-align: left;
}

.facility-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #eff6ff;
    color: #0b3d91;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facility-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.25;
}

.facility-content p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    text-align: justify;
}

.facility-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.facility-image img {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* ================= AMENITIES SECTION STYLES ================= */
.facility-amenities-section {
    width: 100%;
    padding: 90px 0;
    background: #f8fafc;
    text-align: center;
    scroll-margin-top: 120px;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.section-header-center {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.amenities-tagline {
    font-size: 13px;
    font-weight: 700;
    color: #0b3d91;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 18px;
}

.section-header-center p {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.6;
}

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

.amenity-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.amenity-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.06);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #0b3d91;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 22px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: #0b3d91;
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

.amenity-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.amenity-card p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ================= RESPONSIVE FOR NEW FACILITY STYLES ================= */
@media (max-width: 991px) {
    .facility-container {
        flex-direction: column !important;
        padding: 40px 25px;
        text-align: center;
        gap: 40px;
    }
    
    .facility-content {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .facility-image {
        flex: 0 0 100%;
    }
    
    .facility-content h2 {
        font-size: 30px;
    }
    
    .facility-content p {
        text-align: center;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .amenities-container {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-center h2 {
        font-size: 28px;
    }
}


    /* HERO SHORT SECTION */

    .heroshort-section {
        position: relative;
        width: 100%;
        min-height: 300px;
        background: url('assets/images/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .heroshort-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 0, 82, 0.85), rgba(75, 0, 130, 0.90));
        z-index: 1;
    }

    .heroshort-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
    }

    .heroshort-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Glass Wrapper */
    .toggle-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.10);
        border-radius: 60px;
        backdrop-filter: blur(15px);
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Small Luxury Gold Button */
    .toggle-btn {
        padding: 12px 36px;
        /* Smaller size */
        font-size: 15px;
        /* Smaller text */
        font-weight: 700;
        letter-spacing: 0.8px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        color: #000;
        background: linear-gradient(145deg,
                #fff8c6 0%,
                #ffd700 40%,
                #f4b400 60%,
                #ffd700 100%);
        border: 2px solid rgba(212, 175, 55, 0.9);
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
        box-shadow:
            inset 0 2px 4px rgba(255, 255, 255, 0.7),
            inset 0 -3px 6px rgba(0, 0, 0, 0.25),
            0 6px 15px rgba(255, 193, 7, 0.4);
        transition: all 0.3s ease;
        position: relative;
    }

    /* Soft Hover Effect */
    .toggle-btn:hover {
        transform: translateY(-4px);
        box-shadow:
            inset 0 2px 5px rgba(255, 255, 255, 0.9),
            inset 0 -4px 8px rgba(0, 0, 0, 0.3),
            0 10px 25px rgba(255, 193, 7, 0.6);
    }

    @media (max-width: 768px) {
        .heroshort-section {
            min-height: 320px;
        }

        .heroshort-content h1 {
            font-size: 28px;
        }

        .toggle-btn {
            padding: 10px 28px;
            font-size: 14px;
        }
    }
	
	    /* END HERO SHORT SECTION */
		
/* BSSC IIQA FILE DOWNLAOD SECTION */
		
.bb-file-download {
  max-width: 850px;
  margin: 80px auto;
  
}

/* Heading */
.bb-download-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

/* White box with shadow */
.bb-file-box {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 18px;
}

.bb-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bb-file-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  word-break: break-word;
}

/* Download button */
.bb-download-btn {
  padding: 10px 24px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.bb-download-btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(13,110,253,0.35);
}

/* Mobile view center align */
@media (max-width: 600px) {
  .bb-file-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bb-file-name {
    text-align: center;
  }

  .bb-download-btn {
    margin-top: 12px;
  }
}
/* END BSSC IIQA FILE DOWNLAOD SECTION */

/* CONTACT US PAGE HERO SECTION */

.contact-section{
padding:90px 20px;
background:linear-gradient(180deg,#efe9f7,#e4dbef);

}

.contact-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.contact-tag{
display:inline-block;
background:#e7d7ff;
color:#7b3fe4;
font-size:13px;
padding:8px 18px;
border-radius:25px;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.contact-title{
font-size:42px;
font-weight:700;
color:#1e2a39;
margin-bottom:60px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-card{
background:#ffffff;
padding:45px 30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.contact-icon{
font-size:40px;
margin-bottom:5px;
}

.contact-card p{
font-size:20px;
font-weight:500;
color:#1e2a39;
margin:5px 0;
letter-spacing:1px;
}

@media(max-width:768px){

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

.contact-title{
font-size:32px;
}

}

/* END CONTACT US PAGE HERO SECTION */

/* ================= CONTACT MAIN GRID ================= */
/* MAIN SECTION */
/* ================= CONTACT MAIN SECTION ================= */
.contact-main {
    padding: 90px 20px;
    background: #f7f9fc;
    scroll-margin-top: 120px;
}

.contact-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:40% 60%;
gap:40px;
align-items:stretch;
}

/* SAME HEIGHT COLUMNS */

.premium-campus,
.contact-form-box{
display:flex;
}

.campus-card,
.contact-form-box{
height:100%;
}

/* ================= CAMPUS CARD ================= */

.campus-card{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
padding:40px;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
text-align:center;
transition:0.4s;
width:100%;
}

.campus-card:hover{
transform:translateY(-6px);
}

.campus-icon{
font-size:46px;
color:#4c5bd4;
margin-bottom:10px;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1)}
50%{transform:scale(1.15)}
100%{transform:scale(1)}
}

.campus-card h2{
font-size:28px;
font-weight:700;
color:#1e2a39;
}

.divider{
height:1px;
background:#e4e4e4;
margin:25px 0;
}

.campus-address{
font-size:17px;
color:#333;
line-height:1.6;
}

/* CONTACT ROW */

.contact-row{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.contact-icon{
font-size:20px;
color:#4c5bd4;
}

.contact-text{
display:flex;
flex-direction:column;
}

.contact-text a{
color:#333;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.contact-text a:hover{
color:#4c5bd4;
transform:translateX(3px);
}

/* ================= CAMPUS BUTTONS ================= */

.campus-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:15px;
}

.call-btn,
.whatsapp-btn{
padding:10px 20px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.call-btn{
background:#4c5bd4;
color:white;
}

.call-btn:hover{
background:#3544c2;
}

.whatsapp-btn{
background:#25d366;
color:white;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

/* ================= CONTACT FORM ================= */

.contact-form-box{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
flex-direction:column;
}

.contact-form-box h3{
margin-bottom:20px;
font-size:26px;
color:#1e2a39;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
transition:0.3s;
outline:none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
border-color:#4c5bd4;
box-shadow:0 0 0 2px rgba(76,91,212,0.1);
}

.contact-form-box button{
background:#0b3d91;
color:white;
border:none;
padding:14px;
width:100%;
border-radius:6px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.contact-form-box button:hover{
background:#072b6b;
}

/* ================= FULL WIDTH MAP ================= */

.campus-map-full{
grid-column:1 / -1;
position:relative;
margin-top:10px;
}

.campus-map-full iframe{
width:100%;
height:350px;
border:none;
border-radius:12px;
transition:0.4s;
box-shadow:0 0 0 rgba(44,92,255,0.5);
}

.campus-map-full iframe:hover{

transform:scale(1.02);

box-shadow:
0 0 20px rgba(44,92,255,0.4),
0 0 40px rgba(44,92,255,0.2);

}

/* ================= MAP BUTTON ================= */

.map-btn{
position:absolute;
top:15px;
left:15px;
background:white;
padding:10px 15px;
border-radius:6px;
font-size:14px;
font-weight:600;
text-decoration:none;
color:#2c5cff;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
z-index:2;
transition:0.3s;
}

.map-btn:hover{
background:#2c5cff;
color:white;
}

/* ================= SUCCESS POPUP ================= */

.success-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-box{
background:white;
padding:40px;
border-radius:12px;
text-align:center;
max-width:350px;
animation:popupAnim 0.4s ease;
}

.popup-box h3{
margin-bottom:10px;
color:#28a745;
}

.popup-box p{
font-size:15px;
color:#444;
}

.popup-box button{
margin-top:15px;
padding:10px 20px;
border:none;
background:#0b3d91;
color:white;
border-radius:6px;
cursor:pointer;
}

@keyframes popupAnim{
from{
transform:scale(0.7);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

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

@media(max-width:900px){

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

.campus-map-full iframe{
height:260px;
}

.campus-card{
padding:25px;
}

.contact-form-box{
padding:25px;
}

}

/* ================= END CONTACT PAGE CONTACT & FORM SECTION ================= */


/* ================= GALLERY PAGE IMAGE SECTION  ================= */


.gallery-section{
padding:80px 8%;
background:#f8f9fb;

}

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

.gallery-header h2{
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.gallery-header p{
color:#777;
}

/* FILTER BUTTONS */

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

.filter-btn{
border:none;
padding:10px 22px;
margin:5px;
cursor:pointer;
background:#e2e8f0;
color:#334155;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
background:#0d6efd;
color:#fff;
}

/* GRID */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.gallery-item{
overflow:hidden;
border-radius:10px;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:220px;
object-fit:cover;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

/* LIGHTBOX */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
align-items:center;
justify-content:center;
z-index:999999;
}

.lightbox img{
max-width:85%;
max-height:85%;
border-radius:8px;
}

.close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:#fff;
cursor:pointer;
}

.nav{
position:absolute;
top:50%;
font-size:40px;
color:#fff;
cursor:pointer;
padding:10px;
}

.prev{
left:40px;
}

.next{
right:40px;
}

/* ================= END GALLERY PAGE IMAGE SECTION  ================= */

/* ================= GRIEVANCE FORM SECTION  ================= */


.grievance-section{
max-width:700px;
margin:auto;
padding:60px 20px;

}

.grievance-section h2{
text-align:center;
margin-bottom:30px;
}

.form-row{
margin-bottom:15px;
}

.form-row input,
.form-row select,
.form-row textarea{

width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;

}

.form-row textarea{
height:120px;
resize:none;
}

button{

background:#004aad;
color:#fff;
border:none;
padding:12px 25px;
cursor:pointer;
border-radius:6px;

}

#formMsg{
margin-top:15px;
font-weight:500;
}
/* ================= END GRIEVANCE FORM SECTION  ================= */

/* ===== COURSE PAGE HERO SECTION ===== */
     .cbca-hero {
        position: relative;
        width: 100%;
        height: calc(100vh - 135px); /* Subtract header height exactly */
        min-height: auto;
        display: flex;
        align-items: center;
        overflow: hidden;
        color: #fff;
    }

    /* Parallax Background Video */
    .cbca-hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 110%;
        min-height: 110%;
        transform: translate(-50%, -50%) scale(1.1);
        object-fit: cover;
        z-index: 0;
        animation: slowZoom 20s infinite alternate ease-in-out;
    }

    @keyframes slowZoom {
        0% {
            transform: translate(-50%, -50%) scale(1.1);
        }

        100% {
            transform: translate(-50%, -50%) scale(1.2);
        }
    }

    /* Premium Gradient Overlay */
    .cbca-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(8, 15, 35, 0.95) 30%, rgba(15, 30, 60, 0.85) 60%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

    /* Container */
    .cbca-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: auto;
        padding: 80px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    /* Left Content */
    .cbca-left {
        flex: 1;
    }

    /* ===== UPDATED BREADCRUMB DESIGN ===== */
    .cbca-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        margin-bottom: 25px;
    }

    .cbca-title {
        font-size: 33px;
        font-weight: 700;
        color: #ff7a2f;
        margin-bottom: 15px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .cbca-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
        opacity: 0.9;
    }

    /* Glass Feature Boxes */
    .cbca-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 35px;
    }

    .cbca-box {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 16px 20px;
        border-radius: 14px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .cbca-box:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
    }

    /* Animated Icons */
    .cbca-icon {
        width: 28px;
        height: 28px;
        background: linear-gradient(45deg, #ff7a2f, #ffb347);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 122, 47, 0.6);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(255, 122, 47, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 122, 47, 0);
        }
    }

    /* Premium Button */
    .cbca-btn {
        display: inline-block;
        background: linear-gradient(45deg, #167ac6, #1e9bff);
        padding: 15px 32px;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .cbca-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transform: skewX(-25deg);
        transition: 0.6s;
    }

    .cbca-btn:hover::before {
        left: 130%;
    }

    .cbca-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    /* Right Image */
    .cbca-right {
        flex: 1;
        text-align: center;
    }

    .cbca-right img {
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        animation: float 5s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .cbca-container {
            flex-direction: column;
            text-align: center;
            padding: 60px 20px;
        }

        .cbca-title {
            font-size: 36px;
            white-space: normal;
        }

        .cbca-features {
            grid-template-columns: 1fr;
        }

        .cbca-box {
            justify-content: flex-start;
        }
    }

    @media (max-width: 600px) {
        .cbca-title {
            font-size: 28px;
            white-space: normal;
        }

        .cbca-subtitle {
            font-size: 15px;
        }

        .cbca-btn {
            width: 100%;
            text-align: center;
        }

        .cbca-hero {
            min-height: 95vh;
        }
    }
    /* ===== END COURSE PAGE HERO SECTION ===== */
	
	
/* ================= COURSE PAGE COURSE CURRICULUM ACCORDIAN ================= */
        #psf-bca-wrapper {
            background: radial-gradient(circle at top, #1e2c5c, #050509 70%);
            padding: 120px 20px;
            
        }

        /* ================= TITLE ================= */
        #psf-bca-wrapper .bca-subject-title {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 80px;
            letter-spacing: 1px;
        }

        /* ================= GRID ================= */
        #psf-bca-wrapper .bca-accordion-wrapper {
            max-width: 1150px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 60px;
        }

        /* ================= CARD ================= */
        #psf-bca-wrapper .bca-accordion {
            background: #141021;
            border-radius: 16px;
            border: 1px solid rgba(0, 86, 255, 0.3);
            transition: all .3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

        /* Gold Accent */
        #psf-bca-wrapper .bca-accordion::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #c9a227;
        }

        /* Hover Neon */
        #psf-bca-wrapper .bca-accordion:hover {
            transform: translateY(-6px);
            border-color: #ffd33d;
            box-shadow: 0 0 20px rgba(255, 211, 61, 0.4);
        }

        /* ================= HEADER ================= */
        #psf-bca-wrapper .bca-accordion-header {
            padding: 22px 26px;
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ================= ICON ================= */
        #psf-bca-wrapper .bca-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 211, 61, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #psf-bca-wrapper .bca-icon::before {
            content: "";
            width: 10px;
            height: 10px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
            transform: rotate(45deg);
            transition: .3s;
        }

        #psf-bca-wrapper .bca-accordion.active .bca-icon::before {
            transform: rotate(-135deg);
            border-color: #ffd33d;
        }

        /* ================= SMOOTH SLIDE ================= */
        #psf-bca-wrapper .bca-accordion-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .35s ease;
        }

        #psf-bca-wrapper .bca-accordion-content-inner {
            overflow: hidden;
            padding: 0 26px;
        }

        #psf-bca-wrapper .bca-accordion.active .bca-accordion-content {
            grid-template-rows: 1fr;
        }

        #psf-bca-wrapper .bca-accordion.active .bca-accordion-content-inner {
            padding: 20px 26px 30px 26px;
        }

        #psf-bca-wrapper .bca-accordion-content li {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            font-size: 14px;
            color: #d1d1d1;
        }

        /* ================= CTA ================= */
        #psf-bca-wrapper .bca-cta{
		margin-top:110px;
		text-align:center;
		padding:40px 0;
		background:none;
		border:none;
		}

        #psf-bca-wrapper .bca-cta h3 {
            color: #ffffff;
            font-size: 28px;
            margin-bottom: 20px;
        }

        #psf-bca-wrapper .bca-cta p {
            color: #bdbdbd;
            margin-bottom: 35px;
        }

        #psf-bca-wrapper .bca-btn {
            background: linear-gradient(90deg, #0056ff, #00a2ff);
            color: #ffffff;
            padding: 14px 40px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: .3s;
        }

        #psf-bca-wrapper .bca-btn:hover {
            box-shadow: 0 0 20px rgba(0, 86, 255, .6);
        }

        /* ================= RESPONSIVE ================= */
        @media(max-width:768px) {
            #psf-bca-wrapper .bca-accordion-wrapper {
                grid-template-columns: 1fr;
            }

            #psf-bca-wrapper .bca-subject-title {
                font-size: 30px;
            }
        }
		
/* ============== END COURSE PAGE COURSE CURRICULUM ACCORDIAN ============== */

/* ============== COURSE PAGE WHY CHOORSE BCA ============== */
  .ai-takeaways {
    padding: 100px 20px;
    
    background: radial-gradient(circle at top, #1e2c5c, #050509 70%);
    color: #fff;
  }

  .ai-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
  }

  .ai-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
  }

  .ai-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
  }

  .ai-header h2 span {
    background: linear-gradient(90deg, #00a2ff, #ffd33d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ai-header p {
    margin-top: 16px;
    color: #cbd5e1;
    font-size: 19px;
  }

  .ai-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .ai-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 48px 32px 36px;
    backdrop-filter: blur(14px);
    transition: all 0.4s ease;
  }

  .ai-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 211, 61, 0.6);
    box-shadow: 0 0 25px rgba(255, 211, 61, 0.4);
  }

  .ai-icon {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056ff, #00a2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 0 6px #050509;
  }

  .ai-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
  }

  .ai-card p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .ai-grid-bottom {
    max-width: 820px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  @media (max-width: 640px) {

    .ai-grid,
    .ai-grid-bottom {
      grid-template-columns: 1fr;
    }
  }
/* ============== END COURSE PAGE WHY CHOORSE BCA ============== */


/* ============== COURSE PAGE TESTIMONIAL SECTION ============== */
  .ttestimonial-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #0b2c5f, #050509 70%);
    
    color: #fff;
  }

  .ttestimonial-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 40px);
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 60px;
}

  .ttestimonial-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .ttestimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(14px);
    transition: transform .3s ease, border .3s ease;
  }

  .ttestimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .quote-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #00a2ff, #ffd33d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }

  .ttestimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 26px;
  }

  .ttestimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056ff, #00a2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
  }

  .name {
    font-size: 14px;
    font-weight: 600;
  }

  .stars {
    font-size: 13px;
    color: #fbbf24;
    margin-top: 2px;
  }

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

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

/* ============== END COURSE PAGE TESTIMONIAL SECTION ============== */

  /* ===== COURSE PAGE BCA CTA SECTION ===== */
  .ai-cta-wrap {
    padding: 90px 20px;
    background: radial-gradient(circle at center, #1e2c5c, #050509 70%);
    
  }

  .ai-cta {
    max-width: 1200px;
    margin: auto;
    padding: 80px 40px;
    border-radius: 26px;
    text-align: center;
    background: linear-gradient(135deg,
        #0b2c5f,
        #0056ff,
        #00a2ff,
        #ffd33d);
    color: #fff;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
  }

  /* ===== TEXT ===== */
  .ai-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 14px;
  }

  .ai-cta p {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    margin-bottom: 36px;
  }

  /* ===== BUTTON ===== */
  .ai-cta a {
    display: inline-block;
    background: #ffd33d;
    color: #000;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
  }

  .ai-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .ai-cta {
      padding: 60px 24px;
    }
  }

  @media (max-width: 480px) {
    .ai-cta h2 {
      font-size: 28px;
    }
  }
    /* ===== END COURSE PAGE BCA CTA SECTION ===== */

/* ================= ACADEMIC PAGE NEW SECTIONS ================= */
.academic-hero-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #0b3d91, #1e3a8a, #111827);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.academic-hero-content {
    max-width: 800px;
    z-index: 2;
}

.academic-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #60a5fa;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(96, 165, 250, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.academic-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.academic-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.academic-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.academic-link-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.academic-link-btn:hover {
    background: #ffffff;
    color: #0b3d91;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.academic-section-content {
    padding: 80px 20px;
    background: #ffffff;
}

.academic-section-content.alt-bg {
    background: #f8fafc;
}

.academic-container-box {
    max-width: 1000px;
    margin: 0 auto;
}

.academic-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 10px;
}

.academic-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Syllabus Grid */
.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.syllabus-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.syllabus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 61, 145, 0.08);
    border-color: #bfdbfe;
}

.syllabus-icon {
    font-size: 28px;
    color: #0b3d91;
    background: #eff6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.syllabus-card:hover .syllabus-icon {
    background: #0b3d91;
    color: #fff;
    transform: scale(1.05);
}

.syllabus-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.syllabus-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
}

/* Teaching Methodology */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.methodology-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 35px 25px 25px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.method-badge {
    position: absolute;
    top: -20px;
    left: 25px;
    background: linear-gradient(135deg, #0b3d91, #1e3a8a);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(11, 61, 145, 0.3);
}

.methodology-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 12px;
    margin-top: 10px;
}

.methodology-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* Policies Section */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.policy-card {
    background: #ffffff;
    border-left: 4px solid #ffc107;
    border-radius: 0 16px 16px 0;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.policy-icon {
    font-size: 22px;
    color: #0b3d91;
}

.policy-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
}

.policy-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* Downloads Section */
.academic-downloads {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #cbd5e1;
}

.academic-downloads h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 25px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    color: #0b3d91;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    background: #0b3d91;
    color: #ffffff;
    border-color: #0b3d91;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.15);
}

/* Scroll Offset for Academic Targets */
#syllabus, #methodology, #faculty, #policies {
    scroll-margin-top: 100px;
}

/* Academic Responsive Adjustments */
@media (max-width: 768px) {
    .academic-hero-section {
        min-height: 350px;
        padding: 50px 15px;
    }
    
    .academic-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .academic-subtext {
        font-size: 15px;
    }
    
    .academic-links {
        gap: 10px;
    }
    
    .academic-link-btn {
        padding: 10px 20px;
        font-size: 13.5px;
    }
    
    .academic-section-content {
        padding: 60px 15px;
    }
    
    .academic-section-title {
        font-size: 28px;
    }
    
    .academic-downloads {
        padding: 30px 20px;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= IIQA PAGE NEW SECTIONS ================= */
.iiqa-hero-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #0b3d91);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.iiqa-hero-content {
    max-width: 800px;
    z-index: 2;
}

.iiqa-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #38bdf8;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(56, 189, 248, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.iiqa-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.iiqa-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.iiqa-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.iiqa-links.ftoggle-wrapper {
    flex-wrap: wrap;
    white-space: normal;
    max-width: 100%;
    justify-content: center;
    gap: 10px; /* Slight bump for wrapped lines */
}

.iiqa-links.ftoggle-wrapper .iiqa-link-btn {
    padding: 10px 16px;
    font-size: 14px;
}

@media (min-width: 992px) {
    .iiqa-links.ftoggle-wrapper {
        justify-content: center;
    }
}

.iiqa-link-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.iiqa-link-btn:hover {
    background: #ffffff;
    color: #0b3d91;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.iiqa-section-content {
    padding: 80px 20px;
    background: #ffffff;
}

.iiqa-section-content.alt-bg {
    background: #f8fafc;
}

.iiqa-container-box {
    max-width: 1000px;
    margin: 0 auto;
}

.iiqa-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 10px;
}

.iiqa-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* IIQA Overview Layout */
.iiqa-overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.iiqa-overview-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 15px;
}

.iiqa-overview-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
    text-align: justify;
}

.iiqa-small-tag {
    font-size: 12px;
    font-weight: 700;
    color: #0b3d91;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.iiqa-overview-card {
    background: linear-gradient(135deg, #0b3d91, #1e3a8a);
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.15);
    text-align: center;
}

.quality-badge-icon {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 20px;
}

.iiqa-overview-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.iiqa-overview-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #bfdbfe;
}

/* IIQA Metrics */
.iiqa-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.iiqa-metric-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.iiqa-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.iiqa-metric-card .metric-icon {
    font-size: 32px;
    color: #0b3d91;
    margin-bottom: 15px;
}

.iiqa-metric-card .metric-number {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.iiqa-metric-card .metric-label {
    font-size: 13.5px;
    color: #64748b;
    font-weight: 600;
}

/* IIQA Documents Grid */
.iiqa-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.iiqa-doc-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
}

.iiqa-doc-category h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.iiqa-doc-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.iiqa-doc-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-grow: 1;
}

.iiqa-doc-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.06);
    transform: translateY(-2px);
}

.iiqa-doc-item .doc-icon {
    font-size: 24px;
    color: #ef4444;
    flex-shrink: 0;
}

.iiqa-doc-item .doc-details {
    flex-grow: 1;
    text-align: left;
}

.iiqa-doc-item .doc-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iiqa-doc-item .doc-details p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.doc-dl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eff6ff;
    color: #0b3d91;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    border: 1px solid #dbeafe;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.05);
}

.doc-dl-btn:hover {
    background: #0b3d91;
    color: #fff;
    border-color: #0b3d91;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.2);
    transform: translateY(-1.5px);
}

/* Offset for IIQA sections */
#overview, #metrics, #documents, #iqac {
    scroll-margin-top: 100px;
}

/* IIQA Responsive Styles */
@media (max-width: 768px) {
    .iiqa-hero-section {
        min-height: 350px;
        padding: 50px 15px;
    }
    
    .iiqa-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .iiqa-subtext {
        font-size: 15px;
    }
    
    .iiqa-links {
        gap: 10px;
    }
    
    .iiqa-link-btn {
        padding: 10px 20px;
        font-size: 13.5px;
    }
    
    .iiqa-section-content {
        padding: 60px 15px;
    }
    
    .iiqa-section-title {
        font-size: 28px;
    }
    
    .iiqa-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .iiqa-docs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ================= NEWS TICKER BANNER ================= */
.ticker-wrap {
    display: flex;
    align-items: center;
    background: #0f172a; /* Dark navy slate theme */
    border-bottom: 2px solid #0b3d91;
    overflow: hidden;
    height: 44px;
    position: relative;
    z-index: 10;
}

.ticker-title {
    background: #0b3d91;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    z-index: 12;
    box-shadow: 8px 0 15px rgba(0, 0, 0, 0.3);
}

.ticker-content-box {
    flex-grow: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.ticker-items {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 50px;
    animation: ticker-animation 30s linear infinite;
}

.ticker-items:hover {
    animation-play-state: paused; /* Pause ticker on hover */
    cursor: pointer;
}

.ticker-item {
    font-size: 14px;
    color: #f1f5f9;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ticker-item:hover {
    color: #ffd33d !important;
    transform: scale(1.02);
    animation: marqueeGlowPulse 1.5s infinite ease-in-out;
}

.ticker-item i {
    color: #f59e0b; /* Gold Star icon color */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.ticker-item:hover i {
    transform: rotate(360deg) scale(1.3);
    color: #ffffff;
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0); /* Perfect continuous loops */
    }
}

/* Responsive adjustment for news ticker banner */
@media (max-width: 768px) {
    .ticker-wrap {
        height: 38px;
    }
    
    .ticker-title {
        font-size: 12px;
        padding: 0 12px;
        gap: 5px;
    }
    
    .ticker-item {
        font-size: 12.5px;
    }
}




/* Facilities Sticky Overlap */
#lab { position: sticky; top: 90px; z-index: 1; background: transparent; }
#library { position: sticky; top: 90px; z-index: 2; background: transparent; box-shadow: none; }
#classrooms { position: sticky; top: 90px; z-index: 3; background: transparent; box-shadow: none; }
#seminar { position: relative; z-index: 4; background: transparent; box-shadow: none; }



/* ================= INSTITUTIONAL BOARDS REDESIGN ================= */
.board-page-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.board-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.board-card:hover {
    transform: translateY(-6px) !important;
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.06);
}

.board-card-header {
    background: linear-gradient(135deg, #0b3d91 0%, #1e5bbd 100%);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.b-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    backdrop-filter: blur(5px);
}

.board-card-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.board-card-body {
    padding: 40px;
}

.b-sub-title {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.b-sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #eab308;
    border-radius: 3px;
}

.b-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.b-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.b-grid-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.b-box-title {
    font-size: 18px;
    color: #0b3d91;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.b-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.b-list li i {
    color: #10b981;
    margin-top: 4px;
    font-size: 14px;
}

.b-list li:last-child {
    margin-bottom: 0;
}

.board-table-wrapper {
    margin-top: 25px;
    margin-bottom: 40px;
}

.b-contact-box {
    background: #eff6ff;
    border-left: 5px solid #3b82f6;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.b-contact-info h4 {
    margin: 0 0 10px 0;
    color: #1e3a8a;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b-contact-info p {
    color: #475569;
    margin: 0 0 15px 0;
    font-size: 15px;
}

.b-contact-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.b-contact-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 15px;
}

.b-contact-action {
    flex-shrink: 0;
}

.b-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b82f6;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.b-action-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    color: #fff;
}

@media(max-width: 768px) {
    .board-card-header {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .board-card-body {
        padding: 25px;
    }
    
    .b-contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .b-contact-action {
        width: 100%;
    }
    
    .b-action-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Fix anchor scrolling behind sticky header for gallery and grievance */
#gallery, #grievanceForm, #contact-main {
    scroll-margin-top: 150px;
}

/* Fix for Grievance Section Wrapper */
#grievanceSection {
    scroll-margin-top: 150px;
}

/* ================= GRIEVANCE FORM REDESIGN ================= */
.grievance-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.g-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(11, 44, 95, 0.08);
    padding: 50px;
    border: 1px solid #f1f5f9;
}

.g-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.g-form-header h2 {
    font-size: 28px;
    color: #0b3d91;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.g-form-header p {
    color: #64748b;
    font-size: 16px;
}

.g-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.g-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.g-input-group.full-width {
    grid-column: 1 / -1;
    margin-top: 25px;
}

.g-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-left: 5px;
}

.g-input-group label span {
    color: #94a3b8;
    font-weight: 400;
    font-size: 13px;
}

.g-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.g-input-wrapper i {
    position: absolute;
    left: 18px;
    color: #94a3b8;
    font-size: 16px;
    transition: color 0.3s ease;
}

.g-input-wrapper input,
.g-input-wrapper select,
.g-input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #334155;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.g-input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 18px;
}

.g-input-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.g-input-wrapper input:focus,
.g-input-wrapper select:focus,
.g-input-wrapper textarea:focus {
    border-color: #0b3d91;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.1);
}

.g-input-wrapper input:focus + i,
.g-input-wrapper select:focus + i,
.g-input-wrapper textarea:focus + i,
.g-input-wrapper:focus-within i {
    color: #0b3d91;
}

.g-error {
    color: #ef4444;
    font-size: 13px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.g-error::before {
    content: '\f071';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.g-submit-wrapper {
    text-align: center;
    margin-top: 40px;
}

.g-submit-btn {
    background: linear-gradient(135deg, #0b3d91 0%, #1e5bbd 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(11, 61, 145, 0.2);
}

.g-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(11, 61, 145, 0.3);
}

.g-success-alert {
    color: #065f46;
    padding: 15px 20px;
    font-weight: 500;
    background: #d1fae5;
    border-radius: 12px;
    border: 1px solid #10b981;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

@media(max-width: 768px) {
    .g-grid {
        grid-template-columns: 1fr;
    }
    .g-form-card {
        padding: 30px 20px;
    }
}

/* ================= MAP REDESIGN (CONTACT PAGE) ================= */
.map-card-container {
    max-width: 1100px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(11, 44, 95, 0.08);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.map-header {
    padding: 25px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.map-header h3 {
    margin: 0;
    font-size: 20px;
    color: #0b3d91;
    display: flex;
    align-items: center;
    gap: 10px;
}

.direction-btn {
    background: #0b3d91;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.direction-btn:hover {
    background: #1e5bbd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.2);
    color: #fff;
}

.map-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Contact Grid Tweaks */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

/* ================= MEGA MENU 2-COLUMN LAYOUT ================= */
.d-cols-wrapper {
    display: flex;
    gap: 15px;
}
.d-col {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    flex: 1;
}
.d-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    padding: 10px 10px 5px 10px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #e2e8f0;
}
@media (max-width: 992px) {
    .d-cols-wrapper {
        flex-direction: column;
        gap: 0px;
    }
    .d-col {
        min-width: auto;
    }
    .d-col-title {
        margin-top: 10px;
    }
}

/* ================= FIX MEGA MENU OVERFLOW ================= */
#courses-dropdown-menu {
    max-width: 650px !important;
    width: max-content !important;
}

.d-cols-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    #courses-dropdown-menu {
        max-width: 100% !important;
        width: calc(100% - 45px) !important;
    }
    .d-cols-wrapper {
        flex-direction: column;
        gap: 5px;
    }
}

/* ================= MEGA MENU TABS ================= */
.course-tabs-container {
    display: flex;
    flex-direction: column;
    min-width: 320px;
}
.course-tabs-header {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}
.course-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}
.course-tab-btn:hover {
    background: #f1f5f9;
    color: #0b2c5f;
}
.course-tab-btn.active {
    background: rgba(11, 44, 95, 0.05);
    color: #0b2c5f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.course-tab-content {
    display: flex;
    flex-direction: column;
}

/* ================= MEGA MENU TABS COLOR UPDATE ================= */
.course-tabs-header {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 10px;
    border-bottom: none;
    margin-bottom: 12px;
}
.course-tab-btn {
    border-radius: 8px;
    color: #64748b;
    padding: 10px 12px;
}
.course-tab-btn:hover {
    background: rgba(11, 44, 95, 0.05);
    color: #0b3d91;
}
.course-tab-btn.active {
    background: #0b3d91 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.25) !important;
}

/* ================= COURSE ITEM REDESIGN ================= */
.dropdown-menu a.dropdown-item-premium {
    background: #f8fafc !important; /* Soft card background */
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
    margin-bottom: 8px;
    transition: all 0.3s ease !important;
}

.dropdown-menu a.dropdown-item-premium:hover {
    background: #ffffff !important; /* Pure white on hover */
    border-color: #cbd5e1 !important; /* Slightly darker border on hover */
    box-shadow: 0 8px 20px rgba(11, 44, 95, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* Icon Enhancement */
.dropdown-item-icon {
    background: #e0e7ff !important;
    color: #4f46e5 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu a.dropdown-item-premium:hover .dropdown-item-icon {
    background: #4f46e5 !important;
    color: #ffffff !important;
}

/* ================= BOARD SCROLL OFFSET FIX ================= */
.board-card {
    scroll-margin-top: 175px; /* Prevents sticky header overlap when clicking menu links */
}

/* ==========================================================
   GLOBAL LAPTOP & MOBILE HERO SECTION HEIGHT FIX
   Forces the hero sections to fit on small laptop screens
   and prevents the taskbar from clipping the content!
   ========================================================== */
@media (max-height: 850px) and (min-width: 900px) {
    .bca-hero {
        min-height: calc(100vh - 200px) !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .hero-title {
        font-size: 2.3rem !important;
        margin-bottom: 8px !important;
    }
    .hero-desc {
        font-size: 1.05rem !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
    }
    .hero-bullets {
        margin: 0 0 15px 0 !important;
        gap: 10px !important;
    }
    .hero-image {
        max-height: 55vh !important;
        width: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }
}
@media (max-width: 899px) {
    .bca-hero {
        min-height: calc(100vh - 180px) !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .hero-image { 
        max-height: 35vh !important; 
        width: auto !important; 
        object-fit: contain !important;
        margin: 0 auto !important; 
        display: block !important; 
    }
}





    .hero-bullets {
        margin-bottom: 15px !important;
    }
    .hero-image {
        max-height: calc(100vh - 220px) !important;
    }
}

/* ==========================================================
   GUARANTEED 70VH HERO HEIGHT FIX
   ========================================================== */
.bca-hero {
    height: 70vh !important; /* Guaranteed to fit on screen */
    min-height: 450px !important; /* Prevent it from getting too ridiculously small */
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important; 
}

.bca-hero-grid {
    height: 100% !important;
    max-height: 100% !important;
    align-items: center !important;
    gap: 20px !important;
}

.hero-title {
    font-size: clamp(1.8rem, 4vh, 3.2rem) !important;
    margin-bottom: 2vh !important;
}

.hero-desc {
    font-size: clamp(0.9rem, 2vh, 1.15rem) !important;
    margin-bottom: 3vh !important;
}

.hero-bullets {
    margin-bottom: 3vh !important;
    gap: 1.5vh !important;
}

.hero-image {
    max-height: 60vh !important; 
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}
