/* ==========================================================================
   NYCET - SBI OFFICIAL INSTITUTIONAL DESIGN SYSTEM (nyc-master.css)
   Plain Solid Colors: SBI Deep Indigo (#280071), SBI Sky Blue (#00A3E0), 
   SBI Accent Saffron (#F58220), Clean Porcelain (#FFFFFF & #F4F6F9)
   NO Cyber Neon Gradients. Clean, High-Trust, Professional Banking Aesthetic.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    /* Royal Blue Institutional Brand Colors */
    --sbi-indigo-dark: #06152D;
    --sbi-indigo: #0B2454;
    --sbi-indigo-light: #1E3A8A;
    
    --sbi-blue: #00A3E0;
    --sbi-blue-hover: #008cc2;
    --sbi-blue-light: #E0F2FE;
    --sbi-blue-subtle: #F0F9FF;

    --sbi-orange: #F58220;
    --sbi-orange-hover: #E06F10;
    --sbi-orange-light: #FFF7ED;

    --sbi-emerald: #059669;
    --sbi-emerald-light: #ECFDF5;

    /* Clean Solid Backgrounds & Surfaces */
    --bg-page: #F4F6F9;
    --bg-surface: #FFFFFF;
    --bg-subtle: #EDF2F7;
    --border-color: #CBD5E1;
    --border-light: #E2E8F0;

    /* Clean Solid Typography Colors - High-Contrast & Prominent */
    --text-primary: #071A33;
    --text-secondary: #1E293B;
    --text-muted: #334155;
    --text-white: #FFFFFF;

    --font-heading: 'Google Sans Flex', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Google Sans Flex', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 18px rgba(40, 0, 113, 0.08);
    --shadow-lg: 0 12px 30px rgba(40, 0, 113, 0.12);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.nycet-master-page {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.ny-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 800;
    line-height: 1.2;
    color: var(--sbi-indigo);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Solid Text Accents (NO Gradients) */
.text-gold, .text-orange {
    color: var(--sbi-orange) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.text-blue, .text-sbi-blue {
    color: var(--sbi-blue) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.text-violet, .text-indigo {
    color: var(--sbi-indigo) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

/* ==========================================================================
   1. SBI SOLID HEADER SYSTEM (FULL-WIDTH EDGE-TO-EDGE)
   ========================================================================== */
.ny-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--sbi-indigo);
    border-bottom: 3px solid var(--sbi-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.ny-header .ny-container {
    width: 100%;
    max-width: 100% !important;
    padding-left: clamp(16px, 3vw, 40px) !important;
    padding-right: clamp(16px, 3vw, 40px) !important;
    margin: 0 !important;
}

/* Top Mini Strip */
.ny-top-strip {
    background: var(--sbi-indigo-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    padding: 7px 0;
    color: #E2E8F0;
    width: 100%;
}

.ny-top-strip-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.ny-pulse-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.ny-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--sbi-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
    animation: nyPulse 2s infinite;
}

@keyframes nyPulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.8); }
    70% { box-shadow: 0 0 0 7px rgba(245, 130, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0); }
}

.ny-top-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ny-top-links a {
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.ny-top-links a:hover {
    color: var(--sbi-blue);
}

/* Main Navigation Bar */
.ny-main-nav-bar {
    padding: 10px 0;
    width: 100%;
}

.ny-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.ny-brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    flex-shrink: 0;
}

.ny-brand-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #FFFFFF;
    padding: 4px;
    border-radius: 50%;
    border: 2px solid var(--sbi-blue);
    box-shadow: var(--shadow-sm);
}

.ny-brand-title-box {
    line-height: 1.18;
}

.ny-brand-title-box .sup {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 900 !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    background: linear-gradient(90deg, #00E5FF 0%, #38BDF8 25%, #FACC15 50%, #FB923C 75%, #00E5FF 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
    animation: nyNationalYouthShimmer 4s linear infinite, nyNationalYouthPulse 2.5s ease-in-out infinite;
    line-height: 1.1;
    margin-bottom: 2px;
}

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

@keyframes nyNationalYouthPulse {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(0, 229, 255, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.85)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.65));
        transform: scale(1.02);
    }
}

@media (max-width: 576px) {
    .ny-brand-title-box .sup {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
}

.ny-brand-title-box .main {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.ny-brand-title-box .main span {
    color: var(--sbi-orange);
}

.ny-brand-title-box .sub {
    font-size: 9px;
    color: #CBD5E1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.ny-desktop-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ny-nav-item {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 12.5px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none !important;
}

.ny-nav-item:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.14);
}

.ny-nav-item.active {
    color: #FFFFFF;
    background: var(--sbi-blue);
    font-weight: 800;
}

/* Mega Menu Dropdown System */
.ny-nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ny-nav-item i.fa-chevron-down {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.ny-nav-item-dropdown:hover .ny-nav-item i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--sbi-orange);
}

.ny-megamenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.98);
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(7, 26, 51, 0.24);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    pointer-events: none;
    z-index: 1500;
    text-align: left;
    overflow: hidden;
}

.ny-megamenu::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    display: block;
}

.ny-nav-item-dropdown:hover > .ny-megamenu,
.ny-nav-item-dropdown:focus-within > .ny-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.ny-megamenu-stripe {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #14B8A6 0%, #8B5CF6 20%, #F43F5E 40%, #10B981 60%, #F59E0B 80%, #3B82F6 100%);
}

.ny-megamenu-body {
    padding: 22px;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 20px;
    align-items: stretch;
}

.ny-megamenu.megamenu-about {
    width: min(960px, calc(100vw - 32px));
    left: 50%;
}

.ny-megamenu.megamenu-courses,
.ny-megamenu.megamenu-student-zone {
    width: min(1080px, calc(100vw - 32px));
    left: 50%;
}

.ny-nav-item-dropdown:hover > .ny-megamenu.megamenu-courses,
.ny-nav-item-dropdown:hover > .ny-megamenu.megamenu-about,
.ny-nav-item-dropdown:hover > .ny-megamenu.megamenu-student-zone {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* 4-Column Student Zone Grid */
.megamenu-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.28fr;
    gap: 22px;
    padding: 24px 28px;
    align-items: stretch;
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sbi-indigo, #071A33);
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1.5px solid rgba(226, 232, 240, 0.85);
}

.mega-col-header i {
    color: var(--sbi-blue, #00A3E0);
    font-size: 14px;
}

.mega-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: auto;
}

.mega-badge-emerald {
    background: rgba(16, 185, 129, 0.14);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mega-badge-blue {
    background: rgba(0, 163, 224, 0.12);
    color: #00A3E0;
    border: 1px solid rgba(0, 163, 224, 0.3);
}

.mega-badge-gold {
    background: rgba(245, 158, 11, 0.14);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.mega-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.mega-link-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.mega-link-card:hover {
    background: #F0F9FF;
    transform: translateX(4px);
}

.mega-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF6FF;
    color: var(--sbi-blue, #00A3E0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mega-link-card:hover .mega-icon-box {
    background: var(--sbi-indigo, #1E2585);
    color: #FFFFFF;
    transform: scale(1.06);
    box-shadow: 0 4px 10px rgba(30, 37, 133, 0.3);
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mega-item-title {
    font-size: 13.5px;
    font-weight: 750;
    color: #0F172A;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.mega-link-card:hover .mega-item-title {
    color: var(--sbi-indigo, #1E2585);
}

.mega-item-desc {
    font-size: 11.5px;
    color: #64748B;
    line-height: 1.35;
    margin-top: 2px;
}

/* Mega Promo Card */
.mega-promo-card {
    background: linear-gradient(145deg, #071A33 0%, #0D2B59 100%);
    border-radius: 18px;
    padding: 24px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(7, 26, 51, 0.25);
    border: 1px solid rgba(0, 163, 224, 0.3);
}

.mega-promo-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.35), transparent 70%);
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 163, 224, 0.2);
    color: #7DD3FC;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 163, 224, 0.4);
    width: fit-content;
}

.promo-title {
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 8px;
}

.promo-desc {
    font-size: 12.5px;
    color: #CBD5E1;
    line-height: 1.5;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .megamenu-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .megamenu-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Left Hero Feature Panel */
.ny-mega-hero {
    background: linear-gradient(150deg, #071A33 0%, #0D264E 60%, #0F3266 100%);
    border-radius: 16px;
    padding: 22px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ny-mega-hero-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 120px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ny-mega-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ny-mega-hero:hover .ny-mega-hero-img img {
    transform: scale(1.05);
}

.ny-mega-hero-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(7, 26, 51, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    color: #72DFE9;
    font-size: 9.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ny-mega-hero-kicker {
    display: block;
    color: #F58220;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.ny-mega-hero h3 {
    margin: 0 0 8px 0;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ny-mega-hero p {
    color: #CBD5E1;
    font-size: 12.5px;
    font-weight: 550;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.ny-mega-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #D9822B;
    color: #FFFFFF !important;
    font-size: 13px;
    font-weight: 850;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    margin-top: auto;
    box-shadow: 0 4px 14px rgba(217, 130, 43, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
    width: fit-content;
}

.ny-mega-hero-btn:hover {
    background: #E06F10;
    transform: translateY(-2px);
}

/* Right 2-Column Grid of Cards */
.ny-mega-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ny-mega-course-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-left: 4px solid var(--item-accent, #00A3E0);
    border-radius: 12px;
    padding: 13px 16px;
    text-decoration: none !important;
    position: relative;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ny-mega-course-item:hover {
    transform: translateX(4px) translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
    border-color: var(--item-accent, #00A3E0);
    background: #F8FAFC;
}

.ny-mega-course-item.item-activity {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border-color: #A7F3D0;
}

.ny-mega-course-item.item-activity:hover {
    border-color: #10B981;
    background: linear-gradient(135deg, #DCFCE7 0%, #D1FAE5 100%);
}

.ny-mega-course-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--item-soft, #F0F9FF);
    color: var(--item-accent, #00A3E0);
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.ny-mega-course-item:hover .ny-mega-course-icon {
    transform: scale(1.1) rotate(-4deg);
}

.ny-mega-course-info {
    flex: 1;
    min-width: 0;
}

.ny-mega-course-info strong {
    display: block;
    font-size: 13.5px;
    font-weight: 850;
    color: #071A33;
    line-height: 1.25;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ny-mega-course-info span {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #64748B;
}

.ny-mega-course-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--item-accent, #00A3E0);
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.22s ease;
}

.ny-mega-course-item:hover .ny-mega-course-dot {
    transform: scale(1.4);
}
    color: var(--sbi-indigo);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1.5px solid #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ny-mega-badge {
    background: #E0F2FE;
    color: var(--sbi-blue);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
}

.ny-mega-badge-orange {
    background: #FFF7ED;
    color: var(--sbi-orange);
}

.ny-mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ny-mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: #1E293B;
    transition: all 0.18s ease;
}

.ny-mega-link:hover {
    background: #F0F9FF;
    color: var(--sbi-blue);
    transform: translateX(3px);
}

.ny-mega-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: #F1F5F9;
    color: var(--sbi-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.18s ease;
}

.ny-mega-link:hover .ny-mega-icon {
    background: var(--sbi-blue);
    color: #FFFFFF;
}

.ny-mega-text {
    line-height: 1.25;
}

.ny-mega-title {
    font-size: 12.5px;
    font-weight: 800;
    color: #0F172A;
    display: block;
}

.ny-mega-link:hover .ny-mega-title {
    color: var(--sbi-blue);
}

.ny-mega-desc {
    font-size: 11px;
    color: #64748B;
    display: block;
    margin-top: 2px;
}

.ny-mega-promo {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ny-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ny-cbt-nav-btn {
    background: var(--sbi-orange) !important;
    color: #FFFFFF !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 800 !important;
    font-size: 12.5px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    transition: background 0.2s ease !important;
    white-space: nowrap;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(245, 130, 32, 0.35);
}

.ny-cbt-nav-btn:hover {
    background: var(--sbi-orange-hover) !important;
}

.ny-login-nav-btn {
    background: var(--sbi-blue) !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 800 !important;
    font-size: 12.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: background 0.2s ease !important;
    cursor: pointer;
    white-space: nowrap;
}

.ny-login-nav-btn:hover {
    background: var(--sbi-blue-hover) !important;
}

.ny-mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ny-mobile-toggle:hover {
    background: #F58220;
    border-color: #F58220;
}

@media (max-width: 1120px) {
    .ny-desktop-nav {
        display: none !important;
    }
    .ny-mobile-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================================================
   OFFCANVAS MOBILE NAVIGATION DRAWER
   ========================================================================== */
.ny-offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 5, 11, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ny-offcanvas-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ny-offcanvas-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    background: #FFFFFF;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.ny-offcanvas-drawer.is-open {
    transform: translateX(0);
}

body.ny-offcanvas-active {
    overflow: hidden !important;
    touch-action: none;
}

.ny-offcanvas-header {
    background: #02050B;
    border-bottom: 2px solid #F58220;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    flex-shrink: 0;
}
.ny-offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ny-offcanvas-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.ny-offcanvas-brand strong {
    display: block;
    font-size: 13.5px;
    font-weight: 850;
    color: #FFFFFF;
    line-height: 1.2;
}
.ny-offcanvas-brand small {
    display: block;
    font-size: 10px;
    color: #94A3B8;
}
.ny-offcanvas-close-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ny-offcanvas-close-btn:hover {
    background: #EF4444;
    border-color: #EF4444;
    transform: rotate(90deg);
}

.ny-offcanvas-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 16px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    flex-shrink: 0;
}
.ny-offcanvas-act-btn {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ny-offcanvas-act-btn.btn-gold {
    background: #F58220;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
}
.ny-offcanvas-act-btn.btn-call {
    background: #0080FF;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 128, 255, 0.3);
}

.ny-offcanvas-nav-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 14px 20px;
}
.ny-offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ny-offcanvas-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
    color: #1E293B;
    text-decoration: none !important;
    transition: all 0.18s ease;
}
.ny-offcanvas-link i {
    width: 20px;
    color: #64748B;
    font-size: 14px;
    text-align: center;
}
.ny-offcanvas-link:hover, .ny-offcanvas-link.active {
    background: #EFF6FF;
    color: #0080FF;
}
.ny-offcanvas-link.active i, .ny-offcanvas-link:hover i {
    color: #0080FF;
}

/* Accordion Item */
.ny-offcanvas-accordion-item {
    border-radius: 10px;
    overflow: hidden;
}
.ny-offcanvas-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 750;
    color: #1E293B;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s ease;
}
.ny-offcanvas-accordion-btn span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.ny-offcanvas-accordion-btn span i {
    width: 20px;
    color: #64748B;
    font-size: 14px;
    text-align: center;
}
.ny-offcanvas-accordion-btn:hover {
    background: #F8FAFC;
    color: #0080FF;
}
.ny-acc-chevron {
    font-size: 11px;
    color: #94A3B8;
    transition: transform 0.25s ease;
}
.ny-offcanvas-accordion-item.is-open .ny-acc-chevron {
    transform: rotate(180deg);
    color: #0080FF;
}
.ny-offcanvas-accordion-item.is-open .ny-offcanvas-accordion-btn {
    background: #F0F9FF;
    color: #0080FF;
}
.ny-offcanvas-sub-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 8px 18px;
    border-left: 2px solid #BAE6FD;
    margin-left: 20px;
    margin-top: 4px;
    margin-bottom: 6px;
}
.ny-offcanvas-accordion-item.is-open .ny-offcanvas-sub-menu {
    display: flex;
}
.ny-offcanvas-sub-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 650;
    color: #475569;
    text-decoration: none !important;
    transition: all 0.15s ease;
}
.ny-offcanvas-sub-menu a:hover {
    background: #EFF6FF;
    color: #0080FF;
    transform: translateX(3px);
}

.ny-offcanvas-footer {
    padding: 14px 16px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    flex-shrink: 0;
}
.ny-offcanvas-contact-box {
    font-size: 11.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 8px;
}
.ny-offcanvas-meta {
    font-size: 10px;
    color: #94A3B8;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   2. HERO SECTION - SOLID SBI INDIGO BANNER
   ========================================================================== */
.ny-hero {
    background: var(--sbi-indigo);
    border-bottom: 4px solid var(--sbi-orange);
    position: relative;
    padding: 70px 0 90px 0;
    color: #FFFFFF;
}

.ny-aurora-1, .ny-aurora-2 {
    display: none !important;
}

.ny-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

@media (max-width: 992px) {
    .ny-hero-grid {
        grid-template-columns: 1fr;
    }
}

.ny-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 800;
    color: #BAE6FD;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ny-hero-title {
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.ny-hero-title .text-gold {
    color: #FDBA74 !important;
}

.ny-hero-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #E2E8F0;
    max-width: 580px;
    margin-bottom: 32px;
}

.ny-hero-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.ny-btn-gold {
    background: var(--sbi-orange);
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.4);
    transition: background 0.2s ease, transform 0.15s ease;
}

.ny-btn-gold:hover {
    background: var(--sbi-orange-hover);
    transform: translateY(-2px);
}

.ny-btn-glass {
    background: var(--sbi-blue);
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 163, 224, 0.35);
    transition: background 0.2s ease, transform 0.15s ease;
}

.ny-btn-glass:hover {
    background: var(--sbi-blue-hover);
    transform: translateY(-2px);
}

/* KPI Numbers Strip */
.ny-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.ny-kpi-box strong {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.05;
    font-family: var(--font-heading);
    display: block;
}

.ny-kpi-box span {
    font-size: 11px;
    color: #BAE6FD;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3px;
    display: block;
}

/* ==========================================================================
   3. HERO COCKPIT COMMAND WIDGET (SOLID WHITE CARD)
   ========================================================================== */
.ny-cockpit-card {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    color: var(--text-primary);
}

.ny-cockpit-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 14px;
}

.ny-cockpit-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--sbi-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.ny-cockpit-verify-box {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 14px;
}

/* Document Type Tab Switcher (5 Items: ID Card, Enrollment, Admit Card, Marksheet, Certificate) */
.ny-vtab-pills {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    background: #F1F5F9;
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #E2E8F0;
}
.ny-vtab-pill {
    padding: 6px 2px;
    border-radius: 7px;
    border: none;
    background: transparent;
    font-size: 10.5px;
    font-weight: 750;
    color: #475569;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.ny-vtab-pill:hover {
    color: #0F172A;
    background: rgba(255, 255, 255, 0.6);
}
.ny-vtab-pill.active {
    background: #FFFFFF;
    color: #0080FF;
    font-weight: 850;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

/* Dual Input Grid for ROLL & NO. */
.ny-roll-no-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
    margin-bottom: 10px;
}
@media (max-width: 480px) {
    .ny-roll-no-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .ny-vtab-pills {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
}

.ny-input-label {
    display: block;
    font-size: 10.5px;
    font-weight: 850;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.ny-input-wrap {
    position: relative;
}
.ny-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0080FF;
    font-size: 13px;
    pointer-events: none;
}
.ny-input-wrap input {
    width: 100%;
    height: 42px;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    padding: 0 10px 0 34px;
    font-size: 12.5px;
    font-weight: 700;
    color: #0F172A;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.ny-input-wrap input:focus {
    border-color: #0080FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.15);
}
.ny-input-wrap input.uppercase-input {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   4. COLORFUL & ANIMATED 4-PILLAR ACTION HUB
   ========================================================================== */
.ny-hub-section {
    margin-top: -38px;
    position: relative;
    z-index: 30;
    margin-bottom: 60px;
}

.ny-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 1024px) {
    .ny-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .ny-hub-grid {
        grid-template-columns: 1fr;
    }
}

.ny-hub-tile {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(10, 6, 32, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ny-hub-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color, #00A3E0);
    transition: height 0.25s ease;
}

.ny-hub-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 6, 32, 0.14);
    border-color: var(--card-color, #00A3E0);
}

.ny-hub-tile:hover::before {
    height: 6px;
}

.ny-hub-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ny-hub-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--card-bg, #F0F9FF);
    color: var(--card-color, #00A3E0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.ny-hub-tile:hover .ny-hub-icon-wrap {
    background: var(--card-color, #00A3E0);
    color: #FFFFFF;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ny-hub-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--card-bg, #F0F9FF);
    color: var(--card-color, #00A3E0);
    border: 1px solid currentColor;
}

.ny-hub-title {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 6px 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.ny-hub-tile:hover .ny-hub-title {
    color: var(--card-color, #00A3E0);
}

.ny-hub-desc {
    font-size: 12.5px;
    color: #64748B;
    margin: 0 0 16px 0;
    line-height: 1.45;
}

.ny-hub-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
    font-size: 12px;
    font-weight: 800;
    color: var(--card-color, #00A3E0);
}

.ny-hub-action i {
    transition: transform 0.2s ease;
}

.ny-hub-tile:hover .ny-hub-action i {
    transform: translateX(4px);
}

/* ==========================================================================
   5. COURSES MATRIX
   ========================================================================== */
.ny-courses-section {
    padding: 30px 0 70px 0;
}

.ny-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.ny-section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    color: var(--sbi-blue);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.ny-section-title {
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--sbi-indigo);
}

.ny-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ny-course-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 3.5px solid var(--sbi-indigo);
    transition: all 0.2s ease;
}

.ny-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--sbi-blue);
}

/* ==========================================================================
   6. CBT ONLINE EXAM SPOTLIGHT BANNER
   ========================================================================== */
.ny-cbt-banner {
    background: var(--sbi-indigo);
    border: 2px solid var(--sbi-blue);
    border-radius: var(--radius-lg);
    padding: 38px 40px;
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
    margin: 40px 0 70px 0;
}

/* ==========================================================================
   7. ABOUT & PILLARS SECTION
   ========================================================================== */
.ny-about-section {
    background: #FFFFFF;
    padding: 70px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ny-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .ny-about-grid {
        grid-template-columns: 1fr;
    }
}

.ny-facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0;
}

.ny-facility-card {
    background: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* ==========================================================================
   8. PAN-INDIA CENTRES NETWORK
   ========================================================================== */
.ny-centres-banner {
    background: var(--sbi-indigo);
    border: 2px solid var(--sbi-blue);
    border-radius: var(--radius-lg);
    padding: 45px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .ny-centres-banner {
        grid-template-columns: 1fr;
        padding: 28px;
    }
}

/* ==========================================================================
   9. FRANCHISE PARTNER APPLICATION
   ========================================================================== */
.ny-franchise-section {
    padding-bottom: 70px;
}

.ny-franchise-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
    .ny-franchise-shell {
        grid-template-columns: 1fr;
    }
}

.ny-franchise-visual {
    position: relative;
    min-height: 440px;
}

.ny-franchise-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ny-franchise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(25, 0, 73, 0.95));
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #FFFFFF;
}

.ny-franchise-form-wrap {
    padding: 40px 36px;
}

.ny-form-group {
    margin-bottom: 14px;
}

.ny-form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--sbi-indigo);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.ny-form-input {
    width: 100%;
    height: 46px;
    background: #F8FAFC;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    font-size: 13.5px;
    color: #0F172A;
    transition: all 0.2s ease;
}

.ny-form-input:focus {
    border-color: var(--sbi-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.2);
    background: #FFFFFF;
}

/* ==========================================================================
   10. SOLID SBI INDIGO FOOTER
   ========================================================================== */
.ny-footer {
    background: var(--sbi-indigo-dark);
    border-top: 4px solid var(--sbi-orange);
    color: #CBD5E1;
    padding: 55px 0 28px 0;
}

.ny-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

@media (max-width: 992px) {
    .ny-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .ny-footer-top {
        grid-template-columns: 1fr;
    }
}

.ny-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
}

.ny-dev-pill {
    background: var(--sbi-blue) !important;
    color: #FFFFFF !important;
    padding: 5px 15px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 163, 224, 0.4) !important;
}

.ny-dev-pill:hover {
    background: var(--sbi-blue-hover) !important;
}

/* ==========================================================================
   11. ANIMATED ROLE-BASED LOGIN MODAL SYSTEM
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active,
.modal[style*="display: flex"] {
    display: flex !important;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 32, 0.78);
    backdrop-filter: blur(8px);
    animation: modalBackdropFadeIn 0.3s ease-out;
}

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

.modal-card {
    position: relative;
    z-index: 10;
    background: #FFFFFF;
    color: #0F172A;
    border: 2px solid #00A3E0;
    border-radius: 20px;
    max-width: 500px;
    width: 92%;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 35px rgba(0, 163, 224, 0.2);
    animation: modalSlideUpScale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUpScale {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #64748B;
    font-size: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.modal-close:hover {
    background: #F1F5F9;
    color: #EF4444;
    transform: rotate(90deg) scale(1.1);
}

/* Modal 4-Card Interactive Grid */
.ny-login-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
}

.ny-login-card {
    position: relative;
    padding: 18px 16px;
    border-radius: 14px;
    text-decoration: none !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    user-select: none;
}

.ny-login-card i {
    font-size: 26px;
    display: block;
    margin-bottom: 9px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ny-login-card strong {
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ny-login-card small {
    font-size: 11px;
    display: block;
    line-height: 1.3;
}

/* Hover Shimmer & Lift Animation on Every Card */
.ny-login-card:hover {
    transform: translateY(-6px) scale(1.03);
}

.ny-login-card:hover i {
    transform: scale(1.18) translateY(-2px);
}

.ny-login-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* Card 1: Admin Control (Deep Indigo) */
.ny-login-card-admin {
    background: #280071;
    color: #FFFFFF;
    border: 1.5px solid rgba(245, 130, 32, 0.3);
}
.ny-login-card-admin i { color: #F58220; }
.ny-login-card-admin small { color: #BAE6FD; }
.ny-login-card-admin:hover {
    background: linear-gradient(145deg, #32008E 0%, #20005C 100%);
    box-shadow: 0 14px 30px rgba(40, 0, 113, 0.5), 0 0 0 2px rgba(245, 130, 32, 0.8);
    color: #FFFFFF !important;
}

/* Card 2: Study Centre (Vibrant SBI Cyan) */
.ny-login-card-center {
    background: #00A3E0;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.ny-login-card-center i { color: #FFFFFF; }
.ny-login-card-center small { color: #E0F2FE; }
.ny-login-card-center:hover {
    background: linear-gradient(145deg, #02B5F8 0%, #0088BC 100%);
    box-shadow: 0 14px 30px rgba(0, 163, 224, 0.5), 0 0 0 2px #00A3E0;
    color: #FFFFFF !important;
}

/* Card 3: Student Portal (Crisp Light Indigo/Slate) */
.ny-login-card-student {
    background: #F0F4F8;
    border: 1.5px solid #CBD5E1;
    color: #280071;
}
.ny-login-card-student i { color: #280071; }
.ny-login-card-student small { color: #64748B; }
.ny-login-card-student:hover {
    background: #FFFFFF;
    border-color: #00A3E0;
    box-shadow: 0 14px 30px rgba(40, 0, 113, 0.18), 0 0 0 2px #00A3E0;
    color: #280071 !important;
}
.ny-login-card-student:hover i {
    color: #00A3E0;
}

/* Card 4: Teacher Login (Warm Amber Glow) */
.ny-login-card-teacher {
    background: #FFF7ED;
    border: 1.5px solid #FDBA74;
    color: #9A3412;
}
.ny-login-card-teacher i { color: #F58220; }
.ny-login-card-teacher small { color: #C2410C; }
.ny-login-card-teacher:hover {
    background: #FFFBEB;
    border-color: #F58220;
    box-shadow: 0 14px 30px rgba(245, 130, 32, 0.4), 0 0 0 2px #F58220;
    color: #9A3412 !important;
}
.ny-login-card-teacher:hover i {
    color: #EA580C;
    transform: scale(1.2) rotate(-5deg);
}

/* ==========================================================================
   12. ULTRA-LUXURY CIRCULAR ANIMATED FLOATING WHATSAPP & CALL SYSTEM
   ========================================================================== */
.floating-contact-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.floating-contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    position: relative;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

/* 1. Animated Circular WhatsApp Button */
.floating-contact-btn.btn-wa-circle {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
    animation: waRadarPulse 2.4s infinite ease-in-out;
}

.floating-contact-btn.btn-wa-circle i {
    font-size: 28px;
    color: #FFFFFF !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-contact-btn.btn-wa-circle:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.75);
    animation: none;
}

.floating-contact-btn.btn-wa-circle:hover i {
    transform: rotate(-12deg) scale(1.1);
}

/* Radar Pulse Animation */
@keyframes waRadarPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75), 0 8px 25px rgba(37, 211, 102, 0.55);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 12px 28px rgba(37, 211, 102, 0.65);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.55);
        transform: scale(1);
    }
}

/* 2. Coordinated Circular Call Button */
.floating-contact-btn.btn-call-circle {
    background: linear-gradient(135deg, #00A3E0 0%, #280071 100%);
    color: #FFFFFF !important;
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.45);
}

.floating-contact-btn.btn-call-circle i {
    font-size: 20px;
    color: #FFFFFF !important;
    transition: transform 0.3s ease;
}

.floating-contact-btn.btn-call-circle:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 14px 32px rgba(40, 0, 113, 0.6);
}

.floating-contact-btn.btn-call-circle:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Backward compatibility for .floating-contact.whatsapp */
.floating-contact.whatsapp {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55) !important;
    animation: waRadarPulse 2.4s infinite ease-in-out !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.floating-contact.whatsapp span {
    display: none !important;
}

.floating-contact.whatsapp i {
    font-size: 28px !important;
    margin: 0 !important;
}

.floating-contact.whatsapp:hover {
    transform: scale(1.15) translateY(-3px) !important;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.75) !important;
    animation: none !important;
}

.floating-contact.call {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00A3E0 0%, #280071 100%) !important;
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.45) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.floating-contact.call:hover {
    transform: scale(1.15) translateY(-3px) !important;
    box-shadow: 0 14px 32px rgba(40, 0, 113, 0.6) !important;
}

/* ==========================================================================
   13. COMPREHENSIVE MOBILE RESPONSIVE ENHANCEMENTS
   ========================================================================== */
@media (max-width: 768px) {
    /* Header & Brand Sizing */
    .ny-top-strip {
        font-size: 11px;
        padding: 5px 0;
    }
    .ny-top-links {
        gap: 10px;
        font-size: 11px;
    }
    .ny-brand-logo-img {
        width: 42px;
        height: 42px;
        padding: 2px;
    }
    .ny-brand-title-box .sup {
        font-size: 10.5px;
        letter-spacing: 0.1em;
    }
    .ny-brand-title-box .main {
        font-size: 15px;
    }
    .ny-brand-title-box .sub {
        font-size: 8px;
    }
    .ny-nav-login-btn {
        padding: 6px 12px !important;
        font-size: 11.5px !important;
    }

    /* Floating Buttons */
    .floating-contact-group {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }
    .floating-contact-btn {
        width: 46px;
        height: 46px;
    }
    .floating-contact-btn.btn-wa-circle i {
        font-size: 24px;
    }
    .floating-contact-btn.btn-call-circle i {
        font-size: 18px;
    }

    /* Verification Tables & Result Containers */
    .table-responsive, .ny-table-wrap, table {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .ny-brand-title-box .sub {
        display: none;
    }
    .ny-brand-link {
        gap: 10px;
    }
    .ny-brand-logo-img {
        width: 38px;
        height: 38px;
    }
    .ny-brand-title-box .main {
        font-size: 13.5px;
    }
    .ny-top-strip-inner {
        justify-content: center;
    }
    .ny-header-actions {
        gap: 6px;
    }
}


