/* Shared site styles */


/* ==============================================================================
   COLLEGE – Ultimate Optimized Header CSS (v5.0 - Final Production)
   Independent Scoped Styles, Mobile Optimized, High Performance
   ============================================================================== */


/* Scope everything under #college-header-wrapper to prevent global bleed */


/* ==================== LAYOUT & PERFORMANCE FIXES ==================== */


/* 1. Lift Header Above All Page Content */

#college-header-wrapper {
    position: relative;
    z-index: 999999 !important;
    /* Highest priority */
    /* Color Variables Restored & Scoped */
    --college-navy: #7e1b02;
    --college-navy-deep: #661804;
    --college-navy-light: #ee613c;
    --college-gold: rgb(255, 205, 79);
    --college-gold-dark: #d97706;
    --college-font-head: 'Montserrat', sans-serif;
    --college-font-body: 'Plus Jakarta Sans', sans-serif;
    --college-trans: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--college-font-body);
    box-sizing: border-box;
    line-height: normal;
}


/* 2. Ensure Overflow is never hidden for containers holding dropdowns */

.college-main-header,
.college-bg-nav,
.navbar {
    overflow: visible !important;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

#college-header-wrapper {
    display: flow-root !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* GPU Acceleration for smooth animations */

.college-comp-sidebar,
.college-progress-wrap {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* ==================== GLOBAL SCROLLBAR STYLING ==================== */


/* Custom Gold Scrollbar - Applied to body and html for maximum compatibility */


/* Webkit Browsers (Chrome, Safari, Edge) */

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: #f8f9fa !important;
    border-radius: 10px !important;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0a192f 0%, #020c1b 100%) !important;
    border-radius: 6px;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #112240 0%, #0a192f 100%) !important;
    border: 2px solid transparent;
}


/* Firefox Scrollbar Support */

html,
body {
    scrollbar-width: thin !important;
    scrollbar-color: #0a192f #f1f5f9 !important;
}


/* Reset for internal elements */

#college-header-wrapper *,
#college-header-wrapper *::before,
#college-header-wrapper *::after {
    box-sizing: border-box;
}

#college-header-wrapper a {
    text-decoration: none;
    color: inherit;
}


/* ==================== 1. TOP BAR ==================== */

.college-top-bar {
    background: linear-gradient(135deg, var(--college-navy-deep) 0%, var(--college-navy) 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.college-top-bar a {
    transition: var(--college-trans);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.college-top-bar a:hover {
    color: var(--college-gold);
}

.college-top-bar i {
    color: var(--college-gold);
    font-size: 0.75rem;
}

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


/* ==================== 2. MAIN HEADER ==================== */

.college-main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0;
    position: relative;
    z-index: 1040;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}


/* Brand */

.college-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.college-logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s;
}

#college-header-wrapper .college-brand-wrap:hover .college-logo-img {
    transform: scale(1.05);
}

.college-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.college-brand-title {
    font-family: var(--college-font-head);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--college-navy);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.college-brand-sub {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Extras */

.college-header-extras {
    display: flex;
    align-items: center;
    gap: 15px;
}

.college-badge-pill {
    font-family: var(--college-font-head);
    font-weight: 700;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}


/* ELITE PREMIUM UGC BADGE - VISIBILITY BOOST */

.college-badge-ugc {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%) !important;
    color: #92400e !important;
    /* Rich amber-900 */
    border: 1px solid #f59e0b !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2) !important;
    position: relative;
    overflow: hidden;
    font-weight: 800 !important;
    font-size: 0.7rem !important;
    /* Slightly larger */
    padding: 6px 14px !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px;
    z-index: 10;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    transform: translateZ(0);
    /* GPU Trigger */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}


/* Sophisticated Shimmer */

.college-badge-ugc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: eliteShimmer 3s ease-in-out infinite !important;
    pointer-events: none;
    z-index: 11;
}

.college-badge-ugc:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3) !important;
    background: linear-gradient(135deg, #FFECB3 0%, #FFD54F 100%) !important;
    border-color: #d97706 !important;
}

@keyframes eliteShimmer {
    0% {
        left: -150%;
    }
    40% {
        left: 150%;
    }
    /* Faster pass */
    100% {
        left: 150%;
    }
}

.college-badge-naac {
    background: var(--college-navy);
    color: #fff;
}

.college-btn-apply {
    background: var(--college-gold);
    color: var(--college-navy);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: var(--college-trans);
}

.college-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(251, 191, 36, 0.5);
    color: var(--college-navy);
}


/* ==================== 3. NAVIGATION ==================== */

.college-bg-nav {
    background: linear-gradient(90deg, var(--college-navy) 0%, var(--college-navy-light) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0;
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    z-index: 1050;
    position: relative;
}


/* Fixed State Class (Added via JS) */

.college-bg-nav.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: collegeSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    border-top: none;
    background: rgba(10, 25, 47, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes collegeSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Scope Navbar Styles specifically */

#college-header-wrapper .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--college-font-head);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 12px 10px !important;
    transition: var(--college-trans);
}

#college-header-wrapper .navbar-nav .nav-link:hover,
#college-header-wrapper .navbar-nav .nav-link.active {
    color: var(--college-gold) !important;
}


/* Dropdown Menus (Desktop Default) - Aggressive Reset */

#college-header-wrapper .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 3px solid var(--college-gold) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 8px 0 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    font-size: 0.85rem !important;
    min-width: 220px !important;
    margin-top: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: left !important;
    list-style: none !important;
    left: 0;
    /* FIX: Force Visibility */
    z-index: 99999 !important;
    display: none;
    /* By default hidden, shown on hover/click */
}


/* Ensure no global list styles interfere */

#college-header-wrapper ul,
#college-header-wrapper li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

#college-header-wrapper .dropdown-item {
    padding: 8px 18px !important;
    color: #334155 !important;
    font-weight: 500 !important;
    transition: var(--college-trans);
    white-space: normal !important;
    background: transparent;
    border: none;
    display: block !important;
    width: 100% !important;
    clear: both;
}

#college-header-wrapper .dropdown-item:hover,
#college-header-wrapper .dropdown-item:focus {
    background: #f8fafc !important;
    color: var(--college-gold-dark) !important;
    padding-left: 22px !important;
}


/* Desktop Only Rules */

@media (min-width: 992px) {
    #college-header-wrapper .dropdown:hover .dropdown-menu {
        display: block !important;
        animation: collegeFadeUp 0.3s ease;
        z-index: 99999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    #college-header-wrapper .dropdown-item {
        /* Force one line per item */
        white-space: nowrap !important;
    }
    #college-header-wrapper .dropdown-menu {
        width: auto !important;
        /* Let it expand to fit text */
        min-width: 250px;
        max-width: none !important;
        /* Remove width cap */
    }
}

@keyframes collegeFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ==================== 4. MARQUEE ==================== */

.college-announcement-bar {
    background: #111827;
    height: 38px;
    overflow: hidden;
    border-bottom: 2px solid var(--college-gold-dark);
    display: flex;
    align-items: center;
}

.college-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Prevent vertical stretch */
    height: 100%;
    /* Match parent height */
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.college-marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: collegeLinearScroll 70s linear infinite;
    gap: 50px;
}

.college-marquee-content:hover {
    animation-play-state: paused;
}

.college-marquee-item {
    display: inline-flex;
    align-items: center;
    color: #cbd5e1;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.college-badge-new {
    background: var(--college-gold);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 8px;
}

.college-badge-scholar {
    background: #3b82f6;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 8px;
}

.college-mq-link {
    color: var(--college-gold);
    text-decoration: underline !important;
    margin-left: 6px;
    font-weight: 600;
}

.college-mq-link:hover {
    color: #fff;
}

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


/* ==================== 5. SIDEBAR ==================== */

.college-comp-sidebar {
    position: fixed;
    right: -100px;
    /* Offscreen by default */
    top: auto;
    bottom: 25%;
    transform: none;
    z-index: 2000000 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    /* Tightly compact spacing */
    padding: 8px 6px;
    /* Minimal pill padding */
    background: rgba(255, 255, 255, 0.4);
    /* Glassmorphism Base */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    /* Stunning pill shape */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


/* Slides perfectly into view "anywhere inside the premises" */

body:hover .college-comp-sidebar,
.college-comp-sidebar:hover {
    right: 15px;
}

.college-sb-icon {
    width: 38px;
    /* Compact Circle */
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.1rem;
    border-radius: 50%;
    /* Make them perfect circles inside the pill */
    margin-bottom: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}


/* Elegant visual pop */

.college-sb-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    z-index: 10;
}

.college-sb-loc {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.college-sb-fb {
    background: #1877f2;
}

.college-sb-wa {
    background: #25D366;
}

.college-sb-yt {
    background: #FF0000;
}

.college-sb-in {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.college-sb-li {
    background: #0077b5;
}

.college-sb-ap {
    background: var(--college-navy);
    writing-mode: vertical-lr;
    height: auto;
    padding: 15px 0;
    font-size: 0.75rem;
    font-weight: 700;
    width: 38px;
    /* Matches circle width */
    border-radius: 50px;
    /* Internal elongated pill */
    margin-top: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.college-sb-ap:hover {
    background: var(--college-gold) !important;
    color: var(--college-navy) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(251, 191, 36, 0.3) !important;
}


/* Pie Chart Progress Back to Top — COLLEGE Premium Styles */

.college-progress-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 52px;
    width: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    /* The Pie Chart Background */
    /* --scroll-percent is updated via JS */
    background: conic-gradient(var(--college-gold) 0% var(--scroll-percent), var(--college-navy) var(--scroll-percent) 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.college-progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.college-progress-inner {
    width: 44px;
    height: 44px;
    background: var(--college-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.2s ease;
}

.college-progress-wrap i {
    font-size: 18px;
    color: #fff;
    transition: all 0.2s ease;
}

.college-progress-wrap:hover {
    transform: translateY(-5px) scale(1.05);
}

.college-progress-wrap:hover .college-progress-inner {
    background: #fff;
}

.college-progress-wrap:hover i {
    color: var(--college-navy);
}


/* ==================== 6. MOBILE RESPONSIVE ==================== */

@media (max-width: 1200px) {
    #college-header-wrapper .navbar-nav .nav-link {
        padding: 12px 6px !important;
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    /* Reset Desktop Nav Background but KEEP fixed structure if needed */
    .college-bg-nav {
        background: transparent;
        padding: 0;
        border: none;
        height: auto;
        box-shadow: none;
    }
    /* When fixed on mobile, give it a background so it's readable */
    .college-bg-nav.fixed-header {
        background: var(--college-navy) !important;
        padding-top: 5px;
        /* Slight padding for looks */
    }
    /* Mobile Menu Container */
    #college-header-wrapper .navbar-collapse {
        background: var(--college-navy);
        /* Dark Navy */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        padding: 0;
        margin-top: 4px;
        border-top: 3px solid var(--college-gold);
        max-height: 85vh;
        overflow-y: auto;
    }
    /* Mobile Nav Links */
    #college-header-wrapper .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 10px 15px !important;
        /* Compact */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.85rem;
        /* Compact */
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    /* Clear Dropdown Toggle Artifacts */
    #college-header-wrapper .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
    }
    /* Mobile Active State - Only Highlight if Explicitly Active or Expanded */
    #college-header-wrapper .navbar-nav .nav-link.active,
    #college-header-wrapper .navbar-nav .nav-link[aria-expanded="true"] {
        background: rgba(255, 255, 255, 0.05);
        color: var(--college-gold) !important;
        padding-left: 25px !important;
    }
    /* Mobile Dropdown Styling */
    #college-header-wrapper .dropdown-menu.show {
        display: block;
    }
    #college-header-wrapper .dropdown-menu {
        display: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--college-gold);
        margin: 0;
        padding: 0;
        background: #f8fbff;
        /* Light BG for contrast */
        width: 100%;
    }
    #college-header-wrapper .dropdown-item {
        padding: 8px 15px 8px 25px;
        /* Compact */
        font-size: 0.8rem;
        border-bottom: 1px solid #e2e8f0;
        color: #334155;
        /* Dark text */
        line-height: 1.4;
    }
    #college-header-wrapper .dropdown-item:last-child {
        border-bottom: none;
    }
    #college-header-wrapper .dropdown-item:hover {
        background: #f1f5f9;
        color: var(--college-gold-dark);
        padding-left: 30px;
    }
    /* Mobile Header Layout */
    .college-main-header {
        padding: 5px 0;
    }
    .college-logo-img {
        height: 45px;
    }
    .college-brand-title {
        font-size: 1.1rem;
    }
    .college-brand-sub {
        font-size: 0.65rem;
    }
    .college-navbar-toggler {
        border: 2px solid var(--college-navy);
        padding: 8px 12px;
        color: var(--college-navy);
        font-size: 1.2rem;
        border-radius: 6px;
    }
    .college-marquee-content {
        animation-duration: 90s;
        /* Slow down */
    }
    .college-social-mob:hover {
        color: var(--college-gold) !important;
    }
}

@media (max-width: 576px) {
    /* Ensure Top Bar is VISIBLE on Small Mobile (Updated Request) */
    .college-top-bar {
        display: block !important;
        font-size: 0.6rem;
    }
    /* Top Bar Mobile: Show Phone and Email in one line, centered */
    .college-top-bar .container {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 2px;
    }
    /* Override Bootstrap d-none logic for top bar phone/email specifically */
    .college-top-bar a span.d-none.d-sm-inline {
        display: inline !important;
        white-space: nowrap;
    }
    /* Show only the CMS and Pay Online buttons on very small screens */
    .college-top-right {
        display: flex !important;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px !important;
        margin-top: 2px;
    }
    /* HIDE the small text links (IQAC, IIC, NIRF, SDG, Tour) but SPARE the nested social links */
    .college-top-right>a:not(.rounded-pill) {
        display: none !important;
    }
    /* Styling for the newly injected mobile social strip */
    .social-link-mob {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fbbf24 !important;
        font-size: 0.65rem !important;
        padding: 4px;
        transition: all 0.2s;
        text-decoration: none;
    }
    .social-link-mob:hover {
        transform: scale(1.15);
        color: #fff !important;
    }
    /* Enhance the buttons slightly since we have more space now */
    .college-top-right a.rounded-pill {
        padding: 3px 10px !important;
        font-size: 0.6rem !important;
        margin-left: 2px !important;
        gap: 4px !important;
    }
    .college-top-right a.rounded-pill i {
        font-size: 0.65rem !important;
    }
    /* Ensure Contact Info (Left Side) is VISIBLE and CENTERED */
    .college-top-left {
        display: flex !important;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    /* Force Title Layout */
    .college-brand-title {
        font-size: 1.0rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }
    .college-brand-sub {
        font-size: 0.65rem;
    }
    .college-logo-img {
        height: 35px;
    }
    .college-brand-wrap {
        gap: 6px;
    }
    .college-navbar-toggler {
        padding: 4px 8px;
        font-size: 1rem;
    }
}


/* ==================== 9. INDEX HERO MOBILE ANIMATIONS ==================== */

@media (max-width: 991.98px) {
    /* Index Hero Animations on Mobile - Forced */
    .hero-bg {
        animation: zoomBreath 20s infinite alternate ease-in-out !important;
    }
    .hero-desc {
        animation: fadeInUp 1s ease-out 0.4s backwards !important;
    }
}


/* ==================== 10. ELITE PREMIUM FOOTER ==================== */

.footer-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.footer-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 191, 36, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.15);
}

.hover-link-elite {
    position: relative;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    color: #94a3b8;
    /* Slate 400 */
    text-decoration: none;
    font-weight: 500;
}

.hover-link-elite i {
    opacity: 0.5;
    transition: all 0.3s ease;
    transform: translateX(0);
    margin-right: 8px;
    color: #64748b;
}

.hover-link-elite:hover {
    color: #fbbf24 !important;
    padding-left: 6px;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.hover-link-elite:hover i {
    opacity: 1;
    color: #fbbf24;
    transform: translateX(2px);
}

.social-link-elite {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.social-link-elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-link-elite i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link-elite:hover {
    transform: translateY(-4px) scale(1.05);
    color: #000;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    border-color: transparent;
}

.social-link-elite:hover::before {
    opacity: 1;
}

.footer-nebula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(20, 32, 74, 0.4) 0%, transparent 50%), radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: nebulaPulse 10s infinite alternate ease-in-out;
}

@keyframes nebulaPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.footer-contact-item {
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
    border: 1px solid transparent;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}


/* Source: css/premium-tables1a49.css */


/* ==========================================================================
   COLLEGE Elite Premium Tables v3.0
   DataTables-integrated styling with gold-navy glassmorphism theme.
   Features: compact toolbar, pill search, animated pagination, premium rows.
   ========================================================================== */


/* =========  Variables  ========= */


/* =========  Wrapper Card  =========
   Only ONE card layer shows at a time:
   - .college-table-wrapper = card for plain tables (no DataTables)
   - .college-datatable-wrapper = card for DataTables-enhanced tables
   When DataTables initialises inside .college-table-wrapper, the outer
   shell is stripped via :has() so we never get a box-inside-a-box.
========================================= */


/* Default card style for plain tables */

.college-table-wrapper {
    background: var(--pt-white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--pt-radius-lg);
    box-shadow: 0 8px 32px rgba(10, 14, 39, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--pt-border);
    margin-bottom: 2rem;
    position: relative;
}


/* For DataTables, the wrapper itself becomes invisible and floats the controls! */

.college-datatable-wrapper {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 2.5rem;
    position: relative;
}


/* Align floating toolbar (Search / Length / Export) exactly with the table edges */

.college-datatable-wrapper>.d-flex.mb-3 {
    margin-bottom: 0 !important;
    /* Touch header exactly */
    padding: 10px 1.5rem 0.5rem;
    /* Only bottom breathing room */
}


/* When DataTables wraps a table that was already inside a card wrapper,
   flatten the old parent so we don't get double backgrounds/borders */

.college-table-wrapper:has(.college-datatable-wrapper),
.college-table-wrapper:has(> div[id$="_wrapper"]),
.dept-table-wrapper:has(.college-datatable-wrapper),
.dept-table-wrapper:has(> div[id$="_wrapper"]),
.fee-card:has(.college-datatable-wrapper),
.fee-card:has(> div[id$="_wrapper"]),
.fee-card:has(table) {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 0 !important;
}

.table-responsive:has(> div[id$="_wrapper"]) {
    overflow: visible !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-bottom: 0 !important;
}


/* -----------------------------------------------------
   CLEAN MINIMAL TABLE CARD
   ----------------------------------------------------- */

.dataTables_scroll {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
}


/* Force everything inside to snap to the bounds */

.dataTables_scrollHead,
.dataTables_scrollBody,
.dataTables_scrollHeadInner {
    margin: 0 !important;
    padding: 0 !important;
}


/* Eliminate white space extending below the bottom row */

.dataTables_scrollBody {
    flex-grow: 1;
    height: auto !important;
    max-height: 420px;
}


/* Length "Show X entries" control */

.dataTables_wrapper .dataTables_length {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    white-space: nowrap;
}

.dataTables_wrapper .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.82rem;
    color: var(--pt-muted);
}

.dataTables_wrapper .dataTables_length select {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid var(--pt-border);
    border-radius: var(--pt-radius-sm);
    padding: 5px 24px 5px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--pt-navy);
    background-color: var(--pt-surface);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.dataTables_wrapper .dataTables_length select:hover,
.dataTables_wrapper .dataTables_length select:focus {
    border-color: var(--pt-gold);
    box-shadow: 0 0 0 3px var(--pt-gold-glow);
}


/* Search input  */

.dataTables_wrapper .dataTables_filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dataTables_wrapper .dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    white-space: nowrap;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid rgba(10, 25, 47, 0.15);
    border-radius: var(--pt-radius-pill);
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--pt-surface);
    color: var(--pt-navy);
    width: 230px;
    min-width: 160px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--pt-gold);
    background: var(--pt-white);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 280px;
    transform: translateY(-1px);
}

.dataTables_wrapper .dataTables_filter input::placeholder {
    color: #94a3b8;
    font-size: 0.80rem;
}


/* =========  Upload / Download Icon Buttons  ========= */

.btn-dt-download,
.btn-dt-upload {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-dt-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3) !important;
}

.btn-dt-upload:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3) !important;
}


/* =========  TABLE BASE  ========= */

table.dataTable,
table.college-data-table {
    border-collapse: collapse !important;
    /* Changed from separate to collapse for perfect flush edges */
    border-spacing: 0;
    width: 100% !important;
    border: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    /* Strip inner table radius */
    box-shadow: none !important;
    /* Strip inner table shadow */
    background: transparent !important;
    font-size: 0.88rem;
}


/* Force header to be completely flush edge-to-edge, removing all inner rounded corners */

table.dataTable thead th:first-child,
table.college-data-table thead th:first-child,
table.dataTable thead th:last-child,
table.college-data-table thead th:last-child {
    border-radius: 0 !important;
}


/* =========  SCROLL CONTAINER (replaces pagination)  ========= */


/* ---- FIX: DARK BAR BELOW HEADER ----
   DataTables scrollY splits the table into:
     .dataTables_scrollHead  = clone <thead> (sticky, visible)
     .dataTables_scrollBody  = real <tbody> + spacer <thead> (invisible)
   We must COMPLTELY zero out the spacer so it adds 0px height.
--------------------------------------- */


/* (Moved to end of file for priority) */


/* Sticky header container — clean edge-to-edge navy */

.dataTables_scrollHead {
    overflow: hidden !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-radius: 16px 16px 0 0 !important;
    border-bottom: 3px solid var(--pt-gold) !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.dataTables_scrollHeadInner,
.dataTables_scrollHeadInner table,
.dataTables_scrollBody,
.dataTables_scrollBody table {
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
    border-spacing: 0 !important;
}


/* Scrollable body — spacing between rows to show card effect */

.dataTables_scrollBody {
    overflow-y: auto !important;
    overflow-x: auto !important;
    padding: 0 !important;
}


/* Ultra slim navy scrollbar for an elegant look */

.dataTables_scrollBody::-webkit-scrollbar {
    width: 6px;
    /* Slightly wider for usability, but still very sleek */
    height: 6px;
}

.dataTables_scrollBody::-webkit-scrollbar-track {
    background: transparent;
    /* Ensures seamless blend, no track strip */
    border-radius: 0 0 var(--pt-radius-lg) 0;
    /* Match outer corner */
    margin-top: 2px;
    margin-bottom: 2px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: var(--pt-navy);
    border-radius: 4px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: var(--pt-navy-soft);
}


/* =========  THEAD — Clean Minimal  ========= */

table.dataTable thead th,
table.college-data-table thead th {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 12px 18px !important;
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    position: relative;
    white-space: nowrap;
}


/* Subtle hover on header */

table.dataTable thead th:hover,
table.college-data-table thead th:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    cursor: pointer;
}


/* DataTables default sorting icons — keep them bright on dark bg */

table.dataTable thead .sorting::before,
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::before,
table.dataTable thead .sorting_desc::after {
    opacity: 0.45;
    filter: brightness(4);
}

table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::before {
    opacity: 0.9;
    filter: brightness(4);
}


/* =========  TBODY ROWS — Elite Card-Row Design  ========= */

table.dataTable tbody tr,
table.college-data-table tbody tr {
    background-color: var(--pt-white) !important;
    border: none !important;
    margin-bottom: 10px !important;
    display: table-row;
    /* Keep table behavior for column sizing */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04) !important;
    position: relative;
}

table.dataTable tbody tr:hover,
table.college-data-table tbody tr:hover {
    background-color: var(--pt-white) !important;
    box-shadow: inset 4px 0 0 var(--pt-gold), 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    z-index: 5;
}


/* =========  TBODY CELLS — Minimal Depth  ========= */

table.dataTable tbody td,
table.college-data-table tbody td {
    padding: 16px 20px !important;
    vertical-align: middle !important;
    color: var(--pt-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 12px solid var(--pt-surface) !important;
    /* Thick "gap" using border */
}

table.dataTable.no-footer {
    border-bottom: none !important;
}


/* =========  INFO & RECORD COUNT  ========= */

.dataTables_wrapper .dataTables_info {
    font-size: 0.8rem;
    color: var(--pt-muted);
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
}


/* Bottom row (info + pagination) — this IS the last thing inside
   the card, so we give it the card's bottom padding directly.
   Both the div:last-child selector and the .pt-bottom-row class
   are used for maximum specificity across browsers.               */

.dataTables_wrapper>div:last-child,
.pt-bottom-row {
    padding-bottom: 1.25rem !important;
    padding-top: 1rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* =========  PAGINATION  ========= */

.dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    margin: 0 2px !important;
    border: 1.5px solid var(--pt-border) !important;
    border-radius: 50% !important;
    background: var(--pt-white) !important;
    color: var(--pt-text) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
    line-height: 1 !important;
    text-align: center !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.current):not(.disabled) {
    border-color: var(--pt-gold) !important;
    background: var(--pt-gold) !important;
    color: var(--pt-navy) !important;
    box-shadow: 0 4px 12px var(--pt-gold-glow) !important;
    transform: translateY(-1px);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border-color: var(--pt-navy) !important;
    background: var(--pt-navy) !important;
    color: var(--pt-gold) !important;
    box-shadow: 0 4px 14px rgba(10, 14, 39, 0.22) !important;
    transform: translateY(-1px);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.35 !important;
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
}


/* Prev / Next special pill shape */

.dataTables_wrapper .dataTables_paginate .previous,
.dataTables_wrapper .dataTables_paginate .next {
    width: auto !important;
    padding: 0 14px !important;
    border-radius: var(--pt-radius-pill) !important;
    font-size: 0.77rem !important;
}


/* =========  SPECIAL ROWS (Section headers inside tables)  ========= */

tr.section-header-row td,
tr.company-header-row td {
    background: linear-gradient(90deg, var(--pt-navy) 0%, var(--pt-navy-soft) 100%) !important;
    color: var(--pt-gold) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 10px 16px !important;
    border-bottom: none !important;
}

tr.section-header-row:hover,
tr.company-header-row:hover {
    background: linear-gradient(90deg, var(--pt-navy) 0%, var(--pt-navy-soft) 100%) !important;
    box-shadow: none !important;
}

tr.section-header-row td::before,
tr.company-header-row td::before {
    display: none;
}


/* =========  DATA BADGES  ========= */

.package-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2);
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

table tbody tr:hover .package-badge {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 5px 14px rgba(16, 185, 129, 0.28);
}


/* =========  MODAL  ========= */

.tm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-modal-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 2rem 2rem 1.75rem;
    width: 400px;
    max-width: 95vw;
    position: relative;
    box-shadow: 0 24px 60px rgba(10, 14, 39, 0.25);
    border-top: 4px solid var(--pt-gold);
    animation: pt-modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pt-modal-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(16px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.btn-close-modal {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: var(--pt-muted);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.btn-close-modal:hover {
    color: var(--pt-navy);
    background: #f1f5f9;
}

.tm-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}


/* =========  RESPONSIVE  ========= */

@media (max-width: 768px) {
    .college-table-wrapper,
    .college-datatable-wrapper {
        padding: 1rem;
        border-radius: var(--pt-radius-md);
    }
    table.dataTable tbody td,
    table.college-data-table tbody td {
        padding: 10px 10px !important;
        font-size: 0.82rem;
    }
    table.dataTable thead th,
    table.college-data-table thead th {
        padding: 10px 10px !important;
    }
    .dataTables_wrapper .dataTables_filter input {
        width: 160px;
        min-width: 120px;
    }
    .dataTables_wrapper .dataTables_filter input:focus {
        width: 200px;
    }
    .dataTables_wrapper .dataTables_paginate {
        justify-content: center;
        flex-wrap: wrap;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.74rem !important;
        margin: 1px !important;
    }
}


/* Datatable scroll container clips cleanly */

.dataTables_scroll {
    overflow: hidden;
}


/* ==========================================================================
   FINAL OVERRIDE: ZERO-GAP SPACER HEADER
   This MUST come after all header/row styles to ensure the hidden spacer
   occupies exactly 0px of height.
   ========================================================================== */

.dataTables_scrollBody thead,
.dataTables_scrollBody thead tr,
.dataTables_scrollBody thead th,
.dataTables_scrollBody thead td {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.dataTables_scrollBody thead th::after,
.dataTables_scrollBody thead th::before,
.dataTables_scrollBody thead td::after,
.dataTables_scrollBody thead td::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
    line-height: 0 !important;
}


/* Source: css/index-common3661.css */


/* ====================================================================
   COLLEGE INDEX — GLOBAL DESIGN SYSTEM v2.0
   Governs spacing, typography, transitions & uniform section headers
   across ALL index-*.php sections.
   ==================================================================== */


/* ── CSS Custom Properties ──────────────────────────────────────────── */


/* ── Smooth Scroll (entire page) ────────────────────────────────────── */

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* iOS momentum scrolling */
}


/* ── Global box-sizing reset ─────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ── Body anti-overflow ──────────────────────────────────────────────── */

body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* ── Section Separator Utility ───────────────────────────────────────── */

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
    border: none;
    margin: 0;
}

.section-divider-dark {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.06) 80%, transparent 100%);
}


/* ── UNIVERSAL SECTION HEADER STYLES ─────────────────────────────────── */


/* Standardised across all index sections */


/* Super-label pill */

.pas-sub,
.sec-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.14) 0%, rgba(217, 119, 6, 0.06) 100%);
    border: 1.5px solid rgba(251, 191, 36, 0.30);
    color: var(--college-gold-dark);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.12);
}

.pas-sub i,
.sec-pill i {
    animation: secPillIconPulse 2.2s ease-in-out infinite;
}

@keyframes secPillIconPulse {
    0%,
    100% {
        transform: scale(1);
        color: var(--college-gold-dark);
    }
    50% {
        transform: scale(1.2);
        color: var(--college-gold);
    }
}


/* Dark section pill variant */

.sec-pill-dark {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.22);
    color: var(--college-gold);
}


/* Heading */

.pas-title,
.sec-h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    font-weight: 900;
    color: var(--college-navy);
    margin-bottom: 0.75rem;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.sec-h2 span {
    color: var(--college-gold-dark);
}


/* Dark section heading variant */

.dark-section .pas-title,
.dark-section .sec-h2 {
    color: #ffffff;
}


/* Subtitle/description */

.pas-desc,
.sec-desc {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.dark-section .pas-desc,
.dark-section .sec-desc {
    color: #94a3b8;
}


/* Decorative gold divider bar */

.sec-divider-bar {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--college-gold-dark), var(--college-gold));
    border-radius: 99px;
    margin: 1rem auto 0;
}


/* Section header wrapper */

.sec-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
}


/* ── Container utility ───────────────────────────────────────────────── */

.college-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}


/* ── Shared section padding utility ─────────────────────────────────── */

.college-section {
    padding: var(--section-pad-y) 0;
    position: relative;
}


/* ── AOS / IntersectionObserver animation classes ────────────────────── */

[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos][data-aos-delay="50"].aos-animate {
    transition-delay: 0.05s;
}

[data-aos][data-aos-delay="100"].aos-animate {
    transition-delay: 0.10s;
}

[data-aos][data-aos-delay="150"].aos-animate {
    transition-delay: 0.15s;
}

[data-aos][data-aos-delay="200"].aos-animate {
    transition-delay: 0.20s;
}

[data-aos][data-aos-delay="300"].aos-animate {
    transition-delay: 0.28s;
}


/* For fade-right variant */

[data-aos="fade-right"] {
    transform: translateX(-28px);
}

[data-aos="fade-right"].aos-animate {
    transform: none;
}


/* ── Shared CTA Buttons ──────────────────────────────────────────────── */

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--college-navy);
    color: var(--college-gold);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 6px 20px rgba(20, 32, 74, 0.15);
}

.btn-primary-gold:hover {
    background: var(--college-gold);
    color: var(--college-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--college-navy);
    border: 2px solid #d1d9e6;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-outline-navy:hover {
    border-color: var(--college-navy);
    box-shadow: 0 6px 18px rgba(20, 32, 74, 0.1);
    transform: translateY(-3px);
}


/* ── Gold top accent strip (shared decoration) ───────────────────────── */

.sec-gold-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--college-gold), transparent);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.35);
    z-index: 3;
}


/* ── Lazy-load image fade-in ─────────────────────────────────────────── */

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded,
img[loading="lazy"].loaded {
    opacity: 1;
}


/* ── Performance: reduce-motion support ──────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}


/* ── Flowing Gradient Text Utility (Recognitions Style) ───────────────── */

.text-gradient-flowing {
    background: linear-gradient(90deg, #d97706 0%, #fbbf24 30%, #fff7ed 50%, #fbbf24 70%, #d97706 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldTextShimmer 4s linear infinite;
    display: inline-block;
}

@keyframes goldTextShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}


/* Shared declarations extracted from reusable elements */

.college-placeholder-content {
    max-width: 720px;
}

.college-inline-footer-376 {
    flex-shrink: 0;
    margin-bottom: 0;
}

.college-inline-footer-377 {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    border: 2px solid rgba(251, 191, 36, 0.6);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
    object-fit: contain;
    background: #ffffff;
    padding: 4px;
}

.college-inline-footer-378 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 900;
    color: #fbbf24;
    background: none;
    -webkit-text-fill-color: initial;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.college-inline-footer-379 {
    background-color: #fbbf24;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    font-size: 0.85rem;
}

.college-inline-footer-380 {
    font-size: 0.95rem;
}

.college-inline-footer-381 {
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    color: #94a3b8;
    max-width: 400px;
}

.college-inline-footer-382 {
    border-left: 2px solid rgba(251, 191, 36, 0.3);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.college-inline-footer-383 {
    width: 20px;
    text-align: center;
}

.college-inline-footer-384 {
    font-size: 0.95rem;
}

.college-inline-footer-385 {
    width: 20px;
    text-align: center;
}

.college-inline-footer-386 {
    font-size: 0.95rem;
}

.college-inline-footer-387 {
    width: 20px;
    text-align: center;
}

.college-inline-footer-388 {
    font-size: 0.95rem;
}

.college-inline-footer-389 {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.college-inline-footer-390 {
    font-size: 0.6rem;
}

.college-inline-footer-391 {
    font-size: 0.6rem;
}

.college-inline-footer-392 {
    font-size: 0.6rem;
}

.college-inline-footer-393 {
    font-size: 0.6rem;
}

.college-inline-footer-394 {
    font-size: 0.6rem;
}

.college-inline-footer-395 {
    font-size: 0.6rem;
}

.college-inline-footer-396 {
    font-size: 0.6rem;
}

.college-inline-footer-397 {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.college-inline-footer-398 {
    font-size: 0.6rem;
}

.college-inline-footer-399 {
    font-size: 0.6rem;
}

.college-inline-footer-400 {
    font-size: 0.6rem;
}

.college-inline-footer-401 {
    font-size: 0.6rem;
}

.college-inline-footer-402 {
    font-size: 0.6rem;
}

.college-inline-footer-403 {
    font-size: 0.6rem;
}

.college-inline-footer-404 {
    font-size: 0.6rem;
}

.college-inline-footer-405 {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.college-inline-footer-406 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.college-inline-footer-407 {
    width: 1.4em;
    height: 1.4em;
}

.college-inline-footer-408 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.college-inline-footer-409 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.college-inline-footer-410 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.college-inline-footer-411 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.college-inline-footer-412 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.college-inline-footer-413 {
    color: #fbbf24;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.college-inline-footer-414 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 125px;
}

.college-inline-footer-415 {
    font-size: 0.75rem;
}

.college-inline-back-to-top-416 {
    --scroll-percent: 0%;
}

.college-inline-menubar-417 {
    font-size: 0.85rem;
}

.college-inline-menubar-418 {
    font-size: 0.85rem;
}

.college-inline-menubar-419 {
    width: 1.5em;
    height: 1.5em;
}

.college-inline-menubar-420 {
    font-size: 0.8rem;
}

.college-inline-sidebar-421 {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.college-inline-sidebar-422 {
    width: 1.5em;
    height: 1.5em;
}

.college-inline-sidebar-423 {
    background: #1877f2;
}

.college-inline-topbar-424 {
    width: 1.25em;
    height: 1.25em;
}

.college-inline-topbar-425 {
    font-size: 0.65rem;
    color: #fbbf24;
}

.college-inline-topbar-426 {
    font-size: 0.9rem;
}

.college-inline-topbar-427 {
    width: 1.25em;
    height: 1.25em;
}

.college-inline-topbar-428 {
    font-size: 0.9rem;
}

.college-inline-topbar-429 {
    font-size: 0.9rem;
}

.college-inline-topbar-430 {
    font-size: 0.9rem;
}

.college-inline-topbar-431 {
    font-size: 0.9rem;
}

.college-inline-topbar-432 {
    font-size: 0.9rem;
    margin-right: 5px;
}

.college-inline-topbar-433 {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.college-inline-topbar-434 {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
}


/* Shared source: department-common.css */


/* Hero Particles */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}


/* Global Handling - Performance Optimized for Smooth Scroll */

html {
    /* scroll-behavior: smooth; -- REMOVED to prevent scroll lag on manual scroll */
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* GPU Acceleration for smooth scrolling - REMOVED to fix invalid Fixed Positioning context */
    /* transform: translateZ(0); */
    /* -webkit-transform: translateZ(0); */
    /* backface-visibility: hidden; */
    /* -webkit-backface-visibility: hidden; */
}


/* === Typography === */

p,
li,
dl,
address {
    font-size: 15px;
    margin-bottom: 1rem;
}


/* Page Layout */

.dept-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: -60px auto 50px !important;
    /* Standard v2 Overlap */
    padding: 0 20px;
    position: relative !important;
    z-index: 100 !important;
    /* Force layout above hero backgrounds */
}


/* ==== Sidebar (Elite Glassmorphism) ==== */

.sidebar {
    width: 270px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 90px;
    flex-shrink: 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
    will-change: transform;
    z-index: 20;
    transition: all 0.3s ease;
}

.sidebar:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.4);
}

.sidebar-toggle {
    display: none;
}

.sidebar-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: 1.2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    justify-content: flex-start;
}

.sidebar-header i {
    color: #fbbf24;
    /* Yellow Icon */
    font-size: 1.1em;
}

.nav-group {
    padding: 12px 0;
}

.nav-label {
    padding: 12px 24px 4px;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    color: #475569;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.9rem;
    gap: 12px;
    cursor: pointer;
}

.sidebar-link:hover {
    background: #f1f5f9;
    padding-left: 24px;
    /* No indent shift */
    color: #0f172a;
}

.sidebar-link.active {
    background: #fbbf24;
    /* Yellow Background */
    color: #0f172a;
    /* Dark Text */
    font-weight: 600;
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    color: #64748b;
    /* Gray Icon */
    transition: color 0.2s;
}

.sidebar-link.active i {
    color: #0f172a;
    /* Dark Icon on Active */
}


/* ==== Content Area & Cards ==== */

.content-area {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.section-card {
    background: #ffffff !important;
    border-radius: 40px !important;
    padding: 25px 30px !important;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    scroll-margin-top: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative !important;
    z-index: 101 !important;
    overflow: hidden;
}

.section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    border-color: rgba(251, 191, 36, 0.2);
}


/* INTEGRATED VARIANT (Optional use for extra glow) */

.section-card.integrated {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.section-card.integrated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), #fbbf24, var(--primary-light));
    z-index: 1;
}

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

.fade-in-up {
    animation: fadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Start hidden */
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.section-title {
    font-weight: 800;
    font-size: 1.55rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a !important;
    letter-spacing: -0.6px;
    position: relative;
}


/* Elite Intro Box (Gold Border Left) */

.section-intro-box {
    background: #f8fafc;
    border-left: 5px solid #fbbf24;
    padding: 20px 25px;
    border-radius: 4px 16px 16px 4px;
    margin-bottom: 2rem;
}

.section-intro-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.section-title i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   STANDARD NAVIGATION TABS (Updated to Capsule Dock Style)
   This style applies globally to .nav-tabs to ensure consistency.
   ========================================================= */


/* =========================================================
   STANDARD NAVIGATION TABS (Compact Wrapped Pill Style)
   Applies globally to .nav-tabs.
   ========================================================= */

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    justify-content: flex-start;
    border: none;
    background: transparent;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}


/* Remove default Bootstrap borders */

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

.nav-tabs .nav-link {
    color: #64748b;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-tabs .nav-link i {
    font-size: 0.95rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}


/* Hover State */

.nav-tabs .nav-link:hover {
    background-color: #f8fafc;
    /* Light hover */
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.nav-tabs .nav-link:hover i {
    color: #fbbf24;
}


/* Active State - Black/Navy Pill */

.nav-tabs .nav-link.active {
    background: var(--primary-color) !important;
    /* Navy/Black Background */
    color: #ffffff !important;
    /* White Text */
    border-color: var(--primary-color) !important;
    animation: bounceIn 0.4s;
}

.nav-tabs .nav-link.active i {
    color: #fbbf24;
    animation: bounceIn 0.4s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


/* Scroll Hint - Visible only on mobile/tablet usually */

@media (max-width: 991px) {
    .nav-tabs {
        margin: 0 -15px 20px -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .scroll-hint {
        display: block;
    }
}


/* Scroll Hint (Global) */

.scroll-hint {
    display: none;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}


/* Tab Content Box */

.tab-content {
    padding: 25px;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    animation: fadeIn 0.4s ease-out;
}

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


/* ==== Common UI Elements ==== */

.feature-card {
    padding: 28px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
    border-color: rgba(226, 232, 240, 0.5);
}

.custom-badge {
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.custom-badge:hover {
    transform: translateY(-2px);
}


/* ==== Video Container ==== */

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
    will-change: transform;
    background: #000;
}

.video-container:hover {
    transform: scale(1.01);
}


/* ==== Premium Tables ==== */

.dept-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    background: white;
}

.dept-table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
}


/* ==== Consultancy Section ==== */

.consultancy-intro-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.consultancy-stat-row {
    margin-bottom: 50px;
    padding: 0 20px;
}

.consultancy-stat {
    text-align: left;
}

.consultancy-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.consultancy-stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}


/* Match feature cards to image (cleaner) */

.consultancy-feature-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.consultancy-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.icon-list-premium {
    list-style: none;
    padding-left: 0;
    margin: 0;
}


/* ==== Mobile Responsive ==== */

@media (max-width: 991px) {
    .dept-layout {
        flex-direction: column;
        padding: 15px;
        margin-top: -30px;
    }
    .sidebar {
        width: 100%;
        position: sticky;
        top: 70px;
        z-index: 100;
        margin-bottom: 20px;
        max-height: none;
        border-radius: 12px;
    }
    .sidebar-toggle {
        display: flex;
        width: 100%;
        padding: 12px 18px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        color: var(--primary-color);
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 10px;
        font-weight: 700;
        justify-content: space-between;
        align-items: center;
        box-shadow: var(--shadow-sm);
    }
    .sidebar.active .sidebar-toggle {
        border-radius: 12px 12px 0 0;
        background: var(--primary-light);
        color: white;
    }
    .sidebar-content {
        display: none !important;
        /* Force hidden by default */
        background: white;
        border: 1px solid #e2e8f0;
        border-top: none;
        border-radius: 0 0 12px 12px;
        max-height: 60vh;
        overflow-y: auto;
    }
    .sidebar.active .sidebar-content {
        display: block !important;
        /* Force visible when active */
        animation: slideDown 0.3s ease-out;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .section-card {
        padding: 20px;
        border-radius: 20px !important;
    }
    .section-title {
        font-size: 1.4rem;
    }
}


/* =========================================
   Universal Data Table (.college-data-table)
   Standardized structure for all website tables.
   ENHANCED PREMIUM VERSION
   ========================================= */

.college-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}


/* Beautified Table Header */

.college-data-table thead th {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    padding: 14px 16px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    user-select: none;
}


/* Sortable Column Indicator */

.college-data-table thead th.sortable {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: background 0.2s ease;
}

.college-data-table thead th.sortable:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

.college-data-table thead th.sortable::after {
    content: '⇅';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    font-size: 0.9rem;
}

.college-data-table thead th.sortable.asc::after {
    content: '↑';
    opacity: 1;
    color: #fbbf24;
}

.college-data-table thead th.sortable.desc::after {
    content: '↓';
    opacity: 1;
    color: #fbbf24;
}


/* Rounded Header Corners */

.college-data-table thead th:first-child {
    border-top-left-radius: 12px;
}

.college-data-table thead th:last-child {
    border-top-right-radius: 12px;
}


/* Table Body Rows */

.college-data-table tbody tr {
    background: white;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #f1f5f9;
}


/* Alternating Row Colors for Better Readability */

.college-data-table tbody tr:nth-child(even) {
    background: #fafbfc;
}


/* Hover Effect with Smooth Elevation */

.college-data-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.04);
    transform: translateX(4px);
    z-index: 5;
    position: relative;
    border-left: 3px solid #fbbf24;
}


/* Table Cells */

.college-data-table td {
    padding: 14px 20px;
    vertical-align: middle;
    color: #334155;
    font-size: 0.9rem;
    border: none;
    transition: all 0.2s ease;
}


/* First/Last Cell Padding for Visual Balance */

.college-data-table td:first-child {
    padding-left: 24px;
    font-weight: 600;
}

.college-data-table td:last-child {
    padding-right: 24px;
}


/* Strong/Bold Text Emphasis */

.college-data-table td strong,
.college-data-table td .fw-bold {
    color: #0f172a;
    font-weight: 700;
}


/* Special Row Highlighting (e.g., chairman, president) */

.college-data-table tbody tr.highlight,
.college-data-table tbody tr.chairman-row,
.college-data-table tbody tr.featured {
    background: linear-gradient(90deg, #dbeafe 0%, #f0f9ff 100%);
    font-weight: 600;
    border-left: 4px solid #3b82f6;
}

.college-data-table tbody tr.highlight:hover,
.college-data-table tbody tr.chairman-row:hover,
.college-data-table tbody tr.featured:hover {
    background: linear-gradient(90deg, #bfdbfe 0%, #dbeafe 100%);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}


/* Action Buttons in Tables */

.college-data-table .btn-action {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.college-data-table .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Table Wrapper with Enhanced Shadow */

.college-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: white;
    -webkit-overflow-scrolling: touch;
}


/* Custom Scrollbar for Table Wrapper */

.college-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.college-table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.college-table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
    transition: background 0.2s;
}

.college-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}


/* Compact Table Variant */

.college-data-table.compact td,
.college-data-table.compact th {
    padding: 10px 16px;
    font-size: 0.85rem;
}


/* Bordered Table Variant */

.college-data-table.bordered td,
.college-data-table.bordered th {
    border: 1px solid #e2e8f0;
}


/* Striped Table Variant (More Pronounced) */

.college-data-table.striped tbody tr:nth-child(odd) {
    background: #ffffff;
}

.college-data-table.striped tbody tr:nth-child(even) {
    background: #f8fafc;
}


/* Responsive Table Stack (Mobile) */

@media (max-width: 768px) {
    .college-data-table.stack-mobile thead {
        display: none;
    }
    .college-data-table.stack-mobile tbody tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .college-data-table.stack-mobile tbody tr:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .college-data-table.stack-mobile tbody td {
        display: block;
        text-align: right;
        padding: 8px 12px;
        border: none;
        position: relative;
    }
    .college-data-table.stack-mobile tbody td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    .college-data-table.stack-mobile tbody td:first-child {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background: #f8fafc;
        font-weight: 700;
        color: #0f172a;
    }
    .college-data-table.stack-mobile tbody td:last-child {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
}


/* Loading State */

.college-data-table.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.college-data-table.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #e2e8f0;
    border-top-color: #fbbf24;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Empty State */

.college-data-table tbody tr.empty-state td {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-style: italic;
}

.college-data-table tbody tr.empty-state:hover {
    background: white;
    transform: none;
    box-shadow: none;
    border-left: none;
}


/* --- Table Manager Styles --- */

.table-toolbar {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Added outer shadow for toolbar */
}

.search-container input {
    background-color: #f1f5f9 !important;
    /* Slightly darker for contrast */
    color: #334155;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent !important;
    /* Prepare for focus */
}

.search-container input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-container input:focus {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15) !important;
    /* Stronger focus shadow */
    border-color: #3b82f6 !important;
    transform: scale(1.01);
    /* Subtle grow */
}

.btn-icon-action {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    width: 45px !important;
    /* Larger buttons */
    height: 45px !important;
    font-size: 1.1rem;
    /* Larger icon */
}

.btn-icon-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    filter: brightness(0.95);
}

.btn-icon-action:active {
    transform: translateY(0);
}

.text-success {
    color: #10b981 !important;
}

.text-primary {
    color: #0ea5e9 !important;
}


/* Security Modal */

.tm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.tm-modal-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close-modal:hover {
    color: #ef4444;
}

.tm-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

#tm-password-input {
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
}

#tm-password-input:focus {
    box-shadow: none;
    border-color: #3b82f6;
    background-color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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


/* =========================================
   Global Typography Updates (User Requested)
   ========================================= */


/* Justify main content text for clean look */

.content-area p,
.content-area li,
.section-card p,
.section-card li {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.75;
    /* Increased line-height for premium feel */
    hyphens: auto;
    /* Prevents large gaps in justified text */
}


/* EXCEPTION: Headings should not be justified */

.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6,
.section-title {
    text-align: left;
}


/* EXCEPTION: Centered Typography Helpers must override justification */

.text-center p,
.text-center li,
.gold-badge-card p,
.college-hero p,
.section-title p {
    text-align: center !important;
}


/* EXCEPTION: Tables */

table p,
table li {
    text-align: left;
}


/* Shared source: gold-theme.css */


/* 
   Gold Theme - Premium Override for Department Common CSS
   Extracted from Recognitions Page
*/


/* === Hero Section === */

.gold-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.gold-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gold-hero h1 {
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.gold-hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* === Sidebar Overrides === */


/* Active state for Sidebar Links (Gold Gradient) */

.sidebar-link.active,
.sidebar-links a.active {
    background: linear-gradient(90deg, var(--gold), #e6a800) !important;
    color: var(--navy) !important;
    border-left-color: var(--gold-light) !important;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3) !important;
}

.sidebar-link.active i,
.sidebar-links a.active i {
    color: var(--navy) !important;
}


/* Hover state */

.sidebar-link:hover,
.sidebar-links a:hover {
    background: #fdfce7;
    /* Very light gold tint */
    color: var(--navy);
}

.sidebar-header i {
    color: var(--gold) !important;
}


/* === Section Title Gold Accent === */

.section-title i {
    background: linear-gradient(135deg, #fbbf24, #d97706) !important;
    color: #1e293b !important;
}


/* === Tabs Active State (Gold Text) === */


/* === Tabs Active State (Enforce Navy Pill style) === */

.nav-tabs .nav-link.active {
    background: var(--navy) !important;
    color: #ffffff !important;
    border-color: var(--navy) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3) !important;
}

.nav-tabs .nav-link.active i {
    color: var(--gold) !important;
}


/* === Sub Headings / Feature Cards === */

.sub-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 1.4rem 0 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sub-heading i {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(251, 191, 36, 0.3);
}


/* Approval/Feature Badges (Used in Management/Vision) */

.gold-badge-card {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.gold-badge-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.15);
    background: rgba(251, 191, 36, 0.1);
}


/* === Tables (Premium Data Table) === */

.college-data-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.college-data-table thead th {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%) !important;
    color: var(--gold) !important;
    border-bottom: 3px solid var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 1.2rem 1rem !important;
    vertical-align: middle;
}

.college-data-table td {
    padding: 1rem !important;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.college-data-table tbody tr {
    transition: all 0.2s ease;
}

.college-data-table tbody tr:hover {
    background-color: #fffbeb !important;
    /* Gold tint */
    transform: scale(1.002);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
    position: relative;
}

.college-data-table tbody tr:hover td {
    background: transparent;
    /* Rely on row background */
    color: var(--navy);
}


/* Company Header Row (for Placements) */

.company-header-row td {
    background: linear-gradient(90deg, #fef3c7 0%, #fff 100%) !important;
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    border-left: 5px solid var(--gold);
}


/* Package Badge */

.package-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(251, 191, 36, 0.4);
    display: inline-block;
}


/* === Fee Structure Elements === */

.fee-card {
    background: #fff;
    border-top: 4px solid var(--gold);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fee-title {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e2e8f0;
}

.fee-title i {
    color: var(--gold);
    background: rgba(251, 191, 36, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
}

.program-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy);
}

.program-name i {
    color: var(--gold);
    width: 24px;
    text-align: center;
}

.fee-highlight {
    color: var(--navy);
    font-weight: 700;
}

.mgmt-fee {
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 1.05rem;
}

.govt-fee {
    color: #64748b;
    font-size: 0.95rem;
}

.fee-cell {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fee-cell {
        white-space: normal;
    }
}


/* === Profile Card (Chairman, Principal) === */

.profile-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.4);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
}

.profile-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-name {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.profile-role {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-body {
    padding: 2rem;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}


/* === Stats Counter Section === */

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, white 0%, #fffbeb 100%);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--navy) 30%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* === Process Steps (Livelihood) === */

.process-container {
    position: relative;
    padding: 20px 0;
}

.process-step {
    position: relative;
    z-index: 2;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
    background: #fffbeb;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}


/* Connector Line (Desktop) */

@media (min-width: 992px) {
    .process-arrow {
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        color: var(--gold);
        font-size: 1.5rem;
        z-index: 1;
    }
}


/* === Feature Icon Box (Functions) === */

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.feature-box:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

.feature-box-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}


/* === Highlight Stats Box (Universal) === */

.highlight-stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-stats::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.05));
    pointer-events: none;
}

.highlight-stats i {
    color: var(--gold);
    margin-right: 0.5rem;
}


/* === Initiative List (Universal) === */

.initiative-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.initiative-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}

.initiative-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}


/* Shared source: repeated on 122 pages */


/* ========== ELITE PREMIUM FOOTER - PERFECTED ========== */

.footer {
    background: radial-gradient(circle at 50% 10%, #060b19 0%, #01030a 100%);
    color: #e2e8f0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin-top: 0;
}


/* === Rolling Visitor Counter CSS === */

.visitor-counter-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    backdrop-filter: blur(5px);
}

.vc-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-label i {
    color: #fbbf24;
}

.rolling-counter {
    display: flex;
    gap: 2px;
    background: #000;
    padding: 4px;
    border-radius: 6px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
}

.digit-slot {
    width: 24px;
    height: 32px;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: #fbbf24;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.digit-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.digit-slot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
}


/* =========================================
       1. ABSTRACT LUMINOUS BACKGROUND
       ========================================= */

.footer-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 45%), radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 40%), radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}


/* =========================================
       2. PREMIUM TECH GRID (Clean & Simple)
       ========================================= */

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
}


/* =========================================
       3. ELITE SILHOUETTE BACKGROUND
       ========================================= */

.footer-silhouette-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    /* Triple Layered Landscape/City Silhouette for Depth */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23050814' fill-opacity='0.6' d='M0,224L48,202.7C96,181,192,139,288,138.7C384,139,480,181,576,197.3C672,213,768,203,864,170.7C960,139,1056,85,1152,80C1248,75,1344,117,1392,138.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%2302040c' fill-opacity='0.85' d='M0,288L60,266.7C120,245,240,203,360,208C480,213,600,267,720,261.3C840,256,960,192,1080,170.7C1200,149,1320,171,1380,181.3L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23000000' fill-opacity='1' d='M0,320L1440,320L1440,280Q1080,220 720,260T0,280Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}


/* VISIBLE Smooth Curved Wave */

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    transform: translateY(-99%);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

.footer-wave .shape-fill {
    fill: #01030a;
}


/* Footer Content */

.footer-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0 1.5rem;
    /* Compacted Padding */
}

.footer-col {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.footer-col:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}

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


/* Elite Brand Section */

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3), 0 0 0 4px rgba(251, 191, 36, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid rgba(251, 191, 36, 0.4);
    position: relative;
    z-index: 1;
}

.footer-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.5s;
    animation: rotateBorder 3s linear infinite;
    z-index: 0;
}

.footer-logo-wrapper:hover::before {
    opacity: 0.3;
}

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

.footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.5), 0 0 0 6px rgba(251, 191, 36, 0.15);
}

.footer-brand-text {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: -0.5px;
}

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

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    margin-bottom: 1rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.footer-tagline {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


/* FIXED: Single Underline Titles */

.footer-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: expandLine 1s ease forwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}


/* Elite Links */

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

.footer-links li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    transition: all 0.3s;
    opacity: 0;
}

.footer-links a:hover::before {
    left: -25px;
    width: 18px;
    opacity: 1;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-links i {
    font-size: 0.75rem;
    color: rgba(251, 191, 36, 0.6);
    transition: all 0.3s;
}

.footer-links a:hover i {
    transform: translateX(5px) scale(1.2);
    color: #fbbf24;
}


/* Premium Contact Cards */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-value a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #fbbf24;
}


/* Elite Social Links */

.social-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-top: 1.5rem;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fbbf24;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.social-link::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.social-link:hover::after {
    left: 100%;
}

.social-link i,
.social-link img {
    position: relative;
    z-index: 5;
    transition: all 0.3s;
}

.social-link:hover i,
.social-link:hover img {
    transform: scale(1.2) rotate(-5deg);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.15) rotate(5deg);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.social-link:hover::before {
    width: 120%;
    height: 120%;
}

.social-link:hover i,
.social-link:hover img {
    color: #000;
}


/* Brand-Specific Colors */

.social-link.facebook:hover {
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
}

.social-link.facebook:hover::before {
    background: #1877f2;
}

.social-link.instagram:hover {
    box-shadow: 0 15px 40px rgba(228, 64, 95, 0.6);
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin:hover {
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.6);
}

.social-link.linkedin:hover::before {
    background: #0077b5;
}

.social-link.youtube:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.social-link.youtube:hover::before {
    background: #ff0000;
}

.social-link.whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.social-link.whatsapp:hover::before {
    background: #25d366;
}

.social-link.google:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.social-link.google:hover::before {
    background: #ffffff;
}


/* Elite Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.copyright strong {
    color: #fbbf24;
    font-weight: 700;
}

.copyright i {
    color: #ef4444;
    margin: 0 5px;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 3px;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s;
}

.footer-bottom-links a:hover {
    color: #fbbf24;
}

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


/* Responsive Design */

@media (max-width: 768px) {
    .footer-content {
        padding: 4rem 0 2rem;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col:first-child {
        text-align: left !important;
    }
    .footer-logo-wrapper {
        margin-bottom: 20px;
    }
    .footer-logo-wrapper::before {
        display: none !important;
        animation: none !important;
    }
    .footer-logo {
        transform: none !important;
        animation: none !important;
        will-change: auto !important;
    }
    .footer-logo:hover {
        transform: none !important;
    }
    .footer-title {
        display: block;
    }
    .footer-col:first-child .footer-title::after,
    .footer-col:last-child .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .col-6.footer-col {
        text-align: left !important;
    }
    .col-6.footer-col .footer-title::after {
        left: 0;
        transform: none;
    }
    .col-6.footer-col .footer-links a {
        justify-content: flex-start;
    }
    .footer-links a {
        justify-content: center;
    }
    .contact-item {
        text-align: left;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-btn {
        width: 100%;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .social-links {
        gap: 12px;
    }
    .social-link {
        width: 50px;
        height: 50px;
    }
}


/* Performance Optimizations */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Elite Portal Buttons - Premium Beautification */

.portal-section-title {
    color: rgba(251, 191, 36, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portal-section-title::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.3), transparent);
}

.footer-portals .portal-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-portals .portal-btn i {
    color: #fbbf24;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-portals .portal-btn:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fff;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.footer-portals .portal-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.footer-portals .portal-btn.accent {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(251, 191, 36, 0.3);
}

.footer-portals .portal-btn.accent:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-color: transparent;
}

.footer-portals .portal-btn.accent:hover i {
    color: #000;
}

.footer-portals .portal-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.footer-portals .portal-btn:hover::after {
    left: 100%;
}


/* Shared source: repeated on 122 pages */


/* ───────────────────────────────
   Premium Footer & Sidebar Components
   Integrated & Optimized for Zero Layout Shift
   ─────────────────────────────── */


/* ─ Footer brand responsive layout ─────────────────────────────── */

.footer-brand-content {
    flex: 1;
    min-width: 0;
}

@media(max-width:767px) {
    .footer-brand .d-flex.align-items-center {
        gap: 12px !important;
    }
    .footer-brand {
        text-align: left !important;
    }
    .footer-brand-content {
        text-align: left !important;
    }
    .footer-logo {
        width: 65px !important;
        height: 65px !important;
        border-radius: 12px !important;
        border-width: 2px !important;
    }
    .footer-brand-text {
        font-size: 1.6rem !important;
    }
    .footer-tagline {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    .footer-contact-list {
        gap: 10px !important;
        border-left: 2px solid rgba(251, 191, 36, 0.3) !important;
        padding-left: 12px !important;
    }
    .footer-contact-list .fs-6 {
        font-size: 0.9rem !important;
        width: 16px !important;
    }
    .footer-contact-list span,
    .footer-contact-list a {
        font-size: 0.85rem !important;
    }
}


/* ─ Visitor counter: Maintain margin on mobile to avoid chatbot overlap ─ */

@media(max-width:767px) {
    .visitor-counter-wrapper {
        margin-right: 75px !important;
    }
}


/* ═══════════════════════════════════════════
   LEFT SIDEBAR (Quick Portals)
   ═══════════════════════════════════════════ */

#college-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999990;
    /* High priority */
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease, transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

#college-sidebar.rsb-show {
    opacity: 1;
    pointer-events: auto;
}

.rsb-item {
    position: relative;
    display: flex;
    align-items: center;
}

.rsb-btn {
    width: 50px;
    height: 50px;
    border-radius: 0 14px 14px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(255, 255, 255, 0.4);
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    position: relative;
    z-index: 2;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rsb-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: inherit;
    background: inherit;
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
    transition: opacity .45s ease;
}

.rsb-btn:hover {
    transform: translateX(12px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.rsb-btn:hover::before {
    opacity: 1;
}

.rsb-ocean {
    background: linear-gradient(135deg, #0061ff, #60efff);
}


/* Vivid Azure */

.rsb-saffron {
    background: linear-gradient(135deg, #ff0f7b, #f89b29);
}


/* Blazing Saffron Sunset */

.rsb-emerald {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}


/* Neon Emerald/Lime */

.rsb-popup {
    position: absolute;
    left: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
    width: 290px;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
}

.rsb-popup::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(10, 14, 26, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rsb-item:hover .rsb-popup,
.rsb-item.rsb-active .rsb-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.rsb-popup-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rsb-pi {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.rsb-head-ocean .rsb-pi {
    background: rgba(0, 97, 255, 0.15);
    color: #0061ff;
}

.rsb-head-saffron .rsb-pi {
    background: rgba(255, 15, 123, 0.15);
    color: #ff0f7b;
}

.rsb-head-emerald .rsb-pi {
    background: rgba(0, 176, 155, 0.15);
    color: #00b09b;
}

.rsb-popup h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.rsb-popup>p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0 0 15px;
}

.rsb-contact {
    background: rgba(30, 41, 59, 0.6);
    border-left: 3px solid rgba(251, 191, 36, 0.5);
    border-radius: 0 10px 10px 0;
    padding: 10px 12px;
    font-size: 0.82rem;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rsb-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.rsb-contact i {
    width: 14px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
    color: #fbbf24;
}

.rsb-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all .3s ease;
    text-decoration: none !important;
    letter-spacing: .3px;
    text-align: center;
}

.rsb-cta-ocean {
    background: linear-gradient(135deg, #0061ff, #60efff);
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.4);
}

.rsb-cta-saffron {
    background: linear-gradient(135deg, #ff0f7b, #f89b29);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 15, 123, 0.4);
}

.rsb-cta-emerald {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
}

.rsb-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


/* Close button for popup */

.rsb-popup-close {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s;
}

.rsb-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
}


/* Support for Mobile Overlay - HIDE ENTIRELY ON MOBILE TO PREVENT OVERLAP */

@media(max-width:991px) {
    #college-sidebar {
        display: none !important;
    }
}

@media(max-width:768px) {
    #college-sidebar {
        display: none !important;
    }
}

@media(max-width:480px) {
    #college-sidebar {
        display: none !important;
    }
}


/* ═══════════════════════════════════════════
   BACK-TO-TOP (Progressive Pie)
   ═══════════════════════════════════════════ */

.college-progress-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 52px;
    width: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all 400ms cubic-bezier(.34, 1.56, .64, 1);
    background: conic-gradient(#fbbf24 0% var(--scroll-percent), #14204a var(--scroll-percent) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.college-progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.college-progress-inner {
    width: 44px;
    height: 44px;
    background: #14204a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.college-progress-wrap i {
    font-size: 18px;
    color: #fff;
}

.college-progress-wrap:hover {
    transform: translateY(-4px) scale(1.05);
}

@media(max-width:767px) {
    .college-progress-wrap {
        right: 20px;
        bottom: 88px;
        /* Stacked above the chatbot FAB (bottom:20px + height:56px + gap:12px) */
        width: 46px;
        height: 46px;
    }
    .college-progress-inner {
        width: 38px;
        height: 38px;
    }
}


/* Page: about-sdg */


/* Custom Styles for SDG */

body.college-page-about-sdg .sdg-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

body.college-page-about-sdg .sdg-card:hover {
    transform: translateY(-5px);
}

body.college-page-about-sdg .sdg-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

body.college-page-about-sdg .function-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

body.college-page-about-sdg .function-list i {
    color: var(--gold-dark);
    margin-top: 4px;
}

body.college-page-about-sdg .committee-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.college-page-about-sdg .committee-table th {
    background: var(--navy) !important;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

body.college-page-about-sdg .cta-sdg {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
}

body.college-page-about-sdg .cta-sdg:hover {
    background: linear-gradient(135deg, #146c43 0%, #198754 100%);
    color: white;
    transform: translateY(-2px);
}


/* Restoring the Green Gradient Button Style */

body.college-page-about-sdg .cta-sdg {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    border: none;
    transition: all 0.3s ease;
}

body.college-page-about-sdg .cta-sdg:hover {
    background: linear-gradient(135deg, #146c43 0%, #198754 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.4);
}


/* Extracted inline declarations */

body.college-page-about-sdg .college-about-sdg-inline-1 {
    z-index: 2;
}

body.college-page-about-sdg .college-about-sdg-inline-2 {
    font-size: 1.05rem;
    line-height: 1.7;
}


/* Page: academiccalender */

body.college-page-academiccalender .calendar-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
}

body.college-page-academiccalender .nav-pills-custom .nav-link {
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    margin-right: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.college-page-academiccalender .nav-pills-custom .nav-link:hover {
    border-color: var(--gold);
    background: #fff;
    color: var(--gold-dark);
}

body.college-page-academiccalender .nav-pills-custom .nav-link.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

body.college-page-academiccalender .form-select-custom {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 500;
    color: #334155;
    background-color: #f8fafc;
    cursor: pointer;
}

body.college-page-academiccalender .form-select-custom:focus {
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

body.college-page-academiccalender .dropdown-wrapper {
    max-width: 400px;
    margin: 0 auto 2rem;
    text-align: center;
}

body.college-page-academiccalender .dropdown-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.college-page-academiccalender .iframe-container {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: none;
    transition: all 0.4s ease;
}

body.college-page-academiccalender .iframe-container.active {
    display: block;
    animation: academiccalender-fadeIn 0.5s ease-out;
}

body.college-page-academiccalender .iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

body.college-page-academiccalender .no-selection-msg {
    text-align: center;
    color: #94a3b8;
    padding: 3rem;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
}

@keyframes academiccalender-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body.college-page-academiccalender .iframe-container iframe {
        height: 400px;
    }
    body.college-page-academiccalender .calendar-card {
        padding: 1.5rem;
    }
}


/* Extracted inline declarations */

body.college-page-academiccalender .college-academiccalender-inline-1 {
    z-index: 2;
}


/* Page: addoncourses */


/* Extracted inline declarations */

body.college-page-addoncourses .college-addoncourses-inline-1 {
    z-index: 2;
}


/* Page: administration */


/* Extracted inline declarations */

body.college-page-administration .college-administration-inline-1 {
    z-index: 2;
}

body.college-page-administration .college-administration-inline-2 {
    max-height: 700px;
    width: auto;
}

body.college-page-administration .college-administration-inline-3 {
    font-size: 1.3rem;
}

body.college-page-administration .college-administration-inline-4 {
    border-width: 2px;
}

body.college-page-administration .college-administration-inline-5 {
    font-size: 1.3rem;
}

body.college-page-administration .college-administration-inline-6 {
    border-width: 2px;
}

body.college-page-administration .college-administration-inline-7 {
    font-size: 1.3rem;
}

body.college-page-administration .college-administration-inline-8 {
    border-width: 2px;
}

body.college-page-administration .college-administration-inline-9 {
    font-size: 1.3rem;
}

body.college-page-administration .college-administration-inline-10 {
    border-width: 2px;
}


/* Page: admissionprocedure */


/* === Hero Badge === */

body.college-page-admissionprocedure .admission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: admissionprocedure-float 3s ease-in-out infinite;
}

body.college-page-admissionprocedure .admission-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: admissionprocedure-pulse 2s infinite;
}


/* === Timeline Section === */

body.college-page-admissionprocedure .timeline-section-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

body.college-page-admissionprocedure .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

body.college-page-admissionprocedure .step-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.college-page-admissionprocedure .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #fcd34d;
}

body.college-page-admissionprocedure .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s;
}

body.college-page-admissionprocedure .step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

body.college-page-admissionprocedure .step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body.college-page-admissionprocedure .step-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1rem;
}


/* === Content Styling with Animations === */


/* Staggered Animation for List Items */

body.college-page-admissionprocedure .tab-pane.active .criteria-item {
    animation: admissionprocedure-slideUpFade 0.5s ease forwards;
    opacity: 0;
}

body.college-page-admissionprocedure .tab-pane.active .criteria-item:nth-child(1) {
    animation-delay: 0.1s;
}

body.college-page-admissionprocedure .tab-pane.active .criteria-item:nth-child(2) {
    animation-delay: 0.2s;
}

body.college-page-admissionprocedure .tab-pane.active .criteria-item:nth-child(3) {
    animation-delay: 0.3s;
}

body.college-page-admissionprocedure .program-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
}

body.college-page-admissionprocedure .program-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    /* Navy Gradient */
    color: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

body.college-page-admissionprocedure .criteria-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Subtle Shadow */
    transition: all 0.3s;
}

body.college-page-admissionprocedure .criteria-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(5px) translateY(-2px);
    background: #fffbeb;
    /* Very light gold tint */
}

body.college-page-admissionprocedure .criteria-icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--gold-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body.college-page-admissionprocedure .quota-box {
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    height: 100%;
}

body.college-page-admissionprocedure .quota-visual {
    display: flex;
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
    margin: 20px 0;
    background: #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

body.college-page-admissionprocedure .quota-a {
    width: 70%;
    background: var(--navy);
}

body.college-page-admissionprocedure .quota-b {
    width: 30%;
    background: var(--gold);
}


/* === Document Checklist Grid === */

body.college-page-admissionprocedure .doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

body.college-page-admissionprocedure .doc-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

body.college-page-admissionprocedure .doc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
    transition: background 0.3s;
}

body.college-page-admissionprocedure .doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

body.college-page-admissionprocedure .doc-card:hover::before {
    background: var(--gold);
}

body.college-page-admissionprocedure .doc-check {
    width: 28px;
    height: 28px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}


/* === Contact Section === */

body.college-page-admissionprocedure .premium-contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 24px;
    padding: 50px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.college-page-admissionprocedure .contact-icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

body.college-page-admissionprocedure .contact-icon-circle:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

@keyframes admissionprocedure-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes admissionprocedure-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

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


/* Extracted inline declarations */

body.college-page-admissionprocedure .college-admissionprocedure-inline-1 {
    z-index: 2;
}


/* Page: admissions-alumni-index */

@keyframes admissions-alumni-index-premium-blink {
    0%,
    100% {
        background: #1e3a5f;
        color: #e5c07b;
        box-shadow: 0 0 5px rgba(229, 192, 123, 0.5);
    }
    50% {
        background: #b45309;
        color: #fff;
        box-shadow: 0 0 15px rgba(180, 83, 9, 0.8);
    }
}

body.college-page-admissions-alumni-index .blink-button {
    animation: admissions-alumni-index-premium-blink 1.5s infinite;
    border: 2px solid #e5c07b;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

body.college-page-admissions-alumni-index .blink-button:hover {
    animation: none;
    background: #e5c07b;
    color: #1e3a5f;
    border-color: #1e3a5f;
    transform: translateY(-2px);
}


/* Lift Bootstrap modal and backdrop above the website header which has z-index: 999999 */

body.college-page-admissions-alumni-index .modal {
    z-index: 1000005 !important;
}

body.college-page-admissions-alumni-index .modal-backdrop {
    z-index: 1000002 !important;
}


/* Extracted inline declarations */

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-1 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-2 {
    margin: 3px 0 0;
    font-size: 0.75rem;
    color: #64748b;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-3 {
    font-size: 0.35rem;
    color: #22c55e;
    vertical-align: middle;
    margin-right: 5px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-4 {
    padding-top: 1.2rem;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-5 {
    color: var(--elite-navy);
    font-weight: 800;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-6 {
    display: none;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-7 {
    display: none;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-8 {
    color: var(--elite-navy);
    font-weight: 800;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-9 {
    font-size: 0.85rem;
    margin-bottom: 20px;
    background: rgba(30, 58, 95, 0.05);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--elite-navy);
    color: #475569;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-10 {
    color: var(--elite-navy);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-11 {
    color: var(--elite-navy);
    text-decoration: none;
    font-weight: 600;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-12 {
    color: var(--elite-navy);
    margin-top: 5px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-13 {
    color: var(--elite-navy);
    text-decoration: none;
    font-weight: 600;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-14 {
    color: var(--elite-navy);
    text-decoration: none;
    font-weight: 600;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-15 {
    color: var(--elite-navy);
    text-decoration: none;
    font-weight: 600;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-16 {
    font-size: 0.75rem;
    cursor: pointer;
    color: var(--elite-navy);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    font-weight: 600;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-17 {
    color: var(--elite-gold-dark);
    font-size: 11px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-18 {
    color: var(--elite-navy);
    font-weight: 800;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-19 {
    display: none;
    margin-top: 10px;
    background: rgba(15, 118, 110, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--elite-teal);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-20 {
    color: var(--elite-teal);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-21 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    background: rgba(30, 58, 95, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px dashed var(--elite-navy);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-22 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--elite-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-23 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 20px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-24 {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 1.4rem;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-25 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-26 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-27 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0A66C2;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-28 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FF0000;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-29 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1877F2;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-30 {
    font-size: 0.85rem;
    background: rgba(142, 14, 0, 0.05);
    border: 1px dashed var(--elite-crimson);
    padding: 12px;
    border-radius: 8px;
    color: var(--elite-crimson);
    margin-bottom: 20px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-31 {
    font-weight: 800;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-32 {
    margin: 5px 0 0;
    padding-left: 24px;
    font-family: 'Inter', sans-serif;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-33 {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #475569;
    text-align: justify;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-34 {
    background: rgba(30, 58, 95, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--elite-navy);
    cursor: pointer;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-35 {
    transform: scale(1.3);
    margin-right: 15px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-36 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--elite-navy);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-37 {
    width: 100%;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-38 {
    border: 2px solid var(--elite-navy);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-39 {
    background: var(--elite-navy);
    border-bottom: 3px double var(--elite-gold);
    color: var(--elite-gold);
    padding: 1.25rem 1.5rem;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-40 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-41 {
    color: var(--elite-gold);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-42 {
    filter: invert(1) grayscale(100%) brightness(200%);
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-43 {
    background: #f8fafc;
    padding: 1.5rem;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-44 {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-45 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--elite-navy);
    margin-bottom: 0.4rem;
    display: block;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-46 {
    color: var(--elite-crimson);
    font-size: 0.8rem;
    margin-left: 2px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-47 {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-48 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--elite-navy);
    margin-bottom: 0.4rem;
    display: block;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-49 {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-50 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--elite-navy);
    margin-bottom: 0.4rem;
    display: block;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-51 {
    color: var(--elite-crimson);
    font-size: 0.8rem;
    margin-left: 2px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-52 {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-53 {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-54 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

body.college-page-admissions-alumni-index .college-admissions-alumni-index-inline-55 {
    background: var(--elite-navy);
    color: var(--elite-gold);
    border: 1px solid var(--elite-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Page: admissions-students */


/* Source: admissions/css/main.css */


/* ============================================================
   COLLEGE Admission Portal — Newspaper Elite Theme
   Clean · Compact · Colorful · Premium
   ============================================================ */


/* ── CSS VARIABLES ── */


/* Auto-dismiss alert styling */

body.college-page-admissions-students .auto-dismiss {
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    z-index: 9999;
}


/* ── BASE ── */

body.college-page-admissions-students,
body.college-page-admissions-students *,
body.college-page-admissions-students::before,
body.college-page-admissions-students *::before,
body.college-page-admissions-students::after,
body.college-page-admissions-students *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ── GLOBAL: Remove number input spinners (up/down arrows) ── */

body.college-page-admissions-students input[type="number"]::-webkit-outer-spin-button,
body.college-page-admissions-students input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

body.college-page-admissions-students input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

body.college-page-admissions-students {
    font-family: 'Poppins', sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: .88rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}


/* ── TYPOGRAPHY ── */

body.college-page-admissions-students h1,
body.college-page-admissions-students h2,
body.college-page-admissions-students h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    font-weight: 700;
}

body.college-page-admissions-students h1 {
    font-size: 1.9rem;
}

body.college-page-admissions-students h2 {
    font-size: 1.45rem;
}

body.college-page-admissions-students h3 {
    font-size: 1.15rem;
}

body.college-page-admissions-students h4,
body.college-page-admissions-students h5,
body.college-page-admissions-students h6,
body.college-page-admissions-students label {
    font-family: 'Poppins', sans-serif;
}

body.college-page-admissions-students small,
body.college-page-admissions-students .small {
    font-size: .78rem;
}


/* ── SCROLLBAR ── */

body.college-page-admissions-students ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body.college-page-admissions-students ::-webkit-scrollbar-track {
    background: #e5e5e5;
}

body.college-page-admissions-students ::-webkit-scrollbar-thumb {
    background: var(--rule);
    border-radius: 4px;
}

body.college-page-admissions-students ::-webkit-scrollbar-thumb:hover {
    background: var(--slate);
}


/* ── PORTAL TOP BAR (post-login) ── */

body.college-page-admissions-students .portal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--grad-header);
    color: #fff;
    padding: .35rem .8rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--red);
}

body.college-page-admissions-students .portal-topbar .brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .02em;
}

body.college-page-admissions-students .portal-topbar .brand img {
    height: 36px;
    width: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: #fff;
    padding: 2px;
}

body.college-page-admissions-students .portal-topbar .brand-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .25);
    margin: 0 .4rem;
}

body.college-page-admissions-students .portal-topbar .section-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .7);
    border-left: 2px solid var(--gold);
    padding-left: .5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

body.college-page-admissions-students .portal-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: .6rem;
}

body.college-page-admissions-students .portal-topbar .user-chip {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: .25rem .75rem;
    font-size: .78rem;
    color: #fff;
    font-weight: 500;
}

body.college-page-admissions-students .portal-topbar .user-chip .user-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, .3);
}

body.college-page-admissions-students .portal-topbar .btn-logout {
    background: var(--grad-red);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: .28rem .8rem;
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

body.college-page-admissions-students .portal-topbar .btn-logout:hover {
    opacity: .85;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}


/* ── MASTHEAD BANNER (newspaper-style section divider) ── */

body.college-page-admissions-students .section-masthead {
    background: var(--ink);
    color: #fff;
    padding: .3rem 1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    border-bottom: 4px double var(--gold);
}

body.college-page-admissions-students .section-masthead h2 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: .04em;
}

body.college-page-admissions-students .section-masthead .edition-tag {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: var(--red);
    color: #fff;
    padding: 1px 7px;
    border-radius: 2px;
    font-weight: 700;
}


/* ── STATS RIBBON (post-login quick stats) ── */

body.college-page-admissions-students .stats-ribbon {
    display: flex;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--paper-dark);
    border-bottom: 1px solid var(--rule);
    overflow-x: auto;
    flex-wrap: nowrap;
}

body.college-page-admissions-students .stat-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: .25rem .7rem;
    white-space: nowrap;
    box-shadow: var(--shadow-xs);
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    transition: var(--ease);
}

body.college-page-admissions-students .stat-chip:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

body.college-page-admissions-students .stat-chip .stat-icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}

body.college-page-admissions-students .stat-chip .stat-val {
    font-size: .95rem;
    font-weight: 700;
}

body.college-page-admissions-students .stat-chip .stat-label {
    color: var(--text-light);
    font-weight: 400;
    font-size: .72rem;
}

body.college-page-admissions-students .stat-chip.red .stat-icon {
    background: #fee2e2;
    color: var(--red);
}

body.college-page-admissions-students .stat-chip.navy .stat-icon {
    background: #dbeafe;
    color: var(--navy);
}

body.college-page-admissions-students .stat-chip.teal .stat-icon {
    background: #d1fae5;
    color: var(--teal);
}

body.college-page-admissions-students .stat-chip.gold .stat-icon {
    background: #fef3c7;
    color: var(--gold);
}

body.college-page-admissions-students .stat-chip.plum .stat-icon {
    background: #ede9fe;
    color: var(--plum);
}


/* ── DASHBOARD HEADER ACTIONS ── */

body.college-page-admissions-students .dashboard-header-actions {
    display: flex;
    justify-content: center;
    padding: 0.3rem 0.6rem;
    margin: 0 auto 0.6rem;
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    width: max-content;
    max-width: 98%;
}

body.college-page-admissions-students .dashboard-header-actions .d-flex {
    justify-content: center !important;
    gap: 0.35rem !important;
}


/* ── REFERENCE ACTION BAR ── */

body.college-page-admissions-students .reference-action-bar {
    background: #f8fafc;
    padding: 0.25rem 0.4rem;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

body.college-page-admissions-students .reference-action-bar .form-control-sm {
    height: 28px !important;
    padding: 2px 8px !important;
    font-size: 0.72rem !important;
    line-height: normal;
    background: #fff;
    border: 1px solid #cbd5e1;
}

body.college-page-admissions-students .reference-action-bar .form-control-sm::placeholder {
    color: #64748b;
    font-weight: 500;
}

body.college-page-admissions-students .reference-action-bar .btn-nw {
    height: 28px !important;
    padding: 0 0.6rem !important;
    font-size: 0.65rem !important;
}

body.college-page-admissions-students .reference-action-bar .form-control-sm:focus {
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.1);
    border-color: #0d9488;
}


/* ── REFERENCE MANAGEMENT MODAL ── */


/* Action Bar */

body.college-page-admissions-students .ref-action-bar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.45rem 0.6rem;
}

body.college-page-admissions-students .ref-bar-sep {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    flex-shrink: 0;
}

body.college-page-admissions-students .btn-xs {
    padding: 0.25rem 0.7rem !important;
    font-size: 0.75rem !important;
    height: 28px;
    line-height: 1 !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

body.college-page-admissions-students .ref-input-name {
    min-width: 0;
    font-size: 0.8rem !important;
    height: 28px !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px;
}

body.college-page-admissions-students .ref-input-id {
    width: 90px !important;
    flex-shrink: 0;
    font-size: 0.8rem !important;
    height: 28px !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px;
}

body.college-page-admissions-students .ref-input-desc {
    min-width: 120px;
    flex-grow: 1;
    font-size: 0.8rem !important;
    height: 28px !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px;
}


/* Native checkbox style */

body.college-page-admissions-students .ref-check-input {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: var(--navy);
    margin: 0;
    flex-shrink: 0;
}


/* ── REFERENCE TABLE (Elite Compact Style) ── */

body.college-page-admissions-students #refTable {
    font-size: 0.83rem;
    border-collapse: collapse !important;
    width: 100%;
}

body.college-page-admissions-students #refTable thead th {
    background: var(--elite-navy) !important;
    color: #ffffff !important;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    vertical-align: middle;
    border: none;
}

body.college-page-admissions-students #refTable tbody td {
    vertical-align: middle;
    border-top: 1px solid #e2e8f0;
}

body.college-page-admissions-students #refTable tbody tr:hover {
    background-color: #f8fafc !important;
}

body.college-page-admissions-students .ref-check-input {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: var(--navy);
    display: block;
    margin: 0 auto;
}


/* Row Action Buttons */

body.college-page-admissions-students .btn-ref-edit,
body.college-page-admissions-students .btn-ref-del {
    font-size: 0.7rem !important;
    font-weight: 700;
    padding: 0.2rem 0.55rem !important;
    border-radius: 4px;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    margin: 0 1px;
}

body.college-page-admissions-students .btn-ref-edit {
    background: #1e3a5f;
    color: #f5c518;
}

body.college-page-admissions-students .btn-ref-edit:hover {
    background: #2d5491;
    color: #fff;
}

body.college-page-admissions-students .btn-ref-del {
    background: #fee2e2;
    color: #b91c1c;
}

body.college-page-admissions-students .btn-ref-del:hover {
    background: #b91c1c;
    color: #fff;
}


/* Delete Selected Button */

body.college-page-admissions-students #deleteSelectedRefBtn {
    background: #e2e8f0;
    color: #94a3b8;
    border: 1px solid #cbd5e1;
    font-size: 0.75rem !important;
    font-weight: 700;
    height: 28px;
    padding: 0 0.8rem !important;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: not-allowed;
    transition: all 0.25s ease;
    white-space: nowrap;
}

body.college-page-admissions-students #deleteSelectedRefBtn:not(:disabled) {
    background: #b91c1c;
    color: #fff;
    border-color: #b91c1c;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.25);
}

body.college-page-admissions-students #deleteSelectedRefBtn:not(:disabled):hover {
    background: #991b1b;
    border-color: #991b1b;
}

@media (max-width: 768px) {
    body.college-page-admissions-students .dashboard-header-actions {
        padding: 0.7rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    body.college-page-admissions-students .dashboard-header-actions .d-flex {
        justify-content: center !important;
        gap: 0.4rem !important;
    }
}


/* ── ACTION TOOLBAR ── */

body.college-page-admissions-students .action-toolbar {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 0.3rem 0.8rem;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    flex-wrap: nowrap;
    position: relative;
    z-index: 25;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

body.college-page-admissions-students .action-toolbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

body.college-page-admissions-students .action-toolbar .toolbar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-right: auto;
    border-left: 3px solid var(--red);
    padding-left: .5rem;
}

body.college-page-admissions-students .action-toolbar .search-box {
    position: relative;
    display: flex;
    align-items: center;
}

body.college-page-admissions-students .action-toolbar .search-box input {
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: .28rem .8rem .28rem 2rem;
    font-size: .8rem;
    width: 180px;
    transition: var(--ease);
    background: var(--paper);
    font-family: 'Poppins', sans-serif;
}

body.college-page-admissions-students .action-toolbar .search-box input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 2px rgba(30, 58, 95, .12);
    width: 220px;
}

body.college-page-admissions-students .action-toolbar .search-box .search-ico {
    position: absolute;
    left: .6rem;
    color: var(--text-light);
    font-size: .8rem;
    pointer-events: none;
}

body.college-page-admissions-students .action-toolbar .entries-select {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: var(--text-light);
}

body.college-page-admissions-students .action-toolbar .entries-select select {
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: .22rem .5rem;
    font-size: .78rem;
    background: var(--paper);
    cursor: pointer;
}


/* ── BUTTONS ── */

body.college-page-admissions-students .btn-nw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: 0 0.8rem;
    border-radius: 20px;
    border: 1px solid transparent;
    font-size: .68rem;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 28px;
    line-height: 1;
}

body.college-page-admissions-students .btn-nw i {
    font-size: .85rem;
}

body.college-page-admissions-students .btn-nw:hover {
    opacity: 1;
    transform: translateY(-2.5px);
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.15);
}

body.college-page-admissions-students .btn-nw:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.college-page-admissions-students .btn-nw.red {
    background: var(--grad-red);
    color: #fff;
    border-color: #7f1d1d;
}

body.college-page-admissions-students .btn-nw.navy {
    background: var(--grad-navy);
    color: #fff;
    border-color: #0f1f35;
}

body.college-page-admissions-students .btn-nw.teal {
    background: var(--grad-teal);
    color: #fff;
    border-color: #064e3b;
}

body.college-page-admissions-students .btn-nw.gold {
    background: var(--grad-gold);
    color: #fff;
    border-color: #78350f;
}

body.college-page-admissions-students .btn-nw.plum {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    border-color: #4c1d95;
}

body.college-page-admissions-students .btn-nw.slate {
    background: linear-gradient(135deg, #475569, #334155);
    color: #fff;
    border-color: #1e293b;
}

body.college-page-admissions-students .btn-nw.ocean {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff;
    border-color: #0c4a6e;
}

body.college-page-admissions-students .btn-nw.emerald {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border-color: #064e3b;
}

body.college-page-admissions-students .btn-nw.ghost {
    background: #f8fafc;
    color: var(--ink);
    border-color: #e2e8f0;
}

body.college-page-admissions-students .btn-nw.ghost:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}


/* Legacy Bootstrap btn polyfills to pick up newspaper theme */

body.college-page-admissions-students .btn-elite:not(.btn-outline-primary):not(.btn-outline-warning):not(.btn-outline-danger),
body.college-page-admissions-students .btn-primary.btn-elite {
    background: var(--grad-navy) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-size: .78rem !important;
    font-weight: 600 !important;
    padding: .25rem .6rem !important;
    transition: var(--ease) !important;
}

body.college-page-admissions-students .btn-success.btn-elite {
    background: var(--grad-teal) !important;
}

body.college-page-admissions-students .btn-danger.btn-elite {
    background: var(--grad-red) !important;
}

body.college-page-admissions-students .btn-warning.btn-elite {
    background: var(--grad-gold) !important;
}

body.college-page-admissions-students .btn-elite:hover {
    opacity: .85;
    transform: translateY(-1px);
    color: #fff !important;
}


/* Fix for outline buttons in dashboards */

body.college-page-admissions-students .btn-outline-primary.btn-elite,
body.college-page-admissions-students .btn-outline-warning.btn-elite,
body.college-page-admissions-students .btn-outline-danger.btn-elite {
    background: transparent !important;
    border-width: 1.5px !important;
}

body.college-page-admissions-students .btn-outline-primary.btn-elite {
    color: var(--navy) !important;
    border-color: var(--navy) !important;
}

body.college-page-admissions-students .btn-outline-warning.btn-elite {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}

body.college-page-admissions-students .btn-outline-danger.btn-elite {
    color: var(--red) !important;
    border-color: var(--red) !important;
}

body.college-page-admissions-students .btn-outline-primary.btn-elite:hover {
    background: var(--navy) !important;
    color: #fff !important;
}

body.college-page-admissions-students .btn-outline-warning.btn-elite:hover {
    background: var(--gold) !important;
    color: #fff !important;
}

body.college-page-admissions-students .btn-outline-danger.btn-elite:hover {
    background: var(--red) !important;
    color: #fff !important;
}


/* ── CARDS (elite newspaper) ── */

body.college-page-admissions-students .elite-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}

body.college-page-admissions-students .elite-card>.card-header-nw {
    background: var(--ink);
    color: #fff;
    padding: .4rem .75rem;
    border-radius: var(--radius) var(--radius) 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .4rem;
}

body.college-page-admissions-students .elite-card>.card-header-nw .hdr-badge {
    background: var(--red);
    color: #fff;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
}

body.college-page-admissions-students .elite-card:hover {
    box-shadow: var(--shadow-md);
}


/* ── TABLES (compact, newspaper columns) ── */

body.college-page-admissions-students .table-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
    -webkit-overflow-scrolling: touch;
}

body.college-page-admissions-students .table,
body.college-page-admissions-students .watchman-table {
    width: 100%;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .8rem;
    background: #fff;
}


/* Header */

body.college-page-admissions-students .table thead th,
body.college-page-admissions-students .watchman-table th {
    background: var(--ink) !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .45rem .65rem !important;
    border: none !important;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
    cursor: pointer;
    user-select: none;
    border-right: 1px solid rgba(255, 255, 255, .08) !important;
}

body.college-page-admissions-students .table thead th:hover,
body.college-page-admissions-students .watchman-table th:hover {
    background: #333 !important;
}


/* Cells */

body.college-page-admissions-students .table td,
body.college-page-admissions-students .watchman-table td {
    padding: .38rem .65rem !important;
    border-bottom: 1px solid #f0ebe0 !important;
    color: var(--ink-light);
    vertical-align: middle;
    border-right: 1px solid #f5f0e8 !important;
}


/* Alternating rows — subtle cream/white */

body.college-page-admissions-students .table tbody tr:nth-child(even) td,
body.college-page-admissions-students .watchman-table tbody tr:nth-child(even) td {
    background: #fdf8f0;
}

body.college-page-admissions-students .table tbody tr:nth-child(odd) td,
body.college-page-admissions-students .watchman-table tbody tr:nth-child(odd) td {
    background: #fff;
}


/* Hover — ink tint */

body.college-page-admissions-students .table tbody tr:hover td,
body.college-page-admissions-students .watchman-table tbody tr:hover td {
    background: #fef9de !important;
    transition: var(--ease);
}

@media (min-width: 992px) {
    /* Frozen columns */
    body.college-page-admissions-students #studentDataTable th:nth-child(1),
    body.college-page-admissions-students #studentDataTable td:nth-child(1) {
        position: sticky;
        left: 0;
        z-index: 5;
    }
    body.college-page-admissions-students #studentDataTable th:nth-child(2),
    body.college-page-admissions-students #studentDataTable td:nth-child(2) {
        position: sticky;
        left: 50px;
        z-index: 4;
    }
    body.college-page-admissions-students #studentDataTable th:nth-child(3),
    body.college-page-admissions-students #studentDataTable td:nth-child(3) {
        position: sticky;
        left: 140px;
        z-index: 3;
    }
    body.college-page-admissions-students #studentDataTable th:nth-child(4),
    body.college-page-admissions-students #studentDataTable td:nth-child(4) {
        position: sticky;
        left: 280px;
        z-index: 2;
    }
    body.college-page-admissions-students #studentDataTable thead th:nth-child(1),
    body.college-page-admissions-students #studentDataTable thead th:nth-child(2),
    body.college-page-admissions-students #studentDataTable thead th:nth-child(3),
    body.college-page-admissions-students #studentDataTable thead th:nth-child(4) {
        z-index: 20;
    }
    body.college-page-admissions-students #studentDataTable tbody tr:nth-child(even) td:nth-child(-n+4) {
        background: #fdf8f0 !important;
    }
    body.college-page-admissions-students #studentDataTable tbody tr:nth-child(odd) td:nth-child(-n+4) {
        background: #fff !important;
    }
    body.college-page-admissions-students #studentDataTable tbody tr:hover td:nth-child(-n+4) {
        background: #fef9de !important;
    }
}


/* Sort arrows */

body.college-page-admissions-students .sort-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
}

body.college-page-admissions-students .sort-arrow.asc {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid #fff;
}

body.college-page-admissions-students .sort-arrow.desc {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
}

body.college-page-admissions-students .sort-arrow.inactive {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid rgba(255, 255, 255, .35);
}


/* ── PAGINATION ── */

body.college-page-admissions-students .pagination {
    gap: .25rem;
}

body.college-page-admissions-students .page-link {
    border: 1px solid var(--rule) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--navy) !important;
    padding: .22rem .6rem !important;
    font-size: .75rem !important;
    font-family: 'Poppins', sans-serif;
    transition: var(--ease);
    background: var(--paper) !important;
}

body.college-page-admissions-students .page-item.active .page-link {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
    color: #fff !important;
}

body.college-page-admissions-students .page-link:hover {
    background: var(--paper-dark) !important;
    color: var(--ink) !important;
}


/* ── FORMS (compact editorial style) ── */

body.college-page-admissions-students .form-compact .form-control,
body.college-page-admissions-students .form-compact .form-select,
body.college-page-admissions-students .form-compact input[type=text],
body.college-page-admissions-students .form-compact input[type=number],
body.college-page-admissions-students .form-compact input[type=email],
body.college-page-admissions-students .form-compact select,
body.college-page-admissions-students .input-group input,
body.college-page-admissions-students .input-group select {
    border: 1px solid var(--rule) !important;
    border-radius: var(--radius-sm) !important;
    padding: .3rem .65rem !important;
    font-size: .82rem !important;
    font-family: 'Poppins', sans-serif;
    background: var(--paper) !important;
    color: var(--ink);
    transition: var(--ease);
}

body.college-page-admissions-students .form-compact .form-control:focus,
body.college-page-admissions-students .form-compact input:focus,
body.college-page-admissions-students .form-compact select:focus,
body.college-page-admissions-students .input-group input:focus,
body.college-page-admissions-students .input-group select:focus {
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 2px rgba(30, 58, 95, .12) !important;
    outline: none;
    background: #fff !important;
}

body.college-page-admissions-students .form-compact label,
body.college-page-admissions-students .input-group label {
    font-size: .75rem !important;
    font-weight: 600 !important;
    color: var(--ink-light) !important;
    margin-bottom: .15rem !important;
    text-transform: uppercase;
    letter-spacing: .04em;
}

body.college-page-admissions-students .form-compact label span,
body.college-page-admissions-students .input-group label span {
    color: var(--red);
}


/* ── ALERTS ── */

body.college-page-admissions-students .alert {
    border-radius: var(--radius-sm);
    font-size: .82rem;
    border-left: 4px solid transparent;
    padding: .5rem .8rem;
}

body.college-page-admissions-students .alert-success {
    border-color: var(--teal);
    background: #ecfdf5;
    color: #065f46;
}

body.college-page-admissions-students .alert-danger {
    border-color: var(--red);
    background: #fef2f2;
    color: #7f1d1d;
}

body.college-page-admissions-students .alert-warning {
    border-color: var(--gold);
    background: #fffbeb;
    color: #78350f;
}

body.college-page-admissions-students .alert-info {
    border-color: var(--navy);
    background: #eff6ff;
    color: #1e3a5f;
}


/* ── BADGES / CHIPS ── */

body.college-page-admissions-students .badge,
body.college-page-admissions-students .tag-pill {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: 1px 7px;
    border-radius: 2px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

body.college-page-admissions-students .badge-red {
    background: #fee2e2;
    color: var(--red);
}

body.college-page-admissions-students .badge-navy {
    background: #dbeafe;
    color: var(--navy);
}

body.college-page-admissions-students .badge-teal {
    background: #d1fae5;
    color: var(--teal);
}

body.college-page-admissions-students .badge-gold {
    background: #fef3c7;
    color: var(--gold);
}

body.college-page-admissions-students .badge-plum {
    background: #ede9fe;
    color: var(--plum);
}

body.college-page-admissions-students .badge-dark {
    background: var(--ink);
    color: #fff;
}


/* ── STATUS BADGE (used in table) ── */

body.college-page-admissions-students .status-badge {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 2px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

body.college-page-admissions-students .status-admitted {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

body.college-page-admissions-students .status-interested {
    background: #fef3c7;
    color: #78350f;
    border: 1px solid #fcd34d;
}

body.college-page-admissions-students .status-enrolled {
    background: #dbeafe;
    color: #1e3a5f;
    border: 1px solid #93c5fd;
}

body.college-page-admissions-students .status-rejected {
    background: #fee2e2;
    color: #7f1d1d;
    border: 1px solid #fca5a5;
}


/* ── MODAL ── */

body.college-page-admissions-students .modal-content {
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-family: 'Poppins', sans-serif;
}

body.college-page-admissions-students .modal-header {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: .65rem 1rem;
    border: none;
}

body.college-page-admissions-students .modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
}

body.college-page-admissions-students .modal-header .close,
body.college-page-admissions-students .modal-header .btn-close {
    filter: invert(1);
    opacity: .8;
}

body.college-page-admissions-students .modal-body {
    padding: .8rem 1rem;
    background: var(--paper);
}

body.college-page-admissions-students .modal-footer {
    background: var(--paper-dark);
    border-top: 1px solid var(--rule);
    padding: .5rem .8rem;
}


/* ── DIVIDER — inline rule like newspaper column rule ── */

body.college-page-admissions-students .col-rule {
    border-right: 1px solid var(--rule);
}

body.college-page-admissions-students .section-rule {
    border: none;
    border-top: 2px solid var(--ink);
    margin: .5rem 0;
    position: relative;
}

body.college-page-admissions-students .section-rule.double {
    border-top: 3px double var(--ink);
}


/* ── STUDENT PHOTO ── */

body.college-page-admissions-students .student-photo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--rule);
}

body.college-page-admissions-students .student-photo-img:hover {
    opacity: .85;
    cursor: zoom-in;
}


/* ── WATCHMAN CARD ── */

body.college-page-admissions-students .watchman-card,
body.college-page-admissions-students .user-management-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: .8rem 1rem;
    margin-bottom: .8rem;
}

body.college-page-admissions-students .watchman-card h3 {
    font-size: 1rem;
    margin-bottom: .6rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--ink);
    color: var(--ink);
}


/* ── SUGGESTION BOX ── */

body.college-page-admissions-students .suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--rule);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    max-height: 180px;
    overflow-y: auto;
    display: none;
}

body.college-page-admissions-students .suggestion-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.college-page-admissions-students .suggestion-box li {
    padding: .35rem .7rem;
    font-size: .8rem;
    cursor: pointer;
    border-bottom: 1px solid #f5f0e8;
    transition: var(--ease);
}

body.college-page-admissions-students .suggestion-box li:hover,
body.college-page-admissions-students .suggestion-box li.highlighted {
    background: #fef9de;
    color: var(--ink);
}


/* ── INPUT GROUPS / TOGGLE SWITCHES ── */

body.college-page-admissions-students .switch-slide {
    display: inline-block;
    width: 68px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin: 2px 0;
}

body.college-page-admissions-students .switch-slide .switch-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body.college-page-admissions-students .switch-slide .switch-label:after,
body.college-page-admissions-students .switch-slide .switch-label:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 30px;
    font-size: 10px;
    font-weight: bold;
    transition: var(--ease);
}

body.college-page-admissions-students .switch-slide .switch-label:after {
    content: attr(data-on);
    background: var(--teal);
    color: #fff;
    left: -100%;
}

body.college-page-admissions-students .switch-slide .switch-label:before {
    content: attr(data-off);
    background: var(--red);
    color: #fff;
}

body.college-page-admissions-students .switch-slide .switch-input:checked~.switch-label:before {
    left: 100%;
}

body.college-page-admissions-students .switch-slide .switch-input:checked~.switch-label:after {
    left: 0;
}

body.college-page-admissions-students .switch-slide .switch-input,
body.college-page-admissions-students .switch-slide .switch-handle {
    display: none;
}


/* ── FOOTER (compact) ── */

body.college-page-admissions-students .footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .75);
    padding: 1.5rem 0 0;
    border-top: 3px solid var(--red);
    font-size: .78rem;
}

body.college-page-admissions-students .footer .footer-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .6rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

body.college-page-admissions-students .footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.college-page-admissions-students .footer .footer-links li {
    margin-bottom: .35rem;
}

body.college-page-admissions-students .footer .footer-links a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--ease);
}

body.college-page-admissions-students .footer .footer-links a:hover {
    color: #fff;
    padding-left: 3px;
}

body.college-page-admissions-students .footer .footer-links i {
    color: var(--red);
    font-size: .7rem;
}

body.college-page-admissions-students .social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .78rem;
    transition: var(--ease);
}

body.college-page-admissions-students .social-link:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    color: #fff;
}

body.college-page-admissions-students .footer-bottom {
    background: rgba(0, 0, 0, .3);
    text-align: center;
    padding: .5rem;
    margin-top: 1rem;
    font-size: .74rem;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .06);
}


/* ── ANIMATIONS (minimal) ── */

@keyframes admissions-students-fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.college-page-admissions-students .animate-in {
    animation: admissions-students-fadeUp .25s ease forwards;
}


/* ── UTILITY ── */

body.college-page-admissions-students .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body.college-page-admissions-students .txt-red {
    color: var(--red);
}

body.college-page-admissions-students .txt-navy {
    color: var(--navy);
}

body.college-page-admissions-students .txt-teal {
    color: var(--teal);
}

body.college-page-admissions-students .txt-gold {
    color: var(--gold);
}

body.college-page-admissions-students .txt-muted {
    color: var(--text-light);
}

body.college-page-admissions-students .border-rule {
    border: 1px solid var(--rule);
}


/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    body.college-page-admissions-students .portal-topbar {
        padding: .35rem .7rem;
    }
    body.college-page-admissions-students .portal-topbar .brand {
        font-size: .9rem;
    }
    body.college-page-admissions-students .section-masthead {
        display: none;
    }
    body.college-page-admissions-students .stats-ribbon {
        flex-wrap: wrap;
    }
    body.college-page-admissions-students .action-toolbar {
        gap: .3rem;
    }
    body.college-page-admissions-students .action-toolbar .search-box input {
        width: 140px;
    }
    body.college-page-admissions-students .table th,
    body.college-page-admissions-students .watchman-table th {
        font-size: .62rem;
        padding: .35rem .45rem !important;
    }
    body.college-page-admissions-students .table td,
    body.college-page-admissions-students .watchman-table td {
        padding: .3rem .45rem !important;
        font-size: .75rem;
    }
    /* disable frozen cols on mobile except first */
    body.college-page-admissions-students #studentDataTable th:nth-child(3),
    body.college-page-admissions-students #studentDataTable td:nth-child(3),
    body.college-page-admissions-students #studentDataTable th:nth-child(4),
    body.college-page-admissions-students #studentDataTable td:nth-child(4) {
        position: static !important;
        left: auto !important;
        z-index: 1 !important;
    }
    body.college-page-admissions-students .footer .footer-col {
        text-align: center;
    }
    body.college-page-admissions-students .footer .footer-links a {
        justify-content: center;
    }
}


/* ── PAYMENT MINI CARD ── */

body.college-page-admissions-students .payment-mini-card {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    cursor: default;
}

body.college-page-admissions-students .payment-mini-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2) !important;
    border-color: var(--gold) !important;
}

body.college-page-admissions-students .payment-mini-card .btn {
    transition: all 0.2s ease;
}

body.college-page-admissions-students .payment-mini-card .btn:hover {
    background: var(--navy) !important;
    color: var(--gold) !important;
    transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════════
   ADMISSION PORTAL HEADER — Elite Newspaper Theme
   ══════════════════════════════════════════════════════ */


/* ── Admission Header ── */

body.college-page-admissions-students .adm-header {
    background: #0F172A;
    position: relative;
    padding: 0;
    border-bottom: 4px solid #E5C07B;
}

body.college-page-admissions-students .adm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

body.college-page-admissions-students .adm-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

body.college-page-admissions-students .adm-logo-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid #E5C07B;
    background: #fff;
    padding: 2px;
    transition: transform 0.2s;
    text-decoration: none;
}

body.college-page-admissions-students .adm-logo-wrap:hover {
    transform: scale(1.05);
}

body.college-page-admissions-students .adm-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.college-page-admissions-students .adm-college-info {
    display: flex;
    flex-direction: column;
}

body.college-page-admissions-students .adm-college-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #E5C07B;
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: 0.05em;
    text-decoration: none;
}

body.college-page-admissions-students .adm-college-name:hover {
    color: #fff;
    text-decoration: none;
}

body.college-page-admissions-students .adm-college-subtitle {
    font-size: 0.55rem;
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

body.college-page-admissions-students .adm-badges {
    display: none;
    /* Hide badges in compact header to save space like edit page */
}

body.college-page-admissions-students .adm-badge {
    display: none;
}

body.college-page-admissions-students .adm-header-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

body.college-page-admissions-students .adm-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #E5C07B;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.college-page-admissions-students .adm-contact-item:hover {
    color: #fff;
    text-decoration: none;
}

body.college-page-admissions-students .adm-contact-item i {
    color: #E5C07B;
    font-size: 0.8rem;
}

body.college-page-admissions-students .adm-portal-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--elite-gold);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #E5C07B;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

body.college-page-admissions-students .adm-portal-tag:hover {
    background: var(--elite-gold);
    color: var(--elite-navy);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(229, 192, 123, 0.3);
}

body.college-page-admissions-students .adm-portal-form-btn:hover {
    background: #fff !important;
    color: var(--elite-navy) !important;
}


/* ── Responsive Admission Header ── */

@media (max-width: 991px) {
    body.college-page-admissions-students .adm-header-inner {
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
    }
    body.college-page-admissions-students .adm-college-subtitle {
        display: none;
    }
    body.college-page-admissions-students .adm-college-name {
        font-size: 1rem;
    }
    body.college-page-admissions-students .adm-logo-wrap {
        height: 32px;
        width: 32px;
    }
    body.college-page-admissions-students .adm-header-right {
        gap: 0.8rem;
    }
    body.college-page-admissions-students .adm-contact-item {
        font-size: 0.65rem;
    }
    body.college-page-admissions-students .adm-portal-tag {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}


/* Maroon accent stripe below header (re-colored to gold/navy) */

body.college-page-admissions-students .adm-header-stripe {
    height: 3px;
    background: #E5C07B;
}


/* ── Admission Portal Footer ── */

body.college-page-admissions-students .adm-footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    border-top: 4px solid #E5C07B;
}

body.college-page-admissions-students .adm-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

body.college-page-admissions-students .adm-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.college-page-admissions-students .adm-footer-brand img {
    width: 38px;
    height: 38px;
    border: 1px solid #E5C07B;
    background: white;
    padding: 2px;
}

body.college-page-admissions-students .adm-footer-brand-name {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #E5C07B;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.college-page-admissions-students .adm-footer-brand-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

body.college-page-admissions-students .adm-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    font-size: 0.85rem;
}

body.college-page-admissions-students .adm-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
}

body.college-page-admissions-students .adm-footer-links a:hover {
    color: #E5C07B;
    text-decoration: none;
}

body.college-page-admissions-students .adm-footer-links a i {
    font-size: 0.8rem;
    color: #E5C07B;
}

body.college-page-admissions-students .adm-footer-socials {
    display: flex;
    gap: 14px;
}

body.college-page-admissions-students .adm-footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.25s ease;
}

body.college-page-admissions-students .adm-footer-socials a:hover {
    color: #E5C07B;
    transform: translateY(-2px);
}

body.college-page-admissions-students .adm-footer-bottom {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    margin-top: 1.5rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 991px) {
    body.college-page-admissions-students .adm-footer-inner {
        padding: 0 1rem;
    }
}

body.college-page-admissions-students {
    background-color: var(--newspaper-bg);
    font-family: var(--sans-font);
    color: var(--elite-navy);
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
}


/* ═══ PORTAL LAYOUT ═══ */

body.college-page-admissions-students .portal-layout {
    display: flex;
    min-height: auto;
    /* Adjusted for compact header */
}

body.college-page-admissions-students .portal-main {
    flex: 1;
    overflow-x: hidden;
    padding: 0.5rem 1rem;
    background: var(--newspaper-bg);
}

body.college-page-admissions-students .dashboard-container {
    padding: 0.5rem 1rem;
    max-width: 1600px;
    margin: 0 auto;
}


/* ═══ SIDEBAR NAVIGATION ═══ */

body.college-page-admissions-students .sidebar-elite {
    width: 280px;
    background: #fff;
    border-right: 2px solid var(--elite-navy);
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    flex-shrink: 0;
}

body.college-page-admissions-students .sidebar-header {
    padding: 0 2rem 1.5rem;
    border-bottom: 3px double var(--elite-navy);
    margin-bottom: 2rem;
    font-family: var(--serif-font);
    color: var(--elite-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

body.college-page-admissions-students .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.college-page-admissions-students .menu-label {
    padding: 1.5rem 2rem 0.5rem;
    font-size: 0.65rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
}

body.college-page-admissions-students .sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.9rem 2rem;
    color: var(--elite-navy);
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 5px solid transparent;
    transition: var(--transition-smooth);
}

body.college-page-admissions-students .sidebar-menu li a:hover,
body.college-page-admissions-students .sidebar-menu li.active a {
    background: rgba(229, 192, 123, 0.08);
    color: var(--elite-gold);
    border-left-color: var(--elite-gold);
}

body.college-page-admissions-students .sidebar-menu li a i {
    width: 24px;
    font-size: 1.2rem;
    text-align: center;
}

body.college-page-admissions-students .logout-link {
    color: var(--elite-crimson) !important;
}


/* ═══ PREMIUM HORIZONTAL TABS ═══ */

body.college-page-admissions-students .elite-tabs-container {
    background: #fff;
    padding: 0.5rem 1rem 0;
    border-bottom: 3px double var(--elite-navy);
    margin-bottom: 2rem;
    position: sticky;
    top: 64px;
    /* Height of compact header */
    z-index: 99;
}

body.college-page-admissions-students .nav-elite-tabs {
    border-bottom: none !important;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

body.college-page-admissions-students .nav-elite-tabs::-webkit-scrollbar {
    display: none;
}


/* Hide scrollbar Chrome/Safari */

body.college-page-admissions-students .nav-elite-tabs .nav-link {
    font-family: var(--serif-font);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--elite-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.8rem 1.2rem;
    border: none !important;
    border-bottom: 4px solid transparent !important;
    transition: var(--transition-smooth);
    background: transparent;
    white-space: nowrap;
}

body.college-page-admissions-students .nav-elite-tabs .nav-link:hover {
    color: var(--elite-gold-dark);
}

body.college-page-admissions-students .nav-elite-tabs .nav-link.active {
    color: var(--elite-gold-dark) !important;
    background: transparent !important;
    border-bottom-color: var(--elite-gold-dark) !important;
}


/* Tab Content Spacing */

body.college-page-admissions-students .tab-content-elite {
    padding: 1rem 0.5rem;
}

body.college-page-admissions-students .sidebar-footer {
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid #eee;
}

body.college-page-admissions-students .user-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px;
    border: 1px solid #e2e8f0;
}

body.college-page-admissions-students .status-dot {
    width: 10px;
    height: 10px;
    background: var(--elite-teal);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

body.college-page-admissions-students .user-role-text {
    line-height: 1.2;
}

body.college-page-admissions-students .role-name {
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--elite-navy);
}

body.college-page-admissions-students .role-status {
    font-size: 0.65rem;
    color: var(--slate);
}


/* ═══ COMPACT ELITE HEADER ═══ */

body.college-page-admissions-students .elite-header-compact {
    background: var(--elite-navy);
    padding: 0.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--elite-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

body.college-page-admissions-students .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

body.college-page-admissions-students .header-logo {
    height: 42px;
    width: 42px;
    border: 1px solid var(--elite-gold);
    background: #fff;
    padding: 2px;
    object-fit: contain;
}

body.college-page-admissions-students .header-titles h1 {
    font-size: 1.15rem;
    color: var(--elite-gold);
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 800;
    line-height: 1;
}

body.college-page-admissions-students .header-tagline {
    font-size: 0.55rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

body.college-page-admissions-students .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

body.college-page-admissions-students .header-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--elite-gold);
    color: var(--elite-gold);
    padding: 5px 10px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    border-radius: 4px;
}

@media (max-width: 991px) {
    body.college-page-admissions-students .elite-header-compact {
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
    }
    body.college-page-admissions-students .header-tagline {
        display: none;
        /* Hide tagline on mobile to save space */
    }
    body.college-page-admissions-students .header-titles h1 {
        font-size: 1rem;
    }
    body.college-page-admissions-students .header-logo {
        height: 32px;
        width: 32px;
    }
    body.college-page-admissions-students .header-mobile-toggle {
        display: block;
        transition: all 0.2s ease;
        padding: 4px 8px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    body.college-page-admissions-students .header-mobile-toggle:active {
        transform: scale(0.9);
    }
    body.college-page-admissions-students .header-right {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--elite-navy);
        padding: 1.5rem 1rem;
        gap: 15px;
        border-bottom: 4px solid var(--elite-gold);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        align-items: stretch !important;
        z-index: 2000;
        animation: admissions-students-headerSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes admissions-students-headerSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    body.college-page-admissions-students .header-right.show {
        display: flex !important;
    }
    body.college-page-admissions-students .user-info-chip {
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(229, 192, 123, 0.2);
        padding-bottom: 15px;
        margin-bottom: 0;
        align-items: center !important;
        text-align: center;
    }
    body.college-page-admissions-students .user-name {
        font-size: 1rem;
        justify-content: center;
        color: #fff;
    }
    body.college-page-admissions-students .user-role {
        font-size: 0.75rem;
    }
    body.college-page-admissions-students .header-logout-btn {
        text-align: center;
        width: 100%;
        padding: 12px !important;
        font-size: 0.85rem !important;
        border-radius: 4px;
        margin-right: 0 !important;
    }
    body.college-page-admissions-students .academic-year-selector {
        width: 100%;
        margin: 0 0 10px 0 !important;
        display: flex;
        justify-content: center;
    }
    body.college-page-admissions-students .academic-year-selector span,
    body.college-page-admissions-students .academic-year-selector select {
        width: 100% !important;
        text-align: center;
    }
    body.college-page-admissions-students .header-center.student-context {
        display: none !important;
    }
}

body.college-page-admissions-students .header-center.student-context {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 40px;
    padding: 5px 15px;
    border-left: 1px solid rgba(229, 192, 123, 0.2);
    border-right: 1px solid rgba(229, 192, 123, 0.2);
}

body.college-page-admissions-students .editing-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    color: var(--elite-gold);
    letter-spacing: 0.2em;
    font-weight: 800;
}

body.college-page-admissions-students .student-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.college-page-admissions-students .student-meta .s-name {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
}

body.college-page-admissions-students .student-meta .s-id {
    background: var(--elite-gold);
    color: var(--elite-navy);
    font-size: 0.7rem;
    padding: 2px 8px;
    font-weight: 800;
}

body.college-page-admissions-students .user-info-chip {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
    border-right: 1px solid rgba(229, 192, 123, 0.3);
}

body.college-page-admissions-students .user-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.college-page-admissions-students .user-role {
    color: var(--elite-gold);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

body.college-page-admissions-students .header-logout-btn {
    background: var(--elite-crimson);
    color: #fff !important;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

body.college-page-admissions-students .header-logout-btn:hover {
    background: #fff;
    color: var(--elite-crimson) !important;
    border-color: var(--elite-crimson);
    transform: translateY(-2px);
}

body.college-page-admissions-students .newspaper-masthead {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-bottom: 5px double var(--elite-navy);
    margin-bottom: 1.5rem;
}

body.college-page-admissions-students .masthead-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

body.college-page-admissions-students .masthead-logo img {
    height: 70px;
    filter: sepia(0.5) contrast(1.2);
    border: 1px solid var(--elite-navy);
}

body.college-page-admissions-students .masthead-logo h1 {
    font-family: var(--serif-font);
    color: var(--elite-navy);
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
}

body.college-page-admissions-students .masthead-info {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--elite-navy);
    border-top: 1px solid var(--elite-navy);
    border-bottom: 1px solid var(--elite-navy);
    padding: 4px 0;
    display: inline-block;
    width: 100%;
}


/* ═══ PREMIUM NAVIGATION ═══ */

body.college-page-admissions-students .nav-elite {
    background: var(--elite-navy);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.college-page-admissions-students .nav-elite a {
    color: var(--elite-gold);
    font-family: var(--serif-font);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}


/* ═══ PREMIUM CARDS ═══ */

body.college-page-admissions-students .elite-card {
    background: #fff;
    border: 1px solid var(--elite-navy);
    box-shadow: 6px 6px 0px rgba(15, 23, 42, 0.1);
    padding: 1.5rem;
    margin: 1.5rem 2rem;
}


/* ═══ DATA TABLES ═══ */

body.college-page-admissions-students .table-newspaper {
    width: 100%;
    background: #fff;
    border: 1px solid var(--elite-navy);
}

body.college-page-admissions-students .table-newspaper thead th {
    background: var(--elite-navy) !important;
    color: var(--elite-gold) !important;
    font-family: var(--serif-font);
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
}

body.college-page-admissions-students .table-newspaper tbody td {
    border: 1px solid #eee;
    font-size: 0.85rem;
    padding: 10px;
    font-weight: 500;
    color: var(--elite-navy);
    vertical-align: middle !important;
}

body.college-page-admissions-students .table-wrapper {
    max-height: 75vh;
    overflow: auto;
    border: 2px solid var(--elite-navy);
    background: #fff;
}

body.college-page-admissions-students .uid-chip {
    background: var(--elite-navy) !important;
    color: #fff !important;
    font-weight: 700;
    padding: 6px 14px;
    font-family: var(--sans-font);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--elite-gold);
}

body.college-page-admissions-students .uid-chip:hover {
    background: var(--elite-gold) !important;
    color: var(--elite-navy) !important;
}

body.college-page-admissions-students .student-name-cell {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--elite-navy);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}


/* ═══ STATUS BADGES ═══ */

body.college-page-admissions-students .badge-elite {
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.65rem;
    padding: 3px 8px;
    border: 1px solid currentColor;
}

body.college-page-admissions-students .status-admitted {
    color: var(--elite-teal);
    background: rgba(13, 148, 136, 0.1);
}

body.college-page-admissions-students .status-interested {
    color: var(--elite-crimson);
    background: rgba(153, 27, 27, 0.1);
}

body.college-page-admissions-students .status-enrolled {
    color: var(--elite-navy);
    background: rgba(15, 23, 42, 0.1);
}


/* Buttons */

body.college-page-admissions-students .btn-elite {
    font-family: var(--serif-font);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    transition: var(--transition-smooth);
    border-radius: 4px;
}


/* Primary btn-elite (Dark background) */

body.college-page-admissions-students .btn-elite.btn-primary,
body.college-page-admissions-students .btn-elite:not([class*="btn-outline-"]):not([class*="btn-secondary"]):not([class*="btn-success"]):not([class*="btn-danger"]) {
    background: var(--elite-navy);
    color: var(--elite-gold);
    border: 1px solid var(--elite-gold);
}

body.college-page-admissions-students .btn-elite.btn-primary:hover {
    background: var(--elite-gold);
    color: var(--elite-navy);
}


/* Outline Variants (Common in Dashboard) */

body.college-page-admissions-students .btn-outline-primary.btn-elite {
    color: var(--elite-navy);
    border-color: var(--elite-navy);
    background: transparent;
}

body.college-page-admissions-students .btn-outline-primary.btn-elite:hover {
    background: var(--elite-navy);
    color: #fff;
}

body.college-page-admissions-students .btn-outline-warning.btn-elite {
    color: #856404;
    border-color: #ffc107;
    background: transparent;
}

body.college-page-admissions-students .btn-outline-warning.btn-elite:hover {
    background: #ffc107;
    color: #000;
}

body.college-page-admissions-students .btn-outline-danger.btn-elite {
    color: var(--elite-crimson);
    border-color: var(--elite-crimson);
    background: transparent;
}

body.college-page-admissions-students .btn-outline-danger.btn-elite:hover {
    background: var(--elite-crimson);
    color: #fff;
}

body.college-page-admissions-students .payment-btn {
    background: var(--elite-gold);
    color: #fff;
    border: 1px solid var(--elite-gold);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

body.college-page-admissions-students .payment-btn:hover {
    background: var(--elite-navy);
    border-color: var(--elite-navy);
}


/* Essential Overrides & Additions */

body.college-page-admissions-students .form-compact input,
body.college-page-admissions-students .form-compact select,
body.college-page-admissions-students .form-compact .input-group-text {
    padding: 6px 10px;
    font-size: 0.95rem;
    border: 1px solid var(--elite-navy);
    border-radius: 0;
}


/* Minimal Scrollbar */

body.college-page-admissions-students ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body.college-page-admissions-students ::-webkit-scrollbar-track {
    background: var(--newspaper-bg);
}

body.college-page-admissions-students ::-webkit-scrollbar-thumb {
    background: var(--elite-navy);
    border: 2px solid var(--newspaper-bg);
}

body.college-page-admissions-students ::-webkit-scrollbar-thumb:hover {
    background: var(--elite-gold-dark);
}


/* Newspaper Components */

body.college-page-admissions-students .newspaper-line {
    height: 2px;
    background: var(--elite-navy);
    margin: 15px 0;
    position: relative;
}

body.college-page-admissions-students .newspaper-line::after {
    content: '';
    height: 1.5px;
    background: var(--elite-gold);
    display: block;
    margin-top: 4px;
    opacity: 0.6;
}

body.college-page-admissions-students .luxury-divider {
    text-align: center;
    position: relative;
    margin: 3rem 0;
}

body.college-page-admissions-students .luxury-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--elite-navy);
    z-index: 1;
}

body.college-page-admissions-students .luxury-divider span {
    position: relative;
    z-index: 2;
    background: #fdfcf9;
    padding: 0 2rem;
    font-family: var(--serif-font);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--elite-gold-dark);
}

body.college-page-admissions-students .fade-in {
    animation: admissions-students-fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes admissions-students-fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    body.college-page-admissions-students .sidebar-elite {
        display: none;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   COLLEGE Student Admission Portal — Elite Newspaper Theme
   Uses: common.css variables and base styles (loaded first)
   Theme: Elite Navy & Gold / Premium / Compact — matches edit_page.php
   ═══════════════════════════════════════════════════════════════════ */


/* ── Portal-level CSS variable overrides ── */


/* ── ADMISSION PORTAL WRAPPER ── */

body.college-page-admissions-students .admission-portal {
    background: var(--portal-bg);
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    min-height: calc(100vh - 140px);
    padding: 0 0 3rem;
    font-family: 'Inter', sans-serif;
    color: var(--elite-navy);
}


/* ── PAGE BANNER (sub-header below main header) ── */

body.college-page-admissions-students .portal-page-banner {
    background: linear-gradient(to right, #ffffff, #fbfaf8);
    border-bottom: 3px double var(--elite-navy);
    padding: 1.5rem 0;
    position: relative;
    box-shadow: inset 0 -10px 20px -10px rgba(0, 0, 0, 0.02);
}

body.college-page-admissions-students .portal-page-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--elite-gold), transparent);
    opacity: 0.4;
}

body.college-page-admissions-students .portal-page-banner h1 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--elite-navy);
    margin: 0;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.college-page-admissions-students .portal-page-banner .year-pill {
    display: inline-block;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--elite-gold-dark), var(--elite-gold));
    color: #fff;
    padding: 3px 14px;
    margin-left: 10px;
    font-weight: 800;
    vertical-align: middle;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.15);
}

body.college-page-admissions-students .portal-page-banner p {
    margin: 3px 0 0;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

body.college-page-admissions-students .portal-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 6px 16px;
    font-size: 0.72rem;
    color: var(--elite-navy);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

body.college-page-admissions-students .portal-info-pill:hover {
    border-color: var(--elite-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.college-page-admissions-students .portal-info-pill i {
    color: var(--elite-gold);
}


/* ── HERO SECTION (landing page intro) ── */

body.college-page-admissions-students .portal-hero {
    background: var(--elite-navy);
    color: #fff;
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--elite-gold);
}

body.college-page-admissions-students .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1px solid var(--elite-gold);
    color: var(--elite-gold);
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

body.college-page-admissions-students .hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
}

body.college-page-admissions-students .hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: #e2e8f0;
}

body.college-page-admissions-students .hero-stats {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

body.college-page-admissions-students .hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border: 1px dashed rgba(229, 192, 123, 0.4);
}

body.college-page-admissions-students .hero-stat .stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    color: var(--elite-gold);
}

body.college-page-admissions-students .hero-stat .stat-lbl {
    font-size: 0.65rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}


/* ── OPTION CARDS (landing selection) ── */

body.college-page-admissions-students .option-card {
    background: var(--portal-card);
    border: 1px solid var(--portal-border);
    padding: 2.2rem 1.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--portal-transition);
    box-shadow: var(--portal-shadow);
    text-decoration: none;
    color: var(--elite-navy);
    display: block;
    position: relative;
}

body.college-page-admissions-students .option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--elite-navy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

body.college-page-admissions-students .option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--portal-shadow-hover);
    color: var(--elite-navy);
    text-decoration: none;
}

body.college-page-admissions-students .option-card:hover::before {
    transform: scaleX(1);
    background: var(--elite-gold);
}

body.college-page-admissions-students .option-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 1.2rem;
    transition: var(--portal-transition);
    border: 2px solid var(--elite-navy);
    color: var(--elite-navy);
}

body.college-page-admissions-students .option-icon.primary {
    background: #fff;
}

body.college-page-admissions-students .option-icon.secondary {
    background: #fff;
}

body.college-page-admissions-students .option-card:hover .option-icon {
    background: var(--elite-navy);
    color: var(--elite-gold);
    border-color: var(--elite-navy);
}

body.college-page-admissions-students .option-card h5 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--elite-navy);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

body.college-page-admissions-students .option-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

body.college-page-admissions-students .option-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1.2rem;
    border: 1px solid var(--elite-navy);
    color: var(--elite-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    transition: var(--portal-transition);
}

body.college-page-admissions-students .option-card:hover .option-pill {
    background: var(--elite-navy);
    color: var(--elite-gold);
}


/* ── FORM CARDS ── */

@keyframes admissions-students-fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.college-page-admissions-students .form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-left: 4px solid var(--elite-gold-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
    border-radius: 12px;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: admissions-students-fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.college-page-admissions-students .form-card:focus-within {
    z-index: 50;
}

body.college-page-admissions-students .form-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    z-index: 2;
}

body.college-page-admissions-students .form-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.25rem 2rem;
    background: var(--elite-navy);
    border-bottom: 3px double var(--elite-gold);
    border-radius: 8px 11px 0 0;
}

body.college-page-admissions-students .form-card-header .header-icon {
    color: var(--elite-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.college-page-admissions-students .form-card-header h5 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--elite-gold);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    transform: translateY(1px);
}

body.college-page-admissions-students .form-card-body {
    padding: 1.5rem;
    background: #fff;
}


/* ── FORM CONTROLS (Newspaper Elite style) ── */

body.college-page-admissions-students .form-label-p {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--elite-navy);
    margin-bottom: 0.4rem;
    display: block;
}

body.college-page-admissions-students .required-star {
    color: var(--elite-crimson);
    font-size: 0.8rem;
    margin-left: 2px;
}

body.college-page-admissions-students .form-control-p,
body.college-page-admissions-students .form-select-p {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.college-page-admissions-students .form-control-p:focus,
body.college-page-admissions-students .form-select-p:focus {
    border-color: var(--elite-gold-dark);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.1);
    outline: none;
}

body.college-page-admissions-students .form-control-p::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

body.college-page-admissions-students .form-control-p:hover,
body.college-page-admissions-students .form-select-p:hover {
    background-color: #f8fafc;
}

body.college-page-admissions-students .form-control-p:focus,
body.college-page-admissions-students .form-select-p:focus {
    background-color: #fff;
    border-color: var(--elite-navy);
    box-shadow: inset 0 0 0 1px var(--elite-navy);
}

body.college-page-admissions-students .form-select-p {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1.1em;
    padding-right: 2.2rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

body.college-page-admissions-students .form-select-p:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1.1em;
}

body.college-page-admissions-students textarea.form-control-p {
    resize: vertical;
    min-height: 90px;
}

body.college-page-admissions-students .field-error {
    font-size: 0.7rem;
    color: var(--elite-crimson);
    margin-top: 0.2rem;
    font-weight: 600;
    display: none;
}


/* ── RADIO & CHECKBOX ── */

body.college-page-admissions-students .radio-group,
body.college-page-admissions-students .check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

body.college-page-admissions-students .radio-btn,
body.college-page-admissions-students .check-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid var(--elite-navy);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--portal-transition);
    user-select: none;
    background: #fff;
    color: var(--elite-navy);
}

body.college-page-admissions-students .radio-btn input,
body.college-page-admissions-students .check-btn input {
    display: none;
}

body.college-page-admissions-students .radio-btn:hover,
body.college-page-admissions-students .check-btn:hover {
    background: #f8fafc;
}

body.college-page-admissions-students .radio-btn.selected,
body.college-page-admissions-students .check-btn.selected {
    background: var(--elite-navy);
    color: var(--elite-gold);
    border-color: var(--elite-navy);
}


/* ── PHOTO UPLOAD ── */

body.college-page-admissions-students .photo-upload-box {
    width: 115px;
    height: 145px;
    border: 2px dashed var(--elite-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--portal-transition);
    background: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.6rem;
    text-align: center;
}

body.college-page-admissions-students .photo-upload-box:hover {
    border-color: var(--elite-gold);
    background: #f8fafc;
}

body.college-page-admissions-students .photo-upload-box i {
    font-size: 2rem;
    color: var(--elite-navy);
    margin-bottom: 4px;
    transition: var(--portal-transition);
}

body.college-page-admissions-students .photo-upload-box:hover i {
    color: var(--elite-gold);
}

body.college-page-admissions-students .photo-upload-box p {
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    color: var(--elite-navy);
    margin: 0;
    text-transform: uppercase;
}

body.college-page-admissions-students .photo-upload-box input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
}

body.college-page-admissions-students .photo-hint {
    font-size: 0.62rem;
    color: #64748b;
    text-align: center;
    margin-top: 4px;
    line-height: 1.4;
    font-weight: 600;
}

body.college-page-admissions-students .photo-success {
    display: none;
    color: var(--elite-teal);
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid var(--elite-teal);
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 4px;
    padding: 3px 8px;
    text-align: center;
}


/* ── EDUCATION TABLE ── */

body.college-page-admissions-students .edu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    border: 1px solid var(--elite-navy);
}

body.college-page-admissions-students .edu-table th {
    background: var(--elite-navy);
    color: var(--elite-gold);
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--elite-navy);
}

body.college-page-admissions-students .edu-table td {
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--elite-navy);
    vertical-align: middle;
}

body.college-page-admissions-students .edu-table tr:hover td {
    background: rgba(15, 23, 42, 0.03);
}

body.college-page-admissions-students .edu-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--elite-navy);
    white-space: nowrap;
}


/* ── ALERT BOX ── */

body.college-page-admissions-students .alert-portal {
    background: rgba(153, 27, 27, 0.05);
    border: 1px solid var(--elite-crimson);
    border-left: 4px solid var(--elite-crimson);
    padding: 0.85rem 1rem;
    color: var(--elite-crimson);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-weight: 500;
}

body.college-page-admissions-students .alert-portal i {
    flex-shrink: 0;
    margin-top: 2px;
}


/* ── SUCCESS CARD ── */

body.college-page-admissions-students .success-card {
    background: #fff;
    border: 1px solid var(--elite-navy);
    box-shadow: var(--portal-shadow);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border-top: 4px solid var(--elite-teal);
}

body.college-page-admissions-students .success-card .success-icon {
    font-size: 4rem;
    color: var(--elite-teal);
    margin-bottom: 1.2rem;
}

body.college-page-admissions-students .success-card h2 {
    color: var(--elite-navy);
    font-weight: 800;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

body.college-page-admissions-students .success-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}


/* ── SUGGESTION DROPDOWN ── */

body.college-page-admissions-students .suggestion-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--elite-navy);
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 4px 4px 0px rgba(15, 23, 42, 0.1);
}

body.college-page-admissions-students .suggestion-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.college-page-admissions-students .suggestion-dropdown li {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
    font-weight: 500;
}

body.college-page-admissions-students .suggestion-dropdown li:hover,
body.college-page-admissions-students .suggestion-dropdown li.selected {
    background: rgba(15, 23, 42, 0.05);
    color: var(--elite-navy);
    font-weight: 700;
}


/* ── SUBMIT BUTTON ── */

body.college-page-admissions-students .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 3.5rem;
    background: linear-gradient(135deg, var(--elite-navy) 0%, #1e293b 100%);
    color: var(--elite-gold);
    border: 1px solid var(--elite-navy);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

body.college-page-admissions-students .btn-submit:hover {
    background: var(--elite-gold);
    color: var(--elite-navy);
    border-color: var(--elite-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(229, 192, 123, 0.3);
}

body.college-page-admissions-students .btn-submit:active {
    transform: translateY(-1px);
}


/* ── DECLARATION BOX ── */

body.college-page-admissions-students .declaration-box {
    background: rgba(15, 23, 42, 0.02);
    border: 1px dashed var(--elite-navy);
    padding: 1.2rem;
    font-size: 0.85rem;
    color: var(--elite-navy);
    line-height: 1.6;
}


/* ── STEP INDICATOR ── */

body.college-page-admissions-students .step-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 1rem 0 0.5rem;
    margin-bottom: 1.5rem;
}

body.college-page-admissions-students .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.college-page-admissions-students .step-dot {
    width: 28px;
    height: 28px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    border: 1px solid #cbd5e1;
}

body.college-page-admissions-students .step-item.active .step-dot {
    background: var(--elite-navy);
    color: var(--elite-gold);
    border-color: var(--elite-navy);
}

body.college-page-admissions-students .step-item.active {
    color: var(--elite-navy);
}

body.college-page-admissions-students .step-line {
    height: 1px;
    width: 40px;
    background: #cbd5e1;
    align-self: flex-start;
    margin-top: 14px;
}


/* ── PAYMENT CARD ── */

body.college-page-admissions-students .payment-card {
    background: #fff;
    border: 1px solid var(--elite-navy);
    box-shadow: var(--portal-shadow);
    max-width: 650px;
    margin: 2rem auto;
}

body.college-page-admissions-students .payment-card-header {
    background: var(--elite-navy);
    color: var(--elite-gold);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 3px double var(--elite-gold);
}

body.college-page-admissions-students .payment-card-body {
    padding: 1.8rem;
}

body.college-page-admissions-students .status-icon {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

body.college-page-admissions-students .status-icon.success {
    color: var(--elite-teal);
}

body.college-page-admissions-students .status-icon.pending {
    color: var(--elite-gold);
}

body.college-page-admissions-students .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #cbd5e1;
}

body.college-page-admissions-students .detail-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.college-page-admissions-students .detail-value {
    font-weight: 800;
    color: var(--elite-navy);
    font-size: 0.9rem;
    text-align: right;
}

body.college-page-admissions-students .amount-display {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--elite-navy);
    margin: 1.5rem 0;
}

body.college-page-admissions-students .amount-display .lbl {
    font-size: 0.75rem;
    color: var(--elite-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    display: block;
}

body.college-page-admissions-students .amount-display .val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--elite-navy);
    font-family: 'Outfit', sans-serif;
}

body.college-page-admissions-students .payment-action {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
}

body.college-page-admissions-students .payment-action .btn-submit {
    flex: 1;
    margin: 0;
}


/* ── ENHANCEMENTS for BTN (public portal) ── */

body.college-page-admissions-students .btn-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--portal-transition);
    text-decoration: none;
    letter-spacing: 0.05em;
    border: 1px solid var(--elite-navy);
}

body.college-page-admissions-students .btn-portal.primary {
    background: var(--elite-navy);
    color: var(--elite-gold);
}

body.college-page-admissions-students .btn-portal.primary:hover {
    background: var(--elite-gold);
    color: var(--elite-navy);
    text-decoration: none;
}

body.college-page-admissions-students .btn-portal.success {
    background: var(--elite-teal);
    color: #fff;
    border-color: var(--elite-teal);
}

body.college-page-admissions-students .btn-portal.success:hover {
    background: #0f766e;
    color: #fff;
    text-decoration: none;
}


/* ── SECTION HEADING (inside form content areas) ── */

body.college-page-admissions-students .section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--elite-navy);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.college-page-admissions-students .section-subheading {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}


/* ── FORM SECTION BADGE (badge on the top of registration form) ── */

body.college-page-admissions-students .form-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    color: var(--elite-navy);
    border: 1px solid var(--elite-navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}


/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    body.college-page-admissions-students .portal-hero {
        padding: 1.8rem 0;
    }
    body.college-page-admissions-students .hero-stats {
        gap: 0.8rem;
    }
    body.college-page-admissions-students .hero-stat {
        padding: 0.5rem 0.8rem;
    }
    body.college-page-admissions-students .option-card {
        padding: 1.8rem 1.2rem;
    }
    body.college-page-admissions-students .form-card-body {
        padding: 1rem;
    }
    body.college-page-admissions-students .form-card-header {
        padding: 0.8rem 1rem;
    }
    body.college-page-admissions-students .edu-table {
        display: none;
    }
    body.college-page-admissions-students .step-bar {
        gap: 0;
    }
    body.college-page-admissions-students .btn-submit {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    body.college-page-admissions-students .edu-table-mobile {
        display: none;
    }
}


/* dashboard.css - Premium Admission Management System Dashboard Styles */

body.college-page-admissions-students .page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 1rem .5rem;
    min-height: auto !important;
}

body.college-page-admissions-students .tab-content-elite {
    padding: 0.5rem 0.2rem 0 !important;
    min-height: auto !important;
}


/* Active tab underline style for student profile modal */

body.college-page-admissions-students #spmTabs .nav-link.active {
    color: #1a1a1a !important;
    border-bottom: 2px solid #8E0E00 !important;
    background: transparent !important;
}


/* Photo hover overlay visible */

body.college-page-admissions-students #spm_photo_wrap:hover #spm_photo_overlay {
    display: flex !important;
}


/* Upload progress spinner */

@keyframes admissions-students-spmSpin {
    to {
        transform: rotate(360deg);
    }
}


/* Pagination Styles */

body.college-page-admissions-students .pagination .page-item.active .page-link {
    background-color: var(--navy);
    border-color: var(--navy);
}

body.college-page-admissions-students .pagination .page-link {
    color: var(--navy);
}


/* Table Hover Effects */

body.college-page-admissions-students #studentDataTable tbody tr:hover {
    background-color: #fffbeb !important;
}


/* UID Chip / Badge Styles */

body.college-page-admissions-students .uid-chip {
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .06em;
    background: var(--elite-navy);
    color: #fff;
    padding: 3px 10px;
    border: 1.5px solid var(--elite-gold);
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
}


/* Sort Arrows */

body.college-page-admissions-students .sort-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

body.college-page-admissions-students .sort-arrow.asc {
    border-bottom: 4px solid #fff;
}

body.college-page-admissions-students .sort-arrow.desc {
    border-top: 4px solid #fff;
}

body.college-page-admissions-students .sort-arrow.inactive {
    border-top: 4px solid rgba(255, 255, 255, 0.3);
}


/* Hide Number Arrows */

body.college-page-admissions-students input[type=number]::-webkit-inner-spin-button,
body.college-page-admissions-students input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body.college-page-admissions-students input[type=number] {
    -moz-appearance: textfield;
}


/* Premium Table Fit */

body.college-page-admissions-students .premium-table-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

body.college-page-admissions-students .premium-table {
    margin-bottom: 0 !important;
    border: none !important;
    width: 100%;
}

body.college-page-admissions-students .premium-table thead th {
    background: var(--elite-navy);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0.75rem;
}

body.college-page-admissions-students .premium-table tbody td {
    padding: 0.8rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}


/* Edit Page (edit_page.php) - Page-specific styles */


/* ── Page-specific overrides for accountant_edit_page ── */

body.college-page-admissions-students {
    background: var(--paper);
}

body.college-page-admissions-students .page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 1rem .5rem !important;
    min-height: auto !important;
}

body.college-page-admissions-students .tab-content-elite {
    padding: 0.5rem 0.2rem 0 !important;
    min-height: auto !important;
}


/* Accordion — newspaper section style */

body.college-page-admissions-students .accordion-button {
    background: var(--ink) !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .5rem .9rem;
    border-radius: var(--radius) !important;
    border: none;
}

body.college-page-admissions-students .accordion-button:not(.collapsed) {
    background: #2d2d2d !important;
    box-shadow: none;
}

body.college-page-admissions-students .accordion-button::after {
    filter: invert(1);
}

body.college-page-admissions-students .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(30, 58, 95, .2);
}

body.college-page-admissions-students .accordion-item {
    border: 1px solid var(--rule);
    border-radius: var(--radius) !important;
    margin-bottom: .6rem;
    background: #fff;
    box-shadow: var(--shadow-xs);
}

body.college-page-admissions-students .accordion-body {
    background: var(--paper);
    padding: .7rem .9rem;
    border-radius: 0 0 var(--radius) var(--radius);
}


/* Form labels */

body.college-page-admissions-students .form-label {
    font-size: .8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ink) !important;
    margin-bottom: .2rem !important;
}

body.college-page-admissions-students .form-control,
body.college-page-admissions-students .form-select {
    font-size: .9rem !important;
    padding: .35rem .75rem !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--radius-sm) !important;
    background: #fff !important;
    font-family: 'Poppins', sans-serif;
    color: #000 !important;
}

body.college-page-admissions-students .form-control:focus,
body.college-page-admissions-students .form-select:focus {
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, .15) !important;
}

body.college-page-admissions-students .form-control[readonly] {
    background: #f8f9fa !important;
    color: var(--navy);
    font-weight: 800;
    border: 2px solid var(--elite-gold) !important;
}


/* Payment table */

body.college-page-admissions-students .payment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .78rem;
}

body.college-page-admissions-students .payment-table th {
    background: var(--ink);
    color: #fff;
    padding: .4rem .6rem;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

body.college-page-admissions-students .payment-table td {
    padding: .35rem .6rem;
    border-bottom: 1px solid #f0ebe0;
    vertical-align: middle;
}

body.college-page-admissions-students .payment-table tbody tr:nth-child(even) td {
    background: #fdf8f0;
}

body.college-page-admissions-students .payment-table tbody tr:hover td {
    background: #fef9de;
}


/* Remark cards */

body.college-page-admissions-students .form-section {
    background: #fff;
    padding: 1rem !important;
    border: 1px solid var(--rule);
    margin-bottom: 0.6rem !important;
}

body.college-page-admissions-students .tab-content-elite {
    padding: 0.5rem 0.2rem !important;
}

body.college-page-admissions-students h6,
body.college-page-admissions-students h5 {
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
}

body.college-page-admissions-students .row {
    margin-bottom: 0 !important;
}

body.college-page-admissions-students .mb-3 {
    margin-bottom: 0.5rem !important;
}

body.college-page-admissions-students .remark-entry {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: .5rem .7rem;
    margin-bottom: .4rem;
}

body.college-page-admissions-students .remark-accountant {
    border-left: 3px solid var(--navy);
}

body.college-page-admissions-students .remark-admin {
    border-left: 3px solid var(--red);
}

body.college-page-admissions-students .remark-office {
    border-left: 3px solid var(--teal);
}


/* Fee summary chips on the top */

body.college-page-admissions-students .fee-ribbon {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    padding: .5rem .9rem;
    background: var(--paper-dark);
    border-bottom: 1px solid var(--rule);
    margin-bottom: .6rem;
    border-radius: var(--radius);
}

body.college-page-admissions-students .fee-chip {
    display: inline-flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: .3rem .6rem;
    min-width: 110px;
    box-shadow: var(--shadow-xs);
}

body.college-page-admissions-students .fee-chip .fc-label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-light);
    font-weight: 600;
}

body.college-page-admissions-students .student-meta .s-name {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.college-page-admissions-students .fee-chip .fc-val {
    font-size: .92rem;
    font-weight: 700;
}

body.college-page-admissions-students .fee-chip.navy .fc-val {
    color: var(--navy);
}

body.college-page-admissions-students .fee-chip.teal .fc-val {
    color: var(--teal);
}

body.college-page-admissions-students .fee-chip.red .fc-val {
    color: var(--red);
}

body.college-page-admissions-students .fee-chip.gold .fc-val {
    color: var(--gold);
}


/* Suggestion box */

body.college-page-admissions-students .suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    max-height: 180px;
    overflow-y: auto;
    display: none;
}

body.college-page-admissions-students .suggestion-box li {
    padding: .3rem .6rem;
    font-size: .78rem;
    cursor: pointer;
    border-bottom: 1px solid #f5f0e8;
    list-style: none;
}

body.college-page-admissions-students .suggestion-box li:hover {
    background: #fef9de;
}


/* Admin editable remark cell */

body.college-page-admissions-students .admin-remark-cell {
    cursor: pointer;
}

body.college-page-admissions-students .admin-remark-cell:hover {
    background: #fef9de !important;
}

body.college-page-admissions-students .admin-remark:empty::before {
    content: "Click to add remark";
    font-style: italic;
    color: var(--text-light);
    font-size: .72rem;
}

body.college-page-admissions-students .remark-editor {
    width: 100%;
    padding: .28rem .5rem;
    border: 1px solid var(--navy);
    border-radius: var(--radius-sm);
    font-size: .78rem;
}

@media (max-width:768px) {
    body.college-page-admissions-students .fee-ribbon {
        gap: .3rem;
    }
    body.college-page-admissions-students .fee-chip {
        min-width: 90px;
    }
    body.college-page-admissions-students .page-wrapper {
        padding: .3rem .5rem 1rem;
    }
}


/* --- Mobile Viewport Layout & Table Fixes --- */

@media (max-width: 991px) {
    /* Explicitly disable horizontal sticky (frozen) columns on mobile view */
    body.college-page-admissions-students #studentDataTable th:nth-child(1),
    body.college-page-admissions-students #studentDataTable td:nth-child(1),
    body.college-page-admissions-students #studentDataTable th:nth-child(2),
    body.college-page-admissions-students #studentDataTable td:nth-child(2),
    body.college-page-admissions-students #studentDataTable th:nth-child(3),
    body.college-page-admissions-students #studentDataTable td:nth-child(3),
    body.college-page-admissions-students #studentDataTable th:nth-child(4),
    body.college-page-admissions-students #studentDataTable td:nth-child(4) {
        position: static !important;
        left: auto !important;
    }
    /* Reduce margins and padding of the cards on mobile to maximize viewport width */
    body.college-page-admissions-students .elite-card {
        margin: 1rem 0.5rem !important;
        padding: 1rem 0.75rem !important;
    }
    body.college-page-admissions-students .full-width-table-container {
        padding: 0 5px !important;
    }
    /* Stack items inside action toolbar and adjust padding */
    body.college-page-admissions-students .action-toolbar {
        flex-wrap: wrap !important;
        gap: 8px !important;
        padding: 8px !important;
        justify-content: space-between;
    }
    body.college-page-admissions-students .action-toolbar .toolbar-title {
        width: 100%;
        margin-bottom: 4px;
    }
    body.college-page-admissions-students .action-toolbar .search-box {
        flex-grow: 1;
        width: 100%;
    }
    body.college-page-admissions-students .action-toolbar .search-box input {
        width: 100% !important;
    }
    body.college-page-admissions-students .action-toolbar .entries-select {
        margin-right: auto;
        order: 2;
    }
    /* Standard table wrappers responsive scrolling */
    body.college-page-admissions-students .table-wrapper {
        margin-top: 12px;
        border: 1px solid var(--elite-navy) !important;
        border-radius: 4px !important;
        overflow-x: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    /* Table cells compact size on mobile */
    body.college-page-admissions-students .table td,
    body.college-page-admissions-students .table th {
        padding: 10px 8px !important;
        font-size: 0.76rem !important;
    }
    /* Prevent text wrapping heavily and give columns proper minimum width */
    body.college-page-admissions-students #studentDataTable {
        min-width: 1100px !important;
        width: 100% !important;
    }
    body.college-page-admissions-students #studentDataTable td,
    body.college-page-admissions-students #studentDataTable th {
        white-space: nowrap !important;
    }
    /* Allow the Student Name column to have standard auto wrapping if it becomes too long, but keep it readable */
    body.college-page-admissions-students #studentDataTable td:nth-child(3) {
        white-space: normal !important;
        min-width: 160px !important;
    }
}


/* Mobile Header Refinement */

@media (max-width: 767px) {
    body.college-page-admissions-students .portal-page-banner .d-flex.align-items-center.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    body.college-page-admissions-students .portal-page-banner-title {
        white-space: normal !important;
        flex-wrap: wrap !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    body.college-page-admissions-students .portal-page-banner .info-pills-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 4px 0 8px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    body.college-page-admissions-students .portal-page-banner .info-pills-container::-webkit-scrollbar {
        display: none;
    }
    body.college-page-admissions-students .portal-page-banner .portal-info-pill {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 5px 12px !important;
        font-size: 0.68rem !important;
        border-radius: 6px !important;
    }
    body.college-page-admissions-students #unique_id::placeholder {
        font-size: 0.75rem;
    }
}

body.college-page-admissions-students .alert-portal-premium {
    background: #fff;
    border: 2px solid #fee2e2;
    border-left: 8px solid #ef4444;
    display: flex;
    gap: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(153, 27, 27, 0.1);
    border-radius: 4px;
    align-items: flex-start;
}

body.college-page-admissions-students .alert-p-icon {
    flex-shrink: 0;
}

body.college-page-admissions-students .alert-p-content {
    flex-grow: 1;
}

@media (max-width: 767px) {
    body.college-page-admissions-students .alert-portal-premium {
        padding: 15px;
        gap: 12px;
    }
    body.college-page-admissions-students .alert-p-icon i {
        font-size: 1.8rem !important;
    }
    body.college-page-admissions-students .alert-p-content h4 {
        font-size: 1.1rem !important;
    }
    body.college-page-admissions-students .alert-p-content p {
        font-size: 0.82rem !important;
    }
}


/* Radio Button Highlights & Interaction (COLLEGE Premium) */

body.college-page-admissions-students .radio-group {
    display: flex;
    gap: 12px;
    max-width: 280px;
}

body.college-page-admissions-students .radio-btn {
    flex: 1;
    padding: 9px 18px;
    text-align: center;
    border: 1.5px solid #1e293b;
    border-radius: 4px;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

body.college-page-admissions-students .radio-btn input[type="radio"],
body.college-page-admissions-students .radio-btn input[type="checkbox"] {
    display: none;
}

body.college-page-admissions-students .radio-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

body.college-page-admissions-students .radio-btn.active {
    background: #1e293b;
    color: #e2b155;
    /* Premium Tan/Gold highlight */
    border-color: #1e293b;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.25);
}


/* Passport Photo Styling */

body.college-page-admissions-students .photo-upload-box {
    width: 100px;
    height: 125px;
    border: 2px dashed #1e293b;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 8px;
}

body.college-page-admissions-students .photo-upload-box i {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 8px;
}

body.college-page-admissions-students .photo-upload-box p {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1e293b;
    margin: 0;
    text-align: center;
}

body.college-page-admissions-students .photo-upload-box input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}


/* Declaration Box */

body.college-page-admissions-students .declaration-box {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
}

body.college-page-admissions-students .form-label-bold {
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e293b;
    display: block;
    margin-bottom: 8px;
}


/* Additional Information Toggle Button styling */

body.college-page-admissions-students .btn-additional-info {
    background: #ffffff;
    border: 2px dashed #1e293b;
    color: #1e293b;
    padding: 0.85rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.05);
    outline: none;
}

body.college-page-admissions-students .btn-additional-info:hover {
    background: #1e293b;
    color: #e2b155;
    border-style: solid;
    border-color: #1e293b;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
    transform: translateY(-2px);
}

body.college-page-admissions-students .btn-additional-info.active {
    background: #1e293b;
    color: #e2b155;
    border-style: solid;
    border-color: #1e293b;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
}

body.college-page-admissions-students .btn-additional-info i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

body.college-page-admissions-students .btn-additional-info.active i {
    transform: rotate(45deg);
}


/* Extracted inline declarations */

body.college-page-admissions-students .college-admissions-students-inline-1 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}

body.college-page-admissions-students .college-admissions-students-inline-2 {
    margin: 3px 0 0;
    font-size: 0.75rem;
    color: #64748b;
}

body.college-page-admissions-students .college-admissions-students-inline-3 {
    font-size: 0.35rem;
    color: #22c55e;
    vertical-align: middle;
    margin-right: 5px;
}

body.college-page-admissions-students .college-admissions-students-inline-4 {
    padding-top: 1.2rem;
}

body.college-page-admissions-students .college-admissions-students-inline-5 {
    margin-bottom: 3rem;
}

body.college-page-admissions-students .college-admissions-students-inline-6 {
    background: var(--elite-gold);
    color: var(--elite-navy);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body.college-page-admissions-students .college-admissions-students-inline-7 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--elite-navy);
}

body.college-page-admissions-students .college-admissions-students-inline-8 {
    max-width: 600px;
    margin: 0.5rem auto;
}

body.college-page-admissions-students .college-admissions-students-inline-9 {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

body.college-page-admissions-students .college-admissions-students-inline-10 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--elite-navy);
    color: var(--elite-gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    border: 1px solid var(--elite-gold);
}

body.college-page-admissions-students .college-admissions-students-inline-11 {
    font-weight: 800;
    color: var(--elite-navy);
}

body.college-page-admissions-students .college-admissions-students-inline-12 {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

body.college-page-admissions-students .college-admissions-students-inline-13 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--elite-gold);
    color: var(--elite-navy);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    border: 1px solid var(--elite-navy);
}

body.college-page-admissions-students .college-admissions-students-inline-14 {
    font-weight: 800;
    color: var(--elite-navy);
}


/* Page: aicte-feedback-facility */

body.college-page-aicte-feedback-facility .notice-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
    margin-bottom: 2rem;
}

body.college-page-aicte-feedback-facility .notice-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

body.college-page-aicte-feedback-facility .notice-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

body.college-page-aicte-feedback-facility .portal-link {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 2rem;
    display: block;
}

body.college-page-aicte-feedback-facility .portal-link a {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.college-page-aicte-feedback-facility .portal-link a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

body.college-page-aicte-feedback-facility .feedback-links {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

body.college-page-aicte-feedback-facility .feedback-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fff9f0 0%, #fffbf5 100%);
    border: 2px solid #fde68a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.college-page-aicte-feedback-facility .feedback-link-item:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}

body.college-page-aicte-feedback-facility .feedback-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
}

body.college-page-aicte-feedback-facility .feedback-content {
    flex: 1;
}

body.college-page-aicte-feedback-facility .feedback-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

body.college-page-aicte-feedback-facility .feedback-url {
    color: #f59e0b;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.college-page-aicte-feedback-facility .feedback-url:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

body.college-page-aicte-feedback-facility .external-icon {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

body.college-page-aicte-feedback-facility .feedback-link-item:hover .external-icon {
    color: var(--gold);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    body.college-page-aicte-feedback-facility .notice-card {
        padding: 1.75rem;
    }
    body.college-page-aicte-feedback-facility .notice-title {
        font-size: 1.5rem;
    }
    body.college-page-aicte-feedback-facility .notice-text {
        font-size: 0.95rem;
    }
    body.college-page-aicte-feedback-facility .feedback-link-item {
        padding: 1rem;
    }
}


/* Extracted inline declarations */

body.college-page-aicte-feedback-facility .college-aicte-feedback-facility-inline-1 {
    z-index: 2;
}

body.college-page-aicte-feedback-facility .college-aicte-feedback-facility-inline-2 {
    padding: 3rem 0;
}


/* Page: alumni */


/* === Theme Variables === */


/* === Layout & Sidebar Additions === */

body.college-page-alumni .alumni-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    body.college-page-alumni .alumni-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
}


/* Custom Tab Content */

body.college-page-alumni .alumni-tab-pane {
    display: none;
    animation: alumni-fadeIn 0.4s ease-in-out;
}

body.college-page-alumni .alumni-tab-pane.active {
    display: block;
}

@keyframes alumni-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === Hero & Dashboard Section === */

body.college-page-alumni .alumni-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
    padding: 90px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

body.college-page-alumni .alumni-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: alumni-slow-rotate 40s linear infinite;
}

@keyframes alumni-slow-rotate {
    100% {
        transform: rotate(360deg);
    }
}

body.college-page-alumni .alumni-hero h1 {
    font-weight: 800;
    font-size: 2.8rem;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

body.college-page-alumni .alumni-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}


/* Glassmorphic Stats Counters */

body.college-page-alumni .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

body.college-page-alumni .glass-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.college-page-alumni .glass-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: var(--gold);
    background: #fffbeb;
}

body.college-page-alumni .stat-icon {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

body.college-page-alumni .glass-stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
}


/* === Directory Section === */

body.college-page-alumni .directory-filters {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
}

body.college-page-alumni .alumni-badge-dept {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

body.college-page-alumni .badge-cse {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

body.college-page-alumni .badge-ece {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

body.college-page-alumni .badge-eee {
    background: rgba(202, 138, 4, 0.1);
    color: #ca8a04;
}

body.college-page-alumni .badge-mca {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

body.college-page-alumni .badge-bca {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

body.college-page-alumni .badge-csm {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

body.college-page-alumni .badge-csd {
    background: rgba(219, 39, 119, 0.1);
    color: #db2777;
}


/* === Character Avatar Circles === */

body.college-page-alumni .avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

body.college-page-alumni .avatar-circle-sm {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
    margin: 0 auto 0.8rem;
    border-width: 3px;
}

body.college-page-alumni .dist-card:hover .avatar-circle {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: var(--gold);
    border-color: var(--gold);
}

body.college-page-alumni .mentor-card:hover .avatar-circle-sm {
    transform: scale(1.08) rotate(3deg);
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: var(--gold);
    border-color: var(--gold);
}

body.college-page-alumni .dist-company-text {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 2.5px;
    color: var(--gold-dark);
    margin: 0.8rem 0 1.2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}


/* === Distinguished Alumni Section === */

body.college-page-alumni .distinguished-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

body.college-page-alumni .dist-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

body.college-page-alumni .dist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
}

body.college-page-alumni .dist-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    color: white;
}

body.college-page-alumni .dist-img-wrap {
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

body.college-page-alumni .dist-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

body.college-page-alumni .dist-meta {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
}

body.college-page-alumni .dist-body {
    padding: 1.5rem;
    text-align: center;
}

body.college-page-alumni .dist-role {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

body.college-page-alumni .dist-quote {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 10px;
}

body.college-page-alumni .dist-quote::before,
body.college-page-alumni .dist-quote::after {
    color: rgba(251, 191, 36, 0.2);
    font-size: 1.25rem;
    font-family: serif;
    position: absolute;
}

body.college-page-alumni .dist-quote::before {
    content: '“';
    left: -5px;
    top: -5px;
}

body.college-page-alumni .dist-quote::after {
    content: '”';
    right: -5px;
    bottom: -15px;
}

body.college-page-alumni .dist-social {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--navy);
    transition: all 0.3s;
}

body.college-page-alumni .dist-social:hover {
    background: #0077b5;
    color: white;
    transform: scale(1.1);
}


/* === Mentorship & Jobs Board === */

body.college-page-alumni .job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.college-page-alumni .job-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.08);
}

@media (max-width: 768px) {
    body.college-page-alumni .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    body.college-page-alumni .job-card button {
        width: 100%;
    }
}

body.college-page-alumni .job-details h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

body.college-page-alumni .job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

body.college-page-alumni .job-meta-row span i {
    color: var(--gold-dark);
    margin-right: 5px;
}

body.college-page-alumni .job-tag {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.75rem;
}


/* Mentor Cards */

body.college-page-alumni .mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

body.college-page-alumni .mentor-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

body.college-page-alumni .mentor-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
}

body.college-page-alumni .mentor-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

body.college-page-alumni .mentor-info {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.8rem;
}

body.college-page-alumni .mentor-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
}

body.college-page-alumni .mentor-skill-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 500;
}


/* === Giving Back Section === */

body.college-page-alumni .fund-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.college-page-alumni .fund-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.1);
}

body.college-page-alumni .fund-banner {
    height: 140px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

body.college-page-alumni .fund-banner i {
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.85;
}

body.college-page-alumni .fund-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.college-page-alumni .fund-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

body.college-page-alumni .fund-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

body.college-page-alumni .progress-bar-wrap {
    margin-bottom: 1.2rem;
}

body.college-page-alumni .progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

body.college-page-alumni .progress-labels .percentage {
    color: var(--gold-dark);
    font-weight: 700;
}

body.college-page-alumni .custom-progress {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

body.college-page-alumni .custom-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}


/* === Connect & Register Multi-step Form === */

body.college-page-alumni .register-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
}

@media (max-width: 576px) {
    body.college-page-alumni .register-card {
        padding: 1.5rem;
    }
}


/* Steps Progress Bar */

body.college-page-alumni .wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

body.college-page-alumni .wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gray-200);
    z-index: 1;
}

body.college-page-alumni .wizard-step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
}

body.college-page-alumni .step-circle {
    width: 44px;
    height: 44px;
    background: white;
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-500);
    margin: 0 auto 0.5rem;
    transition: all 0.3s;
}

body.college-page-alumni .wizard-step-node.active .step-circle {
    border-color: var(--gold-dark);
    background: var(--navy);
    color: white;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

body.college-page-alumni .wizard-step-node.completed .step-circle {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

body.college-page-alumni .step-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    transition: all 0.3s;
}

body.college-page-alumni .wizard-step-node.active .step-title {
    color: var(--navy);
    font-weight: 700;
}

body.college-page-alumni .wizard-step-node.completed .step-title {
    color: var(--success);
}

body.college-page-alumni .form-wizard-pane {
    display: none;
}

body.college-page-alumni .form-wizard-pane.active {
    display: block;
    animation: alumni-slideIn 0.4s ease-out;
}

@keyframes alumni-slideIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body.college-page-alumni .form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--gray-200);
}


/* === Premium Notification Toast === */

body.college-page-alumni .alumni-toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

body.college-page-alumni .alumni-toast {
    min-width: 320px;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-left: 5px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto;
    animation: alumni-slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes alumni-slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.college-page-alumni .alumni-toast.toast-fadeout {
    animation: alumni-slideDownFade 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes alumni-slideDownFade {
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}

body.college-page-alumni .alumni-toast-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

body.college-page-alumni .alumni-toast-content {
    flex: 1;
}

body.college-page-alumni .alumni-toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

body.college-page-alumni .alumni-toast-desc {
    font-size: 0.8rem;
    color: #cbd5e1;
}

body.college-page-alumni .alumni-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

body.college-page-alumni .alumni-toast-close:hover {
    color: white;
}


/* Extracted inline declarations */

body.college-page-alumni .college-alumni-inline-1 {
    z-index: 2;
}

body.college-page-alumni .college-alumni-inline-2 {
    width: 100%
}

body.college-page-alumni .college-alumni-inline-3 {
    width: 75%;
}

body.college-page-alumni .college-alumni-inline-4 {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

body.college-page-alumni .college-alumni-inline-5 {
    width: 60%;
}

body.college-page-alumni .college-alumni-inline-6 {
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
}

body.college-page-alumni .college-alumni-inline-7 {
    width: 40%;
}

body.college-page-alumni .college-alumni-inline-8 {
    border-top: 4px solid var(--gold);
}

body.college-page-alumni .college-alumni-inline-9 {
    margin-bottom: 2rem;
}

body.college-page-alumni .college-alumni-inline-10 {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.15);
}

body.college-page-alumni .college-alumni-inline-11 {
    width: 70px;
    height: 70px;
}

body.college-page-alumni .college-alumni-inline-12 {
    font-size: 2rem;
}

body.college-page-alumni .college-alumni-inline-13 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

body.college-page-alumni .college-alumni-inline-14 {
    display: none;
    z-index: 1060;
}


/* Page: annualreports */

body.college-page-annualreports .sidebar-content {
    position: relative;
}

body.college-page-annualreports .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}

body.college-page-annualreports .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}

body.college-page-annualreports .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}


/* Style for the sidebar container */

body.college-page-annualreports .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}


/* Style for the links */

body.college-page-annualreports .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}

body.college-page-annualreports .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}

body.college-page-annualreports .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    color: #343a40;
    /* Dark text color */
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}


/* Style for the icon */

body.college-page-annualreports .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    font-size: 28px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
}


/* Hover effect */

body.college-page-annualreports .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    border-radius: 50px;
    /* Rounded corners on hover */
}


/* Sidebar header */

body.college-page-annualreports .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}


/* Extracted inline declarations */

body.college-page-annualreports .college-annualreports-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}

body.college-page-annualreports .college-annualreports-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}

body.college-page-annualreports .college-annualreports-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-annualreports .college-annualreports-inline-4 {
    text-align: center;
    color: red;
}

body.college-page-annualreports .college-annualreports-inline-5 {
    color: black;
}

body.college-page-annualreports .college-annualreports-inline-6 {
    color: #046A10;
}

body.college-page-annualreports .college-annualreports-inline-7 {
    color: #046A10;
}

body.college-page-annualreports .college-annualreports-link {
    color: #046a10;
}


/* Page: approvals */


/* Source: css/premium-tablesc619.css */


/* ==========================================================================
   COLLEGE Elite Premium Tables v3.0
   DataTables-integrated styling with gold-navy glassmorphism theme.
   Features: compact toolbar, pill search, animated pagination, premium rows.
   ========================================================================== */


/* =========  Variables  ========= */


/* =========  Wrapper Card  =========
   Only ONE card layer shows at a time:
   - .college-table-wrapper = card for plain tables (no DataTables)
   - .college-datatable-wrapper = card for DataTables-enhanced tables
   When DataTables initialises inside .college-table-wrapper, the outer
   shell is stripped via :has() so we never get a box-inside-a-box.
========================================= */


/* Default card style for plain tables */

body.college-page-approvals .college-table-wrapper {
    background: var(--pt-white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--pt-radius-lg);
    box-shadow: 0 8px 32px rgba(10, 14, 39, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--pt-border);
    margin-bottom: 2rem;
    position: relative;
}


/* For DataTables, the wrapper itself becomes invisible and floats the controls! */

body.college-page-approvals .college-datatable-wrapper {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 2.5rem;
    position: relative;
}


/* Align floating toolbar (Search / Length / Export) exactly with the table edges */

body.college-page-approvals .college-datatable-wrapper>.d-flex.mb-3 {
    margin-bottom: 0 !important;
    /* Touch header exactly */
    padding: 10px 1.5rem 0.5rem;
    /* Only bottom breathing room */
}


/* When DataTables wraps a table that was already inside a card wrapper,
   flatten the old parent so we don't get double backgrounds/borders */

body.college-page-approvals .college-table-wrapper:has(.college-datatable-wrapper),
body.college-page-approvals .college-table-wrapper:has(>div[id$="_wrapper"]),
body.college-page-approvals .dept-table-wrapper:has(.college-datatable-wrapper),
body.college-page-approvals .dept-table-wrapper:has(>div[id$="_wrapper"]),
body.college-page-approvals .fee-card:has(.college-datatable-wrapper),
body.college-page-approvals .fee-card:has(>div[id$="_wrapper"]),
body.college-page-approvals .fee-card:has(table) {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 0 !important;
}

body.college-page-approvals .table-responsive:has(>div[id$="_wrapper"]) {
    overflow: visible !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-bottom: 0 !important;
}


/* -----------------------------------------------------
   CLEAN MINIMAL TABLE CARD
   ----------------------------------------------------- */

body.college-page-approvals .dataTables_scroll {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
}


/* Force everything inside to snap to the bounds */

body.college-page-approvals .dataTables_scrollHead,
body.college-page-approvals .dataTables_scrollBody,
body.college-page-approvals .dataTables_scrollHeadInner {
    margin: 0 !important;
    padding: 0 !important;
}


/* Eliminate white space extending below the bottom row */

body.college-page-approvals .dataTables_scrollBody {
    flex-grow: 1;
    height: auto !important;
    max-height: 420px;
}


/* Length "Show X entries" control */

body.college-page-approvals .dataTables_wrapper .dataTables_length {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    white-space: nowrap;
}

body.college-page-approvals .dataTables_wrapper .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.82rem;
    color: var(--pt-muted);
}

body.college-page-approvals .dataTables_wrapper .dataTables_length select {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid var(--pt-border);
    border-radius: var(--pt-radius-sm);
    padding: 5px 24px 5px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--pt-navy);
    background-color: var(--pt-surface);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

body.college-page-approvals .dataTables_wrapper .dataTables_length select:hover,
body.college-page-approvals .dataTables_wrapper .dataTables_length select:focus {
    border-color: var(--pt-gold);
    box-shadow: 0 0 0 3px var(--pt-gold-glow);
}


/* Search input  */

body.college-page-approvals .dataTables_wrapper .dataTables_filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.college-page-approvals .dataTables_wrapper .dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    white-space: nowrap;
}

body.college-page-approvals .dataTables_wrapper .dataTables_filter input {
    border: 1px solid rgba(10, 25, 47, 0.15);
    border-radius: var(--pt-radius-pill);
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--pt-surface);
    color: var(--pt-navy);
    width: 230px;
    min-width: 160px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

body.college-page-approvals .dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--pt-gold);
    background: var(--pt-white);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 280px;
    transform: translateY(-1px);
}

body.college-page-approvals .dataTables_wrapper .dataTables_filter input::placeholder {
    color: #94a3b8;
    font-size: 0.80rem;
}


/* =========  Upload / Download Icon Buttons  ========= */

body.college-page-approvals .btn-dt-download,
body.college-page-approvals .btn-dt-upload {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.college-page-approvals .btn-dt-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3) !important;
}

body.college-page-approvals .btn-dt-upload:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3) !important;
}


/* =========  TABLE BASE  ========= */

body.college-page-approvals table.dataTable,
body.college-page-approvals table.college-data-table {
    border-collapse: collapse !important;
    /* Changed from separate to collapse for perfect flush edges */
    border-spacing: 0;
    width: 100% !important;
    border: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    /* Strip inner table radius */
    box-shadow: none !important;
    /* Strip inner table shadow */
    background: transparent !important;
    font-size: 0.88rem;
}


/* Force header to be completely flush edge-to-edge, removing all inner rounded corners */

body.college-page-approvals table.dataTable thead th:first-child,
body.college-page-approvals table.college-data-table thead th:first-child,
body.college-page-approvals table.dataTable thead th:last-child,
body.college-page-approvals table.college-data-table thead th:last-child {
    border-radius: 0 !important;
}


/* =========  SCROLL CONTAINER (replaces pagination)  ========= */


/* ---- FIX: DARK BAR BELOW HEADER ----
   DataTables scrollY splits the table into:
     .dataTables_scrollHead  = clone <thead> (sticky, visible)
     .dataTables_scrollBody  = real <tbody> + spacer <thead> (invisible)
   We must COMPLTELY zero out the spacer so it adds 0px height.
--------------------------------------- */


/* (Moved to end of file for priority) */


/* Sticky header container — clean edge-to-edge navy */

body.college-page-approvals .dataTables_scrollHead {
    overflow: hidden !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-radius: 16px 16px 0 0 !important;
    border-bottom: 3px solid var(--pt-gold) !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

body.college-page-approvals .dataTables_scrollHeadInner,
body.college-page-approvals .dataTables_scrollHeadInner table,
body.college-page-approvals .dataTables_scrollBody,
body.college-page-approvals .dataTables_scrollBody table {
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
    border-spacing: 0 !important;
}


/* Scrollable body — spacing between rows to show card effect */

body.college-page-approvals .dataTables_scrollBody {
    overflow-y: auto !important;
    overflow-x: auto !important;
    padding: 0 !important;
}


/* Ultra slim navy scrollbar for an elegant look */

body.college-page-approvals .dataTables_scrollBody::-webkit-scrollbar {
    width: 6px;
    /* Slightly wider for usability, but still very sleek */
    height: 6px;
}

body.college-page-approvals .dataTables_scrollBody::-webkit-scrollbar-track {
    background: transparent;
    /* Ensures seamless blend, no track strip */
    border-radius: 0 0 var(--pt-radius-lg) 0;
    /* Match outer corner */
    margin-top: 2px;
    margin-bottom: 2px;
}

body.college-page-approvals .dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: var(--pt-navy);
    border-radius: 4px;
}

body.college-page-approvals .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: var(--pt-navy-soft);
}


/* =========  THEAD — Clean Minimal  ========= */

body.college-page-approvals table.dataTable thead th,
body.college-page-approvals table.college-data-table thead th {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 12px 18px !important;
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    position: relative;
    white-space: nowrap;
}


/* Subtle hover on header */

body.college-page-approvals table.dataTable thead th:hover,
body.college-page-approvals table.college-data-table thead th:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    cursor: pointer;
}


/* DataTables default sorting icons — keep them bright on dark bg */

body.college-page-approvals table.dataTable thead .sorting::before,
body.college-page-approvals table.dataTable thead .sorting::after,
body.college-page-approvals table.dataTable thead .sorting_asc::before,
body.college-page-approvals table.dataTable thead .sorting_asc::after,
body.college-page-approvals table.dataTable thead .sorting_desc::before,
body.college-page-approvals table.dataTable thead .sorting_desc::after {
    opacity: 0.45;
    filter: brightness(4);
}

body.college-page-approvals table.dataTable thead .sorting_asc::after,
body.college-page-approvals table.dataTable thead .sorting_desc::before {
    opacity: 0.9;
    filter: brightness(4);
}


/* =========  TBODY ROWS — Elite Card-Row Design  ========= */

body.college-page-approvals table.dataTable tbody tr,
body.college-page-approvals table.college-data-table tbody tr {
    background-color: var(--pt-white) !important;
    border: none !important;
    margin-bottom: 10px !important;
    display: table-row;
    /* Keep table behavior for column sizing */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04) !important;
    position: relative;
}

body.college-page-approvals table.dataTable tbody tr:hover,
body.college-page-approvals table.college-data-table tbody tr:hover {
    background-color: var(--pt-white) !important;
    box-shadow: inset 4px 0 0 var(--pt-gold), 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    z-index: 5;
}


/* =========  TBODY CELLS — Minimal Depth  ========= */

body.college-page-approvals table.dataTable tbody td,
body.college-page-approvals table.college-data-table tbody td {
    padding: 16px 20px !important;
    vertical-align: middle !important;
    color: var(--pt-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 12px solid var(--pt-surface) !important;
    /* Thick "gap" using border */
}

body.college-page-approvals table.dataTable.no-footer {
    border-bottom: none !important;
}


/* =========  INFO & RECORD COUNT  ========= */

body.college-page-approvals .dataTables_wrapper .dataTables_info {
    font-size: 0.8rem;
    color: var(--pt-muted);
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
}


/* Bottom row (info + pagination) — this IS the last thing inside
   the card, so we give it the card's bottom padding directly.
   Both the div:last-child selector and the .pt-bottom-row class
   are used for maximum specificity across browsers.               */

body.college-page-approvals .dataTables_wrapper>div:last-child,
body.college-page-approvals .pt-bottom-row {
    padding-bottom: 1.25rem !important;
    padding-top: 1rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* =========  PAGINATION  ========= */

body.college-page-approvals .dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    gap: 4px;
}

body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    margin: 0 2px !important;
    border: 1.5px solid var(--pt-border) !important;
    border-radius: 50% !important;
    background: var(--pt-white) !important;
    color: var(--pt-text) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
    line-height: 1 !important;
    text-align: center !important;
}

body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.current):not(.disabled) {
    border-color: var(--pt-gold) !important;
    background: var(--pt-gold) !important;
    color: var(--pt-navy) !important;
    box-shadow: 0 4px 12px var(--pt-gold-glow) !important;
    transform: translateY(-1px);
}

body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border-color: var(--pt-navy) !important;
    background: var(--pt-navy) !important;
    color: var(--pt-gold) !important;
    box-shadow: 0 4px 14px rgba(10, 14, 39, 0.22) !important;
    transform: translateY(-1px);
}

body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.35 !important;
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
}


/* Prev / Next special pill shape */

body.college-page-approvals .dataTables_wrapper .dataTables_paginate .previous,
body.college-page-approvals .dataTables_wrapper .dataTables_paginate .next {
    width: auto !important;
    padding: 0 14px !important;
    border-radius: var(--pt-radius-pill) !important;
    font-size: 0.77rem !important;
}


/* =========  SPECIAL ROWS (Section headers inside tables)  ========= */

body.college-page-approvals tr.section-header-row td,
body.college-page-approvals tr.company-header-row td {
    background: linear-gradient(90deg, var(--pt-navy) 0%, var(--pt-navy-soft) 100%) !important;
    color: var(--pt-gold) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 10px 16px !important;
    border-bottom: none !important;
}

body.college-page-approvals tr.section-header-row:hover,
body.college-page-approvals tr.company-header-row:hover {
    background: linear-gradient(90deg, var(--pt-navy) 0%, var(--pt-navy-soft) 100%) !important;
    box-shadow: none !important;
}

body.college-page-approvals tr.section-header-row td::before,
body.college-page-approvals tr.company-header-row td::before {
    display: none;
}


/* =========  DATA BADGES  ========= */

body.college-page-approvals .package-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2);
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.college-page-approvals table tbody tr:hover .package-badge {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 5px 14px rgba(16, 185, 129, 0.28);
}


/* =========  MODAL  ========= */

body.college-page-approvals .tm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.college-page-approvals .tm-modal-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 2rem 2rem 1.75rem;
    width: 400px;
    max-width: 95vw;
    position: relative;
    box-shadow: 0 24px 60px rgba(10, 14, 39, 0.25);
    border-top: 4px solid var(--pt-gold);
    animation: approvals-pt-modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes approvals-pt-modal-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(16px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

body.college-page-approvals .btn-close-modal {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: var(--pt-muted);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

body.college-page-approvals .btn-close-modal:hover {
    color: var(--pt-navy);
    background: #f1f5f9;
}

body.college-page-approvals .tm-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}


/* =========  RESPONSIVE  ========= */

@media (max-width: 768px) {
    body.college-page-approvals .college-table-wrapper,
    body.college-page-approvals .college-datatable-wrapper {
        padding: 1rem;
        border-radius: var(--pt-radius-md);
    }
    body.college-page-approvals table.dataTable tbody td,
    body.college-page-approvals table.college-data-table tbody td {
        padding: 10px 10px !important;
        font-size: 0.82rem;
    }
    body.college-page-approvals table.dataTable thead th,
    body.college-page-approvals table.college-data-table thead th {
        padding: 10px 10px !important;
    }
    body.college-page-approvals .dataTables_wrapper .dataTables_filter input {
        width: 160px;
        min-width: 120px;
    }
    body.college-page-approvals .dataTables_wrapper .dataTables_filter input:focus {
        width: 200px;
    }
    body.college-page-approvals .dataTables_wrapper .dataTables_paginate {
        justify-content: center;
        flex-wrap: wrap;
    }
    body.college-page-approvals .dataTables_wrapper .dataTables_paginate .paginate_button {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.74rem !important;
        margin: 1px !important;
    }
}


/* Datatable scroll container clips cleanly */

body.college-page-approvals .dataTables_scroll {
    overflow: hidden;
}


/* ==========================================================================
   FINAL OVERRIDE: ZERO-GAP SPACER HEADER
   This MUST come after all header/row styles to ensure the hidden spacer
   occupies exactly 0px of height.
   ========================================================================== */

body.college-page-approvals .dataTables_scrollBody thead,
body.college-page-approvals .dataTables_scrollBody thead tr,
body.college-page-approvals .dataTables_scrollBody thead th,
body.college-page-approvals .dataTables_scrollBody thead td {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

body.college-page-approvals .dataTables_scrollBody thead th::after,
body.college-page-approvals .dataTables_scrollBody thead th::before,
body.college-page-approvals .dataTables_scrollBody thead td::after,
body.college-page-approvals .dataTables_scrollBody thead td::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
    line-height: 0 !important;
}


/* Status Badges for Tables */

body.college-page-approvals .status-approved {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

body.college-page-approvals .status-review {
    background: #fef9c3;
    color: #854d0e;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}


/* Compact Elite Approval Cards */

body.college-page-approvals .gold-badge-card {
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

body.college-page-approvals .gold-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.15);
    border-color: var(--gold);
    background: linear-gradient(to bottom, #ffffff, #fffdf5);
}

body.college-page-approvals .gold-badge-card i {
    font-size: 2.2rem;
    color: #d97706;
    /* Solid Amber for high contrast */
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

body.college-page-approvals .gold-badge-card:hover i {
    transform: scale(1.1);
}

body.college-page-approvals .gold-badge-card h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}


/* AICTE & JNTUK Tab Layout tweaks */

body.college-page-approvals .approval-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}


/* Extracted inline declarations */

body.college-page-approvals .college-approvals-inline-1 {
    z-index: 2;
}


/* Page: areaofresearch */


/* Style for the sidebar container */

body.college-page-areaofresearch .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-areaofresearch .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-areaofresearch .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-areaofresearch .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-areaofresearch .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-areaofresearch .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-areaofresearch .college-areaofresearch-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-areaofresearch .college-areaofresearch-inline-2 {
    text-align: center;
    color: red;
}

body.college-page-areaofresearch .college-areaofresearch-inline-3 {
    color: black;
}


/* Page: assignments */


/* Assignment Link Button */

body.college-page-assignments .assignment-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

body.college-page-assignments .assignment-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.5);
    color: var(--navy);
}

body.college-page-assignments .assignment-link i {
    margin-right: 0.5rem;
}


/* Badge for Details */

body.college-page-assignments .detail-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-dark);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.3);
}


/* Code Badge */

body.college-page-assignments .code-badge {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--gold-dark);
}


/* Extracted inline declarations */

body.college-page-assignments .college-assignments-inline-1 {
    z-index: 2;
}


/* Page: bca */

body.college-page-bca .sidebar-content {
    position: relative;
}

body.college-page-bca .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}

body.college-page-bca .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}

body.college-page-bca .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}


/* Style for the sidebar container */

body.college-page-bca .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}


/* Style for the links */

body.college-page-bca .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}

body.college-page-bca .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}

body.college-page-bca .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    color: #343a40;
    /* Dark text color */
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}


/* Style for the icon */

body.college-page-bca .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    font-size: 28px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
}


/* Hover effect */

body.college-page-bca .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    border-radius: 50px;
    /* Rounded corners on hover */
}


/* Sidebar header */

body.college-page-bca .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}


/* Extracted inline declarations */

body.college-page-bca .college-bca-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}

body.college-page-bca .college-bca-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}

body.college-page-bca .college-bca-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-bca .college-bca-inline-4 {
    text-align: center;
    color: red;
}

body.college-page-bca .college-bca-inline-5 {
    color: black;
}

body.college-page-bca .college-bca-inline-6 {
    text-decoration: underline;
}

body.college-page-bca .college-bca-inline-7 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-8 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-9 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-10 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-11 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-12 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-13 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-14 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-15 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-16 {
    color: #046A10;
}

body.college-page-bca .college-bca-inline-17 {
    color: #046A10;
}


/* Page: buildingarea */


/* Style for the sidebar container */

body.college-page-buildingarea .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-buildingarea .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-buildingarea .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-buildingarea .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-buildingarea .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-buildingarea .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-buildingarea .college-buildingarea-inline-1 {
    z-index: 2;
}

body.college-page-buildingarea .college-buildingarea-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-buildingarea .college-buildingarea-inline-3 {
    text-align: center;
    color: red;
}

body.college-page-buildingarea .college-buildingarea-inline-4 {
    color: black;
}

body.college-page-buildingarea .college-buildingarea-inline-5 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-6 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-7 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-8 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-9 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-10 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-11 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-12 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-13 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-14 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-15 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-16 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-17 {
    color: #ff0000;
}

body.college-page-buildingarea .college-buildingarea-inline-18 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-19 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-20 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-21 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-22 {
    color: #ff0000;
}

body.college-page-buildingarea .college-buildingarea-inline-23 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-24 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-25 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-26 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-27 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-28 {
    color: #ff0000;
}

body.college-page-buildingarea .college-buildingarea-inline-29 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-30 {
    color: #000000;
}

body.college-page-buildingarea .college-buildingarea-inline-31 {
    color: #000000;
}


/* Page: cafeteria */


/* Style for the sidebar container */

body.college-page-cafeteria .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-cafeteria .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-cafeteria .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-cafeteria .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-cafeteria .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-cafeteria .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-cafeteria .college-cafeteria-inline-1 {
    z-index: 2;
}

body.college-page-cafeteria .college-cafeteria-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-cafeteria .college-cafeteria-inline-3 {
    text-align: center;
    color: red;
}

body.college-page-cafeteria .college-cafeteria-inline-4 {
    color: black;
}


/* Page: capacitybuildingandskillsenhancement */


/* Style for the sidebar container */

body.college-page-capacitybuildingandskillsenhancement .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-capacitybuildingandskillsenhancement .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-capacitybuildingandskillsenhancement .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-capacitybuildingandskillsenhancement .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-capacitybuildingandskillsenhancement .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-capacitybuildingandskillsenhancement .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Style for green button */

body.college-page-capacitybuildingandskillsenhancement .green-button {
    background-color: green;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}


/* Extracted inline declarations */

body.college-page-capacitybuildingandskillsenhancement .college-capacitybuildingandskillsenhancement-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-capacitybuildingandskillsenhancement .college-capacitybuildingandskillsenhancement-inline-2 {
    text-align: center;
    color: red;
}

body.college-page-capacitybuildingandskillsenhancement .college-capacitybuildingandskillsenhancement-inline-3 {
    color: black;
}

body.college-page-capacitybuildingandskillsenhancement .college-capacitybuildingandskillsenhancement-inline-4 {
    font-size: 20px;
}


/* Page: careerandguidelines */


/* Style for the sidebar container */

body.college-page-careerandguidelines .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-careerandguidelines .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-careerandguidelines .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-careerandguidelines .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-careerandguidelines .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-careerandguidelines .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-careerandguidelines .college-careerandguidelines-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-2 {
    text-align: center;
    color: red;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-3 {
    color: black;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-4 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-5 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-6 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-7 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-8 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-9 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-10 {
    border-radius: 10px;
}

body.college-page-careerandguidelines .college-careerandguidelines-inline-11 {
    border-radius: 10px;
}


/* Page: circulars */


/* Extracted inline declarations */

body.college-page-circulars .college-circulars-inline-1 {
    justify-content: center;
}

body.college-page-circulars .college-circulars-inline-2 {
    width: 75px;
    font-size: 25px;
}

body.college-page-circulars .college-circulars-inline-3 {
    border-radius: 50px;
    background-color: #f71f1f;
}

body.college-page-circulars .college-circulars-inline-4 {
    color: #f60000;
    background-color: #18d6a2;
}

body.college-page-circulars .college-circulars-inline-5 {
    color: #f60000;
    background-color: #9cdf8791;
}

body.college-page-circulars .college-circulars-inline-6 {
    background-color: #eebea9;
}

body.college-page-circulars .college-circulars-inline-7 {
    background-color: #f2cd96;
}

body.college-page-circulars .college-circulars-inline-8 {
    background-color: #f18e70;
}

body.college-page-circulars .college-circulars-inline-9 {
    background-color: #afbfe6;
}


/* Page: civil */

body.college-page-civil .sidebar-content {
    position: relative;
}

body.college-page-civil .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}

body.college-page-civil .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}

body.college-page-civil .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}


/* Style for the sidebar container */

body.college-page-civil .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}


/* Style for the links */

body.college-page-civil .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}

body.college-page-civil .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}

body.college-page-civil .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    color: #343a40;
    /* Dark text color */
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}


/* Style for the icon */

body.college-page-civil .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    font-size: 28px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
}


/* Hover effect */

body.college-page-civil .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    border-radius: 50px;
    /* Rounded corners on hover */
}


/* Sidebar header */

body.college-page-civil .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}


/* Extracted inline declarations */

body.college-page-civil .college-civil-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}

body.college-page-civil .college-civil-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}

body.college-page-civil .college-civil-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-civil .college-civil-inline-4 {
    text-align: center;
    color: red;
}

body.college-page-civil .college-civil-inline-5 {
    color: black;
}

body.college-page-civil .college-civil-inline-6 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-7 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-8 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-9 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-10 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-11 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-12 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-13 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-14 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-15 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-16 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-17 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-18 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-19 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-20 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-21 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-22 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-23 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-24 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-25 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-26 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-27 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-28 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-29 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-30 {
    color: #ff0000;
}

body.college-page-civil .college-civil-inline-31 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-32 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-33 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-34 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-35 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-36 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-37 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-38 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-39 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-40 {
    color: #000000;
}

body.college-page-civil .college-civil-inline-41 {
    text-align: center;
}

body.college-page-civil .college-civil-inline-42 {
    text-decoration: underline;
}

body.college-page-civil .college-civil-inline-43 {
    color: #d35400;
}

body.college-page-civil .college-civil-inline-44 {
    color: #d35400;
}

body.college-page-civil .college-civil-inline-45 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-46 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-47 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-48 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-49 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-50 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-51 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-52 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-53 {
    color: #046A10;
}

body.college-page-civil .college-civil-inline-54 {
    color: #046A10;
}


/* Page: collegeov */


/* Extracted inline declarations */

body.college-page-collegeov .college-collegeov-inline-1 {
    z-index: 2;
}

body.college-page-collegeov .college-collegeov-inline-2 {
    max-width: 160px;
    height: auto;
}

body.college-page-collegeov .college-collegeov-inline-3 {
    line-height: 1.8;
}


/* Page: committees */


/* Source: css/premium-tablesf9e3.css */


/* ==========================================================================
   COLLEGE Elite Premium Tables v3.0
   DataTables-integrated styling with gold-navy glassmorphism theme.
   Features: compact toolbar, pill search, animated pagination, premium rows.
   ========================================================================== */


/* =========  Variables  ========= */


/* =========  Wrapper Card  =========
   Only ONE card layer shows at a time:
   - .college-table-wrapper = card for plain tables (no DataTables)
   - .college-datatable-wrapper = card for DataTables-enhanced tables
   When DataTables initialises inside .college-table-wrapper, the outer
   shell is stripped via :has() so we never get a box-inside-a-box.
========================================= */


/* Default card style for plain tables */

body.college-page-committees .college-table-wrapper {
    background: var(--pt-white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--pt-radius-lg);
    box-shadow: 0 8px 32px rgba(10, 14, 39, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--pt-border);
    margin-bottom: 2rem;
    position: relative;
}


/* For DataTables, the wrapper itself becomes invisible and floats the controls! */

body.college-page-committees .college-datatable-wrapper {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 2.5rem;
    position: relative;
}


/* Align floating toolbar (Search / Length / Export) exactly with the table edges */

body.college-page-committees .college-datatable-wrapper>.d-flex.mb-3 {
    margin-bottom: 0 !important;
    /* Touch header exactly */
    padding: 10px 1.5rem 0.5rem;
    /* Only bottom breathing room */
}


/* When DataTables wraps a table that was already inside a card wrapper,
   flatten the old parent so we don't get double backgrounds/borders */

body.college-page-committees .college-table-wrapper:has(.college-datatable-wrapper),
body.college-page-committees .college-table-wrapper:has(>div[id$="_wrapper"]),
body.college-page-committees .dept-table-wrapper:has(.college-datatable-wrapper),
body.college-page-committees .dept-table-wrapper:has(>div[id$="_wrapper"]),
body.college-page-committees .fee-card:has(.college-datatable-wrapper),
body.college-page-committees .fee-card:has(>div[id$="_wrapper"]),
body.college-page-committees .fee-card:has(table) {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 0 !important;
}

body.college-page-committees .table-responsive:has(>div[id$="_wrapper"]) {
    overflow: visible !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-bottom: 0 !important;
}


/* -----------------------------------------------------
   CLEAN MINIMAL TABLE CARD
   ----------------------------------------------------- */

body.college-page-committees .dataTables_scroll {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
}


/* Force everything inside to snap to the bounds */

body.college-page-committees .dataTables_scrollHead,
body.college-page-committees .dataTables_scrollBody,
body.college-page-committees .dataTables_scrollHeadInner {
    margin: 0 !important;
    padding: 0 !important;
}


/* Eliminate white space extending below the bottom row */

body.college-page-committees .dataTables_scrollBody {
    flex-grow: 1;
    height: auto !important;
    max-height: 420px;
}


/* Length "Show X entries" control */

body.college-page-committees .dataTables_wrapper .dataTables_length {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    white-space: nowrap;
}

body.college-page-committees .dataTables_wrapper .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.82rem;
    color: var(--pt-muted);
}

body.college-page-committees .dataTables_wrapper .dataTables_length select {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid var(--pt-border);
    border-radius: var(--pt-radius-sm);
    padding: 5px 24px 5px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--pt-navy);
    background-color: var(--pt-surface);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

body.college-page-committees .dataTables_wrapper .dataTables_length select:hover,
body.college-page-committees .dataTables_wrapper .dataTables_length select:focus {
    border-color: var(--pt-gold);
    box-shadow: 0 0 0 3px var(--pt-gold-glow);
}


/* Search input  */

body.college-page-committees .dataTables_wrapper .dataTables_filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.college-page-committees .dataTables_wrapper .dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    white-space: nowrap;
}

body.college-page-committees .dataTables_wrapper .dataTables_filter input {
    border: 1px solid rgba(10, 25, 47, 0.15);
    border-radius: var(--pt-radius-pill);
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--pt-surface);
    color: var(--pt-navy);
    width: 230px;
    min-width: 160px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

body.college-page-committees .dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--pt-gold);
    background: var(--pt-white);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 280px;
    transform: translateY(-1px);
}

body.college-page-committees .dataTables_wrapper .dataTables_filter input::placeholder {
    color: #94a3b8;
    font-size: 0.80rem;
}


/* =========  Upload / Download Icon Buttons  ========= */

body.college-page-committees .btn-dt-download,
body.college-page-committees .btn-dt-upload {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.college-page-committees .btn-dt-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3) !important;
}

body.college-page-committees .btn-dt-upload:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3) !important;
}


/* =========  TABLE BASE  ========= */

body.college-page-committees table.dataTable,
body.college-page-committees table.college-data-table {
    border-collapse: collapse !important;
    /* Changed from separate to collapse for perfect flush edges */
    border-spacing: 0;
    width: 100% !important;
    border: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    /* Strip inner table radius */
    box-shadow: none !important;
    /* Strip inner table shadow */
    background: transparent !important;
    font-size: 0.88rem;
}


/* Force header to be completely flush edge-to-edge, removing all inner rounded corners */

body.college-page-committees table.dataTable thead th:first-child,
body.college-page-committees table.college-data-table thead th:first-child,
body.college-page-committees table.dataTable thead th:last-child,
body.college-page-committees table.college-data-table thead th:last-child {
    border-radius: 0 !important;
}


/* =========  SCROLL CONTAINER (replaces pagination)  ========= */


/* ---- FIX: DARK BAR BELOW HEADER ----
   DataTables scrollY splits the table into:
     .dataTables_scrollHead  = clone <thead> (sticky, visible)
     .dataTables_scrollBody  = real <tbody> + spacer <thead> (invisible)
   We must COMPLTELY zero out the spacer so it adds 0px height.
--------------------------------------- */


/* (Moved to end of file for priority) */


/* Sticky header container — clean edge-to-edge navy */

body.college-page-committees .dataTables_scrollHead {
    overflow: hidden !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-radius: 16px 16px 0 0 !important;
    border-bottom: 3px solid var(--pt-gold) !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

body.college-page-committees .dataTables_scrollHeadInner,
body.college-page-committees .dataTables_scrollHeadInner table,
body.college-page-committees .dataTables_scrollBody,
body.college-page-committees .dataTables_scrollBody table {
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
    border-spacing: 0 !important;
}


/* Scrollable body — spacing between rows to show card effect */

body.college-page-committees .dataTables_scrollBody {
    overflow-y: auto !important;
    overflow-x: auto !important;
    padding: 0 !important;
}


/* Ultra slim navy scrollbar for an elegant look */

body.college-page-committees .dataTables_scrollBody::-webkit-scrollbar {
    width: 6px;
    /* Slightly wider for usability, but still very sleek */
    height: 6px;
}

body.college-page-committees .dataTables_scrollBody::-webkit-scrollbar-track {
    background: transparent;
    /* Ensures seamless blend, no track strip */
    border-radius: 0 0 var(--pt-radius-lg) 0;
    /* Match outer corner */
    margin-top: 2px;
    margin-bottom: 2px;
}

body.college-page-committees .dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: var(--pt-navy);
    border-radius: 4px;
}

body.college-page-committees .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: var(--pt-navy-soft);
}


/* =========  THEAD — Clean Minimal  ========= */

body.college-page-committees table.dataTable thead th,
body.college-page-committees table.college-data-table thead th {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 12px 18px !important;
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    position: relative;
    white-space: nowrap;
}


/* Subtle hover on header */

body.college-page-committees table.dataTable thead th:hover,
body.college-page-committees table.college-data-table thead th:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    cursor: pointer;
}


/* DataTables default sorting icons — keep them bright on dark bg */

body.college-page-committees table.dataTable thead .sorting::before,
body.college-page-committees table.dataTable thead .sorting::after,
body.college-page-committees table.dataTable thead .sorting_asc::before,
body.college-page-committees table.dataTable thead .sorting_asc::after,
body.college-page-committees table.dataTable thead .sorting_desc::before,
body.college-page-committees table.dataTable thead .sorting_desc::after {
    opacity: 0.45;
    filter: brightness(4);
}

body.college-page-committees table.dataTable thead .sorting_asc::after,
body.college-page-committees table.dataTable thead .sorting_desc::before {
    opacity: 0.9;
    filter: brightness(4);
}


/* =========  TBODY ROWS — Elite Card-Row Design  ========= */

body.college-page-committees table.dataTable tbody tr,
body.college-page-committees table.college-data-table tbody tr {
    background-color: var(--pt-white) !important;
    border: none !important;
    margin-bottom: 10px !important;
    display: table-row;
    /* Keep table behavior for column sizing */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04) !important;
    position: relative;
}

body.college-page-committees table.dataTable tbody tr:hover,
body.college-page-committees table.college-data-table tbody tr:hover {
    background-color: var(--pt-white) !important;
    box-shadow: inset 4px 0 0 var(--pt-gold), 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    z-index: 5;
}


/* =========  TBODY CELLS — Minimal Depth  ========= */

body.college-page-committees table.dataTable tbody td,
body.college-page-committees table.college-data-table tbody td {
    padding: 16px 20px !important;
    vertical-align: middle !important;
    color: var(--pt-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 12px solid var(--pt-surface) !important;
    /* Thick "gap" using border */
}

body.college-page-committees table.dataTable.no-footer {
    border-bottom: none !important;
}


/* =========  INFO & RECORD COUNT  ========= */

body.college-page-committees .dataTables_wrapper .dataTables_info {
    font-size: 0.8rem;
    color: var(--pt-muted);
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
}


/* Bottom row (info + pagination) — this IS the last thing inside
   the card, so we give it the card's bottom padding directly.
   Both the div:last-child selector and the .pt-bottom-row class
   are used for maximum specificity across browsers.               */

body.college-page-committees .dataTables_wrapper>div:last-child,
body.college-page-committees .pt-bottom-row {
    padding-bottom: 1.25rem !important;
    padding-top: 1rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* =========  PAGINATION  ========= */

body.college-page-committees .dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    gap: 4px;
}

body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    margin: 0 2px !important;
    border: 1.5px solid var(--pt-border) !important;
    border-radius: 50% !important;
    background: var(--pt-white) !important;
    color: var(--pt-text) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
    line-height: 1 !important;
    text-align: center !important;
}

body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.current):not(.disabled) {
    border-color: var(--pt-gold) !important;
    background: var(--pt-gold) !important;
    color: var(--pt-navy) !important;
    box-shadow: 0 4px 12px var(--pt-gold-glow) !important;
    transform: translateY(-1px);
}

body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border-color: var(--pt-navy) !important;
    background: var(--pt-navy) !important;
    color: var(--pt-gold) !important;
    box-shadow: 0 4px 14px rgba(10, 14, 39, 0.22) !important;
    transform: translateY(-1px);
}

body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.35 !important;
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
}


/* Prev / Next special pill shape */

body.college-page-committees .dataTables_wrapper .dataTables_paginate .previous,
body.college-page-committees .dataTables_wrapper .dataTables_paginate .next {
    width: auto !important;
    padding: 0 14px !important;
    border-radius: var(--pt-radius-pill) !important;
    font-size: 0.77rem !important;
}


/* =========  SPECIAL ROWS (Section headers inside tables)  ========= */

body.college-page-committees tr.section-header-row td,
body.college-page-committees tr.company-header-row td {
    background: linear-gradient(90deg, var(--pt-navy) 0%, var(--pt-navy-soft) 100%) !important;
    color: var(--pt-gold) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 10px 16px !important;
    border-bottom: none !important;
}

body.college-page-committees tr.section-header-row:hover,
body.college-page-committees tr.company-header-row:hover {
    background: linear-gradient(90deg, var(--pt-navy) 0%, var(--pt-navy-soft) 100%) !important;
    box-shadow: none !important;
}

body.college-page-committees tr.section-header-row td::before,
body.college-page-committees tr.company-header-row td::before {
    display: none;
}


/* =========  DATA BADGES  ========= */

body.college-page-committees .package-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2);
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.college-page-committees table tbody tr:hover .package-badge {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 5px 14px rgba(16, 185, 129, 0.28);
}


/* =========  MODAL  ========= */

body.college-page-committees .tm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.college-page-committees .tm-modal-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 2rem 2rem 1.75rem;
    width: 400px;
    max-width: 95vw;
    position: relative;
    box-shadow: 0 24px 60px rgba(10, 14, 39, 0.25);
    border-top: 4px solid var(--pt-gold);
    animation: committees-pt-modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes committees-pt-modal-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(16px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

body.college-page-committees .btn-close-modal {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: var(--pt-muted);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

body.college-page-committees .btn-close-modal:hover {
    color: var(--pt-navy);
    background: #f1f5f9;
}

body.college-page-committees .tm-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}


/* =========  RESPONSIVE  ========= */

@media (max-width: 768px) {
    body.college-page-committees .college-table-wrapper,
    body.college-page-committees .college-datatable-wrapper {
        padding: 1rem;
        border-radius: var(--pt-radius-md);
    }
    body.college-page-committees table.dataTable tbody td,
    body.college-page-committees table.college-data-table tbody td {
        padding: 10px 10px !important;
        font-size: 0.82rem;
    }
    body.college-page-committees table.dataTable thead th,
    body.college-page-committees table.college-data-table thead th {
        padding: 10px 10px !important;
    }
    body.college-page-committees .dataTables_wrapper .dataTables_filter input {
        width: 160px;
        min-width: 120px;
    }
    body.college-page-committees .dataTables_wrapper .dataTables_filter input:focus {
        width: 200px;
    }
    body.college-page-committees .dataTables_wrapper .dataTables_paginate {
        justify-content: center;
        flex-wrap: wrap;
    }
    body.college-page-committees .dataTables_wrapper .dataTables_paginate .paginate_button {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.74rem !important;
        margin: 1px !important;
    }
}


/* Datatable scroll container clips cleanly */

body.college-page-committees .dataTables_scroll {
    overflow: hidden;
}


/* ==========================================================================
   FINAL OVERRIDE: ZERO-GAP SPACER HEADER
   This MUST come after all header/row styles to ensure the hidden spacer
   occupies exactly 0px of height.
   ========================================================================== */

body.college-page-committees .dataTables_scrollBody thead,
body.college-page-committees .dataTables_scrollBody thead tr,
body.college-page-committees .dataTables_scrollBody thead th,
body.college-page-committees .dataTables_scrollBody thead td {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

body.college-page-committees .dataTables_scrollBody thead th::after,
body.college-page-committees .dataTables_scrollBody thead th::before,
body.college-page-committees .dataTables_scrollBody thead td::after,
body.college-page-committees .dataTables_scrollBody thead td::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
    line-height: 0 !important;
}


/* Compact Elite Approval Cards (Bridged from Approvals Page) */

body.college-page-committees .gold-badge-card {
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

body.college-page-committees .gold-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.15);
    border-color: var(--gold);
    background: linear-gradient(to bottom, #ffffff, #fffdf5);
}

body.college-page-committees .gold-badge-card i {
    font-size: 2.2rem;
    color: #d97706;
    /* Solid Amber */
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

body.college-page-committees .gold-badge-card:hover i {
    transform: scale(1.1);
}

body.college-page-committees .gold-badge-card h5 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

body.college-page-committees .committee-header {
    background: #f8fafc;
    border-left: 5px solid var(--gold);
    padding: 1.25rem 1.75rem;
    margin-bottom: 25px;
    border-radius: 4px 16px 16px 4px;
    font-weight: 800;
    color: #0f172a;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-transform: none;
}

body.college-page-committees .accordion-button:not(.collapsed) {
    background: rgba(251, 191, 36, 0.05);
    color: var(--navy);
    font-weight: 700;
    box-shadow: none;
}

body.college-page-committees .accordion-button {
    font-weight: 600;
    color: #475569;
}

body.college-page-committees .accordion-item {
    border: 1px solid #f1f5f9;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
}


/* Extracted inline declarations */

body.college-page-committees .college-committees-inline-1 {
    z-index: 2;
}


/* Page: companiesvisited */

body.college-page-companiesvisited .company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    padding: 10px 0;
}

body.college-page-companiesvisited .company-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

body.college-page-companiesvisited .company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #fef3c7);
    transition: height 0.3s ease;
    z-index: -1;
}

body.college-page-companiesvisited .company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.5);
}

body.college-page-companiesvisited .company-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

body.college-page-companiesvisited .company-logo-wrapper {
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

body.college-page-companiesvisited .company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.7;
}

body.college-page-companiesvisited .company-card:hover .company-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

body.college-page-companiesvisited .company-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

body.college-page-companiesvisited .company-card:hover .company-name {
    opacity: 1;
    color: var(--gold-dark);
}


/* Extracted inline declarations */

body.college-page-companiesvisited .college-companiesvisited-inline-1 {
    z-index: 2;
}


/* Page: computercenter */


/* Style for the sidebar container */

body.college-page-computercenter .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-computercenter .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-computercenter .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-computercenter .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-computercenter .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-computercenter .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-computercenter .college-computercenter-inline-1 {
    z-index: 2;
}

body.college-page-computercenter .college-computercenter-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-computercenter .college-computercenter-inline-3 {
    text-align: center;
    color: red;
}

body.college-page-computercenter .college-computercenter-inline-4 {
    color: black;
}


/* Page: contact-us */

body.college-page-contact-us .contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
    overflow: hidden;
    transition: all 0.3s;
}

body.college-page-contact-us .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
}

body.college-page-contact-us .contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

body.college-page-contact-us .contact-icon-wrapper i {
    font-size: 2rem;
    color: #0f172a;
}

body.college-page-contact-us .contact-info-value {
    color: #334155;
    font-weight: 600;
    font-size: 1.1rem;
}

body.college-page-contact-us .contact-info-value a {
    color: #334155;
    text-decoration: none;
    transition: color 0.3s;
}

body.college-page-contact-us .contact-info-value a:hover {
    color: #f59e0b;
}

body.college-page-contact-us .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 450px;
}

body.college-page-contact-us .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

body.college-page-contact-us .social-connect {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

body.college-page-contact-us .social-icon-link {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body.college-page-contact-us .social-icon-link:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

body.college-page-contact-us .social-icon-link.facebook:hover {
    color: #1877f2;
    background: #e7f3ff;
}

body.college-page-contact-us .social-icon-link.instagram:hover {
    color: #e4405f;
    background: #ffe4e9;
}

body.college-page-contact-us .social-icon-link.linkedin:hover {
    color: #0077b5;
    background: #e7f5ff;
}

body.college-page-contact-us .social-icon-link.youtube:hover {
    color: #ff0000;
    background: #ffe4e4;
}

body.college-page-contact-us .social-icon-link.whatsapp:hover {
    color: #25d366;
    background: #e4ffe9;
}

body.college-page-contact-us .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

body.college-page-contact-us .section-title::after {
    display: none;
}

body.college-page-contact-us .contact-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

body.college-page-contact-us .office-hours {
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

body.college-page-contact-us .office-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #fde68a;
}

body.college-page-contact-us .office-hours-item:last-child {
    border-bottom: none;
}

body.college-page-contact-us .office-day {
    font-weight: 600;
    color: #334155;
}

body.college-page-contact-us .office-time {
    color: #64748b;
}


/* Extracted inline declarations */

body.college-page-contact-us .college-contact-us-inline-1 {
    z-index: 2;
}

body.college-page-contact-us .college-contact-us-inline-2 {
    background: linear-gradient(to right, #fff, #fffbeb);
    border: 1px solid #fcd34d;
}


/* Page: courses-offered */


/* === Hero Animations === */

body.college-page-courses-offered .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    animation: courses-offered-fadeInDown 1s ease-out;
}


/* === Integrated Content Styling === */

body.college-page-courses-offered .program-icon-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e2e8f0;
}

body.college-page-courses-offered .program-icon-header i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

body.college-page-courses-offered .program-icon-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: var(--navy);
    letter-spacing: -0.5px;
}


/* Table Beautification */

body.college-page-courses-offered .college-data-table thead th {
    border-bottom: 3px solid var(--gold);
    color: var(--gold);
}

body.college-page-courses-offered .college-data-table tbody tr {
    transition: transform 0.2s, box-shadow 0.2s;
}

body.college-page-courses-offered .college-data-table tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
    background: #fff;
}

body.college-page-courses-offered .college-data-table tbody tr:hover td {
    color: var(--navy);
}


/* Intake Badge */

body.college-page-courses-offered .intake-badge {
    background: #fffbeb;
    color: #d97706;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 1px solid #fcd34d;
    box-shadow: 0 2px 5px rgba(251, 191, 36, 0.15);
}


/* Admission Note Card */

body.college-page-courses-offered .admission-note-card {
    background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
    border: 1px solid #fcd34d;
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
    animation: courses-offered-slideUp 0.6s ease-out;
}

@keyframes courses-offered-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes courses-offered-slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes courses-offered-fadeUpItem {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.college-page-courses-offered .tab-pane.active .program-icon-header {
    animation: courses-offered-fadeUpItem 0.4s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

body.college-page-courses-offered .tab-pane.active .table-responsive {
    animation: courses-offered-fadeUpItem 0.4s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}


/* Extracted inline declarations */

body.college-page-courses-offered .college-courses-offered-inline-1 {
    z-index: 2;
}


/* Page: crttraining */


/* Style for the sidebar container */

body.college-page-crttraining .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-crttraining .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-crttraining .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-crttraining .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-crttraining .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-crttraining .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-crttraining .college-crttraining-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-crttraining .college-crttraining-inline-2 {
    text-align: center;
    color: red;
}

body.college-page-crttraining .college-crttraining-inline-3 {
    color: black;
    text-align: center;
}

body.college-page-crttraining .college-crttraining-inline-4 {
    background-color: green;
    border-radius: 14px;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}


/* Page: cse */


/* Source: css/csefd29.css */


/* 
 * CSE Department Premium Styles
 * Theme: Cyber-Security / Future Tech
 * Palette: Deep Navy, Neon Cyan, Electric Purple
 */


/* General Overrides */

body.college-page-cse {
    background-color: #f8fafc;
    /* Light background for content readability below hero */
    font-family: 'Inter', sans-serif;
}


/* Force Bootstrap Colors to Match Theme */

body.college-page-cse .text-primary {
    color: var(--cse-primary) !important;
}

body.college-page-cse .bg-primary {
    background-color: var(--cse-primary) !important;
}

body.college-page-cse .text-secondary {
    color: var(--cse-secondary) !important;
}

body.college-page-cse .bg-secondary {
    background-color: var(--cse-secondary) !important;
}

body.college-page-cse .btn-primary {
    background-color: var(--cse-primary);
    border-color: var(--cse-primary);
}

body.college-page-cse .btn-primary:hover {
    background-color: #0891b2;
    /* Cyan 600 */
    border-color: #0891b2;
}


/* --- Hero Section --- */

body.college-page-cse .cse-hero {
    position: relative;
    height: 90vh;
    /* Taller hero */
    min-height: 600px;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    text-align: center;
    border-bottom: 2px solid var(--cse-primary);
}

body.college-page-cse .cse-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.8)), url('../img/cse-pattern.html');
    /* Fallback or subtle texture */
    background-size: cover;
    z-index: 1;
}

body.college-page-cse #cse-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

body.college-page-cse .cse-hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.1);
}

body.college-page-cse .cse-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #22d3ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

body.college-page-cse .cse-hero p {
    font-size: 1.5rem;
    color: #e2e8f0;
    font-weight: 300;
}


/* --- Premium Cards --- */

body.college-page-cse .section-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.college-page-cse .section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.15);
}

body.college-page-cse .section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cse-primary), var(--cse-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

body.college-page-cse .section-card:hover::before {
    transform: scaleX(1);
}


/* Section Titles */

body.college-page-cse .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

body.college-page-cse .section-title i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cse-primary), var(--cse-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}


/* --- Features / Innovation Grid --- */

body.college-page-cse .innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

body.college-page-cse .innovation-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

body.college-page-cse .innovation-card:hover {
    border-color: var(--cse-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

body.college-page-cse .innovation-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--cse-primary), var(--cse-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

body.college-page-cse .innovation-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

body.college-page-cse .innovation-detail {
    font-size: 0.9rem;
    color: #64748b;
}


/* --- Tables (Elite Style) --- */

body.college-page-cse .college-table-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

body.college-page-cse .college-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

body.college-page-cse .college-data-table thead th {
    background: #0f172a;
    color: #f1f5f9;
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--cse-primary);
}

body.college-page-cse .college-data-table tbody tr {
    transition: background 0.2s;
}

body.college-page-cse .college-data-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
}

body.college-page-cse .college-data-table tbody tr:hover {
    background-color: #f8fafc;
}


/* Specific Badge Styles for CSE */

body.college-page-cse .badge-tech {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cse-primary);
    border: 1px solid rgba(6, 182, 212, 0.2);
}


/* Sidebar Active State Override */

body.college-page-cse .sidebar-link.active {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), transparent);
    color: var(--cse-primary);
    border-left: 4px solid var(--cse-primary);
}


/* Dark Mode / Tech Mode Elements */

body.college-page-cse .tech-card {
    background: #0f172a;
    color: white;
    border: 1px solid #1e293b;
}

body.college-page-cse .text-gradient {
    background: linear-gradient(135deg, var(--cse-primary), var(--cse-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Committees Table Specifics */

body.college-page-cse .committee-table thead tr {
    background: linear-gradient(90deg, #1e293b, #334155) !important;
}

body.college-page-cse .chairman-row {
    background-color: #f0fdf4 !important;
    /* Light green tint */
}


/* Enhanced Contact Card (Compatible with ECE structure) */

body.college-page-cse .hod-contact-card {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    /* Cyan Tint */
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    max-width: 600px;
    margin: 0 auto;
}

body.college-page-cse .hod-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.2);
    border-color: var(--cse-primary);
}

body.college-page-cse .hod-contact-card h3 {
    text-align: center;
    color: #0f172a;
    /* Dark Text */
}

body.college-page-cse .contact-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: white;
    border-radius: 50px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

body.college-page-cse .contact-link:hover {
    background: var(--cse-primary);
    color: white;
    border-color: var(--cse-primary);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}


/* Extracted inline declarations */

body.college-page-cse .college-cse-inline-1 {
    z-index: 2;
}

body.college-page-cse .college-cse-inline-2 {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.college-page-cse .college-cse-inline-3 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

body.college-page-cse .college-cse-inline-4 {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cse-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

body.college-page-cse .college-cse-inline-5 {
    background: rgba(99, 102, 241, 0.1);
    color: var(--cse-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

body.college-page-cse .college-cse-inline-6 {
    margin-bottom: 20px;
}

body.college-page-cse .college-cse-inline-7 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-8 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-9 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-10 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-11 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-12 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-13 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-14 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.college-page-cse .college-cse-inline-15 {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

body.college-page-cse .college-cse-inline-16 {
    max-width: 700px;
    margin: 0 auto;
}

body.college-page-cse .college-cse-inline-17 {
    width: 50px;
}

body.college-page-cse .college-cse-inline-18 {
    width: 50px;
}

body.college-page-cse .college-cse-inline-19 {
    max-height: 400px;
}

body.college-page-cse .college-cse-inline-20 {
    font-size: 0.75rem;
}


/* Page: cseaiml */

body.college-page-cseaiml .sidebar-content {
    position: relative;
}

body.college-page-cseaiml .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}

body.college-page-cseaiml .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}

body.college-page-cseaiml .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}


/* Style for the sidebar container */

body.college-page-cseaiml .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}


/* Style for the links */

body.college-page-cseaiml .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}

body.college-page-cseaiml .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}

body.college-page-cseaiml .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    color: #343a40;
    /* Dark text color */
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}


/* Style for the icon */

body.college-page-cseaiml .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    font-size: 28px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
}


/* Hover effect */

body.college-page-cseaiml .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    border-radius: 50px;
    /* Rounded corners on hover */
}


/* Sidebar header */

body.college-page-cseaiml .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}


/* Extracted inline declarations */

body.college-page-cseaiml .college-cseaiml-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}

body.college-page-cseaiml .college-cseaiml-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}

body.college-page-cseaiml .college-cseaiml-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-cseaiml .college-cseaiml-inline-4 {
    text-align: center;
    color: red;
}

body.college-page-cseaiml .college-cseaiml-inline-5 {
    color: black;
}

body.college-page-cseaiml .college-cseaiml-inline-6 {
    text-decoration: underline;
}

body.college-page-cseaiml .college-cseaiml-inline-7 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-8 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-9 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-10 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-11 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-12 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-13 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-14 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-15 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-16 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-17 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-18 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-19 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-20 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-21 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-22 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-23 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-24 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-25 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-26 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-27 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-28 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-29 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-30 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-31 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-32 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-33 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-34 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-35 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-36 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-37 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-38 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-39 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-40 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-41 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-42 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-43 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-44 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-45 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-46 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-47 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-48 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-49 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-50 {
    color: #000080;
}

body.college-page-cseaiml .college-cseaiml-inline-51 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-52 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-53 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-54 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-55 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-56 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-57 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-58 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-59 {
    color: #046A10;
}

body.college-page-cseaiml .college-cseaiml-inline-60 {
    color: #046A10;
}


/* Page: cseds */

body.college-page-cseds .sidebar-content {
    position: relative;
}

body.college-page-cseds .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}

body.college-page-cseds .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}

body.college-page-cseds .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}


/* Style for the sidebar container */

body.college-page-cseds .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}


/* Style for the links */

body.college-page-cseds .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}

body.college-page-cseds .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}

body.college-page-cseds .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    color: #343a40;
    /* Dark text color */
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}


/* Style for the icon */

body.college-page-cseds .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    font-size: 28px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
}


/* Hover effect */

body.college-page-cseds .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    border-radius: 50px;
    /* Rounded corners on hover */
}


/* Sidebar header */

body.college-page-cseds .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}


/* Extracted inline declarations */

body.college-page-cseds .college-cseds-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}

body.college-page-cseds .college-cseds-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}

body.college-page-cseds .college-cseds-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-cseds .college-cseds-inline-4 {
    text-align: center;
    color: red;
}

body.college-page-cseds .college-cseds-inline-5 {
    color: black;
}

body.college-page-cseds .college-cseds-inline-6 {
    text-decoration: underline;
}

body.college-page-cseds .college-cseds-inline-7 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-8 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-9 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-10 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-11 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-12 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-13 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-14 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-15 {
    color: #046A10;
}

body.college-page-cseds .college-cseds-inline-16 {
    color: #046A10;
}


/* Page: curriculumandsyllabus */

body.college-page-curriculumandsyllabus .curriculum-selector-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
}

body.college-page-curriculumandsyllabus .form-label-custom {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

body.college-page-curriculumandsyllabus .form-select-custom {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 500;
    color: #334155;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    cursor: pointer;
}

body.college-page-curriculumandsyllabus .form-select-custom:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    background-color: #fff;
}

body.college-page-curriculumandsyllabus .form-select-custom:disabled {
    background-color: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #e2e8f0;
}


/* Removed custom arrow ::after to fix double arrow issue */

body.college-page-curriculumandsyllabus .dropdown-wrapper {
    position: relative;
}

body.college-page-curriculumandsyllabus .iframe-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: none;
    margin-top: 2rem;
}

body.college-page-curriculumandsyllabus .iframe-wrapper.active {
    display: block;
    animation: curriculumandsyllabus-slideUpFade 0.5s ease-out;
}

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

body.college-page-curriculumandsyllabus .iframe-wrapper iframe {
    width: 100%;
    height: 350px;
    /* Reduced specific height as requested */
    border: none;
}

body.college-page-curriculumandsyllabus .no-selection-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    margin-top: 2rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

body.college-page-curriculumandsyllabus .no-selection-state:hover {
    border-color: var(--gold);
    background: #fffbeb;
}

body.college-page-curriculumandsyllabus .no-selection-state i {
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: curriculumandsyllabus-bounce 2s infinite;
}

@keyframes curriculumandsyllabus-bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Mobile Optimization for Iframe */

@media (max-width: 768px) {
    body.college-page-curriculumandsyllabus .iframe-wrapper iframe {
        height: 300px;
    }
    body.college-page-curriculumandsyllabus .curriculum-selector-card {
        padding: 1.5rem;
    }
}


/* Extracted inline declarations */

body.college-page-curriculumandsyllabus .college-curriculumandsyllabus-inline-1 {
    z-index: 2;
}


/* Page: developers */


/* ========== PREMIUM ELITE LIGHT THEME ========== */

body.college-page-developers {
    background-color: var(--bg-light);
}

body.college-page-developers .dev-page-wrapper {
    background-color: var(--bg-light);
    background-image: linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    /* Removed fixed gradients for fluid 60FPS scroll performance */
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}


/* Typography Overrides */

body.college-page-developers .dev-page-wrapper h1,
body.college-page-developers .dev-page-wrapper h2,
body.college-page-developers .dev-page-wrapper h3 {
    font-family: var(--font-heading);
}


/* ── HERO SECTION ── */

body.college-page-developers .nexus-hero {
    padding: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

body.college-page-developers .nexus-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.06), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

body.college-page-developers .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

body.college-page-developers .glitch-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #0f172a, var(--primary-blue), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
}

body.college-page-developers .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 650px;
    margin: 0 auto;
}

body.college-page-developers .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

body.college-page-developers .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary-blue);
    animation: developers-pulse 2s infinite;
}

@keyframes developers-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}


/* ── TECH MARQUEE ── */

body.college-page-developers .tech-track {
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    background: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
}

body.college-page-developers .tech-track::before,
body.college-page-developers .tech-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

body.college-page-developers .tech-track::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

body.college-page-developers .tech-track::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

body.college-page-developers .marquee {
    display: flex;
    gap: 60px;
    animation: developers-scroll 35s linear infinite;
    padding-left: 60px;
}

body.college-page-developers .marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.7;
    transition: opacity 0.4s, color 0.4s;
    white-space: nowrap;
}

body.college-page-developers .marquee-item i {
    font-size: 2.2rem;
    color: #0f172a;
}

body.college-page-developers .marquee-item:hover {
    opacity: 1;
    color: var(--primary-blue);
}

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


/* ── INNOVATION LAB (Initiative) ── */

body.college-page-developers .lab-section {
    padding: 40px 0;
    position: relative;
}

body.college-page-developers .lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width: 991px) {
    body.college-page-developers .lab-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

body.college-page-developers .glass-panel {
    background: var(--glass-bg);
    /* Removed blur for optimized scrolling performance */
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

body.college-page-developers .glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

body.college-page-developers .lab-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.2;
}

body.college-page-developers .highlight-text {
    color: var(--primary-blue);
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

body.college-page-developers .lab-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

body.college-page-developers .stipend-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    color: #fff;
}

body.college-page-developers .metrics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

body.college-page-developers .metric-box {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

body.college-page-developers .metric-box:hover {
    background: #fafafa;
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

body.college-page-developers .m-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

body.college-page-developers .m-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}


/* ── TEAM HUD ── */

body.college-page-developers .team-hud {
    padding: 30px 0 40px;
}

body.college-page-developers .section-header {
    text-align: center;
    margin-bottom: 30px;
}

body.college-page-developers .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
}

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


/* Horizontal Cyber Cards */

body.college-page-developers .cyber-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    opacity: 0;
    animation: developers-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* Staggered load */

body.college-page-developers .row>div:nth-child(1) .cyber-card {
    animation-delay: 0.1s;
}

body.college-page-developers .row>div:nth-child(2) .cyber-card {
    animation-delay: 0.2s;
}

body.college-page-developers .row>div:nth-child(3) .cyber-card {
    animation-delay: 0.3s;
}

body.college-page-developers .row>div:nth-child(4) .cyber-card {
    animation-delay: 0.4s;
}

body.college-page-developers .cyber-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 40px rgba(37, 99, 235, 0.1);
    transform: scale(1.02);
}

body.college-page-developers .card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

body.college-page-developers .cyber-card:hover .card-glow {
    opacity: 0.12;
}

body.college-page-developers .cyber-avatar-wrap {
    padding: 15px;
    position: relative;
    z-index: 2;
}

body.college-page-developers .cyber-avatar {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    object-fit: cover;
    filter: grayscale(40%) contrast(110%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.college-page-developers .cyber-card:hover .cyber-avatar {
    filter: grayscale(0) contrast(100%);
    border-color: var(--primary-blue);
    border-radius: 35px;
}

body.college-page-developers .cyber-info {
    padding: 0 20px 25px;
    flex: 1;
    z-index: 2;
}

body.college-page-developers .cyber-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

body.college-page-developers .cyber-role {
    color: var(--primary-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

body.college-page-developers .cyber-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

body.college-page-developers .cyber-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

body.college-page-developers .cyber-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
}

body.college-page-developers .cyber-social a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}


/* Developer Skill Tags */

body.college-page-developers .cyber-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

body.college-page-developers .skill-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

body.college-page-developers .cyber-card:hover .skill-tag {
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

@media(max-width: 768px) {
    body.college-page-developers .glitch-title {
        font-size: 3rem;
    }
    body.college-page-developers .lab-title {
        font-size: 2.2rem;
    }
    body.college-page-developers .cyber-card {
        padding-top: 20px;
    }
    body.college-page-developers .cyber-avatar-wrap {
        padding: 15px;
    }
    body.college-page-developers .cyber-info {
        padding: 0 20px 20px;
    }
}


/* ── CTA SECTION ── */

body.college-page-developers .vanguard-cta {
    margin-top: 20px;
    margin-bottom: 60px;
}

body.college-page-developers .cta-box {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

body.college-page-developers .cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

body.college-page-developers .cta-glow-corner {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

body.college-page-developers .cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

body.college-page-developers .cta-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 0;
    max-width: 600px;
    line-height: 1.6;
}

body.college-page-developers .cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--text-main);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

body.college-page-developers .cta-btn:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

@media(max-width: 768px) {
    body.college-page-developers .cta-box {
        padding: 35px 25px;
        text-align: center;
    }
    body.college-page-developers .cta-desc {
        margin: 0 auto 25px;
    }
}


/* ── TERMINAL UI ── */

body.college-page-developers .terminal-box {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    margin: 20px auto 0;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

body.college-page-developers .terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.college-page-developers .terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

body.college-page-developers .terminal-dot.red {
    background: #ff5f56;
}

body.college-page-developers .terminal-dot.yellow {
    background: #ffbd2e;
}

body.college-page-developers .terminal-dot.green {
    background: #27c93f;
}

body.college-page-developers .term-title {
    margin: 0 auto;
    font-size: 0.85rem;
    color: #64748b;
    font-family: monospace;
}

body.college-page-developers .terminal-body {
    padding: 15px 20px;
    font-family: monospace;
    color: #27c93f;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 140px;
}

body.college-page-developers .cursor-blink {
    animation: developers-blink 1s step-end infinite;
}

@keyframes developers-blink {
    50% {
        opacity: 0;
    }
}


/* ── ELITE MODAL BACKDROP (REMOVING DULLNESS) ── */

body.college-page-developers .modal-backdrop.show {
    background-color: rgba(248, 250, 252, 0.4) !important;
    /* Blends with bg-light */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    /* Safari support */
    opacity: 1 !important;
}


/* SLEEK VANGUARD TRIGGER ICON */

body.college-page-developers .vanguard-trigger {
    cursor: pointer;
    display: inline-block;
    transition: text-shadow 0.3s ease;
    white-space: nowrap;
}

body.college-page-developers .vanguard-trigger:hover {
    text-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
}

body.college-page-developers .vanguard-info-icon {
    font-size: 0.8rem;
    color: var(--primary-blue);
    position: relative;
    top: -12px;
    margin-left: 3px;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.college-page-developers .vanguard-trigger:hover .vanguard-info-icon {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
    text-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}


/* Extracted inline declarations */

body.college-page-developers .college-developers-inline-1 {
    color: var(--primary-blue)
}

body.college-page-developers .college-developers-inline-2 {
    width: 40px;
}

body.college-page-developers .college-developers-inline-3 {
    color: #61dafb;
}

body.college-page-developers .college-developers-inline-4 {
    color: #f7df1e;
}

body.college-page-developers .college-developers-inline-5 {
    color: #777bb4;
}

body.college-page-developers .college-developers-inline-6 {
    color: #00758f;
}

body.college-page-developers .college-developers-inline-7 {
    color: #3776ab;
}

body.college-page-developers .college-developers-inline-8 {
    color: #ff9900;
}

body.college-page-developers .college-developers-inline-9 {
    color: #2496ed;
}

body.college-page-developers .college-developers-inline-10 {
    color: #f24e1e;
}

body.college-page-developers .college-developers-inline-11 {
    color: #61dafb;
}

body.college-page-developers .college-developers-inline-12 {
    color: #f7df1e;
}

body.college-page-developers .college-developers-inline-13 {
    color: #777bb4;
}

body.college-page-developers .college-developers-inline-14 {
    color: #00758f;
}

body.college-page-developers .college-developers-inline-15 {
    color: #3776ab;
}

body.college-page-developers .college-developers-inline-16 {
    color: #ff9900;
}

body.college-page-developers .college-developers-inline-17 {
    color: #2496ed;
}

body.college-page-developers .college-developers-inline-18 {
    color: #f24e1e;
}

body.college-page-developers .college-developers-inline-19 {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

body.college-page-developers .college-developers-inline-20 {
    margin-bottom: 8px;
}

body.college-page-developers .college-developers-inline-21 {
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-22 {
    margin-bottom: 8px;
}

body.college-page-developers .college-developers-inline-23 {
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-24 {
    margin-bottom: 8px;
}

body.college-page-developers .college-developers-inline-25 {
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-26 {
    margin-bottom: 25px;
}

body.college-page-developers .college-developers-inline-27 {
    cursor: pointer;
}

body.college-page-developers .college-developers-inline-28 {
    font-size: 3rem;
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-29 {
    font-size: 3rem;
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-30 {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

body.college-page-developers .college-developers-inline-31 {
    color: var(--primary-gold);
}

body.college-page-developers .college-developers-inline-32 {
    z-index: 2;
}

body.college-page-developers .college-developers-inline-33 {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-blue);
}

body.college-page-developers .college-developers-inline-34 {
    padding: 30px 40px 10px;
}

body.college-page-developers .college-developers-inline-35 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

body.college-page-developers .college-developers-inline-36 {
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-37 {
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 10px;
}

body.college-page-developers .college-developers-inline-38 {
    padding: 20px 40px 40px;
    font-family: var(--font-body);
    color: var(--text-muted);
    line-height: 1.8;
}

body.college-page-developers .college-developers-inline-39 {
    font-size: 1.05rem;
}

body.college-page-developers .college-developers-inline-40 {
    background: rgba(37, 99, 235, 0.04);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 100%;
    transition: transform 0.3s;
    cursor: default;
}

body.college-page-developers .college-developers-inline-41 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

body.college-page-developers .college-developers-inline-42 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

body.college-page-developers .college-developers-inline-43 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

body.college-page-developers .college-developers-inline-44 {
    background: rgba(245, 158, 11, 0.04);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    height: 100%;
    transition: transform 0.3s;
    cursor: default;
}

body.college-page-developers .college-developers-inline-45 {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

body.college-page-developers .college-developers-inline-46 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

body.college-page-developers .college-developers-inline-47 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

body.college-page-developers .college-developers-inline-48 {
    font-size: 1.05rem;
}

body.college-page-developers .college-developers-inline-49 {
    background: rgba(15, 23, 42, 0.03);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--text-main);
    margin-top: 20px;
}

body.college-page-developers .college-developers-inline-50 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}


/* Page: discussionconferencerooms */


/* Style for the sidebar container */

body.college-page-discussionconferencerooms .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-discussionconferencerooms .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-discussionconferencerooms .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-discussionconferencerooms .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-discussionconferencerooms .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-discussionconferencerooms .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-2 {
    text-align: center;
    color: red;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-3 {
    color: black;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-4 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-5 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-6 {
    width: 762.825px;
    color: #7a7a7a;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    height: 333px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-7 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-8 {
    color: #ff6600;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-9 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-10 {
    color: #ff6600;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-11 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-12 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-13 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-14 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-15 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-16 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-17 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-18 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-19 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-20 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-21 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-22 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-23 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-24 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-25 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-26 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-27 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-28 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-29 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-30 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-31 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-32 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-33 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-34 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-35 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-36 {
    text-align: center;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-37 {
    color: #800080;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-38 {
    color: #ff0000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-39 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-40 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-41 {
    color: #ff0000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-42 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-43 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-44 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-45 {
    color: #ff0000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-46 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-47 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-48 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-49 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-50 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-51 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-52 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-53 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-54 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-55 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-56 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-57 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-58 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-59 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-60 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-61 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-62 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-63 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-64 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-65 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-66 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-67 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-68 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-69 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-70 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-71 {
    color: #000000;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-72 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

body.college-page-discussionconferencerooms .college-discussionconferencerooms-inline-73 {
    color: #000000;
}


/* Page: ece */


/* Source: css/ecec010.css */


/* 
   ECE Department Specific Styles 
   Optimized animations and branding
*/


/* Sidebar Active State */


/* Section Title Icon - Force Visibility and Style (Gold Theme) */

body.college-page-ece .section-title i {
    background: linear-gradient(135deg, #fbbf24, #d97706) !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: initial !important;
    color: #1e293b !important;
    border: 1px solid rgba(251, 191, 36, 0.4);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.2);
}


/* Badges */

body.college-page-ece .badge-tech {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    color: #0369a1;
    border: 1px solid rgba(186, 230, 253, 0.5);
    box-shadow: var(--shadow-sm);
}

body.college-page-ece .badge-grad {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    color: #1d4ed8;
    border: 1px solid rgba(191, 219, 254, 0.5);
    box-shadow: var(--shadow-sm);
}


/* Glassmorphism Cards */

body.college-page-ece .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.college-page-ece .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


/* ==== Hero Section Animations ==== */

body.college-page-ece .ece-hero {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #020617, #1e293b, #0f172a);
    background-size: 400% 400%;
    animation: ece-gradientShift 15s ease infinite;
    padding: 60px 0 80px;
    /* Compacted from 80px 0 100px */
    color: white;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    /* content-visibility: auto; Optimization: Defer offscreen rendering */
}

@keyframes ece-gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* Particle Canvas Container */

body.college-page-ece #ece-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* Animated gradient text with glow */

body.college-page-ece .ece-hero h1 {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24, #f59e0b);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    /* Compacted from 3rem */
    position: relative;
    z-index: 1;
    animation: ece-textGradient 8s ease infinite;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.4));
    will-change: background-position;
}

@keyframes ece-textGradient {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* Subtitle with fade animation */

body.college-page-ece .ece-hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    /* Compacted from 1.25rem */
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: ece-fadeInUp 1s ease-out 0.3s both;
}

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


/* Feature Cards with Hover Effects */

body.college-page-ece .feature-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    will-change: transform, box-shadow;
    border: 1px solid transparent;
    /* Prepare for border transition */
}

body.college-page-ece .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #fbbf24;
    /* Gold Border on Hover */
}


/* .college-data-table has been moved to department-common.css */


/* Compact Table (User Requested) */

body.college-page-ece .ece-table-compact {
    border-collapse: collapse;
    width: 100%;
}

body.college-page-ece .ece-table-compact th,
body.college-page-ece .ece-table-compact td {
    padding: 8px 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

body.college-page-ece .ece-table-compact tr:last-child td {
    border-bottom: none;
}

body.college-page-ece .ece-table-compact tr:hover {
    background-color: #f8fafc;
}


/* Mobile Media Queries for Hero */

@media (max-width: 991px) {
    body.college-page-ece .ece-hero h1 {
        font-size: 2.2rem;
    }
    body.college-page-ece .ece-hero {
        padding: 50px 0 60px;
    }
}


/* =========================================
   New Enhancements: Stats, Timeline, Cards
   ========================================= */


/* 1. Research Stat Cards */

body.college-page-ece .stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    /* Compacted from 24px */
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.college-page-ece .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

body.college-page-ece .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.1);
}

body.college-page-ece .stat-icon {
    width: 50px;
    height: 50px;
    background: #f0f9ff;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

body.college-page-ece .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
    color: white;
}

body.college-page-ece .stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.college-page-ece .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* 2. Timeline Styles (History) */

body.college-page-ece .timeline-container {
    position: relative;
    padding: 20px 0;
}

body.college-page-ece .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

body.college-page-ece .timeline-item {
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

body.college-page-ece .timeline-badge {
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: bold;
    box-shadow: 0 0 0 4px #f1f5f9;
}

body.college-page-ece .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

body.college-page-ece .timeline-content:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    body.college-page-ece .timeline-line {
        left: 20px;
    }
    body.college-page-ece .timeline-badge {
        left: 20px;
    }
    body.college-page-ece .timeline-content {
        margin-left: 50px;
    }
}


/* 3. Innovation Cards (Teaching) */

body.college-page-ece .innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

body.college-page-ece .innovation-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.college-page-ece .innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

body.college-page-ece .innovation-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

body.college-page-ece .innovation-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1e293b;
}

body.college-page-ece .innovation-detail {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

body.college-page-ece .innovation-detail i {
    color: var(--secondary-color);
    margin-top: 4px;
}


/* Fix for Highlight Icons being oval/compressed */

body.college-page-ece .highlight-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    /* Prevent compression */
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Important for flex containers */
}


/* ====================
   Recent Updates
   ==================== */


/* Scrollable Table Wrapper */

body.college-page-ece .table-scrollable {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cfd8dc #f8f9fa;
    border-radius: 8px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

body.college-page-ece .table-scrollable::-webkit-scrollbar {
    width: 6px;
}

body.college-page-ece .table-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body.college-page-ece .table-scrollable::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}


/* Recruiter Grid Items */

body.college-page-ece .recruiter-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    /* Slightly tighter radius */
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
    /* Optimized font size */
    width: 100%;
    min-width: 0;
    /* Important for flex child truncation */
}

body.college-page-ece .recruiter-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #f8fafc;
    color: var(--accent-color);
}

body.college-page-ece .recruiter-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
    /* Prevent icon squashing */
    width: 24px;
    /* Fixed width for alignment */
    text-align: center;
}

body.college-page-ece .recruiter-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Enhanced Contact Card */


/* Enhanced Contact Card */

body.college-page-ece .hod-contact-card {
    background: linear-gradient(135deg, #ffffff, #fdfbf7);
    /* Subtle warm tint */
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    /* Faint gold border */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    max-width: 600px;
    /* Constrain width for better centering */
    margin: 0 auto;
    /* Center horizontally */
}


/* Removed ::before sidebar element for a cleaner look */

body.college-page-ece .hod-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.5);
}

body.college-page-ece .contact-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: white;
    border-radius: 50px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

body.college-page-ece .hod-contact-card h3 {
    text-align: center;
    /* Ensure Name is centered */
}

body.college-page-ece .contact-link:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}


/* Extracted inline declarations */

body.college-page-ece .college-ece-inline-1 {
    z-index: 2;
}

body.college-page-ece .college-ece-inline-2 {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.college-page-ece .college-ece-inline-3 {
    object-fit: cover;
    min-height: 400px;
}

body.college-page-ece .college-ece-inline-4 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

body.college-page-ece .college-ece-inline-5 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

body.college-page-ece .college-ece-inline-6 {
    font-size: 1.05rem;
    line-height: 1.7;
}

body.college-page-ece .college-ece-inline-7 {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

body.college-page-ece .college-ece-inline-8 {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

body.college-page-ece .college-ece-inline-9 {
    transition: transform 0.3s;
}

body.college-page-ece .college-ece-inline-10 {
    transition: transform 0.3s;
}

body.college-page-ece .college-ece-inline-11 {
    transition: transform 0.3s;
}

body.college-page-ece .college-ece-inline-12 {
    border-radius: 16px;
}

body.college-page-ece .college-ece-inline-13 {
    max-width: 700px;
    margin: 0 auto;
}

body.college-page-ece .college-ece-inline-14 {
    width: 60px;
    height: 60px;
}

body.college-page-ece .college-ece-inline-15 {
    width: 60px;
    height: 60px;
}

body.college-page-ece .college-ece-inline-16 {
    max-width: 600px;
}

body.college-page-ece .college-ece-inline-17 {
    -webkit-text-fill-color: initial;
    color: #0284c7;
}

body.college-page-ece .college-ece-inline-18 {
    position: sticky;
    top: 0;
    z-index: 10;
}

body.college-page-ece .college-ece-inline-19 {
    margin-top: 40px;
    display: block;
    clear: both;
}

body.college-page-ece .college-ece-inline-20 {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

body.college-page-ece .college-ece-inline-21 {
    -webkit-text-fill-color: initial;
    color: #0284c7;
}


/* Page: ecenter */


/* Style for the sidebar container */

body.college-page-ecenter .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-ecenter .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-ecenter .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-ecenter .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-ecenter .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-ecenter .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-ecenter .college-ecenter-inline-1 {
    z-index: 2;
}

body.college-page-ecenter .college-ecenter-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-ecenter .college-ecenter-inline-3 {
    text-align: center;
    color: red;
}

body.college-page-ecenter .college-ecenter-inline-4 {
    color: black;
}


/* Page: edc */


/* EDC Specific Styles */

body.college-page-edc .vision-card {
    background: linear-gradient(135deg, var(--navy) 0%, #1a237e 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

body.college-page-edc .vision-card::after {
    content: '\f0eb';
    /* Lightbulb icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.05;
    color: white;
}

body.college-page-edc .obj-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--gold);
}

body.college-page-edc .obj-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


/* Extracted inline declarations */

body.college-page-edc .college-edc-inline-1 {
    z-index: 2;
}

body.college-page-edc .college-edc-inline-2 {
    font-size: 1.05rem;
    line-height: 1.8;
}

body.college-page-edc .college-edc-inline-3 {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

body.college-page-edc .college-edc-inline-4 {
    background: linear-gradient(to right, rgba(20, 32, 74, 0.05), #ffffff);
    border-left: 5px solid var(--navy);
    border: 1px solid #e2e8f0;
}

body.college-page-edc .college-edc-inline-5 {
    height: 30px;
}

body.college-page-edc .college-edc-inline-6 {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.college-page-edc .college-edc-inline-7 {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.college-page-edc .college-edc-inline-8 {
    --bs-aspect-ratio: 50%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

body.college-page-edc .college-edc-inline-9 {
    border: 0;
}

body.college-page-edc .college-edc-inline-10 {
    --bs-aspect-ratio: 50%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

body.college-page-edc .college-edc-inline-11 {
    border: 0;
}


/* Page: eee */

body.college-page-eee .sidebar-content {
    position: relative;
}

body.college-page-eee .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}

body.college-page-eee .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}

body.college-page-eee .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    height: 3px;
    /* Adjust the thickness of the line */
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}


/* Style for the sidebar container */

body.college-page-eee .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}


/* Style for the links */

body.college-page-eee .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}

body.college-page-eee .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}

body.college-page-eee .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    color: #343a40;
    /* Dark text color */
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}


/* Style for the icon */

body.college-page-eee .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    font-size: 28px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
}


/* Hover effect */

body.college-page-eee .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    border-radius: 50px;
    /* Rounded corners on hover */
}


/* Sidebar header */

body.college-page-eee .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}


/* Extracted inline declarations */

body.college-page-eee .college-eee-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}

body.college-page-eee .college-eee-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}

body.college-page-eee .college-eee-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-eee .college-eee-inline-4 {
    text-align: center;
    color: red;
}

body.college-page-eee .college-eee-inline-5 {
    color: black;
}

body.college-page-eee .college-eee-inline-6 {
    color: #ff0000;
}

body.college-page-eee .college-eee-inline-7 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-8 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-9 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-10 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-11 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-12 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-13 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-14 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-15 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-16 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-17 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-18 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-19 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-20 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-21 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-22 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-23 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-24 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-25 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-26 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-27 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-28 {
    text-align: justify;
}

body.college-page-eee .college-eee-inline-29 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-30 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-31 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-32 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-33 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-34 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-35 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-36 {
    text-align: justify;
}

body.college-page-eee .college-eee-inline-37 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-38 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-39 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-40 {
    text-align: justify;
}

body.college-page-eee .college-eee-inline-41 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-42 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-43 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-44 {
    text-align: justify;
}

body.college-page-eee .college-eee-inline-45 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-46 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-47 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-48 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-49 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-50 {
    color: #ff0000;
}

body.college-page-eee .college-eee-inline-51 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-52 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-53 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-54 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-55 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-56 {
    text-align: justify;
}

body.college-page-eee .college-eee-inline-57 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-58 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-59 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-60 {
    color: #000000;
}

body.college-page-eee .college-eee-inline-61 {
    text-align: center;
}

body.college-page-eee .college-eee-inline-62 {
    text-decoration: underline;
}

body.college-page-eee .college-eee-inline-63 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-64 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-65 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-66 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-67 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-68 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-69 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-70 {
    color: #d35400;
}

body.college-page-eee .college-eee-inline-71 {
    text-align: center;
}

body.college-page-eee .college-eee-inline-72 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-73 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-74 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-75 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-76 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-77 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-78 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-79 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-80 {
    color: #046A10;
}

body.college-page-eee .college-eee-inline-81 {
    color: #046A10;
}


/* Page: events */


/* Core Styles */

body.college-page-events {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #2d3748;
}

body.college-page-events .container-fluid {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}


/* Festival Card Styles */

body.college-page-events .fest-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 35px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

body.college-page-events .fest-card:hover {
    transform: translateY(-10px);
}

body.college-page-events .fest-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

body.college-page-events .fest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.college-page-events .fest-card:hover .fest-image img {
    transform: scale(1.1);
}

body.college-page-events .fest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

body.college-page-events .fest-content {
    padding: 25px;
}

body.college-page-events .fest-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

body.college-page-events .fest-date {
    color: #e53e3e;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.college-page-events .fest-description {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Image Grid Styles */

body.college-page-events .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 0 15px;
}

body.college-page-events .image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.college-page-events .image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Event List Styles */

body.college-page-events .event-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

body.college-page-events .event-item {
    background: #f7fafc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.college-page-events .event-icon {
    width: 40px;
    height: 40px;
    background: #4299e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

body.college-page-events .register-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #4299e1, #667eea);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.college-page-events .register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
    color: white;
}


/* Countdown Timer */

body.college-page-events .countdown {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

body.college-page-events .countdown-item {
    background: #2d3748;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

body.college-page-events .countdown-number {
    font-size: 24px;
    font-weight: 700;
}

body.college-page-events .countdown-label {
    font-size: 12px;
    text-transform: uppercase;
}


/* Sidebar Styles */

body.college-page-events .sidebar-wrapper {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

body.college-page-events .sidebar-header {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4299e1;
}

body.college-page-events .quick-links {
    list-style: none;
    padding: 0;
}

body.college-page-events .quick-links li {
    margin-bottom: 10px;
}

body.college-page-events .quick-links a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

body.college-page-events .quick-links a:hover {
    background: #4299e1;
    color: white;
    transform: translateX(5px);
}

body.college-page-events .quick-links i {
    margin-right: 10px;
    width: 20px;
}


/* Main Content Styles */

body.college-page-events .main-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

body.college-page-events .main-content h2 {
    color: #2d3748;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

body.college-page-events .main-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: #4299e1;
    border-radius: 2px;
}


/* Responsive Styles */

@media (max-width: 992px) {
    body.college-page-events .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.college-page-events .fest-image {
        height: 200px;
    }
    body.college-page-events .countdown {
        flex-wrap: wrap;
    }
    body.college-page-events .countdown-item {
        min-width: 60px;
    }
}

@media (max-width: 576px) {
    body.college-page-events .image-grid {
        grid-template-columns: 1fr;
    }
    body.college-page-events .image-grid img {
        height: 250px;
    }
}


/* Extracted inline declarations */

body.college-page-events .college-events-inline-1 {
    width: 90%;
    max-width: 900px;
    height: 300px;
    object-fit: cover;
}


/* Page: examcellstructure */

body.college-page-examcellstructure .role-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.college-page-examcellstructure .role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(251, 191, 36, 0.4);
}

body.college-page-examcellstructure .role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--navy);
    opacity: 0.1;
    transition: 0.3s;
}

body.college-page-examcellstructure .role-card:hover::before {
    background: var(--gold);
    opacity: 1;
}

body.college-page-examcellstructure .role-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

body.college-page-examcellstructure .service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    gap: 10px;
}

body.college-page-examcellstructure .service-list li i {
    color: #10b981;
    margin-top: 5px;
}

body.college-page-examcellstructure .profile-section {
    background: linear-gradient(to right, #f8fafc, #fff);
    border-left: 5px solid var(--navy);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
}


/* Contact Box Premium */

body.college-page-examcellstructure .contact-box-premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

body.college-page-examcellstructure .contact-box-premium h4 {
    color: var(--gold);
}

body.college-page-examcellstructure .contact-box-premium a {
    color: #fff;
    text-decoration: none;
}

body.college-page-examcellstructure .contact-box-premium a:hover {
    color: var(--gold);
}


/* Extracted inline declarations */

body.college-page-examcellstructure .college-examcellstructure-inline-1 {
    z-index: 2;
}


/* Page: examformdownload */


/* Extracted inline declarations */

body.college-page-examformdownload .college-examformdownload-inline-1 {
    z-index: 2;
}

body.college-page-examformdownload .college-examformdownload-inline-2 {
    font-size: 1.5rem;
}

body.college-page-examformdownload .college-examformdownload-inline-3 {
    font-size: 0.8rem;
}

body.college-page-examformdownload .college-examformdownload-inline-4 {
    font-size: 1.5rem;
}

body.college-page-examformdownload .college-examformdownload-inline-5 {
    font-size: 0.8rem;
}

body.college-page-examformdownload .college-examformdownload-inline-6 {
    font-size: 1.5rem;
}

body.college-page-examformdownload .college-examformdownload-inline-7 {
    font-size: 0.8rem;
}

body.college-page-examformdownload .college-examformdownload-inline-8 {
    font-size: 1.5rem;
}

body.college-page-examformdownload .college-examformdownload-inline-9 {
    font-size: 0.8rem;
}

body.college-page-examformdownload .college-examformdownload-inline-10 {
    font-size: 1.5rem;
}

body.college-page-examformdownload .college-examformdownload-inline-11 {
    font-size: 0.8rem;
}


/* Page: examnotification */

body.college-page-examnotification .iframe-container {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 600px;
}

body.college-page-examnotification .iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

body.college-page-examnotification .update-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #d1fae5;
    margin-bottom: 20px;
}

body.college-page-examnotification .drive-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}


/* Animation for content switch */

body.college-page-examnotification .tab-pane.active .iframe-container {
    animation: examnotification-fadeInScale 0.4s ease-out;
}

@keyframes examnotification-fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Extracted inline declarations */

body.college-page-examnotification .college-examnotification-inline-1 {
    z-index: 2;
}

body.college-page-examnotification .college-examnotification-inline-2 {
    background: #059669;
}

body.college-page-examnotification .college-examnotification-inline-3 {
    background: #059669;
}


/* Page: feedbackprocess */


/* Feedback Cards */

body.college-page-feedbackprocess .feedback-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

body.college-page-feedbackprocess .feedback-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.college-page-feedbackprocess .feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

body.college-page-feedbackprocess .feedback-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
}

body.college-page-feedbackprocess .feedback-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

body.college-page-feedbackprocess .feedback-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

body.college-page-feedbackprocess .feedback-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
}

body.college-page-feedbackprocess .feedback-btn {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

body.college-page-feedbackprocess .feedback-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

body.college-page-feedbackprocess .new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    animation: feedbackprocess-pulse 2s infinite;
}

@keyframes feedbackprocess-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* Process Section */

body.college-page-feedbackprocess .process-section {
    margin-top: 2rem;
}

body.college-page-feedbackprocess .process-list {
    display: grid;
    gap: 1rem;
}

body.college-page-feedbackprocess .process-item {
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.college-page-feedbackprocess .process-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.1);
}

body.college-page-feedbackprocess .process-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

body.college-page-feedbackprocess .process-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

body.college-page-feedbackprocess .process-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}


/* Document Links */

body.college-page-feedbackprocess .doc-links {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

body.college-page-feedbackprocess .doc-link {
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

body.college-page-feedbackprocess .doc-link:hover {
    border-color: var(--gold);
    background: rgba(251, 191, 36, 0.05);
    transform: translateX(5px);
}

body.college-page-feedbackprocess .doc-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

body.college-page-feedbackprocess .doc-text {
    flex: 1;
}

body.college-page-feedbackprocess .doc-text h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

@media (max-width: 768px) {
    body.college-page-feedbackprocess .feedback-cards {
        grid-template-columns: 1fr;
    }
}


/* Extracted inline declarations */

body.college-page-feedbackprocess .college-feedbackprocess-inline-1 {
    z-index: 2;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-2 {
    font-size: 0.95rem;
    line-height: 1.5;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-3 {
    color: #64748b;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-4 {
    color: #64748b;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-5 {
    color: #64748b;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-6 {
    color: #64748b;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-7 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-8 {
    color: #64748b;
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-9 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

body.college-page-feedbackprocess .college-feedbackprocess-inline-10 {
    color: #64748b;
}


/* Page: feepayments */


/* COMPACT Styles */

body.college-page-feepayments .finger-pointer {
    font-size: 1.75rem;
    animation: feepayments-pointFinger 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    display: inline-block;
    margin-right: 0.65rem;
}

@keyframes feepayments-pointFinger {
    0%,
    100% {
        transform: translateX(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

body.college-page-feepayments .button-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
}

body.college-page-feepayments .btn-portal {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    text-decoration: none;
    position: relative;
}

body.college-page-feepayments .btn-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

body.college-page-feepayments .btn-portal:hover::before {
    left: 100%;
}

body.college-page-feepayments .btn-portal:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

body.college-page-feepayments .btn-portal i.fa-arrow-right {
    transition: transform 0.3s ease;
}

body.college-page-feepayments .btn-portal:hover i.fa-arrow-right {
    transform: translateX(4px);
}

body.college-page-feepayments .guidance-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
}

body.college-page-feepayments .guidance-title {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

body.college-page-feepayments .guidance-title i {
    font-size: 0.9rem;
}

body.college-page-feepayments .guidance-text {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
}

body.college-page-feepayments .feature-pills {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
}

body.college-page-feepayments .feature-pill {
    background: rgba(251, 191, 36, 0.1);
    border: 1.5px solid rgba(251, 191, 36, 0.3);
    color: var(--gold-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

body.college-page-feepayments .feature-pill:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

body.college-page-feepayments .feature-pill i {
    font-size: 0.8rem;
}

body.college-page-feepayments .info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 2;
}

body.college-page-feepayments .info-card {
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
}

body.college-page-feepayments .info-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.1);
}

body.college-page-feepayments .info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 auto 0.65rem;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.22);
}

body.college-page-feepayments .info-card h4 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

body.college-page-feepayments .info-card p {
    color: #64748b;
    font-size: 0.75rem;
    margin: 0 0 0.3rem 0;
}

body.college-page-feepayments .info-card a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
}

body.college-page-feepayments .info-card a:hover {
    color: var(--gold-dark);
}

@media (max-width: 992px) {
    body.college-page-feepayments .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.college-page-feepayments .finger-pointer {
        font-size: 1.5rem;
        margin-right: 0.5rem;
    }
    body.college-page-feepayments .btn-portal {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }
    /* Keep button and finger in one line on mobile */
    body.college-page-feepayments .button-section {
        flex-direction: row;
        gap: 0;
    }
}


/* Extracted inline declarations */

body.college-page-feepayments .college-feepayments-inline-1 {
    z-index: 2;
}

body.college-page-feepayments .college-feepayments-inline-2 {
    font-size: 0.95rem;
    line-height: 1.5;
}

body.college-page-feepayments .college-feepayments-inline-3 {
    color: var(--navy);
    font-size: 0.8rem;
}


/* Page: feestructure */


/* Extracted inline declarations */

body.college-page-feestructure .college-feestructure-inline-1 {
    z-index: 2;
}


/* Page: fresher */


/* General Styles */

body.college-page-fresher .containerc1 {
    background: #fafafa;
}


/* Department Header */


/* Vertical Tabs */

body.college-page-fresher .vertical-tabs {
    display: flex;
    margin: 0px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    margin-left: 50px;
    width: 95%;
}

body.college-page-fresher .tab-buttons {
    width: 20%;
    min-width: 300px;
    padding: 0;
    box-shadow: -6px 0 0 rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

body.college-page-fresher .tab-buttons .nav-link {
    color: #444;
    background: #ddd;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 12px 20px;
    margin: 0 0 10px -10px;
    border-radius: 0 20px 20px 0;
    border: none;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

body.college-page-fresher .tab-buttons .nav-link:before {
    content: '';
    background: linear-gradient(to top right, transparent 50%, #333 50%);
    height: 10px;
    width: 10px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
}

body.college-page-fresher .tab-buttons .nav-link:hover,
body.college-page-fresher .tab-buttons .nav-link.active {
    color: #fff;
    background: #7E6A63;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

body.college-page-fresher .tab-content {
    flex-grow: 1;
    padding: 20px 25px;
    background: #fff;
    font-size: 0.9rem;
}


/* Update these styles in your stylesheet */

body.college-page-fresher .dept-carousel {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

body.college-page-fresher .carousel {
    background: #f8f9fa;
    height: 100%;
}

body.college-page-fresher .carousel-inner {
    border-radius: 10px;
    height: 100%;
}

body.college-page-fresher .carousel-item {
    aspect-ratio: 4/3;
}

body.college-page-fresher .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.college-page-fresher .about-section {
    margin-bottom: 20px;
}

body.college-page-fresher .department-stats {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

body.college-page-fresher .advisory-committee {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

body.college-page-fresher .advisory-committee li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

body.college-page-fresher .advisory-committee li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    body.college-page-fresher .vertical-tabs {
        flex-direction: column;
    }
    body.college-page-fresher .advisory-committee {
        margin-top: 20px;
    }
}


/* Vision & Mission */

body.college-page-fresher .vision-mission {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

body.college-page-fresher .vision-mission h2,
body.college-page-fresher .objectives h3 {
    color: #2c3e50;
    border-bottom: 1px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 1.4em;
}


/* Department Stats */

body.college-page-fresher .department-stats {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


/* Faculty Table */

body.college-page-fresher .faculty-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

body.college-page-fresher .faculty-table thead th {
    background: linear-gradient(120deg, #2c3e50, #3498db);
    color: white;
    padding: 12px;
}

body.college-page-fresher .faculty-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

body.college-page-fresher .faculty-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}


/* Advisory Committee */

body.college-page-fresher .advisory-committee {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


/* Program Section */

body.college-page-fresher .program-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


/* Responsive Design */

@media (max-width: 768px) {
    body.college-page-fresher .vertical-tabs {
        flex-direction: column;
    }
    body.college-page-fresher .tab-buttons {
        width: 100%;
        min-width: 100%;
    }
    body.college-page-fresher .tab-buttons .nav-link {
        margin: 0 0 10px 0;
        border-radius: 20px;
        text-align: center;
    }
    body.college-page-fresher .faculty-table thead {
        display: none;
    }
    body.college-page-fresher .faculty-table,
    body.college-page-fresher .faculty-table tbody,
    body.college-page-fresher .faculty-table tr,
    body.college-page-fresher .faculty-table td {
        display: block;
        width: 100%;
    }
    body.college-page-fresher .faculty-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    body.college-page-fresher .faculty-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }
}

@keyframes fresher-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fresher-slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Extracted inline declarations */

body.college-page-fresher .college-fresher-inline-1 {
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

body.college-page-fresher .college-fresher-inline-2 {
    background: linear-gradient(135deg, #195F7A, #195F7A);
    padding: 0px 0px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-3 {
    color: #ffffff;
    font-size: 3em;
    margin: 0;
    padding: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fresher-fadeIn 1.5s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-4 {
    margin-right: 15px;
}

body.college-page-fresher .college-fresher-inline-5 {
    margin-left: 15px;
}

body.college-page-fresher .college-fresher-inline-6 {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

body.college-page-fresher .college-fresher-inline-7 {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border: none;
}

body.college-page-fresher .college-fresher-inline-8 {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

body.college-page-fresher .college-fresher-inline-9 {
    padding-top: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-10 {
    object-fit: cover;
    border-radius: 15px;
}

body.college-page-fresher .college-fresher-inline-11 {
    color: #2c3e50;
    font-weight: 700;
}

body.college-page-fresher .college-fresher-inline-12 {
    font-weight: 600;
}

body.college-page-fresher .college-fresher-inline-13 {
    color: #00b09b;
}

body.college-page-fresher .college-fresher-inline-14 {
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

body.college-page-fresher .college-fresher-inline-15 {
    color: #00b09b;
    font-size: 1.5rem;
}

body.college-page-fresher .college-fresher-inline-16 {
    color: #2c3e50;
    font-weight: 600;
}

body.college-page-fresher .college-fresher-inline-17 {
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

body.college-page-fresher .college-fresher-inline-18 {
    color: #96c93d;
    font-size: 1.5rem;
}

body.college-page-fresher .college-fresher-inline-19 {
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.college-page-fresher .college-fresher-inline-20 {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

body.college-page-fresher .college-fresher-inline-21 {
    margin: 0;
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body.college-page-fresher .college-fresher-inline-22 {
    margin-right: 15px;
}

body.college-page-fresher .college-fresher-inline-23 {
    padding: 30px 20px;
}

body.college-page-fresher .college-fresher-inline-24 {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-25 {
    color: #3a1c71;
    font-size: 1.8em;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-26 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-27 {
    font-size: 1.1em;
    color: #555;
}

body.college-page-fresher .college-fresher-inline-28 {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-29 {
    color: #d76d77;
    font-size: 1.8em;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-30 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-31 {
    font-size: 1.1em;
    color: #555;
}

body.college-page-fresher .college-fresher-inline-32 {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-33 {
    color: #ffaf7b;
    font-size: 1.8em;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-34 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-35 {
    font-size: 1.1em;
    color: #555;
}

body.college-page-fresher .college-fresher-inline-36 {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-37 {
    color: #3a1c71;
    font-size: 1.8em;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-38 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-39 {
    font-size: 1.1em;
    color: #555;
}

body.college-page-fresher .college-fresher-inline-40 {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-41 {
    color: #d76d77;
    font-size: 1.8em;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-42 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-43 {
    font-size: 1.1em;
    color: #555;
}

body.college-page-fresher .college-fresher-inline-44 {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-45 {
    color: #ffaf7b;
    font-size: 1.8em;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-46 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-47 {
    font-size: 1.1em;
    color: #555;
}

body.college-page-fresher .college-fresher-inline-48 {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

body.college-page-fresher .college-fresher-inline-49 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body.college-page-fresher .college-fresher-inline-50 {
    margin-right: 15px;
}

body.college-page-fresher .college-fresher-inline-51 {
    padding: 30px;
}

body.college-page-fresher .college-fresher-inline-52 {
    background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-53 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-54 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-55 {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-56 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-57 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-58 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-59 {
    background: linear-gradient(135deg, #fdcbf1 0%, #e6dee9 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-60 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-61 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-62 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-63 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-64 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-65 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-66 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-67 {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-68 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-69 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-70 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-71 {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-72 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-73 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-74 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-75 {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-76 {
    color: #333;
}

body.college-page-fresher .college-fresher-inline-77 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-78 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-79 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-80 {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

body.college-page-fresher .college-fresher-inline-81 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

body.college-page-fresher .college-fresher-inline-82 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-83 {
    font-weight: bold;
    margin-bottom: 15px;
}

body.college-page-fresher .college-fresher-inline-84 {
    display: grid;
    gap: 15px;
}

body.college-page-fresher .college-fresher-inline-85 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-86 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-87 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-88 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-89 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-90 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-91 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-92 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-93 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-94 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-95 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-96 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-97 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-98 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-99 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-100 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-101 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-102 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-103 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-104 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-105 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-106 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-107 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-108 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-109 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-110 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-111 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-112 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-113 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-114 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-115 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-116 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-117 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-118 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-119 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-120 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-121 {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

body.college-page-fresher .college-fresher-inline-122 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

body.college-page-fresher .college-fresher-inline-123 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-124 {
    margin-bottom: 20px;
    font-style: italic;
    color: #34495e;
}

body.college-page-fresher .college-fresher-inline-125 {
    display: grid;
    gap: 15px;
}

body.college-page-fresher .college-fresher-inline-126 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-127 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-128 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-129 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-130 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-131 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-132 {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

body.college-page-fresher .college-fresher-inline-133 {
    color: #2c3e50;
}

body.college-page-fresher .college-fresher-inline-134 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-135 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-136 {
    margin-top: 10px;
}

body.college-page-fresher .college-fresher-inline-137 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-138 {
    flex-basis: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

body.college-page-fresher .college-fresher-inline-139 {
    text-align: center;
    font-size: 1.2em;
}

body.college-page-fresher .college-fresher-inline-140 {
    flex-basis: 30%;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-141 {
    background-color: #1a5f7a;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-142 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-143 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-144 {
    flex-basis: 30%;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-145 {
    background-color: #57c84d;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-146 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-147 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-148 {
    flex-basis: 30%;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-149 {
    background-color: #ff6b6b;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-150 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-151 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-152 {
    flex-basis: 45%;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-153 {
    background-color: #4ecdc4;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-154 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-155 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-156 {
    flex-basis: 45%;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-157 {
    background-color: #f9d56e;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-158 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-159 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-160 {
    flex-basis: 30%;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

body.college-page-fresher .college-fresher-inline-161 {
    background-color: #ff8c42;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-162 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-163 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-164 {
    flex-basis: 100%;
    max-width: 1200px;
    margin: 20px 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-165 {
    background-color: #3d84a8;
    color: white;
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-166 {
    margin: 0;
}

body.college-page-fresher .college-fresher-inline-167 {
    padding: 20px;
}

body.college-page-fresher .college-fresher-inline-168 {
    list-style-type: none;
    padding-left: 0;
}

body.college-page-fresher .college-fresher-inline-169 {
    margin-bottom: 10px;
}

body.college-page-fresher .college-fresher-inline-170 {
    color: #57c84d;
}

body.college-page-fresher .college-fresher-inline-171 {
    margin-bottom: 10px;
}

body.college-page-fresher .college-fresher-inline-172 {
    color: #57c84d;
}

body.college-page-fresher .college-fresher-inline-173 {
    margin-bottom: 10px;
}

body.college-page-fresher .college-fresher-inline-174 {
    color: #57c84d;
}

body.college-page-fresher .college-fresher-inline-175 {
    margin-bottom: 10px;
}

body.college-page-fresher .college-fresher-inline-176 {
    color: #57c84d;
}

body.college-page-fresher .college-fresher-inline-177 {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

body.college-page-fresher .college-fresher-inline-178 {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
}

body.college-page-fresher .college-fresher-inline-179 {
    padding: 15px;
    color: white;
    text-align: left;
}

body.college-page-fresher .college-fresher-inline-180 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-181 {
    padding: 15px;
    color: white;
    text-align: left;
}

body.college-page-fresher .college-fresher-inline-182 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-183 {
    padding: 15px;
    color: white;
    text-align: left;
}

body.college-page-fresher .college-fresher-inline-184 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-185 {
    padding: 15px;
    color: white;
    text-align: left;
}

body.college-page-fresher .college-fresher-inline-186 {
    margin-right: 10px;
}

body.college-page-fresher .college-fresher-inline-187 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-188 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-189 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-190 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-191 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-192 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-193 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-194 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-195 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-196 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-197 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-198 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-199 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-200 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-201 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-202 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-203 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-204 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-205 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-206 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-207 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-208 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-209 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-210 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-211 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-212 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-213 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-214 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-215 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-216 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-217 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-218 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-219 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-220 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-221 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-222 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-223 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-224 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-225 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-226 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-227 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-228 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-229 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-230 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-231 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-232 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-233 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-234 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-235 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-236 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-237 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-238 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-239 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-240 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-241 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-242 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-243 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-244 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-245 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-246 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-247 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-248 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-249 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-250 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-251 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-252 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-253 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-254 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-255 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-256 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-257 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-258 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-259 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-260 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-261 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-262 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-263 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-264 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-265 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-266 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-267 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-268 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-269 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-270 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-271 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-272 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-273 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-274 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-275 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-276 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-277 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-278 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-279 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-280 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-281 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-282 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-283 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-284 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-285 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-286 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-287 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-288 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-289 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-290 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-291 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-292 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-293 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-294 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-295 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-296 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-297 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-298 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-299 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-300 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-301 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-302 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-303 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-304 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-305 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-306 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-307 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-308 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-309 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-310 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-311 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-312 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-313 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-314 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-315 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-316 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-317 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-318 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-319 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-320 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-321 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-322 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-323 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-324 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-325 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-326 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-327 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-328 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-329 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-330 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-331 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-332 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-333 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-334 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-335 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-336 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-337 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-338 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-339 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-340 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-341 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-342 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-343 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-344 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-345 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-346 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-347 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-348 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-349 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-350 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-351 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-352 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-353 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-354 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-355 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-356 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-357 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-358 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-359 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-360 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-361 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-362 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-363 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-364 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-365 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-366 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-367 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-368 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-369 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-370 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-371 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-372 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-373 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-374 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-375 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-376 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-377 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-378 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-379 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-380 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-381 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-382 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-383 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-384 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-385 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-386 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-387 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-388 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-389 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-390 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-391 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-392 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-393 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-394 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-395 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-396 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-397 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

body.college-page-fresher .college-fresher-inline-398 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-399 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-400 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-401 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-402 {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

body.college-page-fresher .college-fresher-inline-403 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-404 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-405 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

body.college-page-fresher .college-fresher-inline-406 {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}


/* Page: gallery */


/* Gallery Grid */

body.college-page-gallery .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

body.college-page-gallery .image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.college-page-gallery .image-grid img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

@media (max-width: 768px) {
    body.college-page-gallery .image-grid {
        grid-template-columns: 1fr;
    }
    body.college-page-gallery .image-grid img {
        height: 200px;
    }
}


/* Extracted inline declarations */

body.college-page-gallery .college-gallery-inline-1 {
    z-index: 2;
}


/* Page: governmentscholarship */


/* Style for the sidebar container */

body.college-page-governmentscholarship .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}


/* Style for the links */

body.college-page-governmentscholarship .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

body.college-page-governmentscholarship .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    margin-bottom: 5px;
    /* Add some spacing between list items */
}

body.college-page-governmentscholarship .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    align-items: center;
    /* Center icon vertically */
    padding: 5px 10px;
    /* Add padding to the links */
    color: #000;
    /* Link color */
    text-decoration: none;
    /* Remove default underline */
}


/* Style for the icon */

body.college-page-governmentscholarship .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}


/* Hover effect */

body.college-page-governmentscholarship .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}


/* Extracted inline declarations */

body.college-page-governmentscholarship .college-governmentscholarship-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

body.college-page-governmentscholarship .college-governmentscholarship-inline-2 {
    text-align: center;
    color: red;
}

body.college-page-governmentscholarship .college-governmentscholarship-inline-3 {
    color: black;
}

body.college-page-governmentscholarship .college-governmentscholarship-inline-4 {
    font-size: 20px;
}


/* Page: grievance */


/* Extracted inline declarations */

body.college-page-grievance .college-grievance-inline-1 {
    z-index: 2;
}


/* Page: home */


/* Inline styles from index.html */


/* Scroll Progress Bar */

body.college-page-home #scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #d97706);
    z-index: 9999;
    transition: width 0.1s;
}


/* Reset — already handled by index-common.css; keep only page-specific overrides */

body.college-page-home {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
}


/* Global scroll-margin for anchored sections (accounts for fixed header) */

body.college-page-home section[id],
body.college-page-home div[id] {
    scroll-margin-top: 70px;
}


/* ═══════════════════════════════════════════
           HERO SECTION — PREMIUM v3.0
           Two-column split | particle canvas | stats
           ═══════════════════════════════════════════ */

body.college-page-home .hero-section {
    position: relative;
    min-height: clamp(560px, 92vh, 980px);
    display: flex;
    align-items: flex-start;
    /* Changed from center to respect padding-top for upward shift */
    background: #080e1f;
    overflow: hidden;
}


/* ── Background image with soft zoom ── */

body.college-page-home .hero-bg {
    position: absolute;
    inset: 0;
    /* background-image: url('../img/rvit_campus_wide.jpg'); */
    background-image: var(--college-call-background-image);
    background-size: cover;
    background-position: center 35%;
    z-index: 0;
    animation: home-heroZoom 28s ease-in-out infinite alternate;
    will-change: transform;
    transform-origin: center center;
}

@keyframes home-heroZoom {
    from {
        transform: scale(1.0);
    }
    to {
        transform: scale(1.1);
    }
}


/* ── Layered overlays ── */


/* Dark base layer */

body.college-page-home .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(5, 10, 28, 0.97) 0%, rgba(10, 20, 55, 0.88) 38%, rgba(15, 28, 70, 0.55) 62%, rgba(5, 10, 28, 0.20) 100%);
}


/* Gold accent glow — bottom left */

body.college-page-home .hero-glow-left {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    animation: home-glowPulse 5s ease-in-out infinite alternate;
}


/* Blue accent glow — top right */

body.college-page-home .hero-glow-right {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

@keyframes home-glowPulse {
    from {
        opacity: 0.7;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.12);
    }
}


/* ── Particle canvas ── */

body.college-page-home #hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.45;
    pointer-events: none;
}


/* ── Gold bottom edge strip ── */

body.college-page-home .hero-gold-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #fbbf24 30%, #d97706 60%, transparent 100%);
    z-index: 10;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}


/* ── Main content wrapper (two-column grid on desktop) ── */

body.college-page-home .hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: clamp(55px, 7vw, 85px) clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 4rem;
    align-items: center;
    color: #fff;
}


/* ── LEFT: text content ── */

body.college-page-home .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Pill badges row */

body.college-page-home .hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: home-heroFadeUp 0.9s ease-out 0.1s both;
}

body.college-page-home .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251, 191, 36, 0.10);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.45);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 7px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(6px);
    transition: background 0.3s, border-color 0.3s;
}

body.college-page-home .hero-badge:hover {
    background: rgba(251, 191, 36, 0.20);
    border-color: rgba(251, 191, 36, 0.8);
}


/* Glass badge variant */

body.college-page-home .hb-elite {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    overflow: hidden;
}

body.college-page-home .hb-elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    animation: home-badgeShimmer 4.5s infinite;
}

@keyframes home-badgeShimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 250%;
    }
}

body.college-page-home .hb-elite i {
    color: #fbbf24;
}

body.college-page-home .hb-elite strong {
    color: #fbbf24;
    font-weight: 900;
}


/* ── Hero headline ── */

body.college-page-home .hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(251, 191, 36, 0.7);
    margin-bottom: 0.9rem;
    animation: home-heroFadeUp 0.9s ease-out 0.25s both;
}

body.college-page-home .hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2px;
    margin-bottom: 1.4rem;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    animation: home-heroFadeUp 0.9s ease-out 0.35s both;
}

body.college-page-home .hero-title .line-white {
    color: #ffffff;
    display: block;
}

body.college-page-home .hero-title .line-gold {
    display: inline-block;
    white-space: nowrap;
    min-height: 1.1em;
    min-width: 320px;
    /* Reserves space to prevent shifting */
    vertical-align: bottom;
    text-align: left;
    /* Ensures typing starts from left within the reserved space */
}

body.college-page-home #type-text {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: home-goldTextShimmer 4s linear infinite;
    position: relative;
    padding-right: 8px;
    /* Breath for the cursor */
}

@keyframes home-goldTextShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}


/* ── Animated typing cursor ── */

body.college-page-home #type-text::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 15%;
    height: 75%;
    width: 3px;
    background: #fbbf24;
    animation: home-cursorBlink 0.8s infinite steps(2);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    /* Ensure cursor exists even if empty */
    display: block;
}

@keyframes home-cursorBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


/* ── Description ── */

body.college-page-home .hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    color: #94a3b8;
    max-width: 520px;
    margin-bottom: 2.2rem;
    line-height: 1.75;
    font-weight: 400;
    animation: home-heroFadeUp 0.9s ease-out 0.5s both;
}


/* ── CTA buttons ── */

body.college-page-home .hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: home-heroFadeUp 0.9s ease-out 0.65s both;
}

body.college-page-home .hero-btn {
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, background 0.3s ease;
}

body.college-page-home .hb-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #14204a;
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.4);
    font-weight: 800;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

body.college-page-home .hb-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50px;
}

body.college-page-home .hb-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(251, 191, 36, 0.55);
}

body.college-page-home .hb-primary:hover::after {
    opacity: 1;
}

body.college-page-home .hb-glass {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

body.college-page-home .hb-glass:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

body.college-page-home align-self: stretch;

}

/* ── RIGHT: campus image card ── */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: home-heroFadeRight 1.1s ease-out 0.4s both;
}
@keyframes home-heroFadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    
    to {
        opacity: 1;
        transform: none;
    }
}
body.college-page-home .hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.07);
}
body.college-page-home .hero-img-frame img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}
body.college-page-home .hero-img-frame:hover img {
    transform: scale(1.04);
}

/* Gold border accent on image */
body.college-page-home .hero-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid rgba(251, 191, 36, 0.25);
    z-index: 2;
    pointer-events: none;
}

/* Bottom gradient on image */
body.college-page-home .hero-img-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(5, 10, 28, 0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Floating NAAC badge on image */
body.college-page-home .hero-img-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    background: rgba(5, 10, 28, 0.85);
    border: 1px solid rgba(251, 191, 36, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: home-floatBadge 3s ease-in-out infinite alternate;
}
@keyframes home-floatBadge {
    from {
        transform: translateY(0);
    }
    
    to {
        transform: translateY(-6px);
    }
}
body.college-page-home .hero-img-badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14204a;
    font-size: 1rem;
    flex-shrink: 0;
}
body.college-page-home .hero-img-badge-text h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
}
body.college-page-home .hero-img-badge-text p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Second floating chip — top right */
body.college-page-home .hero-img-chip {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    background: rgba(5, 10, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 7px;
    animation: home-floatBadge 4s ease-in-out infinite alternate-reverse;
}
body.college-page-home .hero-img-chip::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: home-chipBlink 1.4s infinite;
}
@keyframes home-chipBlink {
    0%,
    100% {
        opacity: 1;
    }
    
    50% {
        opacity: 0.3;
    }
}

/* ── Keyframes shared ── */
@keyframes home-heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes home-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes home-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    
    to {
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ── */
@media (min-width: 993px) {
    body.college-page-home .hero-container {
        grid-template-columns: 55% 45%;
    }
    
    body.college-page-home .hero-left {
        align-items: flex-start;
        text-align: left;
    }
    
    body.college-page-home .hero-title .line-gold {
        min-width: 300px;
        display: inline-block;
    }
}
@media (max-width: 992px) {
    body.college-page-home .hero-section {
        min-height: auto;
        padding: 15px 0 25px;
        align-items: center;
        /* Reset to center for mobile */
    }
    
    body.college-page-home .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
        /* Reduced further from 40px */
        padding-bottom: 10px;
    }
    
    body.college-page-home .hero-left {
        align-items: center;
    }
    
    body.college-page-home .hero-right {
        display: none;
    }
    /* hide image card on tablet/mobile */
    
    body.college-page-home .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    body.college-page-home .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.8rem);
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }
    
    body.college-page-home .hero-btn-group {
        justify-content: center;
        gap: 12px;
    }
    
    body.college-page-home .hero-title .line-gold {
        min-height: 1.2rem;
        display: inline-block;
        min-width: 0;
        text-align: center;
    }
    /* Remove min-width on mobile to avoid overflow */
    
    body.college-page-home .hero-badges {
        margin-bottom: 1.2rem;
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    body.college-page-home .hero-badge {
        width: fit-content;
    }
}
@media (max-width: 576px) {
    body.college-page-home .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
        letter-spacing: -0.5px;
    }
    
    body.college-page-home .hero-badges {
        justify-content: center;
    }
    
    body.college-page-home .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    body.college-page-home .hero-desc {
        font-size: 0.95rem;
    }
}

/* Trust Bar - ULTRA PREMIUM ELITE LIGHT */
body.college-page-home .trust-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Subtle Decorative Pattern */
body.college-page-home .trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.04), transparent 50%), radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.04), transparent 50%);
    pointer-events: none;
}

/* Premium Top Accent */
body.college-page-home .trust-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}
body.college-page-home .trust-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Elite Header */
body.college-page-home .trust-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
body.college-page-home .trust-badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(217, 119, 6, 0.08) 100%);
    border: 1.5px solid rgba(251, 191, 36, 0.3);
    color: #d97706;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.15);
}
body.college-page-home .trust-badge-elite i {
    animation: home-flashIconTrust 2s infinite ease-in-out;
}
@keyframes home-flashIconTrust {
    0%,
    100% {
        color: #d97706;
        transform: scale(1);
    }
    
    50% {
        color: #fbbf24;
        transform: scale(1.2);
    }
}
body.college-page-home .trust-header h3 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #14204a 0%, #d97706 50%, #14204a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: home-goldTextShimmer 4s linear infinite;
    margin-bottom: 15px;
    padding-bottom: 5px;
    line-height: 1.1;
    letter-spacing: -1px;
}
body.college-page-home .trust-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Premium Grid */
body.college-page-home .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 2.5rem;
}

/* Elite Card Design - Light */
body.college-page-home .trust-item {
    position: relative;
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* NO will-change here — it creates a GPU layer per item (12 layers!)
               The parent .trust-grid handles compositing instead */
}

/* Hover lift — no 3D transform (rotateX triggers expensive 3D context) */
body.college-page-home .trust-item:hover {
    transform: translateY(-10px);
    border-color: #fbbf24;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2), 0 0 30px rgba(251, 191, 36, 0.12);
}

/* Premium Gradient Overlay */
body.college-page-home .trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(251, 191, 36, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 20px;
}
body.college-page-home .trust-item:hover::before {
    opacity: 1;
}

/* Border glow on hover only — NO infinite animation (was running on all 12 items!) */
body.college-page-home .trust-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24, #f59e0b);
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}
body.college-page-home .trust-item:hover::after {
    opacity: 0.4;
}

/* Logo Container */
body.college-page-home .trust-logo-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    padding: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
body.college-page-home .trust-item:hover .trust-logo-wrapper {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
body.college-page-home .trust-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Removed filter:grayscale — it creates a compositor layer per logo */
    
    transition: opacity 0.3s ease;
}
body.college-page-home .trust-item:hover img {
    opacity: 0.9;
}

/* Text Styling */
body.college-page-home .trust-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-align: center;
    line-height: 1.3;
    /* Only animate color, not 'all' (watches every property) */
    
    transition: color 0.25s ease;
    position: relative;
    z-index: 1;
}
body.college-page-home .trust-item:hover .trust-text {
    color: #d97706;
    transform: scale(1.05);
}

/* ── Trust Shimmer & Reflection ── */
body.college-page-home .trust-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 45deg, transparent 45%, rgba(251, 191, 36, 0.1) 50%, transparent 55%);
    transition: all 0.6s ease;
    transform: rotate(30deg);
    z-index: 2;
    pointer-events: none;
}
body.college-page-home .trust-item:hover::after {
    top: -50%;
    left: -50%;
}

/* Featured/Premium Badges - Only on Hover */
body.college-page-home .trust-item.featured:hover {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
body.college-page-home .trust-item.featured:hover .trust-text {
    color: #d97706;
    font-weight: 800;
}
body.college-page-home .trust-item.featured:hover .trust-logo-wrapper {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    border-color: #fbbf24;
}

/* Premium Badge Indicator */
body.college-page-home .trust-item.featured::before {
    opacity: 0;
}
body.college-page-home .trust-item.featured:hover::before {
    opacity: 0.6;
}

/* Stagger animation-delays removed — no animation keyframe to delay */

/* Responsive */
@media (max-width: 992px) {
    body.college-page-home .trust-header h3 {
        font-size: 2.3rem;
    }
    
    body.college-page-home .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    body.college-page-home .trust-section {
        padding: 4rem 0;
    }
    
    body.college-page-home .trust-header h3 {
        font-size: 2rem;
    }
    
    body.college-page-home .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    body.college-page-home .trust-item {
        padding: 1.5rem 1rem;
    }
    
    body.college-page-home .trust-logo-wrapper {
        width: 60px;
        height: 60px;
    }
}

/* Keyframes */
@keyframes home-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes home-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
    body.college-page-home .hero-title {
        font-size: 3rem;
    }
    
    body.college-page-home .hero-overlay {
        background: linear-gradient(180deg, rgba(20, 32, 74, 0.9), rgba(20, 32, 74, 0.6));
    }
}

/* --- SCROLLER CSS (Pure CSS Keyframes for Elite Mobile Performance) --- */
body.college-page-home .news-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 5px 0 15px;
    background: transparent;
    isolation: isolate;
}
body.college-page-home .news-track {
    display: flex;
    width: max-content;
    animation: home-scrollLeftNews 75s linear infinite;
    will-change: transform;
}
body.college-page-home .events-track {
    display: flex;
    width: max-content;
    animation: home-scrollRightNews 85s linear infinite;
    will-change: transform;
}
body.college-page-home .news-track:hover,
body.college-page-home .events-track:hover {
    animation-play-state: paused;
}
@keyframes home-scrollLeftNews {
    0% {
        transform: translate3d(0, 0, 0);
    }
    
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes home-scrollRightNews {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    
    100% {
        transform: translate3d(0, 0, 0);
    }
}
body.college-page-home .news-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    width: auto;
    /* Dynamically expands to loaded image's intrinsic width! */
    
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    margin-right: 20px;
    cursor: pointer;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
body.college-page-home .news-item img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    background: transparent;
    /* Fade in image smoothly upon load */
    
    opacity: 0;
    animation: home-lazyFade 0.5s ease-in forwards;
}
@keyframes home-lazyFade {
    to {
        opacity: 1;
    }
}

/* Hover overlay — dimming only, NO blur (blur causes glitter) */
body.college-page-home .news-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 32, 74, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}
body.college-page-home .news-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease;
    pointer-events: none;
    z-index: 2;
}
body.college-page-home .news-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    border-color: #fbbf24;
    z-index: 10;
}
body.college-page-home .news-item:hover::before {
    opacity: 1;
}
body.college-page-home .news-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* News Modal Lightbox */
body.college-page-home .news-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: home-fadeInModal 0.3s ease;
}
body.college-page-home .news-modal.show {
    display: flex;
}
body.college-page-home .news-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    border: 2px solid #fbbf24;
    animation: home-zoomIn 0.3s ease;
    object-fit: contain;
    cursor: default;
}
body.college-page-home .news-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 100000;
    line-height: 1;
}
body.college-page-home .news-close:hover {
    color: #fbbf24;
    transform: scale(1.2);
}
@keyframes home-fadeInModal {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}
@keyframes home-zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* BACK TO TOP — ELITE */
body.college-page-home #back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #14204a, #1e3a6e);
    color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(20, 32, 74, 0.3);
    border: 1.5px solid rgba(251, 191, 36, 0.3);
}
body.college-page-home #back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
body.college-page-home #back-to-top:hover {
    background: #fbbf24;
    color: #14204a;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    border-color: #14204a;
}
body.college-page-home #back-to-top i {
    transition: transform 0.3s;
}
body.college-page-home #back-to-top:hover i {
    transform: translateY(-2px);
}

/* Inline styles from index.html */

/* ============================================================
   COLLEGE ELITE CAROUSEL — PREMIUM v6
   Warm cream bg, color-coded accent bars, shimmer headline,
   floating particles, smooth micro-animations on all elements.
   ============================================================ */

/* ── Core Shell ──────────────────────────────────────────── */
body.college-page-home .college-cr {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #faf5eb;
    line-height: 1;
}

/* Decorative gold accent strip at top */
body.college-page-home .college-cr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 3px;
    z-index: 30;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    box-shadow: 0 0 18px rgba(251, 191, 36, .4);
}
body.college-page-home .college-cr-track {
    display: flex;
    height: clamp(500px, 56vw, 720px);
    transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}
body.college-page-home .college-cr-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
body.college-page-home .college-cr-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 10s ease;
}
body.college-page-home .college-cr-slide.active .college-cr-slide-bg {
    transform: scale(1);
}
body.college-page-home .college-cr-overlay {
    position: absolute;
    inset: 0;
}

/* ── Content Grid ────────────────────────────────────────── */
body.college-page-home .college-cr-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.2rem;
}

/* ── Slide-in animation ──────────────────────────────────── */
body.college-page-home .college-cr-slide.active .college-cr-content>* {
    animation: home-crSlideUp .7s cubic-bezier(.4, 0, .2, 1) both;
}
body.college-page-home .college-cr-slide.active .college-cr-content>*:nth-child(2) {
    animation-delay: .12s;
}
@keyframes home-crSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════════
   SLIDE 1 — RECOGNITIONS & ACCREDITATIONS
   Exact match to provided screenshot
   ══════════════════════════════════════════════════════════ */
body.college-page-home .cr-slide1-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(1.6rem, 3vw, 2.8rem) 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section badge pill */
body.college-page-home .cr-s1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.12);
    border: 1.5px solid rgba(251, 191, 36, 0.35);
    color: #b45309;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 18px rgba(251, 191, 36, 0.18);
}
body.college-page-home .cr-s1-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: #1a2540;
    margin: 0;
    text-align: center;
}
body.college-page-home .cr-s1-title span {
    color: #f59e0b;
}
body.college-page-home .cr-s1-sub {
    color: #64748b;
    font-size: .95rem;
    margin: .55rem 0 0;
    font-weight: 400;
    letter-spacing: .3px;
    text-align: center;
}

/* Decorative divider under heading */
body.college-page-home .cr-s1-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 99px;
    margin: 1rem auto 0;
}

/* ── Accreditation Card Grid ─────────────────────────────── */
body.college-page-home .cr-accred-outer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(10px, 1.5vw, 20px);
    margin-top: clamp(1.4rem, 2.5vw, 2.2rem);
}
body.college-page-home .cr-accred-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(232, 232, 232, .8);
    border-radius: 18px;
    padding: clamp(.9rem, 1.5vw, 1.4rem) clamp(.6rem, 1vw, 1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s ease, border-color .3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* the colored top accent bar */
body.college-page-home .cr-accred-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--cr-card-color, #fbbf24);
    transition: height .3s;
}
body.college-page-home .cr-accred-card:hover::before {
    height: 4px;
}
body.college-page-home .cr-accred-card:hover {
    transform: translateY(-9px) scale(1.02);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .1), 0 0 0 2px var(--cr-card-color, #fbbf24), inset 0 0 0 1px rgba(251, 191, 36, .08);
    border-color: var(--cr-card-color, #fbbf24);
}

/* Logo circle */
body.college-page-home .cr-card-logo-wrap {
    width: clamp(52px, 5.5vw, 68px);
    height: clamp(52px, 5.5vw, 68px);
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    transition: all .35s ease;
}
body.college-page-home .cr-accred-card:hover .cr-card-logo-wrap {
    border-color: var(--cr-card-color, #fbbf24);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    box-shadow: 0 8px 24px rgba(251, 191, 36, .22);
    transform: scale(1.06);
}
body.college-page-home .cr-card-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text */
body.college-page-home .cr-card-name {
    font-size: .83rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    line-height: 1.25;
    letter-spacing: .2px;
}
body.college-page-home .cr-card-tag {
    font-size: .71rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: color .25s;
}

/* ══════════════════════════════════════════════════════════
   SHARED COMPONENTS — Slides 2–6
   ══════════════════════════════════════════════════════════ */

/* Badge pill (slides 2–6) */
body.college-page-home .cr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}

/* Big number hero */
body.college-page-home .cr-big-num {
    font-size: clamp(3.5rem, 9vw, 7.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
}
body.college-page-home .cr-script {
    font-family: Georgia, serif;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 700;
    display: block;
    margin-bottom: .2rem;
}
body.college-page-home .cr-label {
    font-size: clamp(.9rem, 2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
body.college-page-home .cr-year-tag {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: clamp(.8rem, 1.5vw, 1rem);
    padding: 8px 20px;
    border-radius: 8px;
    margin: 1.2rem 0;
    letter-spacing: .5px;
}
body.college-page-home .cr-desc {
    font-size: clamp(.83rem, 1.4vw, 1rem);
    font-style: italic;
    max-width: 380px;
    line-height: 1.7;
}

/* Chart */
body.college-page-home .cr-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 26px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
}
body.college-page-home .cr-chart-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: .5rem;
}
body.college-page-home .cr-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 160px;
}
body.college-page-home .cr-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}
body.college-page-home .cr-bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
    animation: home-barGrow 1.2s cubic-bezier(.4, 0, .2, 1) both;
}
@keyframes home-barGrow {
    from {
        transform: scaleY(0);
        transform-origin: bottom
    }
    
    to {
        transform: scaleY(1)
    }
}
body.college-page-home .cr-bar span {
    font-size: .62rem;
    font-weight: 800;
    color: #fff;
}
body.college-page-home .cr-bar-year {
    font-size: .56rem;
    font-weight: 700;
    color: #94a3b8;
    white-space: nowrap;
}

/* Stat grid */
body.college-page-home .cr-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
body.college-page-home .cr-stat-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    transition: transform .3s, box-shadow .3s;
}
body.college-page-home .cr-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .11);
}
body.college-page-home .cr-stat-num {
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}
body.college-page-home .cr-stat-lbl {
    font-size: .72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 7px;
}

/* Admissions */
body.college-page-home .cr-admit-left {
    display: flex;
    flex-direction: column;
}
body.college-page-home .cr-admit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: clamp(.75rem, 1.3vw, .92rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 1rem;
}
body.college-page-home .cr-admit-open {
    font-size: clamp(2.2rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
}
body.college-page-home .cr-admit-year {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 7px;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-top: .8rem;
    letter-spacing: 1px;
}
body.college-page-home .cr-admit-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 1.6rem;
}
body.college-page-home .cr-admit-feat {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: clamp(.8rem, 1.4vw, 1rem);
    font-weight: 600;
}
body.college-page-home .cr-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}
body.college-page-home .cr-admit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 11px;
    font-weight: 700;
    font-size: clamp(.85rem, 1.3vw, 1.02rem);
    text-decoration: none;
    margin-top: 1.6rem;
    width: fit-content;
    transition: transform .3s, box-shadow .3s;
}
body.college-page-home .cr-admit-btn:hover {
    transform: translateY(-4px);
}

/* Courses */
body.college-page-home .cr-courses-hl {
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}
body.college-page-home .cr-courses-sub {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 6px;
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}
body.college-page-home .cr-course-section {
    margin-bottom: 1.2rem;
}
body.college-page-home .cr-course-sec-title {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
}
body.college-page-home .cr-course-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
body.college-page-home .cr-course-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-radius: 10px;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all .3s ease;
}
body.college-page-home .cr-course-row:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: var(--row-hover-color, #e2e8f0);
}
body.college-page-home .cr-course-name {
    font-size: .85rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
}
body.college-page-home .cr-course-name i {
    width: 24px;
    font-size: 0.9rem;
}
body.college-page-home .cr-course-intake {
    font-size: .95rem;
    font-weight: 900;
    min-width: 38px;
    text-align: right;
    flex-shrink: 0;
}
body.college-page-home .cr-code-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 12px;
    margin-top: 1.2rem;
    font-size: .82rem;
    font-weight: 700;
}
body.college-page-home .cr-code-pill strong {
    font-size: 1.25rem;
    letter-spacing: 2.5px;
}

/* Web/Desktop only size Increases */
@media(min-width: 1024px) {
    body.college-page-home .cr-course-row {
        padding: 12px 22px;
    }
    
    body.college-page-home .cr-course-name {
        font-size: 1.02rem;
    }
    
    body.college-page-home .cr-course-intake {
        font-size: 1.15rem;
    }
    
    body.college-page-home .cr-course-sec-title {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    body.college-page-home .cr-course-section {
        margin-bottom: 2.5rem;
    }
    
    body.college-page-home .cr-course-list {
        gap: 10px;
    }
}

/* Shorthand visibility toggles */
body.college-page-home .cr-show-mobile {
    display: none !important;
}
@media(max-width:900px) {
    body.college-page-home .cr-show-mobile {
        display: inline !important;
    }
    
    body.college-page-home .cr-hide-mobile {
        display: none !important;
    }
    
    body.college-page-home .cr-course-name {
        font-size: 0.78rem;
    }
    
    body.college-page-home .college-cr-content {
        gap: 0.6rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    body.college-page-home .cr-course-section {
        margin-bottom: 0.5rem !important;
    }
    
    body.college-page-home .cr-course-row {
        padding: 4px 10px !important;
        gap: 0.5rem !important;
        border-radius: 6px !important;
    }
    
    body.college-page-home .cr-course-sec-title {
        margin-bottom: 5px !important;
        padding-bottom: 4px !important;
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
    }
    
    body.college-page-home .cr-code-pill {
        padding: 8px 15px !important;
        margin-top: 0.8rem !important;
        font-size: 0.72rem !important;
        border-radius: 8px !important;
        width: 100%;
        justify-content: center;
        line-height: 1.3;
        flex-wrap: wrap;
        text-align: center;
        height: auto !important;
    }
    
    body.college-page-home .cr-code-pill strong {
        font-size: 0.95rem !important;
        letter-spacing: 0.5px !important;
    }
    
    body.college-page-home .cr-course-intake {
        font-size: 0.8rem !important;
        min-width: 30px !important;
    }
}

/* Fest */
body.college-page-home .cr-fest-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: .88;
}
body.college-page-home .cr-fest-sub {
    font-size: clamp(1rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: .5rem;
}
body.college-page-home .cr-fest-desc {
    font-size: clamp(.82rem, 1.4vw, 1rem);
    opacity: .78;
    margin-top: 1.2rem;
    max-width: 400px;
    line-height: 1.72;
}
body.college-page-home .cr-fest-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
body.college-page-home .cr-fest-stat-num {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -1px;
}
body.college-page-home .cr-fest-stat-lbl {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .65;
}
body.college-page-home .cr-fest-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 11px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    margin-top: 1.6rem;
    width: fit-content;
    transition: transform .3s, box-shadow .3s;
}
body.college-page-home .cr-fest-btn:hover {
    transform: translateY(-4px);
}

/* Event cards */
body.college-page-home .cr-event-grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
body.college-page-home .cr-event-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid;
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s;
}
body.college-page-home .cr-event-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}
body.college-page-home .cr-event-icon {
    font-size: 1.45rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}
body.college-page-home .cr-event-title {
    font-size: .93rem;
    font-weight: 700;
    color: #1e293b;
}
body.college-page-home .cr-event-desc {
    font-size: .73rem;
    color: #64748b;
    margin-top: 3px;
}

/* Infra */
body.college-page-home .cr-infra-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}
body.college-page-home .cr-infra-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 17px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: all .35s ease;
}
body.college-page-home .cr-infra-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
    transform: translateY(-5px);
}
body.college-page-home .cr-infra-icon {
    font-size: 1.55rem;
    margin-bottom: 9px;
    display: block;
}
body.college-page-home .cr-infra-num {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -.5px;
}
body.college-page-home .cr-infra-lbl {
    font-size: .68rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
body.college-page-home .cr-scholar-box {
    background: #fff;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 16px;
    padding: 18px 22px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, .14);
}
body.college-page-home .cr-scholar-amt {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -1px;
}
body.college-page-home .cr-scholar-lbl {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-top: 3px;
}

/* ── Arrows ──────────────────────────────────────────────── */
body.college-page-home .college-cr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(226, 232, 240, .6);
    border-radius: 50%;
    color: #1e293b;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    outline: none;
}
body.college-page-home .college-cr-arrow:hover {
    background: #14204a;
    color: #fbbf24;
    border-color: #14204a;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 28px rgba(20, 32, 74, .22);
}
body.college-page-home .college-cr-arrow.prev {
    left: 1.5rem;
}
body.college-page-home .college-cr-arrow.next {
    right: 1.5rem;
}

/* ── Dots ─────────────────────────────────────────────────── */
body.college-page-home .college-cr-dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
body.college-page-home .college-cr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(20, 32, 74, .18);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .4s ease;
    padding: 0;
}
body.college-page-home .college-cr-dot:hover {
    background: rgba(20, 32, 74, .45);
    transform: scale(1.2);
}
body.college-page-home .college-cr-dot.active {
    background: linear-gradient(135deg, #14204a, #1d4ed8);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(20, 32, 74, .3);
}

/* ── Progress bar ────────────────────────────────────────── */
body.college-page-home .college-cr-progress {
    position: absolute;
    top: 3px;
    left: 0;
    height: 2px;
    z-index: 25;
    background: rgba(0, 0, 0, .04);
    width: 100%;
}
body.college-page-home .college-cr-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #fbbf24, #14204a);
    border-radius: 0 2px 2px 0;
    transition: width .1s linear;
}

/* ── Shimmer headline effect (for titles) ─────────────── */
@keyframes home-crShimmer {
    0% {
        background-position: -200% center;
    }
    
    100% {
        background-position: 200% center;
    }
}
body.college-page-home .cr-shimmer {
    background: linear-gradient(90deg, #1a2540 30%, #f59e0b 50%, #1a2540 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: home-crShimmer 4s linear infinite;
}

/* ── Floating particle dots (decorative) ──────────────── */
@keyframes home-crFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .3;
    }
    
    50% {
        transform: translateY(-12px) scale(1.15);
        opacity: .6;
    }
}
@keyframes home-crPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}
body.college-page-home .cr-float-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: home-crFloat 3.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════
   SLIDE 7 — SCHOLARSHIPS (Red gradient)
   ══════════════════════════════════════════════════════════ */
body.college-page-home .cr-s7-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: clamp(2rem, 3.5vw, 3.5rem) 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
}
body.college-page-home .cr-s7-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fbbf24;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}
body.college-page-home .cr-s7-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -2px;
    margin-bottom: .5rem;
}
body.college-page-home .cr-s7-title em {
    font-style: normal;
    color: #fbbf24;
}
body.college-page-home .cr-s7-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 1.5rem;
}
body.college-page-home .cr-s7-amount-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 18px 24px;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    width: fit-content;
}
body.college-page-home .cr-s7-rupee {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}
body.college-page-home .cr-s7-amt-lbl {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 2px;
}
body.college-page-home .cr-s7-amt-title {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}
body.college-page-home .cr-s7-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fbbf24;
    color: #14204a;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 6px 24px rgba(251, 191, 36, .3);
}
body.college-page-home .cr-s7-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(251, 191, 36, .45);
}

/* Scholarship tier cards */
body.college-page-home .cr-s7-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
body.college-page-home .cr-s7-tier {
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: clamp(1rem, 1.5vw, 1.4rem);
    backdrop-filter: blur(6px);
    text-align: center;
    transition: transform .3s, background .3s;
}
body.college-page-home .cr-s7-tier:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .14);
}
body.college-page-home .cr-s7-tier-icon {
    font-size: 1.8rem;
    margin-bottom: .4rem;
}
body.college-page-home .cr-s7-tier-name {
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .2rem;
}
body.college-page-home .cr-s7-tier-val {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: .2rem;
}
body.college-page-home .cr-s7-tier-desc {
    font-size: .68rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:900px) {
    body.college-page-home .college-cr-track {
        height: clamp(540px, 100vw, 720px);
    }
    
    body.college-page-home .college-cr-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.6rem;
    }
    
    body.college-page-home .cr-hide-mobile {
        display: none;
    }
    
    body.college-page-home .cr-bars {
        height: 100px;
    }
    
    body.college-page-home .cr-accred-outer {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    body.college-page-home .cr-s7-wrap {
        grid-template-columns: 1fr;
    }
    
    body.college-page-home .cr-s7-tiers {
        grid-template-columns: 1fr 1fr;
    }
    /* Show a compact chart on mobile placement slide */
    
    body.college-page-home .cr-chart-mobile {
        display: flex !important;
    }
    
    body.college-page-home .cr-big-num {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }
    
    body.college-page-home .cr-fest-title {
        font-size: clamp(2.4rem, 10vw, 5rem);
        letter-spacing: -2px;
    }
    
    body.college-page-home .cr-admit-open {
        font-size: clamp(2rem, 10vw, 4rem);
    }
}
@media(max-width:576px) {
    body.college-page-home .college-cr-track {
        height: auto;
        min-height: 520px;
    }
    
    body.college-page-home .college-cr-arrow {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }
    
    body.college-page-home .college-cr-arrow.prev {
        left: .4rem;
    }
    
    body.college-page-home .college-cr-arrow.next {
        right: .4rem;
    }
    
    body.college-page-home .cr-accred-outer {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ── Compact mobile chart ── */
body.college-page-home .cr-chart-mobile {
    display: none;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    margin-top: 1rem;
    gap: 8px;
    flex-direction: column;
}
body.college-page-home .cr-chart-mobile-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 6px;
}
body.college-page-home .cr-chart-mobile-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .cr-chart-mobile-yr {
    font-size: .62rem;
    font-weight: 700;
    color: #94a3b8;
    width: 52px;
    flex-shrink: 0;
}
body.college-page-home .cr-chart-mobile-bar {
    height: 12px;
    border-radius: 6px;
    transition: width 1s ease;
}
body.college-page-home .cr-chart-mobile-val {
    font-size: .68rem;
    font-weight: 800;
    color: #1e293b;
    margin-left: 4px;
}

/* Inline styles from index.html */
body.college-page-home .fb-cr-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
}
body.college-page-home .fb-text-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: clamp(2rem, 3.5vw, 2.5rem);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(20, 32, 74, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.college-page-home .fb-iframe-desktop {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
}
body.college-page-home .fb-iframe-mobile {
    display: none;
}
@media(max-width:900px) {
    body.college-page-home .fb-cr-grid {
        grid-template-columns: 1fr !important;
        height: auto;
        gap: 1.5rem !important;
    }
    
    body.college-page-home .fb-text-card {
        padding: 1.5rem !important;
        border-radius: 18px !important;
    }
    /* Hide paragraph on mobile to save space while keeping title and badge */
    
    body.college-page-home .fb-text-card .cr-desc,
    body.college-page-home .fb-text-card .cr-year-tag {
        display: none !important;
    }
    
    body.college-page-home .fb-text-card .cr-big-num {
        font-size: 2.2rem !important;
        margin-top: 0.4rem !important;
        line-height: 0.9 !important;
    }
    
    body.college-page-home .fb-text-card .cr-badge {
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
    }
    
    body.college-page-home .fb-iframe-container {
        height: clamp(450px, 70vh, 600px) !important;
    }
    
    body.college-page-home .fb-iframe-desktop {
        display: none !important;
    }
    
    body.college-page-home .fb-iframe-mobile {
        display: flex !important;
        width: 100%;
        height: 100%;
        justify-content: center;
    }
    
    body.college-page-home .fb-iframe-mobile iframe {
        max-width: 100% !important;
    }
}

/* Inline styles from index.html */
body.college-page-home .event-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(8, 12, 30, 0.98) 0%, rgba(15, 23, 50, 0.85) 60%, rgba(20, 32, 74, 0.4) 100%);
    color: #ffffff;
    text-align: center;
    padding: 18px 10px 12px;
    font-size: 0.92rem;
    font-weight: 700;
    z-index: 3;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0);
}
body.college-page-home .news-item:hover .event-title-overlay {
    background: linear-gradient(to top, rgba(20, 32, 74, 0.98) 0%, rgba(20, 32, 74, 0.85) 60%, rgba(20, 32, 74, 0.4) 100%);
    border-top: 1px solid rgba(251, 191, 36, 0.4);
    padding-bottom: 20px;
}

/* Inline styles from index.html */

/* ================================================================
   COLLEGE ACADEMICS HUB v10 — PREMIUM EXPAND ACCORDION + 6-COL GRID
   ================================================================ */

/* ── BASE ── */
body.college-page-home .aq-section {
    background: linear-gradient(160deg, #fffcf5 0%, #faf5eb 40%, #fffdf7 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e8e0d0;
}
body.college-page-home .aq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 3px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    box-shadow: 0 0 22px rgba(251, 191, 36, .4);
}
body.college-page-home .aq-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: 2;
}

/* ── HEADER ── */
body.college-page-home .aq-hdr {
    text-align: center;
    margin-bottom: 2rem;
}
body.college-page-home .aq-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251, 191, 36, .14), rgba(217, 119, 6, .06));
    border: 1.5px solid rgba(251, 191, 36, .35);
    color: #b45309;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: .9rem;
    box-shadow: 0 4px 16px rgba(251, 191, 36, .16);
}
body.college-page-home .aq-h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #1a2540;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: .5rem;
}
body.college-page-home .aq-h2 span {
    color: #f59e0b;
}
body.college-page-home .aq-sub {
    font-size: .95rem;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}
body.college-page-home .aq-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 99px;
    margin: .9rem auto 0;
}

/* ── TOGGLE ── */
body.college-page-home .aq-tabs {
    display: flex;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #e2ddd2;
    border-radius: 14px;
    padding: 4px;
    width: fit-content;
    margin: 1.8rem auto 2.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
body.college-page-home .aq-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 30px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    transition: all .28s cubic-bezier(.23, 1, .32, 1);
    white-space: nowrap;
    user-select: none;
}
body.college-page-home .aq-tab i {
    font-size: .92rem;
}
body.college-page-home .aq-tab:hover {
    color: #14204a;
}
body.college-page-home .aq-tab.aq-on {
    background: linear-gradient(135deg, #14204a, #1e3a6e);
    color: #fbbf24;
    box-shadow: 0 4px 16px rgba(20, 32, 74, .2);
}

/* ── PANES ── */
body.college-page-home .aq-pane {
    display: none;
}
body.college-page-home .aq-pane.aq-active {
    display: block;
    animation: home-aqIn .45s cubic-bezier(.4, 0, .2, 1) both;
}
@keyframes home-aqIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════
   PROGRAMMES — HORIZONTAL EXPAND ACCORDION
   ═══════════════════════════════════════════════════════ */
body.college-page-home .aq-acc {
    display: flex;
    gap: 8px;
    height: clamp(400px, 44vw, 520px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .12);
}

/* Panel */
body.college-page-home .aq-panel {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    cursor: pointer;
    transition: flex .7s cubic-bezier(.25, 1, .5, 1);
    text-decoration: none;
    display: block;
}
body.college-page-home .aq-panel:hover,
body.college-page-home .aq-panel.aq-ex {
    flex: 4;
}

/* BG image */
body.college-page-home .aq-panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s ease, filter .5s;
    transform: scale(1.12);
    filter: brightness(.85);
}
body.college-page-home .aq-panel:hover .aq-panel-img,
body.college-page-home .aq-panel.aq-ex .aq-panel-img {
    transform: scale(1);
    filter: brightness(.38);
}

/* Dark overlay */
body.college-page-home .aq-panel-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 12, 28, .92) 0%, rgba(8, 12, 28, .35) 50%, rgba(8, 12, 28, .15) 100%);
    transition: background .5s;
}
body.college-page-home .aq-panel:hover .aq-panel-ov,
body.college-page-home .aq-panel.aq-ex .aq-panel-ov {
    background: linear-gradient(0deg, rgba(8, 12, 28, .96) 0%, rgba(8, 12, 28, .7) 55%, rgba(8, 12, 28, .3) 100%);
}

/* ── Collapsed label (vertical) ── */
body.college-page-home .aq-panel-label {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem .6rem;
    text-align: center;
    transition: opacity .3s;
}
body.college-page-home .aq-panel:hover .aq-panel-label,
body.college-page-home .aq-panel.aq-ex .aq-panel-label {
    opacity: 0;
    pointer-events: none;
}
body.college-page-home .aq-panel-label-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .5rem;
    font-size: 1rem;
    color: #fff;
    backdrop-filter: blur(6px);
}
body.college-page-home .aq-panel-label-txt {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 auto;
}

/* ── Expanded body ── */
body.college-page-home .aq-panel-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 1.8rem clamp(1.4rem, 2.5vw, 2.2rem);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease .1s, transform .4s ease .1s;
    pointer-events: none;
}
body.college-page-home .aq-panel:hover .aq-panel-body,
body.college-page-home .aq-panel.aq-ex .aq-panel-body {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Badge */
body.college-page-home .aq-pb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: .6rem;
    width: fit-content;
    backdrop-filter: blur(6px);
}

/* Title */
body.college-page-home .aq-pt {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: .12rem;
}
body.college-page-home .aq-pf {
    font-size: .82rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: .45rem;
}

/* Desc */
body.college-page-home .aq-pd {
    font-size: clamp(.76rem, 1vw, .88rem);
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: .6rem;
    max-width: 380px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Branch pills */
body.college-page-home .aq-pbr {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: .6rem;
}
body.college-page-home .aq-pbr span {
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 3px 9px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .82);
    white-space: nowrap;
}

/* Meta */
body.college-page-home .aq-pm {
    display: flex;
    gap: 1.2rem;
    margin-bottom: .6rem;
}
body.college-page-home .aq-pm div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .74rem;
    font-weight: 600;
    color: #94a3b8;
}
body.college-page-home .aq-pm i {
    font-size: .65rem;
}

/* CTA */
body.college-page-home .aq-pcta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 9px;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}
body.college-page-home .aq-pcta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

/* ═══════════════════════════════════════════════════════
   COURSES — 3×2 PREMIUM GRID
   ═══════════════════════════════════════════════════════ */
body.college-page-home .aq-cg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
body.college-page-home .aq-cc {
    background: #fff;
    border: 1.5px solid #ede8de;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), border-color .3s, box-shadow .35s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

/* Decorative corner dot */
body.college-page-home .aq-cc::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lc);
    opacity: .25;
    transition: opacity .3s, transform .3s;
}
body.college-page-home .aq-cc:hover::after {
    opacity: .6;
    transform: scale(1.5);
}
body.college-page-home .aq-cc:hover {
    transform: translateY(-8px);
    border-color: var(--lc);
    box-shadow: 0 20px 50px var(--lsh), 0 0 0 1.5px var(--lc);
}

/* Top accent bar */
body.college-page-home .aq-cc-bar {
    height: 4px;
    background: var(--lc);
    opacity: .7;
    transition: opacity .3s, height .3s;
}
body.college-page-home .aq-cc:hover .aq-cc-bar {
    opacity: 1;
    height: 5px;
}

/* Body — horizontal layout */
body.college-page-home .aq-cc-body {
    padding: clamp(1rem, 1.5vw, 1.4rem) clamp(1.2rem, 1.8vw, 1.6rem);
    flex: 1;
    display: flex;
    gap: clamp(.8rem, 1.2vw, 1.2rem);
}

/* Left: icon column */
body.college-page-home .aq-cc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}
body.college-page-home .aq-cc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--lbg);
    border: 1.5px solid var(--lbd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--lc);
    transition: background .3s, transform .35s, box-shadow .3s, color .3s;
}
body.college-page-home .aq-cc:hover .aq-cc-icon {
    background: var(--lc);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 22px var(--lsh);
}
body.college-page-home .aq-cc-badge {
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--lc);
    background: var(--lbg);
    border: 1px solid var(--lbd);
    padding: 3px 8px;
    border-radius: 50px;
    transition: background .3s, color .3s;
}
body.college-page-home .aq-cc:hover .aq-cc-badge {
    background: var(--lc);
    color: #fff;
}

/* Right: info column */
body.college-page-home .aq-cc-right {
    flex: 1;
    min-width: 0;
}
body.college-page-home .aq-cc-name {
    font-size: .95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: .3rem;
    transition: color .3s;
}
body.college-page-home .aq-cc:hover .aq-cc-name {
    color: var(--lc);
}
body.college-page-home .aq-cc-desc {
    font-size: .76rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: .55rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
body.college-page-home .aq-cc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: .6rem;
}
body.college-page-home .aq-cc-tag {
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: 50px;
    background: var(--lbg);
    border: 1px solid var(--lbd);
    color: var(--lc);
    transition: background .25s, color .25s;
}
body.college-page-home .aq-cc:hover .aq-cc-tag {
    background: var(--lc);
    color: #fff;
    border-color: var(--lc);
}

/* Divider */
body.college-page-home .aq-cc-div {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, #e8e4da 50%, transparent 95%);
    margin-bottom: .55rem;
}

/* Stats row */
body.college-page-home .aq-cc-stats {
    display: flex;
    gap: 0;
}
body.college-page-home .aq-cc-stat {
    flex: 1;
    text-align: center;
    position: relative;
}
body.college-page-home .aq-cc-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 8%;
    height: 84%;
    width: 1px;
    background: #e8e4da;
}
body.college-page-home .aq-cc-sv {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--lc);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    transition: transform .3s;
}
body.college-page-home .aq-cc:hover .aq-cc-sv {
    transform: scale(1.06);
}
body.college-page-home .aq-cc-sl {
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
}

/* CTA strip */
body.college-page-home .aq-cc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 700;
    color: #fff;
    background: var(--lc);
    padding: 9px;
    letter-spacing: .3px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .28s, transform .28s;
}
body.college-page-home .aq-cc:hover .aq-cc-cta {
    opacity: 1;
    transform: translateY(0);
}
body.college-page-home .aq-cc:hover .aq-cc-cta i {
    animation: home-aqArr .6s ease infinite alternate;
}
@keyframes home-aqArr {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(4px);
    }
}

/* ── FOOTER ── */
body.college-page-home .aq-footer {
    margin-top: 2.2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
body.college-page-home .aq-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #14204a;
    color: #fbbf24;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 6px 22px rgba(20, 32, 74, .15);
}
body.college-page-home .aq-btn1:hover {
    background: #fbbf24;
    color: #14204a;
    box-shadow: 0 10px 32px rgba(251, 191, 36, .3);
    transform: translateY(-3px);
}
body.college-page-home .aq-btn2 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: #14204a;
    border: 2px solid #e2ddd2;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: all .3s;
}
body.college-page-home .aq-btn2:hover {
    border-color: #14204a;
    box-shadow: 0 6px 20px rgba(20, 32, 74, .1);
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    body.college-page-home .aq-acc {
        flex-direction: column;
        height: auto;
        gap: 6px;
        border-radius: 18px;
    }
    
    body.college-page-home .aq-panel {
        flex: none !important;
        height: 75px;
        transition: height .5s cubic-bezier(.25, 1, .5, 1);
    }
    
    body.college-page-home .aq-panel:hover,
    body.college-page-home .aq-panel.aq-ex {
        height: 340px;
    }
    
    body.college-page-home .aq-panel-label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: .8rem 1.2rem;
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
    }
    
    body.college-page-home .aq-panel-label-txt {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        font-size: .85rem;
    }
    
    body.college-page-home .aq-panel-label-icon {
        margin: 0;
    }
    
    body.college-page-home .aq-cg {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:600px) {
    body.college-page-home .aq-tab {
        padding: 9px 18px;
        font-size: .82rem;
    }
    
    body.college-page-home .aq-cg {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    body.college-page-home .aq-panel {
        height: 68px;
    }
    
    body.college-page-home .aq-panel:hover,
    body.college-page-home .aq-panel.aq-ex {
        height: 300px;
    }
}

/* Inline styles from index.html */

/* ═════════════════════════════════════════════
   COLLEGE YouTube Wall v2 — Thumbnail + Lightbox
   ═════════════════════════════════════════════ */
body.college-page-home .college-yt-section {
    background: linear-gradient(180deg, #050a14 0%, #080f1f 100%);
    padding: var(--section-pad-y) 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Ambient glow orbs */
body.college-page-home .college-yt-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.07) 0%, transparent 65%);
    top: -300px;
    left: -250px;
    pointer-events: none;
}
body.college-page-home .college-yt-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 0, 255, 0.05) 0%, transparent 60%);
    bottom: -200px;
    right: -200px;
    pointer-events: none;
}

/* Subtle grid */
body.college-page-home .college-yt-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
}
body.college-page-home .college-yt-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

/* ─── Header ─── */
body.college-page-home .college-yt-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}
body.college-page-home .college-yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.8rem;
}
body.college-page-home .college-yt-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4444;
    animation: home-yt-blink 1.5s infinite;
}
@keyframes home-yt-blink {
    0%,
    100% {
        opacity: 1;
    }
    
    50% {
        opacity: 0.3;
    }
}
body.college-page-home .college-yt-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0;
}
body.college-page-home .college-yt-title span {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 50%, #ffa0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.college-page-home .college-yt-sub {
    color: #64748b;
    font-size: 0.98rem;
    margin-top: 0.6rem;
    max-width: 480px;
    line-height: 1.6;
}

/* Auto-timer progress bar */
body.college-page-home .college-yt-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
    max-width: 200px;
}
body.college-page-home .college-yt-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Nav Controls */
body.college-page-home .college-yt-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
body.college-page-home .college-yt-nav-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
    flex-shrink: 0;
}
body.college-page-home .college-yt-nav-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}
body.college-page-home .college-yt-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    transform: none;
}
body.college-page-home .college-yt-pause-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}
body.college-page-home .college-yt-pause-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* ─── Track ─── */
body.college-page-home .college-yt-track-wrap {
    position: relative;
    overflow: hidden;
}

/* Edge fade */
body.college-page-home .college-yt-track-wrap::before,
body.college-page-home .college-yt-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 10;
    pointer-events: none;
}
body.college-page-home .college-yt-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #080f1f, transparent);
}
body.college-page-home .college-yt-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #080f1f, transparent);
}
body.college-page-home .college-yt-track {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1.2rem 0.5rem 1.8rem 0.5rem;
    will-change: scroll-position;
}
body.college-page-home .college-yt-track::-webkit-scrollbar {
    display: none;
}

/* ─── Thumbnail Card ─── */
body.college-page-home .college-yt-card {
    flex: 0 0 calc(25% - 16px);
    min-width: 295px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}
body.college-page-home .college-yt-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.18), 0 0 0 1px rgba(255, 60, 60, 0.25);
}

/* Thumbnail area */
body.college-page-home .college-yt-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    
    overflow: hidden;
    background: #0a0a0a;
}
body.college-page-home .college-yt-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    will-change: transform;
}
body.college-page-home .college-yt-card:hover .college-yt-thumb img {
    transform: scale(1.08);
}

/* Play button overlay */
body.college-page-home .college-yt-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}
body.college-page-home .college-yt-card:hover .college-yt-play-overlay {
    background: rgba(0, 0, 0, 0.3);
}
body.college-page-home .college-yt-play-btn {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding-left: 4px;
    transform: scale(0.9);
}
body.college-page-home .college-yt-card:hover .college-yt-play-btn {
    background: #ff0000;
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.5);
    border-color: transparent;
    color: #fff;
}

/* Duration badge */
body.college-page-home .college-yt-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Card body */
body.college-page-home .college-yt-card-body {
    padding: 16px 18px 18px;
}
body.college-page-home .college-yt-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 9px;
    border: 1px solid;
}
body.college-page-home .college-yt-card-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.45;
    margin: 0 0 12px;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.college-page-home .college-yt-card:hover .college-yt-card-title {
    color: #fca5a5;
}
body.college-page-home .college-yt-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: #475569;
}
body.college-page-home .college-yt-card-meta img {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    object-fit: contain;
    background: #fff;
}

/* ─── Dots ─── */
body.college-page-home .college-yt-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 2rem;
}
body.college-page-home .college-yt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    outline: none;
}
body.college-page-home .college-yt-dot.active {
    background: #ff0000;
    width: 22px;
    border-radius: 4px;
}

/* ─── Subscribe CTA ─── */
body.college-page-home .college-yt-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
body.college-page-home .college-yt-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    font-weight: 700;
    font-size: 0.97rem;
    letter-spacing: 0.3px;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
    transition: all 0.3s ease;
}
body.college-page-home .college-yt-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.5);
    color: #fff;
}
body.college-page-home .college-yt-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
body.college-page-home .college-yt-view-all:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* ─── Lightbox Modal ─── */
body.college-page-home .college-yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
body.college-page-home .college-yt-modal.open {
    display: flex;
    animation: home-ytModalIn 0.3s ease;
}
@keyframes home-ytModalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    
    to {
        opacity: 1;
        transform: scale(1);
    }
}
body.college-page-home .college-yt-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #0a0f1d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}
body.college-page-home .college-yt-modal-video {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
}
body.college-page-home .college-yt-modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
body.college-page-home .college-yt-modal-info {
    padding: 18px 24px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
body.college-page-home .college-yt-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
body.college-page-home .college-yt-modal-close:hover {
    background: rgba(255, 0, 0, 0.6);
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    body.college-page-home .college-yt-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}
@media (max-width: 900px) {
    body.college-page-home .college-yt-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 265px;
    }
    
    body.college-page-home .college-yt-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    body.college-page-home .college-yt-card {
        flex: 0 0 82vw;
        min-width: 250px;
    }
    
    body.college-page-home .college-yt-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Inline styles from index.html */

/* =========================================================================
   COLLEGE LEADERSHIP SECTION — PREMIUM ELITE (LIGHT THEME)
   ========================================================================= */
body.college-page-home .ld-section {
    position: relative;
    background: #f8fafc;
    color: #0f172a;
    padding: var(--section-pad-y) 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e2e8f0;
}

/* Gold top accent strip */
body.college-page-home .ld-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.35);
    z-index: 3;
}

/* Subtle background gradient overlay */
body.college-page-home .ld-section-inner-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.08), transparent 50%), radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Giant Quote Highlight in Background */
body.college-page-home .ld-bg-quote {
    position: absolute;
    top: 3%;
    left: 8%;
    font-size: 30rem;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.025);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}
body.college-page-home .ld-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* ── Left Side: Title & Avatars ── */
body.college-page-home .ld-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.college-page-home .ld-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    color: #1e293b;
}
body.college-page-home .ld-title span {
    color: #ea580c;
    /* Elite Orange */
}

/* Interactive Avatars */
body.college-page-home .ld-avatars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

/* Connecting line between avatars */
body.college-page-home .ld-avatars::before {
    content: '';
    position: absolute;
    left: clamp(35px, 4.5vw, 45px);
    /* center of avatar */
    
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
    /* Light mode line */
    
    z-index: 0;
}
body.college-page-home .ld-avatar-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: none;
    color: #475569;
    cursor: pointer;
    text-align: left;
    padding: 10px;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    opacity: 0.7;
    filter: grayscale(80%);
}
body.college-page-home .ld-avatar-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding-right: 25px;
    color: #0f172a;
}
body.college-page-home .ld-avatar-btn:hover {
    opacity: 0.9;
}
body.college-page-home .ld-avatar-btn.active:hover {
    opacity: 1;
}
body.college-page-home .ld-img-wrap {
    width: clamp(70px, 9vw, 90px);
    height: clamp(70px, 9vw, 90px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    position: relative;
    background: #fff;
}
body.college-page-home .ld-avatar-btn.active .ld-img-wrap {
    border-color: #ea580c;
    transform: scale(1.05);
}
body.college-page-home .ld-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative rotating ring for active avatar */
body.college-page-home .ld-img-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(234, 88, 12, 0.6);
    animation: home-spin 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}
body.college-page-home .ld-avatar-btn.active .ld-img-wrap::before {
    opacity: 1;
}
@keyframes home-spin {
    100% {
        transform: rotate(360deg);
    }
}
body.college-page-home .ld-info {
    display: flex;
    flex-direction: column;
}
body.college-page-home .ld-name {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
body.college-page-home .ld-role {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 800;
    color: #64748b;
    /* Subdued role color initially */
    
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}
body.college-page-home .ld-avatar-btn.active .ld-name {
    color: #ea580c;
}
body.college-page-home .ld-avatar-btn.active .ld-role {
    color: #d97706;
}

/* ── Right Side: Quote Content ── */
body.college-page-home .ld-right {
    position: relative;
    display: flex;
    align-items: center;
    border-left: 2px solid rgba(0, 0, 0, 0.06);
    padding-left: clamp(1.5rem, 4vw, 3rem);
    min-height: 280px;
}

/* Animated progress bar on the right border */
body.college-page-home .ld-progress {
    position: absolute;
    left: -2px;
    top: 50px;
    width: 2px;
    height: 60px;
    background: #ea580c;
    transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
body.college-page-home .ld-quote-box {
    position: relative;
    width: 100%;
}
body.college-page-home .ld-quote {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left center;
}
body.college-page-home .ld-quote.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide up/fade effect */
body.college-page-home .ld-quote.slide-out {
    transform: translateY(-70%);
    opacity: 0;
}
body.college-page-home .ld-quote.slide-in {
    transform: translateY(-30%);
    opacity: 0;
}
body.college-page-home .ld-quote-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.6;
    color: #334155;
    /* Dark gray for light theme text */
    
    font-weight: 500;
    margin-bottom: 1.5rem;
}
body.college-page-home .ld-quote-icon {
    font-size: 2.5rem;
    color: rgba(234, 88, 12, 0.15);
    /* Faint orange */
    
    margin-bottom: 1rem;
    display: block;
}

/* Responsive */
@media(max-width: 900px) {
    body.college-page-home .ld-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    body.college-page-home .ld-title {
        text-align: center;
    }
    
    body.college-page-home .ld-avatars {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    body.college-page-home .ld-avatars::before {
        display: none;
    }
    
    body.college-page-home .ld-avatar-btn {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    body.college-page-home .ld-right {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(0, 0, 0, 0.06);
        padding-top: 2rem;
        min-height: 200px;
    }
    
    body.college-page-home .ld-progress {
        top: -2px;
        left: 20%;
        width: 60px;
        height: 2px;
        transition: left 0.5s;
    }
    
    body.college-page-home .ld-quote {
        text-align: center;
    }
}
@media(max-width: 500px) {
    body.college-page-home .ld-name {
        font-size: 0.95rem;
    }
    
    body.college-page-home .ld-img-wrap {
        width: 60px;
        height: 60px;
    }
}

/* Inline styles from index.html */

/* --- COLLEGEIANS HUB SECTION | ELITE COMPACT & OPTIMIZED --- */
body.college-page-home .collegeians-section {
    position: relative;
    padding: var(--section-pad-y) 0;
    background: #060b14;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'Inter', sans-serif;
}
body.college-page-home .collegeians-ambient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 40%), linear-gradient(180deg, #060b14 0%, #0a1122 100%);
    z-index: 0;
    pointer-events: none;
}
body.college-page-home .collegeians-container {
    position: relative;
    z-index: 10;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
body.college-page-home .collegeians-top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 2.5rem;
}
body.college-page-home .collegeians-intro {
    max-width: 750px;
}
body.college-page-home .r-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.02));
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}
body.college-page-home .r-badge i {
    animation: home-flashIcon 2s infinite ease-in-out;
}
@keyframes home-flashIcon {
    0%,
    100% {
        fill: #60a5fa;
        transform: scale(1);
        filter: brightness(1);
    }
    
    50% {
        fill: #fff;
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}
body.college-page-home .collegeians-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

/* Colors for COLLEGEians Hub */
body.college-page-home .brand-collegeians {
    color: #fbbf24 !important;
    font-weight: 900;
    -webkit-text-fill-color: #fbbf24 !important;
}
body.college-page-home .brand-hub {
    color: #38bdf8 !important;
    font-weight: 900;
    -webkit-text-fill-color: #38bdf8 !important;
}
body.college-page-home .collegeians-subtitle {
    font-size: 1.05rem;
    color: #cbd5e1;
    /* Clearer readability */
    
    line-height: 1.7;
    margin-bottom: 20px;
}
body.college-page-home .collegeians-fullform {
    display: inline-block;
    background: rgba(15, 23, 42, 0.6);
    border-left: 4px solid #fbbf24;
    padding: 14px 22px;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
body.college-page-home .collegeians-fullform strong {
    color: #fbbf24;
    font-size: 1.15rem;
}
body.college-page-home .collegeians-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
@media (max-width: 850px) {
    body.college-page-home .collegeians-grid {
        grid-template-columns: 1fr;
    }
}
body.college-page-home .r-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.college-page-home .r-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
body.college-page-home .r-visual {
    position: relative;
    width: 100%;
    height: 220px;
    display: block;
    overflow: hidden;
    background: #000;
}
body.college-page-home .r-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    opacity: 0.9;
}
body.college-page-home .r-card:hover .r-visual img {
    transform: scale(1.08);
    opacity: 1;
}
body.college-page-home .r-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 1.0) 0%, rgba(15, 23, 42, 0.6) 30%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
body.college-page-home .r-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.85);
    /* Solidified to remove blur performance hit */
    
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
body.college-page-home .r-body {
    padding: 0 2rem 2.2rem;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
body.college-page-home .r-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-home .r-card-title i {
    font-size: 1.2rem;
    color: #fbbf24;
}
body.college-page-home .r-card-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
body.college-page-home .r-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.8rem;
}
body.college-page-home .r-list li {
    font-size: 0.95rem;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
body.college-page-home .r-list li i {
    color: #fbbf24;
    margin-top: 3px;
    font-size: 0.9rem;
}
body.college-page-home .r-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    padding: 10px 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 5px;
    background: rgba(251, 191, 36, 0.05);
}
body.college-page-home .r-link:hover {
    color: #fff;
    background: #fbbf24;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}
body.college-page-home .r-link i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}
body.college-page-home .vanguard-card {
    border-color: rgba(59, 130, 246, 0.2);
}
body.college-page-home .vanguard-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
body.college-page-home .vanguard-card .r-tag {
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}
body.college-page-home .vanguard-card .r-card-title i {
    color: #3b82f6;
}
body.college-page-home .vanguard-card .r-list li i {
    color: #3b82f6;
}
body.college-page-home .vanguard-card .r-link {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
}
body.college-page-home .vanguard-card .r-link:hover {
    color: #fff;
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Inline styles from index.html */
body.college-page-home .inc-sec-light {
    position: relative;
    padding: var(--section-pad-y) 0;
    background: radial-gradient(circle at top right, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    border-top: 1px solid #e2e8f0;
}
body.college-page-home .inc-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
body.college-page-home .inc-card-split {
    background: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
body.college-page-home .inc-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.college-page-home .inc-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.02));
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #d97706;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
    width: fit-content;
}
body.college-page-home .inc-label i {
    animation: home-flashIconInc 2s infinite ease-in-out;
}
@keyframes home-flashIconInc {
    0%,
    100% {
        color: #d97706;
        transform: scale(1);
    }
    
    50% {
        color: #fbbf24;
        transform: scale(1.2);
    }
}
body.college-page-home .inc-head {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #14204a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}
body.college-page-home .inc-body {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}
body.college-page-home .inc-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}
body.college-page-home .isr-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14204a;
    margin: 0;
}
body.college-page-home .isr-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
}
body.college-page-home .inc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #14204a;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s;
}
body.college-page-home .inc-cta:hover {
    background: #fbbf24;
    color: #14204a;
    transform: translateY(-3px);
}
body.college-page-home .inc-img-side {
    position: relative;
    height: 100%;
    min-height: 400px;
}
body.college-page-home .inc-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 992px) {
    body.college-page-home .inc-card-split {
        grid-template-columns: 1fr;
    }
    
    body.college-page-home .inc-content {
        padding: 3rem 2rem;
    }
}

/* Inline styles from index.html */
body.college-page-home .placements-compact-sec {
    padding: var(--section-pad-y) 0;
    /* Real COLLEGE campus photo — placement/training session */
    
    background: url('../img/seminar1.jpg') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Layer 1: Primary dark overlay — keeps text readable (same pattern as testimonials) */
body.college-page-home .placements-compact-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 12, 30, 0.93) 0%, rgba(15, 23, 50, 0.88) 50%, rgba(20, 32, 74, 0.90) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Layer 2: Subtle gold + blue radial accents layered on top of the photo */
body.college-page-home .placements-compact-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse 600px 400px at 10% 65%, rgba(251, 191, 36, 0.08) 0%, transparent 65%), radial-gradient(ellipse 500px 350px at 90% 20%, rgba(99, 102, 241, 0.07) 0%, transparent 65%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-size: auto, auto, 32px 32px;
    animation: home-plcOrbDrift 14s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes home-plcOrbDrift {
    0% {
        transform: translate(0, 0);
    }
    
    50% {
        transform: translate(-16px, 10px);
    }
    
    100% {
        transform: translate(12px, -8px);
    }
}

/* Layer 3: top/bottom vignette */
body.college-page-home .placements-compact-sec .plc-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 12, 30, 0.6) 0%, transparent 18%, transparent 82%, rgba(8, 12, 30, 0.6) 100%);
    pointer-events: none;
    z-index: 2;
}
body.college-page-home .placements-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    /* above all overlay layers */
}

/* Header - Matching other sections */
body.college-page-home .plc-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
body.college-page-home .plc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.02));
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #d97706;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
}
body.college-page-home .plc-badge i {
    animation: home-flashIconPlc 2s infinite ease-in-out;
}
@keyframes home-flashIconPlc {
    0%,
    100% {
        color: #d97706;
        transform: scale(1);
    }
    
    50% {
        color: #fbbf24;
        transform: scale(1.2);
    }
}
body.college-page-home .plc-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
}
body.college-page-home .plc-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Compact Stats Grid */
body.college-page-home .plc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 3.5rem;
}
body.college-page-home .plc-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
body.college-page-home .plc-stat-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}
body.college-page-home .plc-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 8px;
}
body.college-page-home .plc-stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
}

/* Companies Title */
body.college-page-home .plc-companies-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Compact Logo Carousel */
body.college-page-home .logo-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}
body.college-page-home .logo-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}
body.college-page-home .logo-row::before,
body.college-page-home .logo-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
body.college-page-home .logo-row::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 12, 30, 0.95) 0%, transparent 100%);
}
body.college-page-home .logo-row::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(8, 12, 30, 0.95) 100%);
}
body.college-page-home .logo-track {
    display: flex;
    gap: 30px;
    animation: home-scrollLeft 40s linear infinite;
    width: fit-content;
}
body.college-page-home .logo-row:nth-child(2) .logo-track {
    animation: home-scrollRight 40s linear infinite;
}
@keyframes home-scrollLeft {
    0% {
        transform: translateX(0);
    }
    
    100% {
        transform: translateX(-50%);
    }
}
@keyframes home-scrollRight {
    0% {
        transform: translateX(-50%);
    }
    
    100% {
        transform: translateX(0);
    }
}
body.college-page-home .logo-track:hover {
    animation-play-state: paused;
}
body.college-page-home .company-logo-box {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
body.college-page-home .company-logo-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}
body.college-page-home .company-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s;
}
body.college-page-home .company-logo-box:hover img {
    filter: grayscale(0%);
}

/* CTA Button */
body.college-page-home .plc-cta {
    text-align: center;
    margin-top: 2.5rem;
}
body.college-page-home .plc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #fbbf24;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    animation: home-pulseButtonGlow 2s infinite alternate ease-in-out;
}
@keyframes home-pulseButtonGlow {
    0% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.4), 0 0 20px rgba(251, 191, 36, 0.2);
        transform: scale(1);
    }
    
    100% {
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.8), 0 0 45px rgba(251, 191, 36, 0.6);
        transform: scale(1.03);
    }
}
body.college-page-home .plc-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 1);
    background: #fcd34d;
    animation-play-state: paused;
}
@media (max-width: 992px) {
    body.college-page-home .plc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    body.college-page-home .plc-title {
        font-size: 2.5rem;
    }
    
    body.college-page-home .plc-stat-number {
        font-size: 2rem;
    }
    
    body.college-page-home .plc-stats-grid {
        gap: 15px;
    }
    
    body.college-page-home .company-logo-box {
        width: 140px;
        height: 80px;
    }
}

/* Inline styles from index.html */
body.college-page-home .map-sec-light {
    padding: var(--section-pad-y) 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    position: relative;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Decorative Background Elements */
body.college-page-home .map-sec-light::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
body.college-page-home .map-light-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
body.college-page-home .map-light-card {
    background: #f1f5f9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 380px 1fr 360px;
}
body.college-page-home .mlc-info {
    padding: 2.5rem;
    background: #fff;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.college-page-home .mlc-facebook {
    background: #f0f7ff;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.2rem;
    align-items: center;
    position: relative;
    border-left: 3px solid #1877F2;
}

/* Premium Facebook Branding Accent Line */
body.college-page-home .mlc-facebook::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1877F2, #0ea5e9);
}
body.college-page-home .mlc-map-wrap {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}
body.college-page-home .mlc-header {
    margin-bottom: 2rem;
}
body.college-page-home .mlc-sub {
    --badge-color: #d97706;
    --badge-rgb: 217, 119, 6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--badge-rgb), 0.1), rgba(var(--badge-rgb), 0.02));
    border: 1px solid rgba(var(--badge-rgb), 0.3);
    color: var(--badge-color) !important;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(var(--badge-rgb), 0.1);
    width: fit-content;
}
body.college-page-home .mlc-sub i {
    animation: home-flashIconMlc 2s infinite ease-in-out;
    color: var(--badge-color);
}
@keyframes home-flashIconMlc {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    
    50% {
        transform: scale(1.2);
        filter: brightness(1.5);
    }
}
body.college-page-home .mlc-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #14204a;
    margin-top: 5px;
    line-height: 1.1;
    letter-spacing: -1px;
}
body.college-page-home .mlc-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
body.college-page-home .mlc-icon {
    width: 44px;
    height: 44px;
    background: #f8fafc;
    color: #14204a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
body.college-page-home .mlc-contact-item:hover .mlc-icon {
    background: #fbbf24;
    color: #fff;
    transform: rotate(-10deg);
}
body.college-page-home .mlc-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
body.college-page-home .mlc-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
body.college-page-home .mlc-text a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
body.college-page-home .mlc-text a:hover {
    color: #d97706;
}
body.college-page-home .mlc-actions {
    margin-top: 2rem;
    display: flex;
    gap: 12px;
}
body.college-page-home .btn-mlc {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
body.college-page-home .btn-mlc-gold {
    background: #14204a;
    color: #fff;
}
body.college-page-home .btn-mlc-gold:hover {
    background: #fbbf24;
    color: #14204a;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}
body.college-page-home .btn-mlc-outline {
    border: 2px solid #e2e8f0;
    color: #14204a;
}
body.college-page-home .btn-mlc-outline:hover {
    border-color: #14204a;
    background: #fff;
}
body.college-page-home .mlc-map-frame {
    position: relative;
    flex: 1;
    min-height: 400px;
    background: #e2e8f0;
}
body.college-page-home .mlc-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 1200px) {
    body.college-page-home .map-light-card {
        grid-template-columns: 350px 1fr 340px;
    }
}
@media (max-width: 992px) {
    body.college-page-home .map-light-card {
        grid-template-columns: 1fr;
    }
    
    body.college-page-home .mlc-info {
        padding: 2.5rem;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    body.college-page-home .mlc-map-wrap {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    body.college-page-home .mlc-facebook {
        padding: 1.5rem 1rem;
    }
    
    body.college-page-home .mlc-map-frame {
        min-height: 400px;
    }
}

/* Inline styles from index.html */
body.college-page-home .testimonials-sec {
    position: relative;
    padding: var(--section-pad-y) 0;
    background: url('../img/sports1.jpg') no-repeat center center/cover;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}
body.college-page-home .testimonials-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark elite overlay - blur removed to guarantee 60fps scrolling on all devices */
    
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%);
}
body.college-page-home .ts-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 992px) {
    body.college-page-home .ts-wrap {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

/* Left Text Area */
body.college-page-home .ts-left-text {
    padding-right: 2rem;
}
@media (max-width: 992px) {
    body.college-page-home .ts-left-text {
        padding-right: 0;
        text-align: center;
    }
}
body.college-page-home .ts-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.02));
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #d97706;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
}
body.college-page-home .ts-sub i {
    animation: home-flashIconTs 2s infinite ease-in-out;
}
@keyframes home-flashIconTs {
    0%,
    100% {
        color: #d97706;
        transform: scale(1);
    }
    
    50% {
        color: #fbbf24;
        transform: scale(1.2);
    }
}
body.college-page-home .ts-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.college-page-home .ts-title span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 1.5rem;
    margin-top: 5px;
    letter-spacing: 1px;
}
body.college-page-home .ts-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
body.college-page-home .ts-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Right Cards Area */
body.college-page-home .ts-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    body.college-page-home .ts-cards-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}
body.college-page-home .ts-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
    color: #1e293b;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.college-page-home .ts-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(251, 191, 36, 0.2);
}

/* CSS Offset Effect for overlapping rhythm (Only on Desktop) */
@media (min-width: 993px) {
    body.college-page-home .ts-card:nth-child(2) {
        transform: translateY(50px);
    }
    
    body.college-page-home .ts-card:nth-child(2):hover {
        transform: translateY(35px);
    }
}
body.college-page-home .ts-avatar {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
body.college-page-home .ts-avatar i {
    font-size: 2.5rem;
    color: #94a3b8;
}
body.college-page-home .ts-quote-icon {
    color: #ef4444;
    /* Bright red quote icon as requested */
    
    font-size: 1.8rem;
    line-height: 1;
    opacity: 0.9;
}
body.college-page-home .ts-quote-top {
    margin-bottom: 15px;
}
body.college-page-home .ts-quote-bottom {
    text-align: right;
    margin-top: 15px;
}
body.college-page-home .ts-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.2rem;
    text-align: left;
}
body.college-page-home .ts-feedback {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 500;
    min-height: 140px;
    text-align: left;
}

/* Inline styles from index.html */
body.college-page-home .tsm-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

/* Blue top accent strip */
body.college-page-home .tsm-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.25);
    z-index: 2;
    pointer-events: none;
}

/* Subtle background grid pattern to make it premium */
body.college-page-home .tsm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}
body.college-page-home .tsm-section {
    position: relative;
    background: #f1f5f9;
    /* Elite Slate */
    
    padding: var(--section-pad-y) 0;
}
body.college-page-home .tsm-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
body.college-page-home .tsm-header {
    text-align: center;
    margin-bottom: 3rem;
}
body.college-page-home .tsm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.02));
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}
body.college-page-home .tsm-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
body.college-page-home .tsm-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Auto-Scrolling Marquee Track */
body.college-page-home .tsm-marquee-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
body.college-page-home .tsm-track {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 2rem;
    min-width: 100%;
    animation: home-scrollTsm 45s linear infinite;
    will-change: transform;
}

/* Pause on hover for desktop */
body.college-page-home .tsm-marquee-wrapper:hover .tsm-track {
    animation-play-state: paused;
}
@keyframes home-scrollTsm {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(calc(-100% - 2rem));
    }
}

/* Testimonial Compact Box */
body.college-page-home .tsm-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
body.college-page-home .tsm-box::after {
    content: '\f10d';
    /* Quote icon */
    
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.05);
    z-index: 0;
    transition: color 0.3s ease;
}
body.college-page-home .tsm-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
    border-color: #3b82f6;
}
body.college-page-home .tsm-box:hover::after {
    color: rgba(37, 99, 235, 0.12);
}
body.college-page-home .tsm-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
    z-index: 1;
    position: relative;
}
body.college-page-home .tsm-feedback {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    z-index: 1;
    position: relative;
}
body.college-page-home .tsm-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    position: relative;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

/* Abstract Avatar Generator */
body.college-page-home .tsm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #2563eb;
    font-size: 1.2rem;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
body.college-page-home .tsm-info h4 {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}
body.college-page-home .tsm-info p {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}
body.college-page-home .tsm-company {
    display: inline-block;
    margin-top: 4px;
    background: #f0fdf4;
    color: #166534;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #bbf7d0;
}
@media(max-width: 768px) {
    body.college-page-home .tsm-box {
        width: 320px;
        padding: 1.5rem;
    }
}

/* Inline styles from index.html */

/* ============================================================
   COLLEGE USP POPUP â€” ELITE LIGHT THEME
   Zero lag, instantaneous hovers, stunning light-mode aesthetics
   Optimized for max-performance and deep visual richness.
============================================================ */

/* --- Glass Overlay --- */
body.college-page-home .usp-overlay-elite {
    visibility: hidden;
    pointer-events: none;
    display: flex;
    /* Keeps layout actively rendered in background for preloading */
    
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(15, 23, 42, 0.85);
    /* Solid dark overlay for max performance */
    
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.2s ease-out, visibility 0.2s;
    /* Ultra fast entrance */
}
body.college-page-home .usp-overlay-elite.usp-active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

/* --- The Elite Modal Box --- */
body.college-page-home .usp-modal-elite {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transform: scale(0.97) translateY(10px);
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    /* Removed heavy bezier */
    
    overflow: hidden;
}
body.college-page-home .usp-overlay-elite.usp-active .usp-modal-elite {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* --- Instant Close Button --- */
body.college-page-home .usp-close-elite {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.1s ease-out;
    /* Instant hover response */
}
body.college-page-home .usp-close-elite:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    transform: scale(1.08);
    /* Snappy scale */
}
body.college-page-home .usp-close-elite:active {
    transform: scale(0.9);
}

/* --- Header Branding --- */
body.college-page-home .usp-brand-area {
    padding: 24px 20px 16px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}
body.college-page-home .usp-brand-area::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0) 70%);
    pointer-events: none;
}
body.college-page-home .usp-logo-ring {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    background: #fff;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
body.college-page-home .usp-logo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
body.college-page-home .usp-title-elite {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}
body.college-page-home .usp-gold-text {
    color: #d97706;
    text-shadow: none;
}
body.college-page-home .usp-subtitle-elite {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0 0 12px;
    font-weight: 500;
}

/* Status Badges */
body.college-page-home .usp-badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
body.college-page-home .usp-badge-elite {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
body.college-page-home .usp-badge-elite i {
    color: #d97706;
}

/* --- Content Scroll --- */
body.college-page-home .usp-scroll-area-elite {
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
    -webkit-overflow-scrolling: touch;
    /* Momentum scrolling for iOS */
    
    overscroll-behavior: contain;
    /* Prevent scrolling the body underneath */
    
    transform: translateZ(0);
    /* Hardware acceleration for smooth scrolling */
}
body.college-page-home .usp-scroll-area-elite::-webkit-scrollbar {
    width: 4px;
}
body.college-page-home .usp-scroll-area-elite::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* Grid */
body.college-page-home .usp-grid-elite {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

/* Elite Feature Card */
body.college-page-home .usp-card-elite {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.1s ease-out, background 0.1s ease-out, border-color 0.1s ease-out, box-shadow 0.1s ease-out;
    /* Better performance */
    
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
body.college-page-home .usp-card-elite:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
    /* Snappy lift */
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
body.college-page-home .usp-icon-elite {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #ffffff;
    transition: transform 0.1s ease-out;
}
body.college-page-home .usp-card-elite:hover .usp-icon-elite {
    transform: scale(1.05);
}
body.college-page-home .usp-text-elite {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
body.college-page-home .usp-text-elite strong {
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
body.college-page-home .usp-text-elite span {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hidden Cards */
body.college-page-home .usp-hidden-elite {
    display: none;
    opacity: 0;
    transform: translateY(5px);
}
body.college-page-home .usp-hidden-elite.usp-force-show {
    display: flex;
    animation: home-instaPop 0.2s ease-out forwards;
}
@keyframes home-instaPop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Expand Button --- */
body.college-page-home .usp-expand-wrap-elite {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
body.college-page-home .usp-btn-expand-elite {
    background: #f8fafc;
    color: #d97706;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 99px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.1s ease-out;
}
body.college-page-home .usp-btn-expand-elite:hover {
    background: #fffbeb;
    border-color: #fbbf24;
    transform: scale(1.02);
}
body.college-page-home .usp-btn-expand-elite:active {
    transform: scale(0.95);
}

/* --- Footer --- */
body.college-page-home .usp-footer-elite {
    padding: 20px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
body.college-page-home .usp-btn-ghost-elite {
    background: transparent;
    border: none;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.1s ease-out;
}
body.college-page-home .usp-btn-ghost-elite:hover {
    color: #0f172a;
    background: #e2e8f0;
}
body.college-page-home .usp-btn-gold-elite {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #0f172a !important;
    border: none;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: 99px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
    transition: all 0.1s ease-out;
}
body.college-page-home .usp-btn-gold-elite i {
    transition: transform 0.1s ease-out;
}
body.college-page-home .usp-btn-gold-elite:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
    text-decoration: none;
}
body.college-page-home .usp-btn-gold-elite:hover i {
    transform: translateX(4px);
}
body.college-page-home .usp-btn-gold-elite:active {
    transform: scale(0.96);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 560px) {
    body.college-page-home .usp-modal-elite {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        margin-top: auto;
        border-bottom: none;
        transform: translateY(100%);
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.08);
    }
    
    body.college-page-home .usp-overlay-elite {
        padding: 0;
        align-items: flex-end;
    }
    
    body.college-page-home .usp-brand-area {
        padding: 16px 16px 12px;
    }
    
    body.college-page-home .usp-title-elite {
        font-size: 1.3rem;
    }
    
    body.college-page-home .usp-subtitle-elite {
        margin: 0 0 8px;
    }
    
    body.college-page-home .usp-logo-ring {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    
    body.college-page-home .usp-grid-elite {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    body.college-page-home .usp-scroll-area-elite {
        padding: 12px 16px;
    }
    
    body.college-page-home .usp-footer-elite {
        flex-direction: column-reverse;
        padding: 16px;
        gap: 10px;
    }
    
    body.college-page-home .usp-btn-gold-elite,
    body.college-page-home .usp-btn-ghost-elite {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    body.college-page-home .usp-overlay-elite,
    body.college-page-home .usp-modal-elite,
    body.college-page-home .usp-card-elite,
    body.college-page-home .usp-btn-gold-elite {
        transition: none !important;
        animation: none !important;
    }
}

/* Inline styles from index.html */

/* ========== ELITE PREMIUM FOOTER - PERFECTED ========== */
body.college-page-home .footer {
    background: radial-gradient(circle at 50% 10%, #060b19 0%, #01030a 100%);
    color: #e2e8f0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin-top: 0;
}

/* === Rolling Visitor Counter CSS === */
body.college-page-home .visitor-counter-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    backdrop-filter: blur(5px);
}
body.college-page-home .vc-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .vc-label i {
    color: #fbbf24;
}
body.college-page-home .rolling-counter {
    display: flex;
    gap: 2px;
    background: #000;
    padding: 4px;
    border-radius: 6px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
}
body.college-page-home .digit-slot {
    width: 24px;
    height: 32px;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: #fbbf24;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
body.college-page-home .digit-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}
body.college-page-home .digit-slot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
}

/* =========================================
       1. ABSTRACT LUMINOUS BACKGROUND
       ========================================= */
body.college-page-home .footer-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 45%), radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 40%), radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

/* =========================================
       2. PREMIUM TECH GRID (Clean & Simple)
       ========================================= */
body.college-page-home .footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
}

/* =========================================
       3. ELITE SILHOUETTE BACKGROUND
       ========================================= */
body.college-page-home .footer-silhouette-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    /* Triple Layered Landscape/City Silhouette for Depth */
    
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23050814' fill-opacity='0.6' d='M0,224L48,202.7C96,181,192,139,288,138.7C384,139,480,181,576,197.3C672,213,768,203,864,170.7C960,139,1056,85,1152,80C1248,75,1344,117,1392,138.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%2302040c' fill-opacity='0.85' d='M0,288L60,266.7C120,245,240,203,360,208C480,213,600,267,720,261.3C840,256,960,192,1080,170.7C1200,149,1320,171,1380,181.3L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23000000' fill-opacity='1' d='M0,320L1440,320L1440,280Q1080,220 720,260T0,280Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* VISIBLE Smooth Curved Wave */
body.college-page-home .footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    transform: translateY(-99%);
}
body.college-page-home .footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}
body.college-page-home .footer-wave .shape-fill {
    fill: #01030a;
}

/* Footer Content */
body.college-page-home .footer-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0 1.5rem;
    /* Compacted Padding */
}
body.college-page-home .footer-col {
    margin-bottom: 2.5rem;
    animation: home-fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}
body.college-page-home .footer-col:nth-child(1) {
    animation-delay: 0.1s;
}
body.college-page-home .footer-col:nth-child(2) {
    animation-delay: 0.2s;
}
body.college-page-home .footer-col:nth-child(3) {
    animation-delay: 0.3s;
}
body.college-page-home .footer-col:nth-child(4) {
    animation-delay: 0.4s;
}
@keyframes home-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elite Brand Section */
body.college-page-home .footer-brand {
    margin-bottom: 2rem;
}
body.college-page-home .footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}
body.college-page-home .footer-logo {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3), 0 0 0 4px rgba(251, 191, 36, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid rgba(251, 191, 36, 0.4);
    position: relative;
    z-index: 1;
}
body.college-page-home .footer-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.5s;
    animation: home-rotateBorder 3s linear infinite;
    z-index: 0;
}
body.college-page-home .footer-logo-wrapper:hover::before {
    opacity: 0.3;
}
@keyframes home-rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
body.college-page-home .footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.5), 0 0 0 6px rgba(251, 191, 36, 0.15);
}
body.college-page-home .footer-brand-text {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: home-shimmer 3s ease-in-out infinite;
    letter-spacing: -0.5px;
}
@keyframes home-shimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }
    
    50% {
        background-position: 100% 50%;
    }
}
body.college-page-home .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    margin-bottom: 1rem;
    animation: home-badgePulse 2s ease-in-out infinite;
}
@keyframes home-badgePulse {
    0%,
    100% {
        transform: scale(1);
    }
    
    50% {
        transform: scale(1.05);
    }
}
body.college-page-home .footer-tagline {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* FIXED: Single Underline Titles */
body.college-page-home .footer-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}
body.college-page-home .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: home-expandLine 1s ease forwards;
}
@keyframes home-expandLine {
    from {
        width: 0;
    }
    
    to {
        width: 60px;
    }
}

/* Elite Links */
body.college-page-home .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.college-page-home .footer-links li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body.college-page-home .footer-links li:hover {
    transform: translateX(8px);
}
body.college-page-home .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-left: 0;
}
body.college-page-home .footer-links a::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    transition: all 0.3s;
    opacity: 0;
}
body.college-page-home .footer-links a:hover::before {
    left: -25px;
    width: 18px;
    opacity: 1;
}
body.college-page-home .footer-links a:hover {
    color: #fbbf24;
}
body.college-page-home .footer-links i {
    font-size: 0.75rem;
    color: rgba(251, 191, 36, 0.6);
    transition: all 0.3s;
}
body.college-page-home .footer-links a:hover i {
    transform: translateX(5px) scale(1.2);
    color: #fbbf24;
}

/* Premium Contact Cards */
body.college-page-home .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}
body.college-page-home .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.6s;
}
body.college-page-home .contact-item:hover::before {
    left: 100%;
}
body.college-page-home .contact-item:hover {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}
body.college-page-home .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s;
}
body.college-page-home .contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
}
body.college-page-home .contact-text {
    flex: 1;
}
body.college-page-home .contact-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
body.college-page-home .contact-value {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
}
body.college-page-home .contact-value a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}
body.college-page-home .contact-value a:hover {
    color: #fbbf24;
}

/* Elite Social Links */
body.college-page-home .social-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-top: 1.5rem;
}
body.college-page-home .social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}
body.college-page-home .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
body.college-page-home .social-link {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
body.college-page-home .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fbbf24;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}
body.college-page-home .social-link::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}
body.college-page-home .social-link:hover::after {
    left: 100%;
}
body.college-page-home .social-link i,
body.college-page-home .social-link img {
    position: relative;
    z-index: 5;
    transition: all 0.3s;
}
body.college-page-home .social-link:hover i,
body.college-page-home .social-link:hover img {
    transform: scale(1.2) rotate(-5deg);
}
body.college-page-home .social-link:hover {
    transform: translateY(-10px) scale(1.15) rotate(5deg);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}
body.college-page-home .social-link:hover::before {
    width: 120%;
    height: 120%;
}
body.college-page-home .social-link:hover i,
body.college-page-home .social-link:hover img {
    color: #000;
}

/* Brand-Specific Colors */
body.college-page-home .social-link.facebook:hover {
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
}
body.college-page-home .social-link.facebook:hover::before {
    background: #1877f2;
}
body.college-page-home .social-link.instagram:hover {
    box-shadow: 0 15px 40px rgba(228, 64, 95, 0.6);
}
body.college-page-home .social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
body.college-page-home .social-link.linkedin:hover {
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.6);
}
body.college-page-home .social-link.linkedin:hover::before {
    background: #0077b5;
}
body.college-page-home .social-link.youtube:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}
body.college-page-home .social-link.youtube:hover::before {
    background: #ff0000;
}
body.college-page-home .social-link.whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}
body.college-page-home .social-link.whatsapp:hover::before {
    background: #25d366;
}
body.college-page-home .social-link.google:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}
body.college-page-home .social-link.google:hover::before {
    background: #ffffff;
}

/* Elite Footer Bottom */
body.college-page-home .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}
body.college-page-home .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
}
body.college-page-home .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
body.college-page-home .copyright {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}
body.college-page-home .copyright strong {
    color: #fbbf24;
    font-weight: 700;
}
body.college-page-home .copyright i {
    color: #ef4444;
    margin: 0 5px;
    animation: home-heartbeat 1.5s ease infinite;
}
@keyframes home-heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    
    25% {
        transform: scale(1.2);
    }
    
    50% {
        transform: scale(1);
    }
    
    75% {
        transform: scale(1.2);
    }
}
body.college-page-home .footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
body.college-page-home .footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 3px;
}
body.college-page-home .footer-bottom-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s;
}
body.college-page-home .footer-bottom-links a:hover {
    color: #fbbf24;
}
body.college-page-home .footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    body.college-page-home .footer-content {
        padding: 4rem 0 2rem;
    }
    
    body.college-page-home .footer-col {
        text-align: center;
    }
    
    body.college-page-home .footer-col:first-child {
        text-align: left !important;
    }
    
    body.college-page-home .footer-logo-wrapper {
        margin-bottom: 20px;
    }
    
    body.college-page-home .footer-logo-wrapper::before {
        display: none !important;
        animation: none !important;
    }
    
    body.college-page-home .footer-logo {
        transform: none !important;
        animation: none !important;
        will-change: auto !important;
    }
    
    body.college-page-home .footer-logo:hover {
        transform: none !important;
    }
    
    body.college-page-home .footer-title {
        display: block;
    }
    
    body.college-page-home .footer-col:first-child .footer-title::after,
    body.college-page-home .footer-col:last-child .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    body.college-page-home .col-6.footer-col {
        text-align: left !important;
    }
    
    body.college-page-home .col-6.footer-col .footer-title::after {
        left: 0;
        transform: none;
    }
    
    body.college-page-home .col-6.footer-col .footer-links a {
        justify-content: flex-start;
    }
    
    body.college-page-home .footer-links a {
        justify-content: center;
    }
    
    body.college-page-home .contact-item {
        text-align: left;
    }
    
    body.college-page-home .newsletter-form {
        flex-direction: column;
    }
    
    body.college-page-home .newsletter-btn {
        width: 100%;
    }
    
    body.college-page-home .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    body.college-page-home .footer-bottom-links {
        justify-content: center;
    }
    
    body.college-page-home .social-links {
        gap: 12px;
    }
    
    body.college-page-home .social-link {
        width: 50px;
        height: 50px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    body.college-page-home,
    body.college-page-home *,
    body.college-page-home::before,
    body.college-page-home *::before,
    body.college-page-home::after,
    body.college-page-home *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Elite Portal Buttons - Premium Beautification */
body.college-page-home .portal-section-title {
    color: rgba(251, 191, 36, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-home .portal-section-title::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.3), transparent);
}
body.college-page-home .footer-portals .portal-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
body.college-page-home .footer-portals .portal-btn i {
    color: #fbbf24;
    font-size: 1rem;
    transition: transform 0.3s ease;
}
body.college-page-home .footer-portals .portal-btn:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fff;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}
body.college-page-home .footer-portals .portal-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}
body.college-page-home .footer-portals .portal-btn.accent {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(251, 191, 36, 0.3);
}
body.college-page-home .footer-portals .portal-btn.accent:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-color: transparent;
}
body.college-page-home .footer-portals .portal-btn.accent:hover i {
    color: #000;
}
body.college-page-home .footer-portals .portal-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}
body.college-page-home .footer-portals .portal-btn:hover::after {
    left: 100%;
}

/* Inline styles from index.html */

/* ───────────────────────────────
   Premium Footer & Sidebar Components
   Integrated & Optimized for Zero Layout Shift
   ─────────────────────────────── */

/* ─ Footer brand responsive layout ─────────────────────────────── */
body.college-page-home .footer-brand-content {
    flex: 1;
    min-width: 0;
}
@media(max-width:767px) {
    body.college-page-home .footer-brand .d-flex.align-items-center {
        gap: 12px !important;
    }
    
    body.college-page-home .footer-brand {
        text-align: left !important;
    }
    
    body.college-page-home .footer-brand-content {
        text-align: left !important;
    }
    
    body.college-page-home .footer-logo {
        width: 65px !important;
        height: 65px !important;
        border-radius: 12px !important;
        border-width: 2px !important;
    }
    
    body.college-page-home .footer-brand-text {
        font-size: 1.6rem !important;
    }
    
    body.college-page-home .footer-tagline {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    body.college-page-home .footer-contact-list {
        gap: 10px !important;
        border-left: 2px solid rgba(251, 191, 36, 0.3) !important;
        padding-left: 12px !important;
    }
    
    body.college-page-home .footer-contact-list .fs-6 {
        font-size: 0.9rem !important;
        width: 16px !important;
    }
    
    body.college-page-home .footer-contact-list span,
    body.college-page-home .footer-contact-list a {
        font-size: 0.85rem !important;
    }
}

/* ─ Visitor counter: Maintain margin on mobile to avoid chatbot overlap ─ */
@media(max-width:767px) {
    body.college-page-home .visitor-counter-wrapper {
        margin-right: 75px !important;
    }
}

/* ═══════════════════════════════════════════
   LEFT SIDEBAR (Quick Portals)
   ═══════════════════════════════════════════ */
body.college-page-home #college-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999990;
    /* High priority */
    
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease, transform .45s cubic-bezier(.34, 1.56, .64, 1);
}
body.college-page-home #college-sidebar.rsb-show {
    opacity: 1;
    pointer-events: auto;
}
body.college-page-home .rsb-item {
    position: relative;
    display: flex;
    align-items: center;
}
body.college-page-home .rsb-btn {
    width: 50px;
    height: 50px;
    border-radius: 0 14px 14px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(255, 255, 255, 0.4);
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    position: relative;
    z-index: 2;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.college-page-home .rsb-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: inherit;
    background: inherit;
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
    transition: opacity .45s ease;
}
body.college-page-home .rsb-btn:hover {
    transform: translateX(12px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}
body.college-page-home .rsb-btn:hover::before {
    opacity: 1;
}
body.college-page-home .rsb-ocean {
    background: linear-gradient(135deg, #0061ff, #60efff);
}

/* Vivid Azure */
body.college-page-home .rsb-saffron {
    background: linear-gradient(135deg, #ff0f7b, #f89b29);
}

/* Blazing Saffron Sunset */
body.college-page-home .rsb-emerald {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

/* Neon Emerald/Lime */
body.college-page-home .rsb-popup {
    position: absolute;
    left: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
    width: 290px;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
}
body.college-page-home .rsb-popup::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(10, 14, 26, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
body.college-page-home .rsb-item:hover .rsb-popup,
body.college-page-home .rsb-item.rsb-active .rsb-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}
body.college-page-home .rsb-popup-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.college-page-home .rsb-pi {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
body.college-page-home .rsb-head-ocean .rsb-pi {
    background: rgba(0, 97, 255, 0.15);
    color: #0061ff;
}
body.college-page-home .rsb-head-saffron .rsb-pi {
    background: rgba(255, 15, 123, 0.15);
    color: #ff0f7b;
}
body.college-page-home .rsb-head-emerald .rsb-pi {
    background: rgba(0, 176, 155, 0.15);
    color: #00b09b;
}
body.college-page-home .rsb-popup h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
body.college-page-home .rsb-popup>p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0 0 15px;
}
body.college-page-home .rsb-contact {
    background: rgba(30, 41, 59, 0.6);
    border-left: 3px solid rgba(251, 191, 36, 0.5);
    border-radius: 0 10px 10px 0;
    padding: 10px 12px;
    font-size: 0.82rem;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
body.college-page-home .rsb-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}
body.college-page-home .rsb-contact i {
    width: 14px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
    color: #fbbf24;
}
body.college-page-home .rsb-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all .3s ease;
    text-decoration: none !important;
    letter-spacing: .3px;
    text-align: center;
}
body.college-page-home .rsb-cta-ocean {
    background: linear-gradient(135deg, #0061ff, #60efff);
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.4);
}
body.college-page-home .rsb-cta-saffron {
    background: linear-gradient(135deg, #ff0f7b, #f89b29);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 15, 123, 0.4);
}
body.college-page-home .rsb-cta-emerald {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
}
body.college-page-home .rsb-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Close button for popup */
body.college-page-home .rsb-popup-close {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s;
}
body.college-page-home .rsb-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Support for Mobile Overlay - HIDE ENTIRELY ON MOBILE TO PREVENT OVERLAP */
@media(max-width:991px) {
    body.college-page-home #college-sidebar {
        display: none !important;
    }
}
@media(max-width:768px) {
    body.college-page-home #college-sidebar {
        display: none !important;
    }
}
@media(max-width:480px) {
    body.college-page-home #college-sidebar {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════
   BACK-TO-TOP (Progressive Pie)
   ═══════════════════════════════════════════ */
body.college-page-home .college-progress-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 52px;
    width: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all 400ms cubic-bezier(.34, 1.56, .64, 1);
    background: conic-gradient(#fbbf24 0% var(--scroll-percent), #14204a var(--scroll-percent) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
body.college-page-home .college-progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
body.college-page-home .college-progress-inner {
    width: 44px;
    height: 44px;
    background: #14204a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.college-page-home .college-progress-wrap i {
    font-size: 18px;
    color: #fff;
}
body.college-page-home .college-progress-wrap:hover {
    transform: translateY(-4px) scale(1.05);
}
@media(max-width:767px) {
    body.college-page-home .college-progress-wrap {
        right: 20px;
        bottom: 88px;
        /* Stacked above the chatbot FAB (bottom:20px + height:56px + gap:12px) */
        width: 46px;
        height: 46px;
    }
    
    body.college-page-home .college-progress-inner {
        width: 38px;
        height: 38px;
    }
}

/* Extracted inline declarations */
body.college-page-home .college-inline-home-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #fdf8ee 0%, #faf5e4 40%, #fef9ee 100%);
}
body.college-page-home .college-inline-home-2 {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 25%, rgba(251, 191, 36, 0.05), transparent 48%), radial-gradient(circle at 82% 75%, rgba(251, 191, 36, 0.05), transparent 48%);
    pointer-events: none;
}
body.college-page-home .college-inline-home-3 {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}
body.college-page-home .college-inline-home-4 {
    width: 4px;
    height: 4px;
    background: #14204a;
    top: 25%;
    right: 12%;
    animation-delay: .8s;
}
body.college-page-home .college-inline-home-5 {
    width: 5px;
    height: 5px;
    background: #f59e0b;
    bottom: 20%;
    left: 15%;
    animation-delay: 1.6s;
}
body.college-page-home .college-inline-home-6 {
    width: 3px;
    height: 3px;
    background: #7c3aed;
    bottom: 30%;
    right: 8%;
    animation-delay: 2.2s;
}
body.college-page-home .college-inline-home-7 {
    text-align: center;
    margin-bottom: 0;
}
body.college-page-home .college-inline-home-8 {
    --cr-card-color: #e11d48;
}
body.college-page-home .college-inline-home-9 {
    color: #64748b;
}
body.college-page-home .college-inline-home-10 {
    --cr-card-color: #d97706;
}
body.college-page-home .college-inline-home-11 {
    color: #64748b;
}
body.college-page-home .college-inline-home-12 {
    --cr-card-color: #f59e0b;
}
body.college-page-home .college-inline-home-13 {
    color: #64748b;
}
body.college-page-home .college-inline-home-14 {
    --cr-card-color: #16a34a;
}
body.college-page-home .college-inline-home-15 {
    color: #64748b;
}
body.college-page-home .college-inline-home-16 {
    --cr-card-color: #0369a1;
}
body.college-page-home .college-inline-home-17 {
    color: #64748b;
}
body.college-page-home .college-inline-home-18 {
    --cr-card-color: #7c3aed;
}
body.college-page-home .college-inline-home-19 {
    color: #64748b;
}
body.college-page-home .college-inline-home-20 {
    --cr-card-color: #dc2626;
}
body.college-page-home .college-inline-home-21 {
    color: #64748b;
}
body.college-page-home .college-inline-home-22 {
    --cr-card-color: #0891b2;
}
body.college-page-home .college-inline-home-23 {
    color: #64748b;
}
body.college-page-home .college-inline-home-24 {
    --cr-card-color: #f59e0b;
}
body.college-page-home .college-inline-home-25 {
    color: #64748b;
}
body.college-page-home .college-inline-home-26 {
    --cr-card-color: #6366f1;
}
body.college-page-home .college-inline-home-27 {
    color: #64748b;
}
body.college-page-home .college-inline-home-28 {
    --cr-card-color: #7c3aed;
}
body.college-page-home .college-inline-home-29 {
    color: #64748b;
}
body.college-page-home .college-inline-home-30 {
    --cr-card-color: #16a34a;
}
body.college-page-home .college-inline-home-31 {
    color: #64748b;
}
body.college-page-home .college-inline-home-32 {
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.97) 36%, rgba(241, 245, 249, 0.88) 100%);
}
body.college-page-home .college-inline-home-33 {
    width: 5px;
    height: 5px;
    background: #1877f2;
    top: 18%;
    right: 20%;
    animation-delay: .3s;
}
body.college-page-home .college-inline-home-34 {
    width: 4px;
    height: 4px;
    background: #14204a;
    bottom: 22%;
    left: 10%;
    animation-delay: 1.2s;
}
body.college-page-home .college-inline-home-35 {
    background: rgba(24, 119, 242, .1);
    border: 1px solid rgba(24, 119, 242, .2);
    color: #1877f2;
    padding: 8px 16px;
    width: fit-content;
    margin-bottom: 0.5rem;
}
body.college-page-home .college-inline-home-36 {
    animation: home-crPulse 2s infinite;
}
body.college-page-home .college-inline-home-37 {
    color: #14204a;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-top: 0.2rem;
    line-height: 0.95;
    letter-spacing: -1.5px;
}
body.college-page-home .college-inline-home-38 {
    background: linear-gradient(135deg, #1877f2, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}
body.college-page-home .college-inline-home-39 {
    color: #334155;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: none;
}
body.college-page-home .college-inline-home-40 {
    background: #fff;
    border: 1px solid rgba(24, 119, 242, .15);
    color: #14204a;
    margin-top: auto;
    padding: 12px 22px;
    width: fit-content;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.08);
}
body.college-page-home .college-inline-home-41 {
    margin-right: 8px;
    color: #1877f2;
}
body.college-page-home .college-inline-home-42 {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    height: clamp(400px, 48vw, 550px);
    max-width: 500px;
    width: 100%;
    justify-self: center;
    margin: 0 auto;
}
body.college-page-home .college-inline-home-43 {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
body.college-page-home .college-inline-home-44 {
    border: none;
    overflow: hidden;
    width: 500px;
    height: 850px;
    margin-top: -71px;
    background: transparent;
    position: relative;
    z-index: 1;
}
body.college-page-home .college-inline-home-45 {
    border: none;
    overflow: hidden;
    width: 330px;
    height: 850px;
    margin-top: -71px;
    background: transparent;
    position: relative;
    z-index: 1;
}
body.college-page-home .college-inline-home-46 {
    background: linear-gradient(115deg, rgba(240, 253, 244, 0.97) 36%, rgba(220, 252, 231, 0.85) 100%);
}
body.college-page-home .college-inline-home-47 {
    width: 5px;
    height: 5px;
    background: #16a34a;
    top: 12%;
    right: 15%;
    animation-delay: .5s;
}
body.college-page-home .college-inline-home-48 {
    width: 4px;
    height: 4px;
    background: #f59e0b;
    bottom: 18%;
    left: 8%;
    animation-delay: 1.8s;
}
body.college-page-home .college-inline-home-49 {
    background: rgba(22, 163, 74, .1);
    border: 1.5px solid rgba(22, 163, 74, .35);
    color: #15803d;
}
body.college-page-home .college-inline-home-50 {
    color: #14204a;
}
body.college-page-home .college-inline-home-51 {
    color: #16a34a;
}
body.college-page-home .college-inline-home-52 {
    background: rgba(22, 163, 74, .1);
    border: 1.5px solid rgba(22, 163, 74, .3);
    color: #15803d;
    margin-top: .8rem;
}
body.college-page-home .college-inline-home-53 {
    margin-top: 1.5rem;
}
body.college-page-home .college-inline-home-54 {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
body.college-page-home .college-inline-home-55 {
    color: #334155;
    margin-top: 0;
}
body.college-page-home .college-inline-home-56 {
    background: rgba(22, 163, 74, .12);
    color: #16a34a;
}
body.college-page-home .college-inline-home-57 {
    color: #16a34a;
    margin-left: 6px;
    font-size: 1.1rem;
}
body.college-page-home .college-inline-home-58 {
    color: #334155;
    margin-top: 0;
}
body.college-page-home .college-inline-home-59 {
    background: rgba(20, 32, 74, .1);
    color: #14204a;
}
body.college-page-home .college-inline-home-60 {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    max-width: 540px;
    position: relative;
    overflow: hidden;
}
body.college-page-home .college-inline-home-61 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #15803d, #7c3aed, #0369a1);
}
body.college-page-home .college-inline-home-62 {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 12px;
}
body.college-page-home .college-inline-home-63 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}
body.college-page-home .college-inline-home-64 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-65 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #15803d;
    background: rgba(21, 128, 61, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
}
body.college-page-home .college-inline-home-66 {
    margin-right: 5px;
}
body.college-page-home .college-inline-home-67 {
    color: #94a3b8;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-68 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-69 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
}
body.college-page-home .college-inline-home-70 {
    margin-right: 5px;
}
body.college-page-home .college-inline-home-71 {
    color: #94a3b8;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-72 {
    display: flex;
    align-items: center;
}
body.college-page-home .college-inline-home-73 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0369a1;
    background: rgba(3, 105, 161, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
}
body.college-page-home .college-inline-home-74 {
    margin-right: 5px;
}
body.college-page-home .college-inline-home-75 {
    background: rgba(241, 245, 249, 0.7);
    padding: 8px 14px;
    border-radius: 8px;
    margin-top: 14px;
    font-size: 0.75rem;
    color: #334155;
    border-left: 3px solid #f59e0b;
    display: flex;
    gap: 8px;
    align-items: center;
}
body.college-page-home .college-inline-home-76 {
    color: #f59e0b;
    font-size: 0.9rem;
}
body.college-page-home .college-inline-home-77 {
    color: #14204a;
    font-weight: 800;
}
body.college-page-home .college-inline-home-78 {
    margin-top: 2rem;
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}
body.college-page-home .college-inline-home-79 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}
body.college-page-home .college-inline-home-80 {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.0));
    border-left: 4px solid #f59e0b;
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    width: fit-content;
}
body.college-page-home .college-inline-home-81 {
    color: #d97706;
    font-weight: 800;
    font-size: 0.85rem;
}
body.college-page-home .college-inline-home-82 {
    margin-right: 6px;
}
body.college-page-home .college-inline-home-83 {
    font-size: 1.15rem;
    font-weight: 900;
}
body.college-page-home .college-inline-home-84 {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    box-shadow: 0 8px 24px rgba(22, 163, 74, .28);
    margin-top: 0;
    padding: 12px 28px;
}
body.college-page-home .college-inline-home-85 {
    margin-right: 4px;
}
body.college-page-home .college-inline-home-86 {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
body.college-page-home .college-inline-home-87 {
    border-top: 3px solid #f59e0b;
}
body.college-page-home .college-inline-home-88 {
    color: #d97706;
}
body.college-page-home .college-inline-home-89 {
    border-top: 3px solid #16a34a;
}
body.college-page-home .college-inline-home-90 {
    color: #16a34a;
}
body.college-page-home .college-inline-home-91 {
    border-top: 3px solid #14204a;
}
body.college-page-home .college-inline-home-92 {
    color: #14204a;
}
body.college-page-home .college-inline-home-93 {
    border-top: 3px solid #7c3aed;
}
body.college-page-home .college-inline-home-94 {
    color: #7c3aed;
}
body.college-page-home .college-inline-home-95 {
    background: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 28px;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s var(--ease-premium);
    transform: translateY(10px);
}
body.college-page-home .college-inline-home-96 {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 16px;
    border: 1.5px solid #cbd5e1;
    flex-shrink: 0;
}
body.college-page-home .college-inline-home-97 {
    width: 125px;
    height: 125px;
    border-radius: 10px;
    display: block;
}
body.college-page-home .college-inline-home-98 {
    flex: 1;
}
body.college-page-home .college-inline-home-99 {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
}
body.college-page-home .college-inline-home-100 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #14204a;
    line-height: 1.1;
}
body.college-page-home .college-inline-home-101 {
    color: #16a34a;
}
body.college-page-home .college-inline-home-102 {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #d97706;
    background: rgba(245, 158, 11, 0.08);
    padding: 5px 15px;
    border-radius: 100px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}
body.college-page-home .college-inline-home-103 {
    letter-spacing: 0.3px;
}
body.college-page-home .college-inline-home-104 {
    background: linear-gradient(115deg, rgba(240, 244, 255, 0.98) 32%, rgba(224, 231, 255, 0.92) 100%);
}
body.college-page-home .college-inline-home-105 {
    width: 6px;
    height: 6px;
    background: #7c3aed;
    top: 15%;
    right: 12%;
    animation-delay: 0.3s;
}
body.college-page-home .college-inline-home-106 {
    width: 4px;
    height: 4px;
    background: #0369a1;
    bottom: 25%;
    left: 10%;
    animation-delay: 1s;
}
body.college-page-home .college-inline-home-107 {
    width: 5px;
    height: 5px;
    background: #14204a;
    top: 40%;
    right: 18%;
    animation-delay: 1.8s;
    opacity: 0.6;
}
body.college-page-home .college-inline-home-108 {
    align-items: flex-start;
    padding-top: clamp(1.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(1.5rem, 4vw, 3.5rem);
}
body.college-page-home .college-inline-home-109 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #64748b;
    font-style: italic;
    margin-bottom: .8rem;
    letter-spacing: 0.5px;
}
body.college-page-home .college-inline-home-110 {
    color: #14204a;
    font-style: normal;
}
body.college-page-home .college-inline-home-111 {
    color: #7c3aed;
    font-style: normal;
}
body.college-page-home .college-inline-home-112 {
    background: rgba(124, 58, 237, .12);
    border: 1.5px solid rgba(124, 58, 237, .35);
    color: #7c3aed;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.12);
}
body.college-page-home .college-inline-home-113 {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, .25);
}
body.college-page-home .college-inline-home-114 {
    --row-hover-color: #7c3aed;
}
body.college-page-home .college-inline-home-115 {
    margin-right: 12px;
    color: #7c3aed;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-116 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-117 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-118 {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
body.college-page-home .college-inline-home-119 {
    --row-hover-color: #7c3aed;
}
body.college-page-home .college-inline-home-120 {
    margin-right: 12px;
    color: #7c3aed;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-121 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-122 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-123 {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
body.college-page-home .college-inline-home-124 {
    --row-hover-color: #7c3aed;
}
body.college-page-home .college-inline-home-125 {
    margin-right: 12px;
    color: #7c3aed;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-126 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-127 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-128 {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
body.college-page-home .college-inline-home-129 {
    --row-hover-color: #7c3aed;
}
body.college-page-home .college-inline-home-130 {
    margin-right: 12px;
    color: #7c3aed;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-131 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-132 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-133 {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
body.college-page-home .college-inline-home-134 {
    --row-hover-color: #7c3aed;
}
body.college-page-home .college-inline-home-135 {
    margin-right: 12px;
    color: #7c3aed;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-136 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-137 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-138 {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
body.college-page-home .college-inline-home-139 {
    --row-hover-color: #7c3aed;
}
body.college-page-home .college-inline-home-140 {
    margin-right: 12px;
    color: #7c3aed;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-141 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-142 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-143 {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
body.college-page-home .college-inline-home-144 {
    background: rgba(245, 158, 11, .1);
    border: 1.5px solid rgba(245, 158, 11, .35);
    color: #d97706;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}
body.college-page-home .college-inline-home-145 {
    margin-top: 0;
}
body.college-page-home .college-inline-home-146 {
    color: #15803d;
    border-color: rgba(21, 128, 61, .25);
}
body.college-page-home .college-inline-home-147 {
    --row-hover-color: #15803d;
}
body.college-page-home .college-inline-home-148 {
    margin-right: 12px;
    color: #15803d;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-149 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-150 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-151 {
    color: #15803d;
    text-shadow: 0 0 15px rgba(21, 128, 61, 0.4);
}
body.college-page-home .college-inline-home-152 {
    --row-hover-color: #15803d;
}
body.college-page-home .college-inline-home-153 {
    margin-right: 12px;
    color: #15803d;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-154 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-155 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-156 {
    color: #15803d;
    text-shadow: 0 0 15px rgba(21, 128, 61, 0.4);
}
body.college-page-home .college-inline-home-157 {
    --row-hover-color: #15803d;
}
body.college-page-home .college-inline-home-158 {
    margin-right: 12px;
    color: #15803d;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-159 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-160 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-161 {
    color: #15803d;
    text-shadow: 0 0 15px rgba(21, 128, 61, 0.4);
}
body.college-page-home .college-inline-home-162 {
    margin-top: 2rem;
}
body.college-page-home .college-inline-home-163 {
    color: #0369a1;
    border-color: rgba(3, 105, 161, .25);
}
body.college-page-home .college-inline-home-164 {
    --row-hover-color: #0369a1;
}
body.college-page-home .college-inline-home-165 {
    margin-right: 12px;
    color: #0369a1;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-166 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-167 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-168 {
    color: #0369a1;
    text-shadow: 0 0 15px rgba(3, 105, 161, 0.4);
}
body.college-page-home .college-inline-home-169 {
    --row-hover-color: #0369a1;
}
body.college-page-home .college-inline-home-170 {
    margin-right: 12px;
    color: #0369a1;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-171 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-172 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-173 {
    color: #0369a1;
    text-shadow: 0 0 15px rgba(3, 105, 161, 0.4);
}
body.college-page-home .college-inline-home-174 {
    --row-hover-color: #0369a1;
}
body.college-page-home .college-inline-home-175 {
    margin-right: 12px;
    color: #0369a1;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-176 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-177 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-178 {
    color: #0369a1;
    text-shadow: 0 0 15px rgba(3, 105, 161, 0.4);
}
body.college-page-home .college-inline-home-179 {
    --row-hover-color: #0369a1;
}
body.college-page-home .college-inline-home-180 {
    margin-right: 12px;
    color: #0369a1;
    opacity: 0.7;
}
body.college-page-home .college-inline-home-181 {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-home .college-inline-home-182 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
}
body.college-page-home .college-inline-home-183 {
    color: #0369a1;
    text-shadow: 0 0 15px rgba(3, 105, 161, 0.4);
}
body.college-page-home .college-inline-home-184 {
    background: rgba(20, 32, 74, .08);
    border: 1.5px solid rgba(20, 32, 74, .22);
    color: #14204a;
    margin-top: 1.2rem;
    box-shadow: 0 4px 15px rgba(20, 32, 74, 0.08);
}
body.college-page-home .college-inline-home-185 {
    background: linear-gradient(115deg, rgba(255, 247, 237, 0.95) 35%, rgba(255, 237, 213, 0.82) 100%);
}
body.college-page-home .college-inline-home-186 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}
body.college-page-home .college-inline-home-187 {
    background: rgba(249, 115, 22, 0.1);
    border: 1.5px solid rgba(249, 115, 22, 0.35);
    color: #ea580c;
    margin-bottom: 0;
}
body.college-page-home .college-inline-home-188 {
    margin-right: 6px;
}
body.college-page-home .college-inline-home-189 {
    font-size: 0.65rem;
    font-weight: 900;
    color: #c2410c;
    letter-spacing: 1px;
    background: #fff7ed;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #ffedd5;
}
body.college-page-home .college-inline-home-190 {
    letter-spacing: -5px;
}
body.college-page-home .college-inline-home-191 {
    color: #f97316;
    -webkit-text-fill-color: #f97316;
    font-size: 0.35em;
    vertical-align: top;
    margin-left: 14px;
    letter-spacing: 2px;
    font-weight: 900;
    background: rgba(249, 115, 22, 0.08);
    border: 2.5px solid #f97316;
    padding: 3px 14px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
    animation: home-crPulse 2s infinite;
}
body.college-page-home .college-inline-home-192 {
    color: #ea580c;
    font-weight: 800;
    letter-spacing: 4px;
    margin-top: 5px;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}
body.college-page-home .college-inline-home-193 {
    color: #475569;
    margin-top: 1.4rem;
    max-width: 480px;
    line-height: 1.75;
    font-size: 0.95rem;
}
body.college-page-home .college-inline-home-194 {
    margin-top: 2.1rem;
    gap: 1.8rem;
}
body.college-page-home .college-inline-home-195 {
    background: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid #ffedd5;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.college-page-home .college-inline-home-196 {
    color: #14204a;
}
body.college-page-home .college-inline-home-197 {
    color: #ea580c;
    font-size: 0.65rem;
    font-weight: 800;
}
body.college-page-home .college-inline-home-198 {
    background: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid #ffedd5;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.college-page-home .college-inline-home-199 {
    color: #14204a;
}
body.college-page-home .college-inline-home-200 {
    color: #ea580c;
    font-size: 0.65rem;
    font-weight: 800;
}
body.college-page-home .college-inline-home-201 {
    background: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid #ffedd5;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.college-page-home .college-inline-home-202 {
    color: #14204a;
}
body.college-page-home .college-inline-home-203 {
    color: #ea580c;
    font-size: 0.65rem;
    font-weight: 800;
}
body.college-page-home .college-inline-home-204 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2.6rem;
}
body.college-page-home .college-inline-home-205 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
    margin-top: 0;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
body.college-page-home .college-inline-home-206 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #14204a;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-home .college-inline-home-207 {
    color: #f97316;
}
body.college-page-home .college-inline-home-208 {
    gap: 10px;
}
body.college-page-home .college-inline-home-209 {
    background: #fff;
    border: 1px solid #ffedd5;
    border-left: 6px solid #f97316;
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.04);
}
body.college-page-home .college-inline-home-210 {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
}
body.college-page-home .college-inline-home-211 {
    color: #64748b;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-212 {
    background: #fff;
    border: 1px solid #ffedd5;
    border-left: 6px solid #ea580c;
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.04);
}
body.college-page-home .college-inline-home-213 {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
}
body.college-page-home .college-inline-home-214 {
    color: #64748b;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-215 {
    background: #fff;
    border: 1px solid #ffedd5;
    border-left: 6px solid #c2410c;
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.04);
}
body.college-page-home .college-inline-home-216 {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
}
body.college-page-home .college-inline-home-217 {
    color: #64748b;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-218 {
    background: #fff;
    border: 1px solid #ffedd5;
    border-left: 6px solid #9a3412;
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.04);
}
body.college-page-home .college-inline-home-219 {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
}
body.college-page-home .college-inline-home-220 {
    color: #64748b;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-221 {
    background: #fff;
    border: 1px solid #ffedd5;
    border-left: 6px solid #fb923c;
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.04);
}
body.college-page-home .college-inline-home-222 {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
}
body.college-page-home .college-inline-home-223 {
    color: #64748b;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-224 {
    background: #fff;
    border: 1px solid #ffedd5;
    border-left: 6px solid #fdba74;
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.04);
}
body.college-page-home .college-inline-home-225 {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
}
body.college-page-home .college-inline-home-226 {
    color: #64748b;
    font-size: 0.7rem;
}
body.college-page-home .college-inline-home-227 {
    background: linear-gradient(115deg, rgba(248, 250, 252, 0.97) 38%, rgba(240, 249, 255, 0.87) 100%);
}
body.college-page-home .college-inline-home-228 {
    background: rgba(3, 105, 161, .1);
    border: 1.5px solid rgba(3, 105, 161, .35);
    color: #0369a1;
}
body.college-page-home .college-inline-home-229 {
    color: #14204a;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
}
body.college-page-home .college-inline-home-230 {
    color: #0369a1;
}
body.college-page-home .college-inline-home-231 {
    color: #475569;
    font-size: .93rem;
    margin-top: .9rem;
    line-height: 1.75;
    max-width: 390px;
}
body.college-page-home .college-inline-home-232 {
    font-size: 2.4rem;
    color: #f59e0b;
    flex-shrink: 0;
}
body.college-page-home .college-inline-home-233 {
    color: #d97706;
}
body.college-page-home .college-inline-home-234 {
    font-size: .76rem;
    color: #94a3b8;
    margin-top: 4px;
}
body.college-page-home .college-inline-home-235 {
    color: #0369a1;
}
body.college-page-home .college-inline-home-236 {
    color: #7c3aed;
}
body.college-page-home .college-inline-home-237 {
    color: #16a34a;
}
body.college-page-home .college-inline-home-238 {
    color: #d97706;
}
body.college-page-home .college-inline-home-239 {
    color: #dc2626;
}
body.college-page-home .college-inline-home-240 {
    color: #f59e0b;
}
body.college-page-home .college-inline-home-241 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 30%, #b91c1c 60%, #991b1b 100%);
}
body.college-page-home .college-inline-home-242 {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22><circle cx=%2230%22 cy=%2230%22 r=%2218%22 fill=%22none%22 stroke=%22rgba(255,255,255,0.04)%22 stroke-width=%222%22/><circle cx=%2230%22 cy=%2230%22 r=%228%22 fill=%22none%22 stroke=%22rgba(255,255,255,0.03)%22 stroke-width=%221.5%22/></svg>');
    pointer-events: none;
}
body.college-page-home .college-inline-home-243 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(251, 191, 36, .15) 0%, transparent 65%);
    pointer-events: none;
}
body.college-page-home .college-inline-home-244 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(251, 191, 36, .1) 0%, transparent 60%);
    pointer-events: none;
}
body.college-page-home .college-inline-home-245 {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    top: 12%;
    left: 6%;
    animation-delay: 0s;
}
body.college-page-home .college-inline-home-246 {
    width: 4px;
    height: 4px;
    background: #fbbf24;
    top: 20%;
    right: 18%;
    animation-delay: 1s;
}
body.college-page-home .college-inline-home-247 {
    width: 5px;
    height: 5px;
    background: #fff;
    bottom: 25%;
    left: 12%;
    animation-delay: 2s;
    opacity: .3;
}
body.college-page-home .college-inline-home-248 {
    width: 3px;
    height: 3px;
    background: #fbbf24;
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
}
body.college-page-home .college-inline-home-249 {
    font-size: .55em;
    color: rgba(255, 255, 255, .7);
}
body.college-page-home .college-inline-home-250 {
    padding: var(--section-pad-y) 0;
    overflow: hidden;
    background: var(--college-call-background-image) no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.college-page-home .college-inline-home-251 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 12, 30, 0.93) 0%, rgba(15, 23, 50, 0.88) 50%, rgba(20, 32, 74, 0.90) 100%);
    z-index: 0;
    pointer-events: none;
}
body.college-page-home .college-inline-home-252 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
    background-image: radial-gradient(#fbbf24 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}
body.college-page-home .college-inline-home-253 {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}
body.college-page-home .college-inline-home-254 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}
body.college-page-home .college-inline-home-255 {
    color: #94a3b8;
}
body.college-page-home .college-inline-home-256 {
    border: none;
}
body.college-page-home .college-inline-home-257 {
    padding: 10px 0 30px;
    border: none;
}
body.college-page-home .college-inline-home-258 {
    margin-bottom: 2.5rem;
}
body.college-page-home .college-inline-home-259 {
    background: #fbbf2433;
    border: 1px solid #fbbf2455;
}
body.college-page-home .college-inline-home-260 {
    background: #fbbf2422;
    border: 1px solid #fbbf2455;
    color: #fbbf24;
}
body.college-page-home .college-inline-home-261 {
    background: #fbbf24;
    color: #14204a;
}
body.college-page-home .college-inline-home-262 {
    background: #a78bfa33;
    border: 1px solid #a78bfa55;
}
body.college-page-home .college-inline-home-263 {
    background: #a78bfa22;
    border: 1px solid #a78bfa55;
    color: #a78bfa;
}
body.college-page-home .college-inline-home-264 {
    background: #a78bfa;
    color: #fff;
}
body.college-page-home .college-inline-home-265 {
    background: #fb923c33;
    border: 1px solid #fb923c55;
}
body.college-page-home .college-inline-home-266 {
    background: #fb923c22;
    border: 1px solid #fb923c55;
    color: #fb923c;
}
body.college-page-home .college-inline-home-267 {
    background: #fb923c;
    color: #14204a;
}
body.college-page-home .college-inline-home-268 {
    background: #38bdf833;
    border: 1px solid #38bdf855;
}
body.college-page-home .college-inline-home-269 {
    background: #38bdf822;
    border: 1px solid #38bdf855;
    color: #38bdf8;
}
body.college-page-home .college-inline-home-270 {
    background: #38bdf8;
    color: #14204a;
}
body.college-page-home .college-inline-home-271 {
    background: #4ade8033;
    border: 1px solid #4ade8055;
}
body.college-page-home .college-inline-home-272 {
    background: #4ade8022;
    border: 1px solid #4ade8055;
    color: #4ade80;
}
body.college-page-home .college-inline-home-273 {
    background: #4ade80;
    color: #14204a;
}
body.college-page-home .college-inline-home-274 {
    --lc: #2563eb;
    --lbg: rgba(37, 99, 235, .07);
    --lbd: rgba(37, 99, 235, .18);
    --lsh: rgba(37, 99, 235, .12);
}
body.college-page-home .college-inline-home-275 {
    --lc: #7c3aed;
    --lbg: rgba(124, 58, 237, .07);
    --lbd: rgba(124, 58, 237, .18);
    --lsh: rgba(124, 58, 237, .12);
}
body.college-page-home .college-inline-home-276 {
    --lc: #0891b2;
    --lbg: rgba(8, 145, 178, .07);
    --lbd: rgba(8, 145, 178, .18);
    --lsh: rgba(8, 145, 178, .12);
}
body.college-page-home .college-inline-home-277 {
    --lc: #d97706;
    --lbg: rgba(217, 119, 6, .07);
    --lbd: rgba(217, 119, 6, .18);
    --lsh: rgba(217, 119, 6, .12);
}
body.college-page-home .college-inline-home-278 {
    --lc: #db2777;
    --lbg: rgba(219, 39, 119, .07);
    --lbd: rgba(219, 39, 119, .18);
    --lsh: rgba(219, 39, 119, .12);
}
body.college-page-home .college-inline-home-279 {
    --lc: #16a34a;
    --lbg: rgba(22, 163, 74, .07);
    --lbd: rgba(22, 163, 74, .18);
    --lsh: rgba(22, 163, 74, .12);
}
body.college-page-home .college-inline-home-280 {
    margin-bottom: 1.5rem;
}
body.college-page-home .college-inline-home-281 {
    color: #94a3b8;
}
body.college-page-home .college-inline-home-282 {
    color: #e879f9;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-283 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-284 {
    color: #4ade80;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-285 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-286 {
    color: #fb923c;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-287 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-288 {
    color: #fbbf24;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-289 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-290 {
    color: #38bdf8;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-291 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-292 {
    color: #22d3ee;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-293 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-294 {
    color: #0ea5e9;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-295 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-296 {
    color: #0891b2;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-297 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-298 {
    color: #a78bfa;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-299 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-300 {
    color: #8b5cf6;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-301 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-302 {
    color: #7c3aed;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-303 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-304 {
    color: #34d399;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-305 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-306 {
    color: #10b981;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-307 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-308 {
    color: #059669;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-309 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-310 {
    color: #047857;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-311 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-312 {
    color: #f472b6;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-313 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-314 {
    color: #f43f5e;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-315 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-316 {
    color: #e11d48;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}
body.college-page-home .college-inline-home-317 {
    color: #ff4444;
    margin-left: auto;
}
body.college-page-home .college-inline-home-318 {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}
body.college-page-home .college-inline-home-319 {
    flex-shrink: 0;
    color: #ff4444;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
body.college-page-home .college-inline-home-320 {
    margin-bottom: 2.5rem;
}
body.college-page-home .college-inline-home-321 {
    max-width: 100%;
}
body.college-page-home .college-inline-home-322 {
    font-size: 1em;
}
body.college-page-home .college-inline-home-323 {
    line-height: 1.8;
}
body.college-page-home .college-inline-home-324 {
    font-size: 0.9em;
}
body.college-page-home .college-inline-home-325 {
    font-size: 0.9em;
}
body.college-page-home .college-inline-home-326 {
    margin-bottom: 1.5rem;
}
body.college-page-home .college-inline-home-327 {
    max-width: 100%;
}
body.college-page-home .college-inline-home-328 {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
body.college-page-home .college-inline-home-329 {
    margin-bottom: 2.5rem;
}
body.college-page-home .college-inline-home-330 {
    margin-bottom: 2rem;
}
body.college-page-home .college-inline-home-331 {
    padding: 2.5rem 2.5rem 1rem 2.5rem;
    margin-bottom: 0;
}
body.college-page-home .college-inline-home-332 {
    --badge-color: #ef4444;
    --badge-rgb: 239, 68, 68;
}
body.college-page-home .college-inline-home-333 {
    font-size: 1.5rem;
}
body.college-page-home .college-inline-home-334 {
    text-align: center;
    margin-bottom: 0.8rem;
    width: 100%;
}
body.college-page-home .college-inline-home-335 {
    --badge-color: #1877F2;
    --badge-rgb: 24, 119, 242;
}
body.college-page-home .college-inline-home-336 {
    font-size: 1.4rem;
    font-weight: 800;
}
body.college-page-home .college-inline-home-337 {
    color: #1877F2;
}
body.college-page-home .college-inline-home-338 {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.1);
    display: flex;
    flex-direction: column;
}
body.college-page-home .college-inline-home-339 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    z-index: 10;
    position: relative;
}
body.college-page-home .college-inline-home-340 {
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-home .college-inline-home-341 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #1877F2;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}
body.college-page-home .college-inline-home-342 {
    max-width: 140px;
}
body.college-page-home .college-inline-home-343 {
    color: #1877F2;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    font-family: Helvetica, Arial, sans-serif;
}
body.college-page-home .college-inline-home-344 {
    color: #65676B;
    font-size: 12px;
    margin-top: 4px;
    font-family: Helvetica, Arial, sans-serif;
}
body.college-page-home .college-inline-home-345 {
    color: #1877F2;
    font-size: 10px;
}
body.college-page-home .college-inline-home-346 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 75px;
}
body.college-page-home .college-inline-home-347 {
    background: #e4e6eb;
    color: #050505;
    font-weight: 600;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.college-page-home .college-inline-home-348 {
    margin-right: 6px;
    color: #1877F2;
}
body.college-page-home .college-inline-home-349 {
    background: #e4e6eb;
    color: #050505;
    font-weight: 600;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.college-page-home .college-inline-home-350 {
    margin-right: 6px;
    color: #65676B;
}
body.college-page-home .college-inline-home-351 {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}
body.college-page-home .college-inline-home-352 {
    border: none;
    margin-top: -130px;
    width: calc(100% + 2px);
    transform: translateX(-1px);
}
body.college-page-home .college-inline-home-353 {
    margin-bottom: 1.5rem;
}
body.college-page-home .college-inline-home-354 {
    max-width: 100%;
    color: #cbd5e1;
}
body.college-page-home .college-inline-home-355 {
    font-size: 1.2rem;
}
body.college-page-home .college-inline-home-356 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #fff;
}
body.college-page-home .college-inline-home-357 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}
body.college-page-home .college-inline-home-358 {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border-color: #fff;
}
body.college-page-home .college-inline-home-359 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}
body.college-page-home .college-inline-home-360 {
    margin-bottom: 2.5rem;
}
body.college-page-home .college-inline-home-361 {
    background: #22c55e;
}
body.college-page-home .college-inline-home-362 {
    background: #f97316;
}
body.college-page-home .college-inline-home-363 {
    background: #f59e0b;
}
body.college-page-home .college-inline-home-364 {
    background: #14b8a6;
}
body.college-page-home .college-inline-home-365 {
    background: #1877f2;
}
body.college-page-home .college-inline-home-366 {
    background: #a855f7;
}
body.college-page-home .college-inline-home-367 {
    background: #8b5cf6;
}
body.college-page-home .college-inline-home-368 {
    background: #ef4444;
}
body.college-page-home .college-inline-home-369 {
    background: #10b981;
}
body.college-page-home .college-inline-home-370 {
    background: #ec4899;
}
body.college-page-home .college-inline-home-371 {
    background: #38bdf8;
}
body.college-page-home .college-inline-home-372 {
    background: #f43f5e;
}
body.college-page-home .college-inline-home-373 {
    --scroll-percent: 0%;
}
body.college-page-home .college-inline-home-374 {
    color: inherit;
    text-decoration: none;
}
body.college-page-home .college-inline-home-375 {
    color: inherit;
    text-decoration: none;
}

/* Page: hosteldining */

/* Style for the sidebar container */
body.college-page-hosteldining .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-hosteldining .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-hosteldining .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-hosteldining .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-hosteldining .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-hosteldining .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-hosteldining .college-hosteldining-inline-1 {
    z-index: 2;
}
body.college-page-hosteldining .college-hosteldining-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-hosteldining .college-hosteldining-inline-3 {
    text-align: center;
    color: red;
}
body.college-page-hosteldining .college-hosteldining-inline-4 {
    color: black;
}

/* Page: iic */

/* Custom Beautification for IIC */
body.college-page-iic .iic-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
body.college-page-iic .iic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/circuit-pattern.html') repeat;
    /* Fallback if image exists, else subtle opacity */
    
    opacity: 0.05;
    pointer-events: none;
}

/* Feature Cards for Objectives/Outcomes */
body.college-page-iic .feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
body.college-page-iic .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}
body.college-page-iic .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #fbbf24;
    /* Gold accent */
    
    opacity: 0.5;
}
body.college-page-iic .feature-card.primary::before {
    background: #3b82f6;
}
body.college-page-iic .feature-card.success::before {
    background: #10b981;
}
body.college-page-iic .feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}
body.college-page-iic .feature-card.primary .feature-icon-circle {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}
body.college-page-iic .feature-card.success .feature-icon-circle {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Certificate Cards */
body.college-page-iic .cert-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}
body.college-page-iic .cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
body.college-page-iic .cert-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
    position: relative;
}
body.college-page-iic .cert-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
body.college-page-iic .cert-card:hover .cert-img-wrapper img {
    transform: scale(1.05);
}

/* Reports List */
body.college-page-iic .report-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}
body.college-page-iic .report-list-item:hover {
    background: #fff;
    border-color: #fbbf24;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}
body.college-page-iic .report-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fee2e2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Extracted inline declarations */
body.college-page-iic .college-iic-inline-1 {
    z-index: 2;
}
body.college-page-iic .college-iic-inline-2 {
    border: none;
}

/* Page: incubationcenter */
body.college-page-incubationcenter .project-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
body.college-page-incubationcenter .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.15);
    border-color: var(--gold);
    background: linear-gradient(135deg, white 0%, #fffbeb 100%);
}
body.college-page-incubationcenter .nav-tabs .nav-link {
    font-weight: 600;
    color: var(--navy-light);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}
body.college-page-incubationcenter .nav-tabs .nav-link:hover {
    background-color: rgba(251, 191, 36, 0.1);
    color: var(--navy);
}
body.college-page-incubationcenter .nav-tabs .nav-link.active {
    background-color: white;
    color: var(--gold-dark) !important;
    border-bottom-color: white;
    position: relative;
}
body.college-page-incubationcenter .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}

/* Extracted inline declarations */
body.college-page-incubationcenter .college-incubationcenter-inline-1 {
    z-index: 2;
}
body.college-page-incubationcenter .college-incubationcenter-inline-2 {
    font-size: 2rem;
}
body.college-page-incubationcenter .college-incubationcenter-inline-3 {
    font-size: 2rem;
}

/* Page: infrastructureandphysicalfacilities */

/* Style for the sidebar container */
body.college-page-infrastructureandphysicalfacilities .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-infrastructureandphysicalfacilities .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-infrastructureandphysicalfacilities .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-infrastructureandphysicalfacilities .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-infrastructureandphysicalfacilities .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-infrastructureandphysicalfacilities .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-infrastructureandphysicalfacilities .college-infrastructureandphysicalfacilities-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-infrastructureandphysicalfacilities .college-infrastructureandphysicalfacilities-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-infrastructureandphysicalfacilities .college-infrastructureandphysicalfacilities-inline-3 {
    color: black;
}

/* Page: institutionalscholarship */

/* Style for the sidebar container */
body.college-page-institutionalscholarship .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-institutionalscholarship .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-institutionalscholarship .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-institutionalscholarship .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-institutionalscholarship .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-institutionalscholarship .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-institutionalscholarship .college-institutionalscholarship-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-institutionalscholarship .college-institutionalscholarship-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-institutionalscholarship .college-institutionalscholarship-inline-3 {
    color: black;
}
body.college-page-institutionalscholarship .college-institutionalscholarship-inline-4 {
    font-size: 20px;
}

/* Page: internationalconferences */

/* Extracted inline declarations */
body.college-page-internationalconferences .college-internationalconferences-inline-1 {
    z-index: 2;
}

/* Page: ipr */

/* Extracted inline declarations */
body.college-page-ipr .college-ipr-inline-1 {
    z-index: 2;
}
body.college-page-ipr .college-ipr-inline-2 {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Page: iqac */

/* 
       IQAC Department Specific Styles 
       Optimized animations and branding
    */

/* Sidebar Scrollbar - Enhanced Beauty */
body.college-page-iqac .sidebar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
body.college-page-iqac .sidebar {
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #f1f5f9;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
body.college-page-iqac .sidebar::-webkit-scrollbar-track {
    background: #e0f2fe;
    border-radius: 4px;
}
body.college-page-iqac .sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0ea5e9, #6366f1);
    border-radius: 10px;
    border: 1px solid #ffffff;
}
body.college-page-iqac .sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0284c7, #4f46e5);
}
body.college-page-iqac .sidebar-header {
    border-top-right-radius: 0 !important;
}

/* Sidebar Active State */
body.college-page-iqac .sidebar-link.active {
    background: #f0f9ff;
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    font-weight: 600;
}
body.college-page-iqac .sidebar-link.active i {
    color: var(--accent-color);
}

/* Section Title Icon Gradient */
body.college-page-iqac .section-title i {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badges */
body.college-page-iqac .badge-tech {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    color: #0369a1;
    border: 1px solid rgba(186, 230, 253, 0.5);
    box-shadow: var(--shadow-sm);
}
body.college-page-iqac .badge-grad {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    color: #1d4ed8;
    border: 1px solid rgba(191, 219, 254, 0.5);
    box-shadow: var(--shadow-sm);
}

/* Glassmorphism Cards */
body.college-page-iqac .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.college-page-iqac .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Particle Background Canvas */
body.college-page-iqac #ece-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Let clicks pass through */
}

/* ==== Hero Section Animations ==== */
body.college-page-iqac .iqac-hero {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0ea5e9, #1e293b, #0f172a);
    background-size: 400% 400%;
    animation: iqac-gradientShift 15s ease infinite;
    padding: 80px 0 80px;
    /* Balanced compact padding */
    
    color: white;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
@keyframes iqac-gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    
    50% {
        background-position: 100% 50%;
    }
}

/* Animated gradient text with glow */
body.college-page-iqac .iqac-hero h1 {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #60a5fa, #a78bfa);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    animation: iqac-textGradient 8s ease infinite;
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.4));
    will-change: background-position;
}
@keyframes iqac-textGradient {
    0%,
    100% {
        background-position: 0% 50%;
    }
    
    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle with fade animation */
body.college-page-iqac .iqac-hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: iqac-fadeInUp 1s ease-out 0.3s both;
}
@keyframes iqac-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Media Queries for Hero */
@media (max-width: 991px) {
    body.college-page-iqac .iqac-hero h1 {
        font-size: 2.2rem;
    }
    
    body.college-page-iqac .iqac-hero {
        padding: 50px 0 60px;
    }
}

/* Lists */
body.college-page-iqac .icon-list {
    list-style: none;
    padding: 0;
}
body.college-page-iqac .icon-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #334155;
}
body.college-page-iqac .icon-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
}

/* Link Cards */
body.college-page-iqac .link-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: var(--shadow-md);
}
body.college-page-iqac .link-card:hover {
    border-color: var(--accent-color);
}
body.college-page-iqac .section-header-row td {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    /* Premium Teal Gradient */
    
    color: white;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px;
}
body.college-page-iqac .link-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}
body.college-page-iqac .link-card h5 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* QPI Context Cards */
body.college-page-iqac .qpi-card {
    border: none;
    border-radius: 16px;
    color: white;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
body.college-page-iqac .qpi-card:hover {
    transform: translateY(-5px);
}
body.college-page-iqac .qpi-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}
body.college-page-iqac .bg-gradient-1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
body.college-page-iqac .bg-gradient-2 {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}
body.college-page-iqac .bg-gradient-3 {
    background: linear-gradient(135deg, #10b981, #34d399);
}
body.college-page-iqac .bg-gradient-4 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* Accordion Styling */
body.college-page-iqac .accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}
body.college-page-iqac .accordion-button {
    font-weight: 600;
    color: #0f172a;
    background: #f8fafc;
    padding: 16px 20px;
}
body.college-page-iqac .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background: #f0f9ff;
    box-shadow: none;
}
body.college-page-iqac .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(14, 165, 233, 0.2);
}

/* Extracted inline declarations */
body.college-page-iqac .college-iqac-inline-1 {
    height: 8px
}
body.college-page-iqac .college-iqac-inline-2 {
    width: 75%
}
body.college-page-iqac .college-iqac-inline-3 {
    height: 8px
}
body.college-page-iqac .college-iqac-inline-4 {
    width: 82%
}
body.college-page-iqac .college-iqac-inline-5 {
    height: 8px
}
body.college-page-iqac .college-iqac-inline-6 {
    width: 90%
}
body.college-page-iqac .college-iqac-inline-7 {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}
body.college-page-iqac .college-iqac-inline-8 {
    max-width: 700px;
    margin: 0 auto;
}
body.college-page-iqac .college-iqac-inline-9 {
    font-size: 0.7rem;
}
body.college-page-iqac .college-iqac-inline-10 {
    font-size: 0.7rem;
}
body.college-page-iqac .college-iqac-inline-11 {
    font-size: 0.7rem;
}
body.college-page-iqac .college-iqac-inline-12 {
    font-size: 0.7rem;
}
body.college-page-iqac .college-iqac-inline-13 {
    font-size: 0.7rem;
}
body.college-page-iqac .college-iqac-inline-14 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
body.college-page-iqac .college-iqac-inline-15 {
    font-size: 0.75rem;
}
body.college-page-iqac .college-iqac-inline-16 {
    background: linear-gradient(135deg, #10b981, #059669);
}
body.college-page-iqac .college-iqac-inline-17 {
    font-size: 0.75rem;
}
body.college-page-iqac .college-iqac-inline-18 {
    background: linear-gradient(135deg, #10b981, #059669);
}
body.college-page-iqac .college-iqac-inline-19 {
    font-size: 0.75rem;
}
body.college-page-iqac .college-iqac-inline-20 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
body.college-page-iqac .college-iqac-inline-21 {
    font-size: 0.75rem;
}
body.college-page-iqac .college-iqac-inline-22 {
    background: #1f2937;
    color: white;
    border-top: 5px solid #f59e0b;
}
body.college-page-iqac .college-iqac-inline-23 {
    width: 80px;
    height: 80px;
}
body.college-page-iqac .college-iqac-inline-24 {
    max-width: 250px;
}
body.college-page-iqac .college-iqac-inline-25 {
    background: #1f2937;
    color: white;
    border-top: 5px solid #0ea5e9;
}
body.college-page-iqac .college-iqac-inline-26 {
    width: 80px;
    height: 80px;
}
body.college-page-iqac .college-iqac-inline-27 {
    max-width: 250px;
}
body.college-page-iqac .college-iqac-inline-28 {
    background: #1f2937;
    color: white;
    border-top: 5px solid #ec4899;
}
body.college-page-iqac .college-iqac-inline-29 {
    width: 80px;
    height: 80px;
    border-color: #ec4899 !important;
}
body.college-page-iqac .college-iqac-inline-30 {
    color: #ec4899;
}
body.college-page-iqac .college-iqac-inline-31 {
    background: #ec4899;
}
body.college-page-iqac .college-iqac-inline-32 {
    max-width: 250px;
}
body.college-page-iqac .college-iqac-inline-33 {
    color: #ec4899;
}
body.college-page-iqac .college-iqac-inline-34 {
    color: #ec4899;
}
body.college-page-iqac .college-iqac-inline-35 {
    color: #ec4899;
}
body.college-page-iqac .college-iqac-inline-36 {
    color: #ec4899;
}
body.college-page-iqac .college-iqac-inline-37 {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
}
body.college-page-iqac .college-iqac-inline-38 {
    min-height: 200px;
    transition: transform 0.3s;
}
body.college-page-iqac .college-iqac-inline-39 {
    min-height: 200px;
    transition: transform 0.3s;
}
body.college-page-iqac .college-iqac-inline-40 {
    min-height: 200px;
    transition: transform 0.3s;
}
body.college-page-iqac .college-iqac-inline-41 {
    min-height: 200px;
    transition: transform 0.3s;
}
body.college-page-iqac .college-iqac-inline-42 {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    opacity: 1;
}

/* Page: laboratories */

/* Style for the sidebar container */
body.college-page-laboratories .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-laboratories .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-laboratories .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-laboratories .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-laboratories .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-laboratories .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-laboratories .college-laboratories-inline-1 {
    z-index: 2;
}
body.college-page-laboratories .college-laboratories-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-laboratories .college-laboratories-inline-3 {
    text-align: center;
    color: red;
}
body.college-page-laboratories .college-laboratories-inline-4 {
    color: black;
}
body.college-page-laboratories .college-laboratories-inline-5 {
    text-align: center;
}
body.college-page-laboratories .college-laboratories-inline-6 {
    max-width: 100%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-7 {
    text-align: center;
}
body.college-page-laboratories .college-laboratories-inline-8 {
    max-width: 100%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-9 {
    text-align: center;
}
body.college-page-laboratories .college-laboratories-inline-10 {
    max-width: 100%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-11 {
    text-align: center;
}
body.college-page-laboratories .college-laboratories-inline-12 {
    max-width: 33.33%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-13 {
    max-width: 33.33%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-14 {
    max-width: 33.33%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-15 {
    max-width: 33.33%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-16 {
    max-width: 33.33%;
    height: auto;
}
body.college-page-laboratories .college-laboratories-inline-17 {
    max-width: 33.33%;
    height: auto;
}

/* Page: library */

/* Style for the sidebar container */
body.college-page-library .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-library .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-library .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-library .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-library .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-library .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-library .college-library-inline-1 {
    z-index: 2;
}
body.college-page-library .college-library-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-library .college-library-inline-3 {
    text-align: center;
    color: red;
}
body.college-page-library .college-library-inline-4 {
    color: black;
}

/* Page: management */
body.college-page-management .profile-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
    overflow: hidden;
}
body.college-page-management .profile-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.02));
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-bottom: 1px dashed rgba(251, 191, 36, 0.3);
}
@media (max-width: 768px) {
    body.college-page-management .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
}
body.college-page-management .profile-img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    body.college-page-management .profile-img-wrapper {
        margin: 0 auto;
    }
}
body.college-page-management .profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}
body.college-page-management .profile-img-wrapper::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    animation: management-spin 30s linear infinite;
}
@keyframes management-spin {
    100% {
        transform: rotate(360deg);
    }
}
body.college-page-management .profile-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
body.college-page-management .profile-role {
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
body.college-page-management .profile-body {
    padding: 2.5rem;
    text-align: justify;
}
body.college-page-management .intro-box {
    background: #fff;
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}
body.college-page-management .intro-box::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: rgba(251, 191, 36, 0.2);
}
body.college-page-management .highlight {
    background: linear-gradient(120deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0) 100%);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--navy);
}
body.college-page-management .society-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(20, 32, 74, 0.3);
}
body.college-page-management .society-badge i {
    color: var(--gold);
}
body.college-page-management .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50px;
    color: var(--navy);
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
body.college-page-management .contact-link:hover {
    background: var(--gold);
    color: var(--navy) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(251, 191, 36, 0.3);
    border-color: var(--gold);
}
body.college-page-management .contact-link i {
    color: var(--gold-dark);
    font-size: 0.9rem;
}
body.college-page-management .contact-link:hover i {
    color: var(--navy);
}

/* Extracted inline declarations */
body.college-page-management .college-management-inline-1 {
    z-index: 2;
}
body.college-page-management .college-management-inline-2 {
    font-weight: 600;
    font-size: 0.95rem;
}
body.college-page-management .college-management-inline-3 {
    background: #fdfdfd;
}
body.college-page-management .college-management-inline-4 {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Page: mca */
body.college-page-mca .sidebar-content {
    position: relative;
}
body.college-page-mca .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}
body.college-page-mca .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}
body.college-page-mca .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}

/* Style for the sidebar container */
body.college-page-mca .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}

/* Style for the links */
body.college-page-mca .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}
body.college-page-mca .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}
body.college-page-mca .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    
    color: #343a40;
    /* Dark text color */
    
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}

/* Style for the icon */
body.college-page-mca .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    
    font-size: 28px;
    /* Icon size */
    
    color: #007bff;
    /* Icon color */
}

/* Hover effect */
body.college-page-mca .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    
    border-radius: 50px;
    /* Rounded corners on hover */
}

/* Sidebar header */
body.college-page-mca .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}

/* Extracted inline declarations */
body.college-page-mca .college-mca-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}
body.college-page-mca .college-mca-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}
body.college-page-mca .college-mca-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-mca .college-mca-inline-4 {
    text-align: center;
    color: red;
}
body.college-page-mca .college-mca-inline-5 {
    color: black;
}
body.college-page-mca .college-mca-inline-6 {
    text-decoration: underline;
}
body.college-page-mca .college-mca-inline-7 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-8 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-9 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-10 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-11 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-12 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-13 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-14 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-15 {
    color: #046A10;
}
body.college-page-mca .college-mca-inline-16 {
    color: #046A10;
}

/* Page: mech */
body.college-page-mech .sidebar-content {
    position: relative;
}
body.college-page-mech .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}
body.college-page-mech .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}
body.college-page-mech .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}

/* Style for the sidebar container */
body.college-page-mech .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}

/* Style for the links */
body.college-page-mech .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}
body.college-page-mech .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}
body.college-page-mech .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    
    color: #343a40;
    /* Dark text color */
    
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}

/* Style for the icon */
body.college-page-mech .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    
    font-size: 28px;
    /* Icon size */
    
    color: #007bff;
    /* Icon color */
}

/* Hover effect */
body.college-page-mech .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    
    border-radius: 50px;
    /* Rounded corners on hover */
}

/* Sidebar header */
body.college-page-mech .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}

/* Extracted inline declarations */
body.college-page-mech .college-mech-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}
body.college-page-mech .college-mech-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}
body.college-page-mech .college-mech-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-mech .college-mech-inline-4 {
    text-align: center;
    color: red;
}
body.college-page-mech .college-mech-inline-5 {
    color: black;
}
body.college-page-mech .college-mech-inline-6 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-7 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-8 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-9 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-10 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-11 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-12 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-13 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-14 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-15 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-16 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-17 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-18 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-19 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-20 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-21 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-22 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-23 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-24 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-25 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-26 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-27 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-28 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-29 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-30 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-31 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-32 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-33 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-34 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-35 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-36 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-37 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-38 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-39 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-40 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-41 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-42 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-43 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-44 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-45 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-46 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-47 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-48 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-49 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-50 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-51 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-52 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-53 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-54 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-55 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-56 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-57 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-58 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-59 {
    color: #ff0000;
}
body.college-page-mech .college-mech-inline-60 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-61 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-62 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-63 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-64 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-65 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-66 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-67 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-68 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-69 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-70 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-71 {
    color: #000000;
}
body.college-page-mech .college-mech-inline-72 {
    text-decoration: underline;
}
body.college-page-mech .college-mech-inline-73 {
    text-align: center;
}
body.college-page-mech .college-mech-inline-74 {
    text-decoration-line: underline;
}
body.college-page-mech .college-mech-inline-75 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-76 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-77 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-78 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-79 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-80 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-81 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-82 {
    color: #d35400;
}
body.college-page-mech .college-mech-inline-83 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-84 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-85 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-86 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-87 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-88 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-89 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-90 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-91 {
    color: #046A10;
}
body.college-page-mech .college-mech-inline-92 {
    color: #046A10;
}

/* Page: milestone */

/* === Timeline Specific Styles === */

/* Custom Colored Scrollbar only for timeline container */
body.college-page-milestone .timeline-wrapper {
    padding: 4rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #f8fafc;
}
body.college-page-milestone .timeline-wrapper::-webkit-scrollbar {
    height: 8px;
}
body.college-page-milestone .timeline-wrapper::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}
body.college-page-milestone .timeline-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #fbbf24, #d97706);
    border-radius: 4px;
}
body.college-page-milestone .timeline-track {
    display: flex;
    align-items: flex-start;
    position: relative;
    min-width: max-content;
    padding: 0 15px;
}
body.college-page-milestone .timeline-line {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b 50%, #d97706);
    border-radius: 6px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}
body.college-page-milestone .milestone {
    flex: 0 0 240px;
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    padding: 0 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.college-page-milestone .milestone:hover {
    transform: translateY(-10px);
    z-index: 10;
}
body.college-page-milestone .milestone-year {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(251, 191, 36, 0.2);
    font-family: 'Montserrat', sans-serif;
}
body.college-page-milestone .milestone-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}
body.college-page-milestone .milestone-dot i {
    color: var(--navy);
    font-size: 1.4rem;
    transition: all 0.4s ease;
}
body.college-page-milestone .milestone:hover .milestone-dot {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-color: #ffffff;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.4);
}
body.college-page-milestone .milestone:hover .milestone-dot i {
    color: #ffffff;
    transform: scale(1.1);
}
body.college-page-milestone .milestone-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    min-height: 110px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
body.college-page-milestone .milestone-content ul {
    text-align: left;
    padding-left: 1.2rem;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.9rem;
}
body.college-page-milestone .milestone:hover .milestone-content {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.02) 100%);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.15);
}

/* === Modal === */
body.college-page-milestone .milestone-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    overflow: hidden;
}
body.college-page-milestone .milestone-modal .modal-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
}
body.college-page-milestone .milestone-modal .modal-title {
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--gold);
}
body.college-page-milestone .milestone-modal .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
    transition: all 0.3s;
}
body.college-page-milestone .milestone-modal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}
body.college-page-milestone .milestone-modal .modal-body {
    font-size: 1.15rem;
    line-height: 1.8;
    padding: 2.5rem;
    color: #334155;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* Extracted inline declarations */
body.college-page-milestone .college-milestone-inline-1 {
    z-index: 2;
}

/* Page: mooc-courses */

/* Card Styling */
body.college-page-mooc-courses .mooc-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Colorful Borders for each card (n-child approach for variety) */
body.college-page-mooc-courses .mooc-card:nth-child(1) {
    border-top: 4px solid #009688;
}
body.college-page-mooc-courses .mooc-card:nth-child(2) {
    border-top: 4px solid #F44336;
}
body.college-page-mooc-courses .mooc-card:nth-child(3) {
    border-top: 4px solid #2196F3;
}
body.college-page-mooc-courses .mooc-card:nth-child(4) {
    border-top: 4px solid #0056D2;
}
body.college-page-mooc-courses .mooc-card:nth-child(5) {
    border-top: 4px solid #B71C1C;
}
body.college-page-mooc-courses .mooc-card:nth-child(6) {
    border-top: 4px solid #02B3E4;
}
body.college-page-mooc-courses .mooc-card:nth-child(7) {
    border-top: 4px solid #A435F0;
}
body.college-page-mooc-courses .mooc-card:nth-child(8) {
    border-top: 4px solid #14BF96;
}
body.college-page-mooc-courses .mooc-card:nth-child(9) {
    border-top: 4px solid #3A10E5;
}
body.college-page-mooc-courses .mooc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
    /* Let the top border highlighting allow shadow to pop */
}
body.college-page-mooc-courses .mooc-logo {
    height: 60px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: 25px;
    /* filter: grayscale(100%); REMOVED to keep it colorful */
    /* opacity: 0.8; REMOVED */
    
    transition: transform 0.3s ease;
}
body.college-page-mooc-courses .mooc-card:hover .mooc-logo {
    transform: scale(1.1);
}
body.college-page-mooc-courses .mooc-title {
    font-weight: 800;
    color: var(--navy);
    font-size: 1.15rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
body.college-page-mooc-courses .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-dark);
    transition: all 0.3s ease;
}
body.college-page-mooc-courses .benefit-card:hover .benefit-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotateY(180deg);
}

/* Extracted inline declarations */
body.college-page-mooc-courses .college-mooc-courses-inline-1 {
    z-index: 2;
}

/* Page: mous */

/* Extracted inline declarations */
body.college-page-mous .college-mous-inline-1 {
    z-index: 2;
}
body.college-page-mous .college-mous-inline-2 {
    color: #f4b400;
    font-size: 26px;
}

/* Page: mtechms */

/* Style for the sidebar container */
body.college-page-mtechms .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-mtechms .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-mtechms .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-mtechms .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-mtechms .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-mtechms .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-mtechms .college-mtechms-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-mtechms .college-mtechms-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-mtechms .college-mtechms-inline-3 {
    color: black;
}
body.college-page-mtechms .college-mtechms-inline-4 {
    font-size: 25px;
}

/* Page: naac */

/* Style for the sidebar container */
body.college-page-naac .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-naac .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-naac .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-naac .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-naac .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-naac .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-naac .college-naac-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-naac .college-naac-inline-2 {
    text-align: center;
    color: red;
}

/* Page: nirf */
body.college-page-nirf .nirf-cert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
body.college-page-nirf .nirf-cert-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
body.college-page-nirf .nirf-cert-card img:hover {
    transform: scale(1.02);
}

/* Extracted inline declarations */
body.college-page-nirf .college-nirf-inline-1 {
    z-index: 2;
}
body.college-page-nirf .college-nirf-inline-2 {
    color: #fbbf24;
}
body.college-page-nirf .college-nirf-inline-3 {
    color: #8b2572 !important;
}

/* Page: obe */

/* Extracted inline declarations */
body.college-page-obe .college-obe-inline-1 {
    z-index: 2;
}

/* Page: objectives */

/* Style for the sidebar container */
body.college-page-objectives .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-objectives .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-objectives .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-objectives .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-objectives .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-objectives .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-objectives .college-objectives-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-objectives .college-objectives-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-objectives .college-objectives-inline-3 {
    color: black;
}
body.college-page-objectives .college-objectives-inline-4 {
    font-size: 18px;
}

/* Page: onlinegrievance */

/* Extracted inline declarations */
body.college-page-onlinegrievance .college-onlinegrievance-inline-1 {
    z-index: 2;
}

/* Page: others */

/* Facility List Styling */
body.college-page-others .facility-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
body.college-page-others .facility-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}
body.college-page-others .facility-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Tab Content Styling */
body.college-page-others .tab-content-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
body.college-page-others .tab-content-wrapper h3 {
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
body.college-page-others .tab-content-wrapper p {
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    body.college-page-others .tab-content-wrapper {
        padding: 1.5rem;
    }
}

/* Extracted inline declarations */
body.college-page-others .college-others-inline-1 {
    z-index: 2;
}

/* Page: patents-2 */
body.college-page-patents-2,
body.college-page-patents-2 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body.college-page-patents-2 {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 0.98rem;
}
body.college-page-patents-2 .container-fluid_recog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* === Page Title === */
body.college-page-patents-2 .page-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 1rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}
body.college-page-patents-2 .page-title i {
    color: var(--gold);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    animation: patents-2-glow 2s infinite alternate;
}
@keyframes patents-2-glow {
    from {
        text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    }
    
    to {
        text-shadow: 0 0 16px rgba(251, 191, 36, 0.8);
    }
}
body.college-page-patents-2 .page-title::before,
body.college-page-patents-2 .page-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}

/* === Main Card === */
body.college-page-patents-2 .main-card {
    background: rgba(20, 32, 74, 0.95);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.12);
    position: relative;
    overflow: hidden;
}
body.college-page-patents-2 .main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ffe6a1, var(--gold));
    border-radius: var(--radius) var(--radius) 0 0;
}

/* === Table Styling === */
body.college-page-patents-2 .patent-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}
body.college-page-patents-2 .patent-table th {
    background: linear-gradient(90deg, var(--gold), #ffe6a1);
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.88rem;
    padding: 1rem 0.8rem;
    text-align: center;
}
body.college-page-patents-2 .patent-table td {
    padding: 1rem 0.8rem;
    color: var(--white);
    border-bottom: 1px dashed rgba(251, 191, 36, 0.3);
    text-align: center;
}
body.college-page-patents-2 .patent-table td:nth-child(4) {
    text-align: left;
    font-weight: 500;
}
body.college-page-patents-2 .patent-table tr:hover td {
    background: rgba(251, 191, 36, 0.08);
}
body.college-page-patents-2 .patent-table .status-granted {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
body.college-page-patents-2 .patent-table .status-published {
    background: #f59e0b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
body.college-page-patents-2 .table-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-patents-2 .table-title i {
    color: var(--gold);
    font-size: 1.3rem;
}
body.college-page-patents-2 .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--gold), #e6a800);
    color: var(--navy);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}
body.college-page-patents-2 .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

/* === Sidebar === */
body.college-page-patents-2 .sidebar-card {
    background: rgba(20, 32, 74, 0.95);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
    height: fit-content;
}
body.college-page-patents-2 .sidebar-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}
body.college-page-patents-2 .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
body.college-page-patents-2 .sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
body.college-page-patents-2 .sidebar-links a i {
    width: 32px;
    height: 32px;
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
body.college-page-patents-2 .sidebar-links a:hover,
body.college-page-patents-2 .sidebar-links a.active {
    background: linear-gradient(90deg, var(--gold), #e6a800);
    color: var(--navy);
    transform: translateX(4px);
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}
body.college-page-patents-2 .sidebar-links a.active i,
body.college-page-patents-2 .sidebar-links a:hover i {
    background: var(--white);
    color: var(--navy);
}

/* === Responsive === */
@media (max-width: 992px) {
    body.college-page-patents-2 .row {
        flex-direction: column;
    }
    
    body.college-page-patents-2 .col-lg-9,
    body.college-page-patents-2 .col-lg-3 {
        width: 100%;
    }
    
    body.college-page-patents-2 .sidebar-card {
        margin-top: 1.5rem;
    }
}
@media (max-width: 768px) {
    body.college-page-patents-2 .page-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 8px;
    }
    
    body.college-page-patents-2 .page-title i {
        font-size: 1.4rem;
    }
    
    body.college-page-patents-2 .main-card,
    body.college-page-patents-2 .sidebar-card {
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    body.college-page-patents-2 .patent-table {
        font-size: 0.85rem;
    }
    
    body.college-page-patents-2 .patent-table th,
    body.college-page-patents-2 .patent-table td {
        padding: 0.7rem 0.5rem;
    }
    
    body.college-page-patents-2 .download-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Page: patents */

/* Extracted inline declarations */
body.college-page-patents .college-patents-inline-1 {
    z-index: 2;
}
body.college-page-patents .college-patents-inline-2 {
    width: 80px;
}

/* Page: placementactivities */

/* Style for the sidebar container */
body.college-page-placementactivities .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-placementactivities .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-placementactivities .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-placementactivities .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-placementactivities .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-placementactivities .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-placementactivities .college-placementactivities-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-placementactivities .college-placementactivities-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-placementactivities .college-placementactivities-inline-3 {
    color: black;
}
body.college-page-placementactivities .college-placementactivities-inline-4 {
    width: 100%;
    max-width: 100%;
}

/* Page: placementdetails */

/* Style for the sidebar container */
body.college-page-placementdetails .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-placementdetails .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-placementdetails .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-placementdetails .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-placementdetails .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-placementdetails .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-placementdetails .college-placementdetails-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-placementdetails .college-placementdetails-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-placementdetails .college-placementdetails-inline-3 {
    color: black;
}

/* Page: placementgallery */

/* Style for the sidebar container */
body.college-page-placementgallery .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-placementgallery .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-placementgallery .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-placementgallery .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-placementgallery .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-placementgallery .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-placementgallery .college-placementgallery-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-placementgallery .college-placementgallery-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-placementgallery .college-placementgallery-inline-3 {
    color: black;
}

/* Page: placementmaterial */
body.college-page-placementmaterial .resource-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.college-page-placementmaterial .resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
    z-index: -1;
}
body.college-page-placementmaterial .resource-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.15);
    border-color: var(--gold);
}
body.college-page-placementmaterial .resource-card:hover::before {
    width: 100%;
    opacity: 0.05;
}
body.college-page-placementmaterial .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-right: 1.5rem;
    transition: transform 0.3s ease;
}
body.college-page-placementmaterial .resource-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Extracted inline declarations */
body.college-page-placementmaterial .college-placementmaterial-inline-1 {
    z-index: 2;
}
body.college-page-placementmaterial .college-placementmaterial-inline-2 {
    max-height: 300px;
    width: auto;
}

/* Page: placementnotifications */
body.college-page-placementnotifications .sidebar-content {
    position: relative;
}
body.college-page-placementnotifications .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}
body.college-page-placementnotifications .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}
body.college-page-placementnotifications .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}

/* Style for the sidebar container */
body.college-page-placementnotifications .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}

/* Style for the links */
body.college-page-placementnotifications .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}
body.college-page-placementnotifications .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}
body.college-page-placementnotifications .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    
    color: #343a40;
    /* Dark text color */
    
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}

/* Style for the icon */
body.college-page-placementnotifications .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    
    font-size: 28px;
    /* Icon size */
    
    color: #007bff;
    /* Icon color */
}

/* Hover effect */
body.college-page-placementnotifications .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    
    border-radius: 50px;
    /* Rounded corners on hover */
}

/* Sidebar header */
body.college-page-placementnotifications .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}

/* Extracted inline declarations */
body.college-page-placementnotifications .college-placementnotifications-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}
body.college-page-placementnotifications .college-placementnotifications-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}
body.college-page-placementnotifications .college-placementnotifications-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-placementnotifications .college-placementnotifications-inline-4 {
    text-align: center;
    color: red;
}
body.college-page-placementnotifications .college-placementnotifications-inline-5 {
    width: 100%;
    max-width: 100%;
}
body.college-page-placementnotifications .college-placementnotifications-inline-6 {
    color: black;
}
body.college-page-placementnotifications .college-placementnotifications-inline-7 {
    color: #046A10;
}
body.college-page-placementnotifications .college-placementnotifications-inline-8 {
    color: #046A10;
}
body.college-page-placementnotifications .college-placementnotifications-inline-9 {
    color: #046A10;
}
body.college-page-placementnotifications .college-placementnotifications-inline-10 {
    color: #046A10;
}
body.college-page-placementnotifications .college-placementnotifications-inline-11 {
    color: #046A10;
}
body.college-page-placementnotifications .college-placementnotifications-inline-12 {
    color: #046A10;
}

/* Page: placementstats */

/* Extracted inline declarations */
body.college-page-placementstats .college-placementstats-inline-1 {
    z-index: 2;
}
body.college-page-placementstats .college-placementstats-inline-2 {
    color: var(--gold-dark);
}
body.college-page-placementstats .college-placementstats-inline-3 {
    width: 100%
}

/* Page: policyfacilities */

/* Style for the sidebar container */
body.college-page-policyfacilities .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-policyfacilities .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-policyfacilities .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-policyfacilities .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-policyfacilities .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-policyfacilities .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-policyfacilities .college-policyfacilities-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-policyfacilities .college-policyfacilities-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-policyfacilities .college-policyfacilities-inline-3 {
    color: black;
}

/* Page: previouspapers */
body.college-page-previouspapers .iframe-container {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 600px;
}
body.college-page-previouspapers .iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
body.college-page-previouspapers .drive-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}
body.college-page-previouspapers .tab-pane.active .iframe-container {
    animation: previouspapers-fadeInScale 0.4s ease-out;
}
@keyframes previouspapers-fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Extracted inline declarations */
body.college-page-previouspapers .college-previouspapers-inline-1 {
    z-index: 2;
}

/* Page: principal */
body.college-page-principal .principal-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
    padding: 0;
    overflow: hidden;
}
body.college-page-principal .principal-header-section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.02));
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px dashed rgba(251, 191, 36, 0.3);
}
body.college-page-principal .principal-img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
}
body.college-page-principal .principal-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}
body.college-page-principal .principal-img-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    animation: principal-spin 30s linear infinite;
}
@keyframes principal-spin {
    100% {
        transform: rotate(360deg);
    }
}
body.college-page-principal .principal-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
body.college-page-principal .principal-desig {
    font-size: 1rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
body.college-page-principal .contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--navy);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    margin: 0 5px;
}
body.college-page-principal .contact-pill i {
    color: var(--gold);
}
body.college-page-principal .principal-body {
    padding: 2.5rem;
    text-align: justify;
}
body.college-page-principal .quote-box {
    background: #fff;
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}
body.college-page-principal .quote-box::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: rgba(251, 191, 36, 0.2);
}
body.college-page-principal .highlight {
    background: linear-gradient(120deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0) 100%);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--navy);
}

/* Extracted inline declarations */
body.college-page-principal .college-principal-inline-1 {
    z-index: 2;
}

/* Page: privacy-policy */
body.college-page-privacy-policy .text-navy {
    color: #0f172a;
}
body.college-page-privacy-policy .leading-relaxed {
    line-height: 1.8;
}

/* Extracted inline declarations */
body.college-page-privacy-policy .college-privacy-policy-inline-1 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding-top: 100px;
}
body.college-page-privacy-policy .college-privacy-policy-inline-2 {
    background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}
body.college-page-privacy-policy .college-privacy-policy-inline-3 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
body.college-page-privacy-policy .college-privacy-policy-inline-4 {
    --bs-border-opacity: .5;
}
body.college-page-privacy-policy .college-privacy-policy-inline-5 {
    --bs-border-opacity: .5;
}
body.college-page-privacy-policy .college-privacy-policy-inline-6 {
    --bs-border-opacity: .5;
}
body.college-page-privacy-policy .college-privacy-policy-inline-7 {
    --bs-border-opacity: .5;
}
body.college-page-privacy-policy .college-privacy-policy-inline-8 {
    --bs-border-opacity: .5;
}
body.college-page-privacy-policy .college-privacy-policy-inline-9 {
    --bs-border-opacity: .5;
}

/* Page: professionalbodies */

/* ═══════════════════════════════════════════
   PAGE-LEVEL LAYOUT  (mirrors onlinegrievance)
═══════════════════════════════════════════ */
body.college-page-professionalbodies .pb-page-wrap {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 32px auto 48px;
    padding: 0 18px;
    align-items: start;
}
@media (max-width: 768px) {
    body.college-page-professionalbodies .pb-page-wrap {
        grid-template-columns: 1fr;
    }
    
    body.college-page-professionalbodies .pb-sidebar {
        display: none;
    }
}

/* ── SIDEBAR ── */
body.college-page-professionalbodies .pb-sidebar {
    background: #12172a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}
body.college-page-professionalbodies .pb-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    background: #1a2240;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
body.college-page-professionalbodies .pb-sidebar-header .trophy {
    font-size: 1.1rem;
}
body.college-page-professionalbodies .pb-sidebar-header span {
    font-size: 14px;
    font-weight: 700;
    color: #f0b800;
    letter-spacing: .3px;
}
body.college-page-professionalbodies .pb-nav-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}
body.college-page-professionalbodies .pb-nav-list li a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    font-size: 13px;
    color: #b8c2d8;
    text-decoration: none;
    transition: all .18s;
}
body.college-page-professionalbodies .pb-nav-list li a i {
    width: 16px;
    text-align: center;
    font-size: 13px;
    color: #6b7a9e;
    flex-shrink: 0;
}
body.college-page-professionalbodies .pb-nav-list li a:hover {
    background: rgba(240, 184, 0, .08);
    color: #f0b800;
}
body.college-page-professionalbodies .pb-nav-list li a:hover i {
    color: #f0b800;
}
body.college-page-professionalbodies .pb-nav-list li a.active {
    background: #f0b800;
    color: #1a1a2e !important;
    font-weight: 700;
}
body.college-page-professionalbodies .pb-nav-list li a.active i {
    color: #1a1a2e !important;
}

/* ── MAIN WHITE CARD ── */
body.college-page-professionalbodies .pb-main-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
    padding: 28px 28px 32px;
}

/* ── CARD SECTION HEADER (icon + title) ── */
body.college-page-professionalbodies .pb-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
body.college-page-professionalbodies .pb-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff7e0;
    border: 2px solid #f0b800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
body.college-page-professionalbodies .pb-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
body.college-page-professionalbodies .pb-card-header h2 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 3px;
}
body.college-page-professionalbodies .pb-card-header .pb-sub {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* ── TAB BUTTONS ── */
body.college-page-professionalbodies .pb-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 2.5px solid #1a1a2e;
    margin-bottom: 24px;
    overflow-x: auto;
}
body.college-page-professionalbodies .pb-tab-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 10px;
    border: none;
    border-right: 1px solid #dce2ed;
    border-bottom: none;
    background: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: all .2s;
    white-space: nowrap;
}
body.college-page-professionalbodies .pb-tab-btn:last-child {
    border-right: none;
}
body.college-page-professionalbodies .pb-tab-btn .tab-icon {
    font-size: 1.1rem;
    line-height: 1;
}
body.college-page-professionalbodies .pb-tab-btn img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 3px;
    display: block;
    transition: filter .2s;
}
body.college-page-professionalbodies .pb-tab-btn:hover {
    background: #fffbea;
    color: #1a1a2e;
}
body.college-page-professionalbodies .pb-tab-btn:hover img {
    filter: none;
}
body.college-page-professionalbodies .pb-tab-btn.active {
    background: #1a1a2e;
    color: #f0b800;
    border-right-color: #1a1a2e;
}
body.college-page-professionalbodies .pb-tab-btn.active img {
    filter: drop-shadow(0 0 3px rgba(240, 184, 0, 0.6)) brightness(1.4) contrast(1.1);
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}

/* ── PANEL ── */
body.college-page-professionalbodies .pb-panel {
    display: none;
}
body.college-page-professionalbodies .pb-panel.active {
    display: block;
    animation: professionalbodies-pbUp .3s ease;
}
@keyframes professionalbodies-pbUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── DARK INTRO BANNER ── */
body.college-page-professionalbodies .pb-intro-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 22px;
}
body.college-page-professionalbodies .pb-intro-banner img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 7px;
    flex-shrink: 0;
}
body.college-page-professionalbodies .pb-intro-text .badge-pill {
    display: inline-block;
    background: #f0b800;
    color: #1a1a2e;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: 5px;
}
body.college-page-professionalbodies .pb-intro-text h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
}
body.college-page-professionalbodies .pb-intro-text p {
    color: #9daec8;
    font-size: 12.5px;
    line-height: 1.65;
    margin: 0;
}

/* ── TWO COLUMN GRID ── */
body.college-page-professionalbodies .pb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}
body.college-page-professionalbodies @media (max-width: 600px) {
    body .pb-two-col {
        grid-template-columns: 1fr;
    }
}

/* ── INNER INFO BOX ── */
body.college-page-professionalbodies .pb-box {
    background: #f8fafd;
    border: 1px solid #eaecf2;
    border-radius: 10px;
    padding: 18px 20px;
}
body.college-page-professionalbodies .pb-box-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
body.college-page-professionalbodies .pb-box-title i {
    color: #f0b800;
    font-size: 13px;
}
body.college-page-professionalbodies .pb-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* ── CHECKLIST ── */
body.college-page-professionalbodies .pb-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
body.college-page-professionalbodies .pb-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 6px 0;
    font-size: 13px;
    color: #444;
    border-bottom: 1px dashed #e8ecf2;
}
body.college-page-professionalbodies .pb-checklist li:last-child {
    border-bottom: none;
}
body.college-page-professionalbodies .pb-checklist li::before {
    content: '✔';
    color: #f0b800;
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── SECTION LABEL ── */
body.college-page-professionalbodies .pb-section-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0b800;
}
body.college-page-professionalbodies .pb-section-label i {
    color: #f0b800;
    font-size: 13px;
}

/* ── OBJECTIVES GRID ── */
body.college-page-professionalbodies .pb-obj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
body.college-page-professionalbodies .pb-obj-item {
    background: #f8fafd;
    border: 1px solid #e8ecf2;
    border-left: 4px solid #f0b800;
    border-radius: 8px;
    padding: 13px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
body.college-page-professionalbodies .pb-obj-num {
    width: 26px;
    height: 26px;
    background: #1a1a2e;
    color: #f0b800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    flex-shrink: 0;
}
body.college-page-professionalbodies .pb-obj-item p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── TABLE ── */
body.college-page-professionalbodies .pb-table-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaecf2;
    margin-bottom: 24px;
}
body.college-page-professionalbodies .pb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
body.college-page-professionalbodies .pb-table thead tr {
    background: #1a1a2e;
}
body.college-page-professionalbodies .pb-table th {
    padding: 11px 14px;
    text-align: left;
    font-weight: 600;
    color: #f0b800;
    font-size: 12px;
    letter-spacing: .3px;
}
body.college-page-professionalbodies .pb-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eef0f5;
    color: #444;
}
body.college-page-professionalbodies .pb-table tbody tr:last-child td {
    border-bottom: none;
}
body.college-page-professionalbodies .pb-table tbody tr:nth-child(even) {
    background: #f8fafd;
}
body.college-page-professionalbodies .pb-table tbody tr:hover {
    background: #fffbea;
}

/* ── ACTIVITY GRID ── */
body.college-page-professionalbodies .pb-act-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 12px;
}
body.college-page-professionalbodies .pb-act-card {
    background: #f8fafd;
    border: 1px solid #eaecf2;
    border-radius: 10px;
    padding: 16px;
    transition: box-shadow .2s, transform .2s;
}
body.college-page-professionalbodies .pb-act-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}
body.college-page-professionalbodies .pb-act-card .act-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
body.college-page-professionalbodies .pb-act-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px;
}
body.college-page-professionalbodies .pb-act-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 576px) {
    body.college-page-professionalbodies .pb-intro-banner {
        flex-direction: column;
        text-align: center;
    }
    
    body.college-page-professionalbodies .pb-main-card {
        padding: 18px 14px 24px;
    }
    
    body.college-page-professionalbodies .pb-tab-btn {
        font-size: 12px;
        padding: 7px 12px;
    }
}

/* ── SIDEBAR PROFESSIONAL BODIES GROUP ── */
body.college-page-professionalbodies .nav-group-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #f0b800;
    padding: 14px 18px 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}
body.college-page-professionalbodies .sidebar-link.pb-link {
    padding-left: 18px;
    font-size: 12.5px;
}
body.college-page-professionalbodies .sidebar-link.pb-link:hover,
body.college-page-professionalbodies .sidebar-link.pb-link.pb-active {
    background: rgba(240, 184, 0, .12);
    color: #f0b800;
}
body.college-page-professionalbodies .sidebar-link.pb-link.pb-active {
    font-weight: 700;
}
body.college-page-professionalbodies .sb-pb-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 3px;
    background: #fff;
    padding: 2px;
    flex-shrink: 0;
}
body.college-page-professionalbodies .sidebar-link.pb-link.pb-active .sb-pb-logo {
    filter: brightness(0) invert(1) sepia(1) saturate(6) hue-rotate(2deg) brightness(1.15);
    background: transparent;
}

/* ── OBJECTIVES GRID (from uploaded) ── */
body.college-page-professionalbodies .obj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
body.college-page-professionalbodies .obj-item {
    background: #f8fafd;
    border: 1px solid #e8ecf2;
    border-left: 4px solid #f0b800;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
body.college-page-professionalbodies .obj-num {
    min-width: 28px;
    height: 28px;
    background: #1a1a2e;
    color: #f0b800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
body.college-page-professionalbodies .obj-item p {
    font-size: 12.5px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── CHECK LIST ── */
body.college-page-professionalbodies .check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
body.college-page-professionalbodies .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 6px 0;
    font-size: 13px;
    color: #444;
    border-bottom: 1px dashed #e8ecf2;
    line-height: 1.6;
}
body.college-page-professionalbodies .check-list li:last-child {
    border-bottom: none;
}
body.college-page-professionalbodies .check-list li::before {
    content: '✔';
    color: #f0b800;
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── SECTION INTRO BANNER ── */
body.college-page-professionalbodies .section-intro {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 22px;
}
body.college-page-professionalbodies .body-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}
body.college-page-professionalbodies .section-intro-text .sub {
    display: inline-block;
    background: #f0b800;
    color: #1a1a2e;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: 6px;
}
body.college-page-professionalbodies .section-intro-text h2 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 5px;
}
body.college-page-professionalbodies .section-intro-text p {
    color: #9daec8;
    font-size: 12.5px;
    line-height: 1.65;
    margin: 0;
}

/* ── TWO COL ── */
body.college-page-professionalbodies .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
body.college-page-professionalbodies @media (max-width: 640px) {
    body .two-col {
        grid-template-columns: 1fr;
    }
}

/* ── CONTENT CARD ── */
body.college-page-professionalbodies .content-card {
    background: #f8fafd;
    border: 1px solid #eaecf2;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}
body.college-page-professionalbodies .content-card:last-child {
    margin-bottom: 0;
}
body.college-page-professionalbodies .card-header {
    background: #1a1a2e;
    color: #f0b800;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 16px;
    letter-spacing: .3px;
}
body.college-page-professionalbodies .card-body {
    padding: 16px;
    font-size: 13px;
    color: #555;
    line-height: 1.75;
}
body.college-page-professionalbodies .card-body p {
    margin: 0;
}

/* ── ACT GRID ── */
body.college-page-professionalbodies .act-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
body.college-page-professionalbodies .act-card {
    background: #fff;
    border: 1px solid #eaecf2;
    border-radius: 10px;
    padding: 16px;
    transition: box-shadow .2s, transform .2s;
}
body.college-page-professionalbodies .act-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}
body.college-page-professionalbodies .act-card .act-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
body.college-page-professionalbodies .act-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px;
}
body.college-page-professionalbodies .act-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── DATA TABLE ── */
body.college-page-professionalbodies .data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
body.college-page-professionalbodies .data-table thead tr {
    background: #1a1a2e;
}
body.college-page-professionalbodies .data-table th {
    padding: 11px 14px;
    text-align: left;
    font-weight: 600;
    color: #f0b800;
    font-size: 12px;
    letter-spacing: .3px;
}
body.college-page-professionalbodies .data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eef0f5;
    color: #444;
}
body.college-page-professionalbodies .data-table tbody tr:last-child td {
    border-bottom: none;
}
body.college-page-professionalbodies .data-table tbody tr:nth-child(even) {
    background: #f0f4fb;
}
body.college-page-professionalbodies .data-table tbody tr:hover {
    background: #fffbea;
}

/* Extracted inline declarations */
body.college-page-professionalbodies .college-professionalbodies-inline-1 {
    z-index: 2;
}
body.college-page-professionalbodies .college-professionalbodies-inline-2 {
    margin-right: 6px;
}
body.college-page-professionalbodies .college-professionalbodies-inline-3 {
    color: #f0b800;
}
body.college-page-professionalbodies .college-professionalbodies-inline-4 {
    padding: 0;
}
body.college-page-professionalbodies .college-professionalbodies-inline-5 {
    padding: 0;
}
body.college-page-professionalbodies .college-professionalbodies-inline-6 {
    padding: 0;
}
body.college-page-professionalbodies .college-professionalbodies-inline-7 {
    padding: 0;
}
body.college-page-professionalbodies .college-pb-title-accent {
    color: #f0b800;
}

/* Page: programsandcourses */

/* === Hero Animations === */
body.college-page-programsandcourses .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    animation: programsandcourses-fadeInDown 1s ease-out;
}

/* === Integrated Content Styling === */
body.college-page-programsandcourses .program-icon-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e2e8f0;
}
body.college-page-programsandcourses .program-icon-header i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
body.college-page-programsandcourses .program-icon-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: var(--navy);
    letter-spacing: -0.5px;
}

/* Table Beautification */
body.college-page-programsandcourses .college-data-table thead th {
    border-bottom: 3px solid var(--gold);
    color: var(--gold);
}
body.college-page-programsandcourses .college-data-table tbody tr {
    transition: transform 0.2s, box-shadow 0.2s;
}
body.college-page-programsandcourses .college-data-table tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
    background: #fff;
}
body.college-page-programsandcourses .college-data-table tbody tr:hover td {
    color: var(--navy);
}

/* Intake Badge */
body.college-page-programsandcourses .intake-badge {
    background: #fffbeb;
    color: #d97706;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 1px solid #fcd34d;
    box-shadow: 0 2px 5px rgba(251, 191, 36, 0.15);
}

/* Admission Note Card */
body.college-page-programsandcourses .admission-note-card {
    background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
    border: 1px solid #fcd34d;
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
    animation: programsandcourses-slideUp 0.6s ease-out;
}
@keyframes programsandcourses-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes programsandcourses-slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes programsandcourses-fadeUpItem {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body.college-page-programsandcourses .tab-pane.active .program-icon-header {
    animation: programsandcourses-fadeUpItem 0.4s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}
body.college-page-programsandcourses .tab-pane.active .table-responsive {
    animation: programsandcourses-fadeUpItem 0.4s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Extracted inline declarations */
body.college-page-programsandcourses .college-programsandcourses-inline-1 {
    z-index: 2;
}

/* Page: project */

/* Style for the sidebar container */
body.college-page-project .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-project .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-project .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-project .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-project .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-project .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-project .college-project-inline-1 {
    z-index: 2;
}
body.college-page-project .college-project-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-project .college-project-inline-3 {
    text-align: center;
    color: red;
}
body.college-page-project .college-project-inline-4 {
    color: black;
}
body.college-page-project .college-project-inline-5 {
    font-size: 28px;
}
body.college-page-project .college-project-inline-6 {
    font-size: 18px;
}

/* Page: qualifyinggreieltsappgecet */

/* Style for the sidebar container */
body.college-page-qualifyinggreieltsappgecet .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-qualifyinggreieltsappgecet .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-qualifyinggreieltsappgecet .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-qualifyinggreieltsappgecet .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-qualifyinggreieltsappgecet .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-qualifyinggreieltsappgecet .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-qualifyinggreieltsappgecet .college-qualifyinggreieltsappgecet-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-qualifyinggreieltsappgecet .college-qualifyinggreieltsappgecet-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-qualifyinggreieltsappgecet .college-qualifyinggreieltsappgecet-inline-3 {
    color: black;
}
body.college-page-qualifyinggreieltsappgecet .college-qualifyinggreieltsappgecet-inline-4 {
    font-size: 25px;
}

/* Page: recruitment */
body.college-page-recruitment .text-primary {
    color: var(--primary-color) !important;
}
body.college-page-recruitment .text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
body.college-page-recruitment .gradient-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 5px 5px 0 0;
}
body.college-page-recruitment .gradient-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}
body.college-page-recruitment .divider {
    display: flex;
    justify-content: center;
    margin: 15px auto;
}
body.college-page-recruitment .divider span {
    height: 4px;
    width: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 5px;
    border-radius: 2px;
}
body.college-page-recruitment .divider span:nth-child(2) {
    width: 60px;
}
body.college-page-recruitment .animated-heading {
    position: relative;
    color: var(--primary-color);
    padding-bottom: 10px;
}
body.college-page-recruitment .animated-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}
body.college-page-recruitment .animated-heading:hover::after {
    width: 180px;
}
body.college-page-recruitment .custom-table thead th {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px;
    color: var(--primary-color);
}
body.college-page-recruitment .table-row {
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 8px;
}
body.college-page-recruitment .table-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
body.college-page-recruitment .position-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
body.college-page-recruitment .position-category {
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
body.college-page-recruitment .position-category:hover {
    background-color: #e9f0f8;
    transform: translateX(5px);
}
body.college-page-recruitment .btn-shine {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}
body.college-page-recruitment .btn-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 0;
    transition: all 0.5s ease;
    opacity: 0;
}
body.college-page-recruitment .btn-shine:hover::before {
    opacity: 1;
    left: 100%;
}
body.college-page-recruitment .btn-shine:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}
body.college-page-recruitment .pulse-effect {
    animation: recruitment-pulse 2s infinite;
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.4);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
}
@keyframes recruitment-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}
body.college-page-recruitment .fade-in {
    animation: recruitment-fadeIn 1s ease-in-out;
}
body.college-page-recruitment .fade-in-delay {
    animation: recruitment-fadeIn 1s ease-in-out 0.3s;
    animation-fill-mode: both;
}
@keyframes recruitment-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body.college-page-recruitment .contact-box {
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
body.college-page-recruitment .contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}
body.college-page-recruitment .contact-box h5 {
    color: var(--primary-color);
}

/* Page: researchanddevelopment */

/* Extracted inline declarations */
body.college-page-researchanddevelopment .college-researchanddevelopment-inline-1 {
    z-index: 2;
}

/* Page: researchcenter */

/* Style for the sidebar container */
body.college-page-researchcenter .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-researchcenter .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-researchcenter .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-researchcenter .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-researchcenter .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-researchcenter .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-researchcenter .college-researchcenter-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-researchcenter .college-researchcenter-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-researchcenter .college-researchcenter-inline-3 {
    color: black;
}

/* Page: researchcommittie */

/* Style for the sidebar container */
body.college-page-researchcommittie .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-researchcommittie .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-researchcommittie .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-researchcommittie .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-researchcommittie .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-researchcommittie .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-researchcommittie .college-researchcommittie-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-researchcommittie .college-researchcommittie-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-researchcommittie .college-researchcommittie-inline-3 {
    color: black;
}
body.college-page-researchcommittie .college-researchcommittie-inline-4 {
    font-size: 28px;
}

/* Page: researchguidesscholars */

/* Style for the sidebar container */
body.college-page-researchguidesscholars .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-researchguidesscholars .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-researchguidesscholars .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-researchguidesscholars .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-researchguidesscholars .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-researchguidesscholars .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-researchguidesscholars .college-researchguidesscholars-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-researchguidesscholars .college-researchguidesscholars-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-researchguidesscholars .college-researchguidesscholars-inline-3 {
    color: black;
}
body.college-page-researchguidesscholars .college-researchguidesscholars-inline-4 {
    font-style: normal;
    font-weight: 400;
}

/* Page: researchmethodologyandipr */

/* Style for the sidebar container */
body.college-page-researchmethodologyandipr .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-researchmethodologyandipr .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-researchmethodologyandipr .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-researchmethodologyandipr .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-researchmethodologyandipr .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-researchmethodologyandipr .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-researchmethodologyandipr .college-researchmethodologyandipr-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-researchmethodologyandipr .college-researchmethodologyandipr-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-researchmethodologyandipr .college-researchmethodologyandipr-inline-3 {
    color: black;
}
body.college-page-researchmethodologyandipr .college-researchmethodologyandipr-inline-4 {
    border-radius: 10px;
}

/* Page: researchpublications */

/* Extracted inline declarations */
body.college-page-researchpublications .college-researchpublications-inline-1 {
    z-index: 2;
}
body.college-page-researchpublications .college-researchpublications-inline-2 {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Page: results */

/* Centered Dashboard Container styling */
body.college-page-results .dashboard-card {
    background: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
}
body.college-page-results .btn-outline-navy {
    border: 1.5px solid var(--navy) !important;
    color: var(--navy) !important;
    background: transparent;
    transition: all 0.2s ease;
}
body.college-page-results .btn-outline-navy:hover,
body.college-page-results .btn-outline-navy.active {
    background: var(--navy) !important;
    color: #ffffff !important;
}

/* Compact Results Table & Metrics */
body.college-page-results .college-data-table th {
    font-size: 0.85rem !important;
    padding: 10px 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
body.college-page-results .college-data-table td {
    font-size: 0.85rem !important;
    padding: 9px 12px !important;
}
body.college-page-results .metric-list-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 15px 18px;
}
body.college-page-results .metric-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}
body.college-page-results .metric-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
body.college-page-results .metric-item-label {
    font-weight: 700;
    color: var(--navy);
}
body.college-page-results .metric-item-value {
    font-weight: 800;
    color: #0284c7;
}
body.college-page-results .badge-status-compact {
    font-size: 0.72rem;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: 700;
}
body.college-page-results .badge-status-compact.pass {
    background: #d1fae5;
    color: #065f46;
}
body.college-page-results .badge-status-compact.fail {
    background: #fee2e2;
    color: #991b1b;
}
body.college-page-results .badge-status-compact.absent {
    background: #f3f4f6;
    color: #374151;
}

/* Beautified Announcement Card Styling */
body.college-page-results .announcement-card {
    border-radius: var(--radius-lg) !important;
    border: 1.5px solid rgba(251, 191, 36, 0.4) !important;
    box-shadow: var(--shadow-md) !important;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.college-page-results .announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--gold) !important;
}
body.college-page-results .announcement-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-bottom: 4px solid var(--gold);
    padding: 24px 15px;
    text-align: center;
}
body.college-page-results .exam-badge {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--gold);
    border: 1px solid rgba(251, 191, 36, 0.35);
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
body.college-page-results .exam-list-container {
    background: #f8fafc;
    border-left: 5px solid #10b981 !important;
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}
body.college-page-results .exam-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-light);
}
body.college-page-results .exam-check-icon {
    width: 24px;
    height: 24px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.15);
}
body.college-page-results .app-download-box {
    background: rgba(2, 132, 199, 0.03);
    border: 1.5px solid rgba(2, 132, 199, 0.1) !important;
    border-radius: var(--radius-sm);
    padding: 22px;
}
body.college-page-results .download-btn-play {
    background: var(--navy);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
body.college-page-results .download-btn-play:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}
body.college-page-results .download-btn-apple {
    background: #ffffff;
    color: var(--navy) !important;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
body.college-page-results .download-btn-apple:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
body.college-page-results .notice-box {
    background: rgba(217, 119, 6, 0.03);
    border: 1.5px solid rgba(217, 119, 6, 0.12) !important;
    border-radius: var(--radius-sm);
    padding: 20px;
}
@media print {
    body.college-page-results * {
        visibility: hidden;
    }
    
    body.college-page-results #printArea,
    body.college-page-results #printArea * {
        visibility: visible;
    }
    
    body.college-page-results #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    
    body.college-page-results .no-print {
        display: none !important;
    }
}

/* Extracted inline declarations */
body.college-page-results .college-results-inline-1 {
    font-size: 1.35rem;
    letter-spacing: -0.5px;
}
body.college-page-results .college-results-inline-2 {
    font-size: 0.82rem;
    background-color: #f0f9ff;
    border-left: 4px solid #0284c7 !important;
}
body.college-page-results .college-results-inline-3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.35rem;
}
body.college-page-results .college-results-inline-4 {
    font-family: 'Inter', sans-serif;
}
body.college-page-results .college-results-inline-5 {
    font-size: 1rem;
    color: #0284c7;
}
body.college-page-results .college-results-inline-6 {
    font-size: 0.88rem;
    line-height: 1.55;
}
body.college-page-results .college-results-inline-7 {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
body.college-page-results .college-results-inline-8 {
    font-size: 0.6rem;
    opacity: 0.7;
    line-height: 1;
}
body.college-page-results .college-results-inline-9 {
    line-height: 1.2;
    font-size: 0.82rem;
}
body.college-page-results .college-results-inline-10 {
    font-size: 0.6rem;
    opacity: 0.7;
    line-height: 1;
}
body.college-page-results .college-results-inline-11 {
    line-height: 1.2;
    font-size: 0.82rem;
    color: #000;
}
body.college-page-results .college-results-inline-12 {
    font-size: 0.95rem;
    color: #b45309;
}
body.college-page-results .college-results-inline-13 {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #451a03;
}
body.college-page-results .college-results-inline-14 {
    font-size: 0.82rem;
}
body.college-page-results .college-results-inline-15 {
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.2px;
}
body.college-page-results .college-results-inline-16 {
    font-size: 0.8rem;
}
body.college-page-results .college-results-inline-17 {
    font-size: 0.75rem;
}
body.college-page-results .college-results-inline-18 {
    width: 2.5rem;
    height: 2.5rem;
}
body.college-page-results .college-results-inline-19 {
    display: none;
}
body.college-page-results .college-results-inline-20 {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
}
body.college-page-results .college-results-inline-21 {
    margin-bottom: 0;
}
body.college-page-results .college-results-inline-22 {
    width: 45px;
}
body.college-page-results .college-results-inline-23 {
    width: 65px;
}
body.college-page-results .college-results-inline-24 {
    width: 50px;
}
body.college-page-results .college-results-inline-25 {
    width: 70px;
}
body.college-page-results .college-results-inline-26 {
    width: 60px;
}
body.college-page-results .college-results-inline-27 {
    border-bottom: none;
}
body.college-page-results .college-results-inline-28 {
    font-size: 0.8rem;
}
body.college-page-results .college-results-inline-29 {
    font-size: 0.8rem;
}

/* Page: rti */
body.college-page-rti .rti-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
}
body.college-page-rti .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--navy);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}
body.college-page-rti .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #fff;
}
body.college-page-rti .contact-box {
    background: rgba(251, 191, 36, 0.05);
    border: 1px dashed var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}
body.college-page-rti .contact-label {
    font-weight: 700;
    color: var(--navy);
    min-width: 100px;
    display: inline-block;
}

/* Extracted inline declarations */
body.college-page-rti .college-rti-inline-1 {
    z-index: 2;
}

/* Page: safety */

/* Facility List Styling */
body.college-page-safety .facility-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
body.college-page-safety .facility-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}
body.college-page-safety .facility-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Safety Images Grid */
body.college-page-safety .safety-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
body.college-page-safety .safety-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
body.college-page-safety .safety-image:hover {
    transform: scale(1.02);
}

/* Info Cards */
body.college-page-safety .info-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
body.college-page-safety .info-card h5 {
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media (max-width: 768px) {
    body.college-page-safety .safety-images {
        grid-template-columns: 1fr;
    }
}

/* Extracted inline declarations */
body.college-page-safety .college-safety-inline-1 {
    z-index: 2;
}

/* Page: scholarships */

/* Extracted inline declarations */
body.college-page-scholarships .college-scholarships-inline-1 {
    z-index: 2;
}

/* Page: sdg-events */

/* Extracted inline declarations */
body.college-page-sdg-events .college-sdg-events-inline-1 {
    z-index: 2;
}

/* Page: sdg-goals */

/* SDG Specific Styles */
body.college-page-sdg-goals .sdg-intro-card {
    border-left: 5px solid var(--gold);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}
body.college-page-sdg-goals .sdg-detail-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: left;
}
body.college-page-sdg-goals .sdg-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
body.college-page-sdg-goals .sdg-color-box {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 15px;
    text-align: center;
}
body.college-page-sdg-goals .sdg-color-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
body.college-page-sdg-goals .sdg-color-box .sdg-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}
body.college-page-sdg-goals .sdg-content {
    padding: 20px 25px;
    flex-grow: 1;
}
body.college-page-sdg-goals .sdg-content h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
    display: inline-block;
}
body.college-page-sdg-goals .sdg-list {
    margin: 0;
    padding-left: 20px;
}
body.college-page-sdg-goals .sdg-list li {
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body.college-page-sdg-goals .sdg-detail-card {
        flex-direction: column;
    }
    
    body.college-page-sdg-goals .sdg-color-box {
        width: 100%;
        flex-direction: row;
        height: 80px;
        justify-content: flex-start;
        gap: 20px;
        padding: 0 30px;
    }
}

/* Official SDG Colors */
body.college-page-sdg-goals .bg-sdg-1 {
    background: #E5243B;
}
body.college-page-sdg-goals .bg-sdg-2 {
    background: #DDA63A;
}
body.college-page-sdg-goals .bg-sdg-3 {
    background: #4C9F38;
}
body.college-page-sdg-goals .bg-sdg-4 {
    background: #C5192D;
}
body.college-page-sdg-goals .bg-sdg-5 {
    background: #FF3A21;
}
body.college-page-sdg-goals .bg-sdg-6 {
    background: #26BDE2;
}
body.college-page-sdg-goals .bg-sdg-7 {
    background: #FCC30B;
}
body.college-page-sdg-goals .bg-sdg-8 {
    background: #A21942;
}
body.college-page-sdg-goals .bg-sdg-9 {
    background: #FD6925;
}
body.college-page-sdg-goals .bg-sdg-10 {
    background: #DD1367;
}
body.college-page-sdg-goals .bg-sdg-11 {
    background: #FD9D24;
}
body.college-page-sdg-goals .bg-sdg-12 {
    background: #BF8B2E;
}
body.college-page-sdg-goals .bg-sdg-13 {
    background: #3F7E44;
}
body.college-page-sdg-goals .bg-sdg-14 {
    background: #0A97D9;
}
body.college-page-sdg-goals .bg-sdg-15 {
    background: #56C02B;
}
body.college-page-sdg-goals .bg-sdg-16 {
    background: #00689D;
}
body.college-page-sdg-goals .bg-sdg-17 {
    background: #19486A;
}

/* Extracted inline declarations */
body.college-page-sdg-goals .college-sdg-goals-inline-1 {
    z-index: 2;
}
body.college-page-sdg-goals .college-sdg-goals-inline-2 {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Page: seminar */

/* Style for the sidebar container */
body.college-page-seminar .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-seminar .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-seminar .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-seminar .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-seminar .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-seminar .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-seminar .college-seminar-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-seminar .college-seminar-inline-2 {
    text-align: center;
    color: black;
}
body.college-page-seminar .college-seminar-inline-3 {
    color: black;
}
body.college-page-seminar .college-seminar-inline-4 {
    text-align: center;
}

/* Page: sitemap */
body.college-page-sitemap .sitemap-section-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 1.8rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
body.college-page-sitemap .sitemap-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 16px 16px 0 0;
}
body.college-page-sitemap .sitemap-section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.25);
}
body.college-page-sitemap .sitemap-section-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f172a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
body.college-page-sitemap .sitemap-section-title i {
    color: #fbbf24;
    font-size: 0.9rem;
}
body.college-page-sitemap .sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.college-page-sitemap .sitemap-list li {
    margin-bottom: 0.35rem;
}
body.college-page-sitemap .sitemap-list a {
    color: #475569;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
body.college-page-sitemap .sitemap-list a i {
    color: #fbbf24;
    font-size: 0.65rem;
    flex-shrink: 0;
}
body.college-page-sitemap .sitemap-list a:hover {
    color: #0f172a;
    background: #fffbeb;
    padding-left: 10px;
}
body.college-page-sitemap .sitemap-list a[target="_blank"]::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: #94a3b8;
    margin-left: auto;
}
body.college-page-sitemap .sitemap-apply-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Extracted inline declarations */
body.college-page-sitemap .college-sitemap-inline-1 {
    z-index: 2;
}

/* Page: social-media */
body.college-page-social-media .sm-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 80px 20px 50px;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
body.college-page-social-media .sm-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
body.college-page-social-media .sm-hero h1 {
    color: #fff;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
body.college-page-social-media .sm-hero h1 span {
    color: #fbbf24;
}
body.college-page-social-media .sm-hero p {
    color: #cbd5e1;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}
body.college-page-social-media .sm-container {
    padding: 60px 20px 100px;
    background: #020617;
    min-height: 50vh;
}
body.college-page-social-media .sm-directory {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Elite Compact Directory Strip Layout */
body.college-page-social-media .sm-strip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
body.college-page-social-media .sm-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: var(--strip-color);
    transition: width 0.4s ease;
    z-index: 0;
}
body.college-page-social-media .sm-strip:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}
body.college-page-social-media .sm-strip:hover::before {
    width: 100%;
    opacity: 0.08;
}
body.college-page-social-media .strip-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--strip-color), var(--strip-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.college-page-social-media .sm-strip:hover .strip-icon {
    transform: scale(1.15) rotate(5deg);
}
body.college-page-social-media .strip-content {
    flex: 1;
    z-index: 1;
}
body.college-page-social-media .strip-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
body.college-page-social-media .strip-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}
body.college-page-social-media .strip-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--strip-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 1;
    transition: all 0.3s ease;
}
body.college-page-social-media .sm-strip:hover .strip-arrow {
    background: var(--strip-color);
    border-color: var(--strip-color);
    color: #fff;
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Target Platform Theming */
body.college-page-social-media .loc-color {
    --strip-color: #4285f4;
    --strip-dark: #b31404;
}
body.college-page-social-media .loc-color .strip-icon {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
body.college-page-social-media .wa-color {
    --strip-color: #25D366;
    --strip-dark: #128C7E;
}
body.college-page-social-media .ig-color {
    --strip-color: #E1306C;
    --strip-dark: #833AB4;
}
body.college-page-social-media .li-color {
    --strip-color: #0A66C2;
    --strip-dark: #004182;
}
body.college-page-social-media .yt-color {
    --strip-color: #FF0000;
    --strip-dark: #cc0000;
}
body.college-page-social-media .fb-color {
    --strip-color: #1877F2;
    --strip-dark: #0d5cce;
}
body.college-page-social-media .web-color {
    --strip-color: #fbbf24;
    --strip-dark: #d97706;
}
@media (max-width: 768px) {
    body.college-page-social-media .sm-strip {
        padding: 16px 20px;
        gap: 15px;
        border-radius: 12px;
    }
    
    body.college-page-social-media .strip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        border-radius: 10px;
    }
    
    body.college-page-social-media .strip-title {
        font-size: 1.1rem;
    }
    
    body.college-page-social-media .strip-desc {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    body.college-page-social-media .strip-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    body.college-page-social-media .sm-strip:hover {
        transform: translateY(-3px) translateX(0);
    }
}

/* Extracted inline declarations */
body.college-page-social-media .college-social-media-inline-1 {
    width: 1.5em;
    height: 1.5em;
}
body.college-page-social-media .college-social-media-inline-2 {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Page: socialresponsibilities */

/* Extracted inline declarations */
body.college-page-socialresponsibilities .college-socialresponsibilities-inline-1 {
    z-index: 2;
}

/* Page: sponsoredprojects-2 */
body.college-page-sponsoredprojects-2,
body.college-page-sponsoredprojects-2 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body.college-page-sponsoredprojects-2 {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 0.98rem;
    : 1.6;
}
body.college-page-sponsoredprojects-2 .container-fluid_recog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* === Page Title === */
body.college-page-sponsoredprojects-2 .page-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 1rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}
body.college-page-sponsoredprojects-2 .page-title i {
    color: var(--gold);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    animation: sponsoredprojects-2-glow 2s infinite alternate;
}
@keyframes sponsoredprojects-2-glow {
    from {
        text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    }
    
    to {
        text-shadow: 0 0 16px rgba(251, 191, 36, 0.8);
    }
}
body.college-page-sponsoredprojects-2 .page-title::before,
body.college-page-sponsoredprojects-2 .page-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}

/* === Main Card === */
body.college-page-sponsoredprojects-2 .main-card {
    background: rgba(20, 32, 74, 0.95);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.6rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.12);
    position: relative;
    overflow: hidden;
}
body.college-page-sponsoredprojects-2 .main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ffe6a1, var(--gold));
    border-radius: var(--radius) var(--radius) 0 0;
}
body.college-page-sponsoredprojects-2 .section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-sponsoredprojects-2 .section-title i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* === Compact Table === */
body.college-page-sponsoredprojects-2 .project-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.8rem;
    font-size: 0.92rem;
}
body.college-page-sponsoredprojects-2 .project-table th {
    background: linear-gradient(90deg, var(--gold), #ffe6a1);
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.9rem 0.7rem;
    text-align: center;
}
body.college-page-sponsoredprojects-2 .project-table td {
    padding: 0.85rem 0.7rem;
    color: var(--white);
    border-bottom: 1px dashed rgba(251, 191, 36, 0.3);
    text-align: center;
    vertical-align: middle;
}
body.college-page-sponsoredprojects-2 .project-table td a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
}
body.college-page-sponsoredprojects-2 .project-table td a:hover {
    text-decoration: underline;
    color: var(--gold);
}
body.college-page-sponsoredprojects-2 .project-table tr:hover td {
    background: rgba(251, 191, 36, 0.08);
}
body.college-page-sponsoredprojects-2 .amount {
    font-weight: 600;
    color: var(--gold);
}
body.college-page-sponsoredprojects-2 .student-table {
    font-size: 0.9rem;
}
body.college-page-sponsoredprojects-2 .student-table td {
    padding: 0.75rem 0.6rem;
    text-align: left;
}

/* === Download Button === */
body.college-page-sponsoredprojects-2 .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--gold), #e6a800);
    color: var(--navy);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
body.college-page-sponsoredprojects-2 .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(251, 191, 36, 0.35);
}

/* === Sidebar === */
body.college-page-sponsoredprojects-2 .sidebar-card {
    background: rgba(20, 32, 74, 0.95);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
    height: fit-content;
}
body.college-page-sponsoredprojects-2 .sidebar-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}
body.college-page-sponsoredprojects-2 .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
body.college-page-sponsoredprojects-2 .sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.92rem;
}
body.college-page-sponsoredprojects-2 .sidebar-links a i {
    width: 28px;
    height: 28px;
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
body.college-page-sponsoredprojects-2 .sidebar-links a:hover,
body.college-page-sponsoredprojects-2 .sidebar-links a.active {
    background: linear-gradient(90deg, var(--gold), #e6a800);
    color: var(--navy);
    transform: translateX(3px);
    border-color: var(--gold-light);
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
}
body.college-page-sponsoredprojects-2 .sidebar-links a.active i,
body.college-page-sponsoredprojects-2 .sidebar-links a:hover i {
    background: var(--white);
    color: var(--navy);
}

/* === Responsive === */
@media (max-width: 992px) {
    body.college-page-sponsoredprojects-2 .row {
        flex-direction: column;
    }
    
    body.college-page-sponsoredprojects-2 .col-lg-9,
    body.college-page-sponsoredprojects-2 .col-lg-3 {
        width: 100%;
    }
    
    body.college-page-sponsoredprojects-2 .sidebar-card {
        margin-top: 1.5rem;
    }
}
@media (max-width: 768px) {
    body.college-page-sponsoredprojects-2 .page-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 8px;
    }
    
    body.college-page-sponsoredprojects-2 .page-title i {
        font-size: 1.4rem;
    }
    
    body.college-page-sponsoredprojects-2 .main-card,
    body.college-page-sponsoredprojects-2 .sidebar-card {
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    body.college-page-sponsoredprojects-2 .project-table,
    body.college-page-sponsoredprojects-2 .student-table {
        font-size: 0.82rem;
    }
    
    body.college-page-sponsoredprojects-2 .project-table th,
    body.college-page-sponsoredprojects-2 .project-table td,
    body.college-page-sponsoredprojects-2 .student-table th,
    body.college-page-sponsoredprojects-2 .student-table td {
        padding: 0.6rem 0.5rem;
    }
    
    body.college-page-sponsoredprojects-2 .download-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Page: sponsoredprojects */

/* Extracted inline declarations */
body.college-page-sponsoredprojects .college-sponsoredprojects-inline-1 {
    z-index: 2;
}
body.college-page-sponsoredprojects .college-sponsoredprojects-inline-2 {
    width: 50px;
}
body.college-page-sponsoredprojects .college-sponsoredprojects-inline-3 {
    max-height: 500px;
    overflow-y: auto;
}

/* Page: sportsandgymnasium */

/* Style for the sidebar container */
body.college-page-sportsandgymnasium .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-sportsandgymnasium .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-sportsandgymnasium .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-sportsandgymnasium .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-sportsandgymnasium .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-sportsandgymnasium .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-1 {
    z-index: 2;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-2 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-3 {
    text-align: center;
    color: red;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-4 {
    color: black;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-5 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-6 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-7 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-8 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-9 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-10 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-11 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-12 {
    color: #ff0000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-13 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-14 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-15 {
    color: #ff0000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-16 {
    color: #000000;
}
body.college-page-sportsandgymnasium .college-sportsandgymnasium-inline-17 {
    color: red;
}

/* Page: startup-policies */
body.college-page-startup-policies .policy-download-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
body.college-page-startup-policies .policy-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    border-color: var(--gold);
    background: white;
}
body.college-page-startup-policies .policy-download-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gold);
    opacity: 0.7;
    transition: width 0.3s ease;
}
body.college-page-startup-policies .policy-download-card:hover::before {
    width: 6px;
    opacity: 1;
}
body.college-page-startup-policies .policy-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-right: 20px;
    flex-shrink: 0;
}
body.college-page-startup-policies .policy-content {
    flex-grow: 1;
}
body.college-page-startup-policies .policy-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1.1rem;
}
body.college-page-startup-policies .policy-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}
body.college-page-startup-policies .download-btn-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-left: 20px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
body.college-page-startup-policies .policy-download-card:hover .download-btn-icon {
    transform: translateY(3px);
    opacity: 1;
    color: var(--navy);
}

/* Extracted inline declarations */
body.college-page-startup-policies .college-startup-policies-inline-1 {
    z-index: 2;
}
body.college-page-startup-policies .college-startup-policies-inline-2 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Page: studentcentricmethod */

/* Extracted inline declarations */
body.college-page-studentcentricmethod .college-studentcentricmethod-inline-1 {
    z-index: 2;
}

/* Page: studentclub */

/* Extracted inline declarations */
body.college-page-studentclub .college-studentclub-inline-1 {
    z-index: 2;
}

/* Page: studentservices */

/* Extracted inline declarations */
body.college-page-studentservices .college-studentservices-inline-1 {
    z-index: 2;
}

/* Page: studentverification */
body.college-page-studentverification .fee-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    margin-bottom: 30px;
}
body.college-page-studentverification .step-list {
    position: relative;
    padding-left: 20px;
}
body.college-page-studentverification .step-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e2e8f0;
}
body.college-page-studentverification .step-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}
body.college-page-studentverification .step-number {
    position: absolute;
    left: -14px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
body.college-page-studentverification .bank-card {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    padding: 25px;
    position: relative;
}
body.college-page-studentverification .bank-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
body.college-page-studentverification .bank-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
    font-family: monospace;
}
body.college-page-studentverification .doc-check-list li {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.college-page-studentverification .doc-check-list li i {
    color: var(--gold);
}

/* Extracted inline declarations */
body.college-page-studentverification .college-studentverification-inline-1 {
    z-index: 2;
}
body.college-page-studentverification .college-studentverification-inline-2 {
    font-size: 1rem;
}
body.college-page-studentverification .college-studentverification-inline-3 {
    font-size: 1rem;
}
body.college-page-studentverification .college-studentverification-inline-4 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page: studymaterial */
body.college-page-studymaterial,
body.college-page-studymaterial * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body.college-page-studymaterial {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 0.98rem;
}
body.college-page-studymaterial a {
    color: var(--gold) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
body.college-page-studymaterial a:hover {
    color: var(--gold-light) !important;
    text-decoration: underline;
}
body.college-page-studymaterial .container-fluid_recog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}
body.college-page-studymaterial .page-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 1rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}
body.college-page-studymaterial .page-title i {
    color: var(--gold);
    font-size: 1.8rem;
    animation: studymaterial-glow 2s infinite alternate;
}
@keyframes studymaterial-glow {
    from {
        text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    }
    
    to {
        text-shadow: 0 0 16px rgba(251, 191, 36, 0.8);
    }
}
body.college-page-studymaterial .page-title::before,
body.college-page-studymaterial .page-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}
body.college-page-studymaterial .main-card {
    background: rgba(20, 32, 74, 0.95);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.12);
    position: relative;
    overflow: hidden;
}
body.college-page-studymaterial .main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ffe6a1, var(--gold));
    border-radius: var(--radius) var(--radius) 0 0;
}
body.college-page-studymaterial .nav-tabs_ap {
    border: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(251, 191, 36, 0.12);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold);
}
body.college-page-studymaterial .nav-tabs_ap .nav-link {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}
body.college-page-studymaterial .nav-tabs_ap .nav-link i {
    color: var(--gold);
    font-size: 1.15rem;
    transition: color 0.3s ease;
}
body.college-page-studymaterial .nav-tabs_ap .nav-link:hover {
    background: var(--gold);
    color: var(--navy) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}
body.college-page-studymaterial .nav-tabs_ap .nav-link:hover i {
    color: var(--navy) !important;
}
body.college-page-studymaterial .nav-tabs_ap .nav-link.active {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    color: var(--navy) !important;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
    border-color: var(--gold);
}
body.college-page-studymaterial .nav-tabs_ap .nav-link.active i {
    color: var(--navy) !important;
}
body.college-page-studymaterial .search-container {
    max-width: 600px;
    margin: 1.5rem auto;
    position: relative;
}
body.college-page-studymaterial .search-bar {
    width: 100%;
    padding: 14px 20px 14px 56px !important;
    font-size: 1rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
body.college-page-studymaterial .search-bar::placeholder {
    color: var(--gold-light);
    opacity: 0.8;
}
body.college-page-studymaterial .search-bar:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    background: rgba(255, 255, 255, 0.18);
}
body.college-page-studymaterial .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
    z-index: 10;
}
body.college-page-studymaterial .study-table_sm {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
body.college-page-studymaterial .study-table_sm th {
    background: linear-gradient(90deg, var(--gold), #ffe6a1);
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.88rem;
    padding: 1rem 0.8rem;
}
body.college-page-studymaterial .study-table_sm td {
    padding: 1rem 0.8rem;
    text-align: center;
    color: var(--white);
    border-bottom: 1px dashed rgba(251, 191, 36, 0.4);
}
body.college-page-studymaterial .study-table_sm td:not(:last-child),
body.college-page-studymaterial .study-table_sm th:not(:last-child) {
    border-right: 1px dashed rgba(251, 191, 36, 0.4);
}
body.college-page-studymaterial .study-table_sm td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gold-light);
    padding-left: 1.2rem;
}
body.college-page-studymaterial .study-table_sm tr:hover td {
    background: rgba(251, 191, 36, 0.08);
}
body.college-page-studymaterial .study-table_sm .subject-name {
    white-space: normal;
    word-break: break-word;
    max-width: 280px;
    min-width: 240px;
}
body.college-page-studymaterial .faculty-dropdown_sm,
body.college-page-studymaterial .self-dropdown_sm {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
}
body.college-page-studymaterial .faculty-dropdown_sm option,
body.college-page-studymaterial .self-dropdown_sm option {
    background: var(--navy);
    color: var(--white);
}
body.college-page-studymaterial .coming-soon {
    color: var(--gold-light);
    font-style: italic;
    font-size: 0.85rem;
}
body.college-page-studymaterial .share-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
}
body.college-page-studymaterial .share-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}
body.college-page-studymaterial .highlight-row td {
    background: rgba(251, 191, 36, 0.15) !important;
    animation: studymaterial-pulse 2s infinite;
}
@keyframes studymaterial-pulse {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    }
    
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    }
}
body.college-page-studymaterial .self-learning-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1.8rem;
    margin: 1.5rem 0;
    border: 1px dashed rgba(251, 191, 36, 0.3);
}
body.college-page-studymaterial .self-learning-section h2 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}
body.college-page-studymaterial .previous-papers-card {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(251, 191, 36, 0.08);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--gold);
}
body.college-page-studymaterial .previous-papers-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5) !important;
    transition: all 0.3s ease !important;
    min-width: 300px !important;
    max-width: 380px !important;
    text-align: center !important;
    margin: 0 auto !important;
}
body.college-page-studymaterial .previous-papers-btn i {
    color: var(--navy) !important;
    font-size: 1.3rem !important;
}
body.college-page-studymaterial .previous-papers-btn:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.7) !important;
}
@media (max-width: 768px) {
    body.college-page-studymaterial .page-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 8px;
    }
    
    body.college-page-studymaterial .study-table_sm {
        font-size: 0.82rem;
    }
    
    body.college-page-studymaterial .study-table_sm th,
    body.college-page-studymaterial .study-table_sm td {
        padding: 0.7rem 0.4rem;
    }
    
    body.college-page-studymaterial .study-table_sm .subject-name {
        max-width: 200px;
        min-width: 160px;
    }
    
    body.college-page-studymaterial .nav-tabs_ap .nav-link {
        font-size: 0.82rem;
        padding: 8px 14px;
        min-width: 120px;
    }
    
    body.college-page-studymaterial .previous-papers-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: 240px;
    }
}

/* Page: terms-conditions */
body.college-page-terms-conditions .text-navy {
    color: #0f172a;
}
body.college-page-terms-conditions .leading-relaxed {
    line-height: 1.8;
}

/* Extracted inline declarations */
body.college-page-terms-conditions .college-terms-conditions-inline-1 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding-top: 100px;
}
body.college-page-terms-conditions .college-terms-conditions-inline-2 {
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}
body.college-page-terms-conditions .college-terms-conditions-inline-3 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Page: tpoandteam */
body.college-page-tpoandteam {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}
body.college-page-tpoandteam .containert-fluid {
    padding: 0;
}
body.college-page-tpoandteam .containert {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
body.college-page-tpoandteam .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
body.college-page-tpoandteam .col-md-9,
body.college-page-tpoandteam .col-md-3 {
    padding: 15px;
}
body.college-page-tpoandteam .main-title {
    text-align: center;
    color: #ff4d4d;
    padding: 20px;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
body.college-page-tpoandteam .main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 77, 77, 0), rgba(255, 77, 77, 1), rgba(255, 77, 77, 0));
}
body.college-page-tpoandteam .content-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
body.college-page-tpoandteam .content-box img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
body.college-page-tpoandteam .content-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
body.college-page-tpoandteam .content-box p {
    margin-bottom: 10px;
}
body.college-page-tpoandteam .content-box a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}
body.college-page-tpoandteam .content-box a:hover {
    text-decoration: underline;
}
body.college-page-tpoandteam .sidebar-wrapper {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
body.college-page-tpoandteam .sidebar-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
}
body.college-page-tpoandteam .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 123, 255, 0), rgba(0, 123, 255, 1), rgba(0, 123, 255, 0));
}
body.college-page-tpoandteam .sidebar-content ul {
    list-style-type: none;
    padding: 0;
}
body.college-page-tpoandteam .sidebar-content ul li {
    margin-bottom: 15px;
}
body.college-page-tpoandteam .sidebar-content a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}
body.college-page-tpoandteam .sidebar-content a:hover {
    background-color: rgba(4, 106, 16, 0.1);
    transform: translateX(5px);
}
body.college-page-tpoandteam .sidebar-content a i {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #046A10, #0056b3);
    color: var(--white);
    border-radius: 50%;
}
@media (max-width: 768px) {
    body.college-page-tpoandteam .col-md-9,
    body.college-page-tpoandteam .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Page: trainingandplacementcell */

/* Premium Colorful Enhancements */
body.college-page-trainingandplacementcell .stat-card {
    border-bottom: 4px solid var(--gold);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.college-page-trainingandplacementcell .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

/* Process Steps with Gradient */
body.college-page-trainingandplacementcell .process-step {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.college-page-trainingandplacementcell .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
body.college-page-trainingandplacementcell .process-step:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
body.college-page-trainingandplacementcell .process-step:hover::before {
    opacity: 1;
}
body.college-page-trainingandplacementcell .process-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
body.college-page-trainingandplacementcell .process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Feature Box Highlights */
body.college-page-trainingandplacementcell .feature-box-icon {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

/* Extracted inline declarations */
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-1 {
    z-index: 2;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #d97706, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #d97706, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-4 {
    font-size: 2.5rem;
    color: var(--navy);
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-5 {
    top: 40%;
    right: -15px;
    opacity: 0.5;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-6 {
    top: 40%;
    right: -15px;
    opacity: 0.5;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-7 {
    width: 60px;
    height: 60px;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-8 {
    width: 60px;
    height: 60px;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-9 {
    width: 60px;
    height: 60px;
}
body.college-page-trainingandplacementcell .college-trainingandplacementcell-inline-10 {
    width: 60px;
    height: 60px;
}

/* Page: transport */

/* Transport Image */
body.college-page-transport .transport-img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
body.college-page-transport .transport-img:hover {
    transform: scale(1.02);
}

/* Feature Cards */
body.college-page-transport .feature-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
body.college-page-transport .feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--gold);
}
body.college-page-transport .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}
body.college-page-transport .feature-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
body.college-page-transport .feature-card h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
body.college-page-transport .feature-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Box */
body.college-page-transport .contact-box {
    background: linear-gradient(135deg, #fffbf0, #fff);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}
body.college-page-transport .contact-box h4 {
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}
body.college-page-transport .contact-box a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
body.college-page-transport .contact-box a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Route highlight */
body.college-page-transport .bus-route {
    font-weight: 600;
    color: var(--gold-dark);
}
body.college-page-transport .contact-info {
    font-weight: 600;
    color: var(--gold-dark);
}
@media (max-width: 768px) {
    body.college-page-transport .transport-img {
        max-width: 100%;
    }
    
    body.college-page-transport .feature-highlight {
        grid-template-columns: 1fr;
    }
}

/* Table Styling Override for perfect alignment and scrolling */
body.college-page-transport .college-data-table {
    min-width: 1000px;
}
body.college-page-transport .college-data-table thead th {
    padding: 16px 20px !important;
    /* Match td padding */
}
body.college-page-transport .college-data-table thead th:first-child {
    padding-left: 24px !important;
    /* Match td:first-child padding */
}
body.college-page-transport .college-data-table thead th:last-child {
    padding-right: 24px !important;
    /* Match td:last-child padding */
}

/* Fix table row hover alignment shift */
body.college-page-transport .college-data-table tbody tr:hover {
    transform: none !important;
    border-left: none !important;
}

/* Column proportions for better layout */
body.college-page-transport .college-data-table th:nth-child(1),
body.college-page-transport .college-data-table td:nth-child(1) {
    width: 60px;
    text-align: center;
}
body.college-page-transport .college-data-table th:nth-child(2),
body.college-page-transport .college-data-table td:nth-child(2) {
    width: 130px;
}
body.college-page-transport .college-data-table th:nth-child(3),
body.college-page-transport .college-data-table td:nth-child(3) {
    width: 500px;
    font-size: 1.05rem !important;
    /* Make Via column text big */
}
body.college-page-transport .college-data-table th:nth-child(3) {
    font-size: 0.85rem !important;
    /* Make Via header text big too */
}
body.college-page-transport .college-data-table th:nth-child(4),
body.college-page-transport .college-data-table td:nth-child(4) {
    width: 100px;
    text-align: center;
}
body.college-page-transport .college-data-table th:nth-child(5),
body.college-page-transport .college-data-table td:nth-child(5) {
    width: 120px;
    text-align: center;
}
body.college-page-transport .college-data-table th:nth-child(6),
body.college-page-transport .college-data-table td:nth-child(6) {
    width: 200px;
}

/* --- Interactive Bus Fee Structure Inline Component --- */
body.college-page-transport .fee-inline-container {
    background: #fff;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.3);
    margin-top: 1.5rem;
}
body.college-page-transport .fee-inline-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 1.5rem 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 3px solid var(--gold);
}
body.college-page-transport .fee-inline-header-title h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: var(--gold);
    letter-spacing: -0.5px;
}
body.college-page-transport .fee-inline-header-title p {
    margin: 0.2rem 0 0 0;
    font-size: 0.85rem;
    color: #cbd5e1;
}
body.college-page-transport .fee-search-bar-wrapper {
    background: #f8fafc;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    align-items: center;
}
body.college-page-transport .fee-search-input-group {
    position: relative;
    flex: 1;
}
body.college-page-transport .fee-search-input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}
body.college-page-transport .fee-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}
body.college-page-transport .fee-search-input:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}
body.college-page-transport .fee-inline-body {
    display: flex;
    background: #fff;
}
body.college-page-transport .fee-inline-sidebar {
    width: 280px;
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 1rem 0;
    flex-shrink: 0;
}
body.college-page-transport .fee-route-tab {
    width: 100%;
    padding: 0.85rem 1.5rem;
    border: none;
    background: transparent;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
body.college-page-transport .fee-route-tab:hover {
    background: #f1f5f9;
    color: var(--navy);
}
body.college-page-transport .fee-route-tab.active {
    background: #fffbeb;
    color: var(--gold-dark);
    border-left-color: var(--gold);
}
body.college-page-transport .fee-route-tab .route-count {
    font-size: 0.75rem;
    background: #cbd5e1;
    color: #475569;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}
body.college-page-transport .fee-route-tab.active .route-count {
    background: var(--gold);
    color: var(--navy);
}
body.college-page-transport .fee-inline-content-area {
    flex: 1;
    padding: 2rem;
    min-width: 0;
}
body.college-page-transport .fee-route-section {
    display: none;
}
body.college-page-transport .fee-route-section.active {
    display: block;
}
body.college-page-transport .fee-route-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.college-page-transport .fee-route-title span {
    font-size: 0.85rem;
    font-weight: normal;
    color: #64748b;
}
body.college-page-transport .fee-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
body.college-page-transport .fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 450px;
}
body.college-page-transport .fee-table th {
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 2px solid #cbd5e1;
}
body.college-page-transport .fee-table td {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}
body.college-page-transport .fee-table tr:hover td {
    background: #fffdf5;
}
body.college-page-transport .fee-table td.fee-amount {
    font-weight: 700;
    color: var(--navy);
    text-align: right;
}
body.college-page-transport .highlight-text {
    background-color: #fef08a;
    font-weight: 700;
    padding: 0 2px;
    border-radius: 2px;
}
body.college-page-transport .fee-note-box {
    background: #fffbeb;
    border-left: 4px solid var(--gold);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #b45309;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
body.college-page-transport .fee-note-box i {
    margin-top: 0.15rem;
    font-size: 1.1rem;
}
body.college-page-transport .fee-note-box p {
    margin: 0;
}
body.college-page-transport .search-results-container {
    display: none;
}
@media (max-width: 768px) {
    body.college-page-transport .fee-inline-container {
        border-radius: 12px;
    }
    
    body.college-page-transport .fee-inline-body {
        flex-direction: column;
    }
    
    body.college-page-transport .fee-inline-sidebar {
        width: 100%;
        height: auto;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 0;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        -webkit-overflow-scrolling: touch;
    }
    
    body.college-page-transport .fee-route-tab {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        display: inline-flex;
        gap: 0.5rem;
        width: auto;
    }
    
    body.college-page-transport .fee-route-tab.active {
        border-bottom-color: var(--gold);
        background: transparent;
    }
    
    body.college-page-transport .fee-inline-content-area {
        padding: 1.2rem;
    }
    
    body.college-page-transport .fee-inline-header {
        padding: 1.2rem 1rem;
    }
    
    body.college-page-transport .fee-search-bar-wrapper {
        padding: 0.8rem 1rem;
    }
}

/* Extracted inline declarations */
body.college-page-transport .college-transport-inline-1 {
    z-index: 2;
}
body.college-page-transport .college-transport-inline-2 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-3 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-4 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-5 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-6 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-7 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-8 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-9 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-10 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-11 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-12 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-13 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-14 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-15 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-16 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-17 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-18 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-19 {
    font-size: 0.75rem;
}
body.college-page-transport .college-transport-inline-20 {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.college-page-transport .college-transport-inline-21 {
    font-size: 0.75rem;
}

/* Page: ugcapprovedlistjournal */

/* Style for the sidebar container */
body.college-page-ugcapprovedlistjournal .padding10.sidelinks {
    -webkit-box-shadow: 0 0 2px 1px #D4D4D4;
    box-shadow: 0 0 2px 1px #D4D4D4;
    background-color: #FFFFFF;
    padding: 10px;
}

/* Style for the links */
body.college-page-ugcapprovedlistjournal .padding10.sidelinks ul {
    list-style-type: none;
    /* Remove default bullet points */
    
    padding-left: 0;
    /* Remove default left padding */
}
body.college-page-ugcapprovedlistjournal .padding10.sidelinks ul li {
    border: 1px solid #ccc;
    /* Add border to each list item */
    
    margin-bottom: 5px;
    /* Add some spacing between list items */
}
body.college-page-ugcapprovedlistjournal .padding10.sidelinks a {
    display: flex;
    /* Make the links flex to accommodate icon */
    
    align-items: center;
    /* Center icon vertically */
    
    padding: 5px 10px;
    /* Add padding to the links */
    
    color: #000;
    /* Link color */
    
    text-decoration: none;
    /* Remove default underline */
}

/* Style for the icon */
body.college-page-ugcapprovedlistjournal .padding10.sidelinks a i {
    margin-right: 5px;
    /* Add space between icon and text */
}

/* Hover effect */
body.college-page-ugcapprovedlistjournal .padding10.sidelinks a:hover {
    background-color: #E95824;
    /* Change background color on hover */
    
    color: #fff;
    /* Change text color on hover */
}

/* Extracted inline declarations */
body.college-page-ugcapprovedlistjournal .college-ugcapprovedlistjournal-inline-1 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-ugcapprovedlistjournal .college-ugcapprovedlistjournal-inline-2 {
    text-align: center;
    color: red;
}
body.college-page-ugcapprovedlistjournal .college-ugcapprovedlistjournal-inline-3 {
    color: black;
}

/* Page: valueaddedcourses */
body.college-page-valueaddedcourses .download-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
body.college-page-valueaddedcourses .download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}
body.college-page-valueaddedcourses .download-icon {
    width: 60px;
    height: 60px;
    background: #fffbeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #d97706;
}

/* Extracted inline declarations */
body.college-page-valueaddedcourses .college-valueaddedcourses-inline-1 {
    z-index: 2;
}

/* Page: virtualtour360 */

/* Compact Virtual Tour Styles */
body.college-page-virtualtour360 .vt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
body.college-page-virtualtour360 .vt-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}
body.college-page-virtualtour360 .vt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
}
body.college-page-virtualtour360 .vt-card-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
body.college-page-virtualtour360 .vt-card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}
body.college-page-virtualtour360 .vt-iframe-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 50%;
    /* 2:1 Aspect Ratio for compact view */
    
    background: #f1f5f9;
}
body.college-page-virtualtour360 .vt-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    body.college-page-virtualtour360 .vt-grid {
        grid-template-columns: 1fr;
    }
    
    body.college-page-virtualtour360 .vt-iframe-wrapper {
        padding-top: 56.25%;
        /* 16:9 on mobile */
    }
}

/* Extracted inline declarations */
body.college-page-virtualtour360 .college-virtualtour360-inline-1 {
    z-index: 2;
}

/* Page: visionandmission */

/* Extracted inline declarations */
body.college-page-visionandmission .college-visionandmission-inline-1 {
    z-index: 2;
}
body.college-page-visionandmission .college-visionandmission-inline-2 {
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border: 1px solid rgba(217, 119, 6, 0.15);
}
body.college-page-visionandmission .college-visionandmission-inline-3 {
    opacity: 0.05;
    pointer-events: none;
}
body.college-page-visionandmission .college-visionandmission-inline-4 {
    width: 50px;
    height: 50px;
}
body.college-page-visionandmission .college-visionandmission-inline-5 {
    font-size: 15px;
}
body.college-page-visionandmission .college-visionandmission-inline-6 {
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border: 1px solid rgba(217, 119, 6, 0.15);
}
body.college-page-visionandmission .college-visionandmission-inline-7 {
    opacity: 0.05;
    pointer-events: none;
}
body.college-page-visionandmission .college-visionandmission-inline-8 {
    width: 50px;
    height: 50px;
}
body.college-page-visionandmission .college-visionandmission-inline-9 {
    font-size: 15px;
}
body.college-page-visionandmission .college-visionandmission-inline-10 {
    width: 5px;
    height: 30px;
}
body.college-page-visionandmission .college-visionandmission-inline-11 {
    transition: transform 0.3s ease;
}
body.college-page-visionandmission .college-visionandmission-inline-12 {
    width: 70px;
    height: 70px;
}
body.college-page-visionandmission .college-visionandmission-inline-13 {
    transition: transform 0.3s ease;
}
body.college-page-visionandmission .college-visionandmission-inline-14 {
    width: 70px;
    height: 70px;
}
body.college-page-visionandmission .college-visionandmission-inline-15 {
    transition: transform 0.3s ease;
}
body.college-page-visionandmission .college-visionandmission-inline-16 {
    width: 70px;
    height: 70px;
}
body.college-page-visionandmission .college-visionandmission-inline-17 {
    transition: transform 0.3s ease;
}
body.college-page-visionandmission .college-visionandmission-inline-18 {
    width: 70px;
    height: 70px;
}
body.college-page-visionandmission .college-visionandmission-inline-19 {
    transition: transform 0.3s ease;
}
body.college-page-visionandmission .college-visionandmission-inline-20 {
    width: 70px;
    height: 70px;
}
body.college-page-visionandmission .college-visionandmission-inline-21 {
    border-radius: 12px;
}
body.college-page-visionandmission .college-visionandmission-inline-22 {
    background: url('../img/pattern.html');
}
body.college-page-visionandmission .college-visionandmission-inline-23 {
    width: 5px;
    height: 30px;
}
body.college-page-visionandmission .college-visionandmission-inline-24 {
    background: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #d97706;
}
body.college-page-visionandmission .college-visionandmission-inline-25 {
    line-height: 1.9;
    text-align: justify;
    font-size: 1.05rem;
}

/* Page: vlsiect */
body.college-page-vlsiect .sidebar-content {
    position: relative;
}
body.college-page-vlsiect .sidebar-header {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the decorative line */
}
body.college-page-vlsiect .sidebar-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0), rgba(4, 106, 16, 1), rgba(4, 106, 16, 0));
    /* Adjust the color */
}
body.college-page-vlsiect .sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Adjust the distance between text and line */
    
    left: 0;
    width: 100%;
    /* Adjust the width of the line (full width) */
    
    height: 3px;
    /* Adjust the thickness of the line */
    
    background: linear-gradient(to right, rgba(4, 106, 16, 0) 0%, rgba(4, 106, 16, 1) 50%, rgba(4, 106, 16, 0) 100%);
    /* Adjusted gradient */
}

/* Style for the sidebar container */
body.college-page-vlsiect .sidebar-wrapper {
    background-color: #FFffff;
    /* Light gray background */
    
    padding: 20px;
    text-align: center;
    /* border-radius: 15px; Rounded corners */
    /* border: 1px solid #ced4da; Border color */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow */
}

/* Style for the links */
body.college-page-vlsiect .sidebar-wrapper ul {
    list-style-type: none;
    padding-left: 10;
}
body.college-page-vlsiect .sidebar-wrapper ul li {
    padding: 12px 0;
    /* Adjust padding for better spacing */
    
    transition: all 0.3s ease;
    Smooth transition border-bottom: 1px solid #dee2e6;
    /* Border color between items */
}
body.college-page-vlsiect .sidebar-wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text and icon to the left */
    
    color: #343a40;
    /* Dark text color */
    
    text-decoration: none;
    font-weight: 700;
    /* Slightly bold text */
}

/* Style for the icon */
body.college-page-vlsiect .sidebar-wrapper a i {
    margin-right: 10px;
    /* Adjust spacing between icon and text */
    
    font-size: 28px;
    /* Icon size */
    
    color: #007bff;
    /* Icon color */
}

/* Hover effect */
body.college-page-vlsiect .sidebar-wrapper a:hover {
    background-color: #e2e6ea;
    /* Lighter background on hover */
    
    border-radius: 50px;
    /* Rounded corners on hover */
}

/* Sidebar header */
body.college-page-vlsiect .sidebar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
    /* Header text color */
}

/* Extracted inline declarations */
body.college-page-vlsiect .college-vlsiect-inline-1 {
    text-align: center;
    color: red;
    padding: 20px;
    position: relative;
}
body.college-page-vlsiect .college-vlsiect-inline-2 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
}
body.college-page-vlsiect .college-vlsiect-inline-3 {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}
body.college-page-vlsiect .college-vlsiect-inline-4 {
    text-align: center;
    color: red;
}
body.college-page-vlsiect .college-vlsiect-inline-5 {
    color: black;
}
body.college-page-vlsiect .college-vlsiect-inline-6 {
    text-decoration: underline;
}
body.college-page-vlsiect .college-vlsiect-inline-7 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-8 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-9 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-10 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-11 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-12 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-13 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-14 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-15 {
    color: #046A10;
}
body.college-page-vlsiect .college-vlsiect-inline-16 {
    color: #046A10;
}