﻿.modern-luxury-navhub {
    background: linear-gradient(135deg, #082c5c 0%, #051833 100%);
    position: sticky;
    top: 0;
    z-index: 999;
}

.luxury-brand-nav-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ==========================================================================
   THE 2026 UNIFIED DESKTOP NAVIGATION MASTERCLASS (MIN-WIDTH: 1200px)
   ========================================================================== */
@media (min-width: 1200px) {
    /* Main Fixed Navbar Canvas Layout */
    .modern-luxury-navhub {
        background: #092c56 !important; /* Premium Matte Space Navy */
        border-bottom: 3px solid #d4a017 !important; /* Signature Gold Base Border */
        padding: 0 !important;
    }

    /* Core Dynamic Flex Grid Horizontal Framework */
    #bsc-unified-menu > ul {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        list-style: none !important;
        gap: 2px !important; /* Balanced gap between elements to prevent wrapping */
        width: 100% !important;
        max-width: 1200px;
    }

        #bsc-unified-menu > ul > li {
            position: relative !important; /* Absolute anchor point lock for submenus */
            list-style: none !important;
            padding: 15px 0 !important; /* Safe cursor hovering area */
        }

            /* Primary Corporate Category Heading Items */
            #bsc-unified-menu > ul > li > a {
                color: rgba(255, 255, 255, 0.9) !important;
                text-decoration: none !important;
                font-size: 13.5px !important;
                font-weight: 700 !important;
                letter-spacing: 0.5px !important;
                text-transform: uppercase !important;
                padding: 10px 14px !important; /* Balanced padding to keep text safe in one grid horizontal block */
                display: block !important;
                border-radius: 6px !important;
                /* FIXED ENGINE: Stops text from cutting or dividing into two rows */
                white-space: nowrap !important;
                transition: color 0.1s ease, background-color 0.1s ease !important;
            }

            /* Fluid Micro-glow on Parent Hover State */
            #bsc-unified-menu > ul > li:hover > a {
                color: #ffffff !important;
                background-color: rgba(255, 255, 255, 0.08) !important;
            }

    /* ==========================================================================
       FIXED: PERFECT ZERO-LINE START ALIGNMENT & INSTANT SNAP SWITCH
       ========================================================================== */
    #bsc-unified-menu ul li ul {
        /* FIXED ENGINE: Completely cancels your right-shifting layout error */
        position: absolute !important;
        top: 100% !important;
        left: 0 !important; /* Locks left side exactly to the starting line of parent category link */
        right: auto !important;
        /* Premium Translucent Cosmic Canvas Backdrop Layer */
        background: linear-gradient(145deg, #051429 0%, #030d1a 100%) !important;
        /* Double Layer High-Definition Spatial Shadows Mask Layout */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
        display: none !important; /* FORCED ABSOLUTE INITIAL COLD HIDE STATE */
        flex-direction: column !important;
        min-width: 260px !important;
        border-radius: 0 0 12px 12px !important; /* Tailored bottom-weighted frame edges */
        padding: 8px 0 !important;
        margin: 0 !important;
        list-style: none !important;
        z-index: 9999 !important;
        border-top: 3px solid #d4a017 !important; /* Crown accent boundary indicator */
        /* THE ULTIMATE ZERO-DELAY KILL SWITCH: Instant vanishing trigger mechanism */
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Dynamic Flash Inward Trigger Switch: Removes lagging visual memory */
    #bsc-unified-menu > ul > li:hover > ul {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Internal List Option Matrix Parameters */
    #bsc-unified-menu ul li ul li {
        padding: 0 6px !important;
        width: 100% !important;
    }

        /* Submenu Selection Active Row Typography Formatting */
        #bsc-unified-menu ul li ul li a {
            color: rgba(255, 255, 255, 0.85) !important;
            text-decoration: none !important;
            padding: 10px 16px !important;
            display: block !important;
            font-size: 13.5px !important;
            font-weight: 600 !important;
            text-transform: none !important;
            letter-spacing: 0.2px !important;
            border-radius: 6px !important;
            white-space: nowrap !important; /* Keeps sub-elements perfectly flat across grid columns */
            position: relative !important;
            transition: all 0.2s ease !important;
        }

            /* Premium Cyber Ash Layer Glow Inversion Interaction */
            #bsc-unified-menu ul li ul li a:hover {
                background: linear-gradient(90deg, rgba(214, 160, 23, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
                color: #ffffff !important;
                padding-left: 24px !important; /* Micro sliding displacement */
            }

            /* Luxury Holographic Circular Particle Pointer */
            #bsc-unified-menu ul li ul li a::before {
                content: '' !important;
                position: absolute !important;
                left: 10px !important;
                top: 50% !important;
                transform: translateY(-50%) scale(0) !important;
                width: 5px !important;
                height: 5px !important;
                background-color: #d4a017 !important;
                border-radius: 50% !important;
                box-shadow: 0 0 8px #d4a017 !important;
                opacity: 0 !important;
                transition: all 0.2s ease !important;
            }

            #bsc-unified-menu ul li ul li a:hover::before {
                transform: translateY(-50%) scale(1) !important;
                opacity: 1 !important;
            }

            /* Total wipeout for standard browser underlining indicators */
            #bsc-unified-menu ul li ul li a::after,
            #bsc-unified-menu > ul > li > a::after {
                display: none !important;
            }
}

/* ─── BURGER CONTROLS ─── */
.luxury-burger-trigger {
    border: none !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5.5px;
    background: transparent !important;
}

.luxury-burger-bar {
    width: 25px;
    height: 2.5px;
    background-color: #ffffff;
    display: block;
    border-radius: 4px;
}

/* ─── MOBILE ACCORDION DRAWER CONTROLS (MAX-WIDTH: 1199px) ─── */
@media (max-width: 1199px) {
    .luxury-mobile-sidebar-drawer {
        background-color: #092c56 !important;
        width: 310px !important;
        border-right: 3px solid #d4a017 !important;
    }

    .luxury-drawer-top-bar {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px !important;
        background: #051429;
    }

    .luxury-drawer-heading {
        font-size: 15px;
        font-weight: 800;
        color: #ffffff;
    }

    .luxury-drawer-canvas-body {
        padding: 15px 0 !important;
        overflow-y: auto;
    }

    /* Forcing natural flex-block sequence—prevents menus from getting covered */
    .luxury-mobile-menu-container ul {
        list-style: none !important;
        margin: 0;
        padding: 0;
        display: block !important;
        width: 100% !important;
    }

    .luxury-mobile-menu-container li {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        clear: both !important;
    }

    .luxury-mobile-menu-container > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .luxury-mobile-menu-container li a {
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        padding: 15px 24px !important;
        display: block !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        position: relative;
        text-transform: uppercase;
    }

    /* Interactive Dropdown Toggle Arrow Indicator */
    .luxury-mobile-menu-container li.has-dropdown > a::after {
        content: '\25BC';
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        font-size: 10px;
        color: rgba(255, 255, 255, 0.4);
        transition: transform 0.3s ease;
    }

    .luxury-mobile-menu-container li.open-active > a::after {
        transform: translateY(-50%) rotate(-180deg);
        color: #d4a017;
    }

    /* FORCED INLINE HIDDEN BLOCK — Overrides backend custom properties */
    .luxury-mobile-menu-container ul li ul {
        display: none !important; /* Strictly hidden on initial render */
        visibility: visible !important;
        position: relative !important;
        top: 0 !important;
        background: #030d1a !important;
        padding: 5px 0 !important;
        border-left: 4px solid #d4a017 !important;
    }

    /* Showing the active expanded child list block layout */
    .luxury-mobile-menu-container ul li.open-active > ul {
        display: block !important;
    }

    .luxury-mobile-menu-container ul li ul li a {
        padding: 12px 24px 12px 40px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.75) !important;
        text-transform: none !important;
    }
}
/* ─── EXTRAORDINARY HERO CORE ENGINE ─── */
.bsc-extraordinary-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}


/* ─── LEFT PANEL TYPOGRAPHY ─── */
.bsc-badge-glowing {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4a017; /* Golden dynamic accent tint */
    padding: 8px 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bsc-hero-main-title {
    color: #ffffff !important;
    font-size: 46px !important;
    font-weight: 800 !important;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.bsc-hero-sub-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    max-width: 420px;
}

/* ─── RIGHT PANEL: THE ASYMMETRIC STAGE CANVAS ─── */
.bsc-stage-canvas-frame {
    position: relative;
    z-index: 2;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Carousel Window Frame styling */
#BScollegeD {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

    #BScollegeD .carousel-item {
        width: 100%;
        height: 480px;
        background-color: #061124;
    }

        /* PURE TRANSPARENCY SHIELD: Zero overlay mask applied on top of image graphics */
        #BScollegeD .carousel-item img.imgslideInner {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.01) translateY(0px);
            transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Ken-Burns Shift: Slowly pans and translates to create dynamic multi-dimensional illusion */
        #BScollegeD .carousel-item.active img.imgslideInner {
            transform: scale(1.05) translateY(-5px);
        }

/* ─── EXTRAORDINARY FLOATING NAVIGATION SWITCHES ─── */
.bsc-floating-controls-cluster {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bsc-nav-capsule {
    width: 46px;
    height: 46px;
    background: rgba(6, 17, 36, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color:white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

    .bsc-nav-capsule i {
        color: #ffffff;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .bsc-nav-capsule:hover {
        background: #ffffff !important;
        border-color: #ffffff;
        color:black;
        transform: translateY(-3px);
    }

        .bsc-nav-capsule:hover i {
            color: #061124;
        }

/* ─── NAVIGATION DOTS (LEFT BLENDED) ─── */
.bsc-hero-indicator-dot {
    width: 25px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .bsc-hero-indicator-dot.active {
        background-color: #d4a017;
        width: 50px;
    }

/* ─── HIGH-FIDELITY RESPONSIVE ENGINE ─── */
@media (max-width: 1199px) {
    .bsc-hero-main-title {
        font-size: 38px !important;
    }

    #BScollegeD .carousel-item {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .bsc-extraordinary-hero {
        padding: 60px 0;
    }

    .bsc-hero-sub-desc {
        max-width: 100%;
    }

    #BScollegeD .carousel-item {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .bsc-stage-canvas-frame {
        padding: 8px;
        border-radius: 20px;
    }

    #BScollegeD {
        border-radius: 14px;
    }

        #BScollegeD .carousel-item {
            height: 220px; /* Perfectly safe horizontal banner landscape layout scale for mobile */
        }

    .bsc-floating-controls-cluster {
        bottom: 15px;
        right: 15px;
    }

    .bsc-nav-capsule {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
}

.about-modern {
    position: relative;
    padding: 20px 0;
    z-index: 10;
}

.about-wrapper {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ─── IMAGE MASTER BLOCK WITH BACKGROUND LAYER ─── */
.about-image-block {
    width: 45%;
    position: relative;
    padding: 20px; /* Thoda padding diya taaki piche ka background element saaf dikhe */
    background: transparent;
}

    /* Image ke piche floating creative geometric block */
    .about-image-block::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        height: 90%;
        background: linear-gradient(135deg, rgb(9 42 77 / 44%) 0%, rgb(9 42 77 / 42%) 100%);
        border-radius: 24px;
        z-index: 1;
        pointer-events: none;
        transition: all 0.4s ease;
    }

/* Hover karne par piche ka block soft glow karega aur react karega */
.about-wrapper:hover .about-image-block::before {
    transform: scale(1.02) translate(-5px, 5px);
    background: linear-gradient(135deg, rgb(9 42 77 / 44%) 0%, rgb(9 42 77 / 42%) 100%);
}

.about-image-block img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px; /* Image ke corners round kiye taaki background layer alag se dikhe */
    position: relative;
    z-index: 2; /* Image ko layer ke upar laya */
    box-shadow: 0 15px 35px rgba(8, 44, 92, 0.1); /* Soft shadow taaki image "pop-out" lage */
}

.experience-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #082c5c;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 220px;
    text-align: center;
    z-index: 3; /* Sabse upar */
}

    .experience-card span {
        font-size: 50px;
        font-weight: 800;
        display: block;
        line-height: 1;
    }

    .experience-card p {
        margin: 10px 0 0;
        font-size: 15px;
    }

.about-content-block {
    width: 55%;
    padding: 70px;
}

.about-tag {
    color: #d4a017;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content-block h2 {
    font-size: 42px;
    margin: 20px 0;
    color: #082c5c;
    font-weight: 700;
}

.about-content-block p {
    color: #666;
    line-height: 2;
    font-size: 16px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 28px;
    background: #082c5c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
}

    .about-btn:hover {
        transform: translateY(-4px);
        color: #fff;
    }

    .about-btn span {
        transition: .3s;
    }

    .about-btn:hover span {
        transform: translateX(5px);
    }

/* ─── RESPONSIVE ENGINE ─── */
@media(max-width:991px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-image-block,
    .about-content-block {
        width: 100%;
    }

    .about-image-block {
        padding: 15px;
    }

        .about-image-block img {
            min-height: 400px;
        }

    .about-content-block {
        padding: 40px 30px;
    }

        .about-content-block h2 {
            font-size: 32px;
        }

    .experience-card {
        right: 20px;
        bottom: 20px;
    }

    .about-modern {
        margin-top: -40px;
    }
}

.kinetic-showcase {
    width: 100%;
    background: #082c5c;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 4%;
    font-family: 'Urbanist', sans-serif;
}

    /* Ambient Cosmic Glow Backdrops (Foreign Website Aesthetic) */
    

.showcase-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 5;
}

/* ─── LEFT COLUMN: STICKY BRAND MATRIX ─── */
.brand-sticky-matrix {
    position: sticky;
    top: 150px;
}

.brand-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4a017;
    margin-bottom: 20px;
    display: inline-block;
}

.matrix-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

    .matrix-title span {
        background: linear-gradient(135deg, #d4a017 0%, #38bdf8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.matrix-description {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.6;
    font-weight: 400;
}

/* ─── RIGHT COLUMN: DYNAMIC ASYMMETRIC PANELS ─── */
.kinetic-panels-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Pure Premium Glassmorphic Minimal Strip */
.kinetic-panel {
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.02) translateX(15px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Glowing Tech Index Number */
.panel-index {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #d4a017;
    text-shadow: 0 0 20px rgb(198 162 42 / 35%);
    transition: color 0.4s ease;
}

.panel-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    transition: transform 0.4s ease;
}

.panel-content p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.4s ease;
}

/* Premium Luxury Hover State (The Interactive Magic) */
.kinetic-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.02) translateX(15px); /* Smooth slight shift right on hover */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

    .kinetic-panel:hover .panel-index {
        color: #d4a017;
        text-shadow: 0 0 20px rgb(198 162 42 / 35%);
    }

    .kinetic-panel:hover .panel-content h3 {
        color: #ffffff;
        transform: translateX(5px);
    }

    .kinetic-panel:hover .panel-content p {
        color: #e5e7eb;
    }

/* Modern subtle pointer line decoration inside card on hover */
.kinetic-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #d4a017, #38bdf8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.kinetic-panel:hover::before {
    opacity: 1;
}

/* ─── MOBILE RESPONSIVENESS ─── */
@media (max-width: 992px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brand-sticky-matrix {
        position: relative;
        top: 0;
    }

    .matrix-title {
        font-size: 40px;
    }

    .kinetic-panel {
        padding: 30px;
        grid-template-columns: 1fr;
        gap: 15px;
        transform:none;
    }

        .kinetic-panel:hover {
            transform: scale(1.01);
        }
}


/* ─── MAIN GRADIENT WRAPPER ─── */
.bsc-premium-mentor-wrapper {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

    /* Sparkle Geometric Accents in Background */
    .bsc-premium-mentor-wrapper::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(9, 44, 86, 0.15) 0%, transparent 70%);
        top: -10%, left: -10%;
        z-index: 1;
    }

.bsc-section-header span {
    color: #cc9b19;
    font-size: 13px;
    FONT-WEIGHT: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.bsc-section-header h2 {
    color: #082c5c !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

/* ─── SIDE-BY-SIDE GLASS CARDS ENGINE ─── */
.bsc-editorial-slider-wrapper .mentor-card {
    display: flex !important;
    flex-direction: row;
    align-items: stretch; /* Image aur Text panels dono barabar height ke rahenge */
    background: transparent !important;
    border: none !important;
    gap: 30px;
    padding: 20px 10px 100px 10px;
}

/* 1. Left Image Panel with Dual Border Glow */
.bsc-editorial-slider-wrapper .mentor-image {
    width: 40%;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    background: #0d1b2a;
    min-height: 440px;
}

    .bsc-editorial-slider-wrapper .mentor-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1s ease;
    }

.carousel-item.active .bsc-editorial-slider-wrapper .mentor-image img {
    transform: scale(1.03);
}

/* 2. Right Glassmorphism Content Panel */
.bsc-editorial-slider-wrapper .mentor-content {
    width: 60%;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bsc-editorial-slider-wrapper .mentor-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cc9b19;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.bsc-editorial-slider-wrapper .mentor-content h2 {
    color: #082c5c !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    margin-bottom: 15px;
}

.bsc-editorial-slider-wrapper .quote-icon {
    font-size: 32px;
    color: #082c5c52;
    height: 30px;
    margin-bottom: 15px;
}

/* ─── FIX: MAXIMUM 5-6 LINES TEXT CLAMP ─── */
.bsc-editorial-slider-wrapper .mentor-message {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: #082c5c;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Section Alignment */
.bsc-editorial-slider-wrapper .mentor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: auto; /* Push footer tightly to the bottom */
}

.bsc-editorial-slider-wrapper .mentor-info h4 {
    color: #082c5c !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 0;
}

.bsc-editorial-slider-wrapper .mentor-btn {
    font-size: 12px;
    font-weight: 700;
    color: #082c5c !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 2px solid #082c5c94;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

    .bsc-editorial-slider-wrapper .mentor-btn:hover {
        color: #ef4444;
        border-color: #ef4444;
    }

/* ─── DOCK NAVIGATION SWITCHES (BOTTOM RIGHT) ─── */
.bsc-minimal-dots-container {
    bottom: 35px !important;
    justify-content: flex-start !important;
    left: 40px !important;
    margin: 0 !important;
}

    .bsc-minimal-dots-container button {
        width: 20px !important;
        height: 3px !important;
        background-color: #09090938 !important;
        border: none !important;
        transition: all 0.3s ease !important;
        border-radius: 2px;
    }

        .bsc-minimal-dots-container button.active {
            background-color: #082c5c !important;
            width: 40px !important;
        }

/* Luxury Glowing Control Arrows */
.bsc-mentor-arrow-lux {
    width: 46px !important;
    height: 46px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    top: auto !important;
    bottom: 25px !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

    .bsc-mentor-arrow-lux i {
        color: #ffffff;
        font-size: 16px;
        line-height: 44px;
    }

.carousel-control-prev.bsc-mentor-arrow-lux {
    left: auto !important;
    right: 90px !important;
    background: #15365fc7 !important;
}

.carousel-control-next.bsc-mentor-arrow-lux {
    left: auto !important;
    right: 40px !important;
    background: #15365fc7 !important;
}

    .carousel-control-next.bsc-mentor-arrow-lux .fa-angle-right{
        left:auto !important;
    }

    .bsc-mentor-arrow-lux:hover {
        background: #15365fc7 !important;
    }

    .bsc-mentor-arrow-lux:hover i {
        color: #060f1e;
    }

/* ─── RESPONSIVE LAYOUT ENGINE ─── */
@media (max-width: 991px) {
    .bsc-editorial-slider-wrapper .mentor-card {
        flex-direction: column;
        padding-bottom: 120px;
    }

    .bsc-editorial-slider-wrapper .mentor-image,
    .bsc-editorial-slider-wrapper .mentor-content {
        width: 100%;
    }

    .bsc-editorial-slider-wrapper .mentor-image {
        min-height: 350px;
        height: 350px;
    }

    .bsc-minimal-dots-container {
        left: 0 !important;
        justify-content: center !important;
        width: 100%;
        bottom: 75px !important;
    }

    .carousel-control-prev.bsc-mentor-arrow-lux {
        right: calc(50% + 5px) !important;
    }

    .carousel-control-next.bsc-mentor-arrow-lux {
        right: calc(50% - 51px) !important;
    }
}


.gallery-section {
    padding: 50px 0;
    background: #fff;
}

.gallery-heading {
    margin-bottom: 60px;
}

.gallery-tag {
    color: #c89b3c;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.gallery-heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: #082c5c;
    margin: 15px 0;
}

.gallery-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.gallery-large {
    grid-row: span 2;
}

.gallery-cta {
    background: linear-gradient(135deg,#082c5c,#0d4d9c);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 30px;
}

    .gallery-cta h3 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .gallery-cta a {
        background: #fff;
        color: #082c5c;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
    }

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-row: auto;
    }
}

@media(max-width:767px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-heading h2 {
        font-size: 34px;
    }
}
/*====================================
    FOOTER
====================================*/

.modern-footer {
    background: #082c5c;
    color: #fff;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 80px 0;
}

/*====================================
    HEADINGS
====================================*/

.footer-col h4,
.footer-about h3 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-about h3 {
    font-size: 30px;
}

.footer-col h4 {
    font-size: 22px;
}

/*====================================
    ABOUT
====================================*/

.footer-about p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 25px;
}

/*====================================
    SOCIAL
====================================*/

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #fff;
            color: #082c5c;
            transform: translateY(-4px);
        }

/*====================================
    QUICK LINKS
====================================*/

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

        .footer-links li a {
            color: rgba(255,255,255,.75);
            text-decoration: none;
            transition: .3s;
            display: inline-block;
        }

            .footer-links li a:hover {
                color: #fff;
                padding-left: 8px;
            }

/*====================================
    CONTACT
====================================*/

.footer-col address {
    margin: 0;
}

    .footer-col address p {
        color: rgba(255,255,255,.75);
        line-height: 1.9;
        margin-bottom: 12px;
    }

.college-name {
    color: #f7c948 !important;
    font-size: 20px;
    font-weight: 700;
}

.footer-col address a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .3s;
}

    .footer-col address a:hover {
        color: #fff;
    }

.footer-col address i {
    margin-right: 8px;
}

/*====================================
    MAP
====================================*/

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

/*====================================
    AFFILIATIONS
====================================*/

.footer-affiliations {
    margin-top: 25px;
}

    .footer-affiliations h5 {
        color: #fff;
        text-align: center;
        margin-bottom: 15px;
        font-size: 15px;
        letter-spacing: 1px;
    }

.affiliation-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .affiliation-logos a {
        background: #fff;
        padding: 10px;
        border-radius: 12px;
        transition: .3s;
    }

        .affiliation-logos a:hover {
            transform: translateY(-4px);
        }

    .affiliation-logos img {
        height: 65px;
        width: auto;
        display: block;
    }

/*====================================
    FOOTER BOTTOM
====================================*/

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.7);
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

    .footer-bottom a:hover {
        text-decoration: underline;
    }

/*====================================
    RESPONSIVE
====================================*/

@media(max-width:1199px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 0;
    }

    .footer-about h3 {
        font-size: 26px;
    }

    .footer-col h4 {
        font-size: 20px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

   
}

.bsc-inner-page-wrapper {
    background-color: #f8fafc; /* Crisp, clean minimalist background for page body */
}

/* ─── THE PREMIUM SIDEBAR CARD CHASSIS ─── */
.bsc-premium-sidebar-vault {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(3, 13, 26, 0.04);
    position: sticky;
    top: 100px; /* Floats smoothly as user scrolls through heavy paragraphs */
    transition: box-shadow 0.4s ease;
}

    .bsc-premium-sidebar-vault:hover {
        box-shadow: 0 20px 45px rgba(3, 13, 26, 0.08);
    }

/* Luxury Header Section Widget */
.bsc-sidebar-header-box {
    background: #092c56; /* Dark Midnight Blue theme consistency */
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid #d4a017; /* Signature premium gold strip line */
}

.bsc-header-accent-dot {
    width: 8px;
    height: 8px;
    background-color: #d4a017;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(214, 160, 23, 0.6);
}

.bsc-sidebar-title {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ─── DINAMIC BACKEND LIST INJECTOR OVERRIDES ─── */
.bsc-sidebar-body-box {
    padding: 20px;
}

.bsc-smart-slab-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Smooth elegant breathing space between rows */
}

    /* Targeting the dynamic <li> nodes generated by API */
    .bsc-smart-slab-links li {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
    }

        /* Targeting the dynamic anchor tags inside list nodes */
        .bsc-smart-slab-links li a {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            color: #334155 !important; /* Premium slate dark grey text color */
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 600;
            padding: 14px 18px !important;
            background: #f8fafc; /* Subtle light box base canvas */
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-left: 4px solid #cbd5e1; /* Flat neutral vertical edge accent border */
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
            position: relative;
        }

            /* Add custom micro vector indicator arrow dynamically via CSS pseudo-elements */
            .bsc-smart-slab-links li a::after {
                content: "→";
                font-size: 16px;
                color: #94a3b8;
                transition: transform 0.3s ease, color 0.3s ease;
                font-weight: 400;
            }

            /* ─── SMART HOVER KINETIC INTERACTIONS ─── */
            .bsc-smart-slab-links li a:hover {
                background: #ffffff !important;
                color: #030d1a !important; /* Brand deep blue focus highlight */
                border-left-color: #d4a017 !important; /* Transforms edge strip to absolute gold on hovers */
                box-shadow: 0 8px 20px rgba(3, 13, 26, 0.06);
                transform: translateX(4px); /* Interactive modern sliding responsive feedback */
            }

                .bsc-smart-slab-links li a:hover::after {
                    color: #d4a017;
                    transform: translateX(2px);
                }

            /* Auto Active Current Page tracking logic */
            .bsc-smart-slab-links li.active a,
            .bsc-smart-slab-links li a.active {
                background: #ffffff !important;
                color: #d4a017 !important;
                border-left-color: #d4a017 !important;
                font-weight: 700;
            }