@media (max-width: 1024px) {
    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stream-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= STREAM GRID ================= */

.stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stream-card {
    padding: 35px 30px;
    background: linear-gradient(145deg, #ffffff, #e6f0ff);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(28,63,143,0.1);
    transition: all 0.5s cubic-bezier(.19,1,.22,1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(28,63,143,0.2);
}

.stream-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 70px rgba(28,63,143,0.2);
}
.stream-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.stream-card:hover::after {
    transform: translateX(100%);
}

.stream-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stream-header h4 {
    margin: 0;
    font-size: 24px;
    color: #1c3f8f;
}

.stream-header i {
    font-size: 28px;
    color: #274fd3;
    transition: transform 0.4s ease;
}

.stream-card:hover .stream-header i {
    transform: rotate(15deg) scale(1.2);
}

.stream-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.stream-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #1c3f8f, #274fd3);
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(28,63,143,0.3);
}

.stream-btn i {
    margin-left: 8px;
    transition: transform 0.4s ease;
}

.stream-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(28,63,143,0.4);
}

.stream-btn:hover i {
    transform: translateX(5px);
}



/* ================= STATS SECTION ================= */

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.stat-box h2 {
    font-size: 48px;
    color: #1c3f8f;
    font-weight: 800;
}

.stat-box p {
    margin-top: 10px;
    font-weight: 600;
    color: #555;
}
.stat-box{
    padding-bottom: 40px;
}


/* ================= NEXT LEVEL HERO ================= */

.page-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: url(Images/campus.jpeg) center/cover no-repeat fixed;
}
/* ================= PAGE CONTENT ================= */

.page-content {
    max-width: 1100px;
    margin: 120px auto 80px;
    padding: 0 30px;
    line-height: 1.8;
    color: #1a1a1a;
    position: relative;
}


/* Headings */
/* ================= LARGE BACKGROUND ACCENT TEXT ================= */

.page-content h3 {
    font-size: 32px;
    margin: 80px 0 25px;
    position: relative;
    font-weight: 800;
    color: #1c3f8f;
    z-index: 2;
}
/* ================= EDITORIAL VERTICAL ACCENT ================= */

.page-content::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 4px;
    height: 0;
    transition: height 1.2s ease;
    background: linear-gradient(#1c3f8f,#274fd3);
    border-radius: 10px;
    opacity: 0.15;
}
.page-content.line-active::before {
    height: 100%;
}
.page-content > .content-block:nth-of-type(even) {
    background: linear-gradient(
        120deg,
        #ffffff,
        #f5f9ff,
        #ffffff
    );
    background-size: 200% 200%;
    animation: subtleShift 12s ease infinite;
}

@keyframes subtleShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.page-content h3::before {
    content: attr(data-bg);
    position: absolute;
    left: 0;
    top: -45px;

    font-size: 80px;
    font-weight: 900;
    letter-spacing: 2px;

    color: rgba(28,63,143,0.05);
    text-transform: uppercase;

    z-index: -1;
    pointer-events: none;
}


.page-content h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,#1c3f8f,#274fd3);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 4px;
}

.page-content h4 {
    font-size: 22px;
    margin: 40px 0 15px;
    font-weight: 700;
    color: #274fd3;
}

/* Paragraphs */
.page-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #444;
}
.page-content p,
.page-content ul li {
    cursor: text; /* shows normal I-beam over text */
}

.page-content p,
.page-content li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}
.page-content ul li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

/* Staggering with nth-child */
.page-content ul li:nth-child(1) { animation-delay: 0.1s; }
.page-content ul li:nth-child(2) { animation-delay: 0.2s; }
.page-content ul li:nth-child(3) { animation-delay: 0.3s; }
.page-content ul li:nth-child(4) { animation-delay: 0.4s; }
.page-content ul li:nth-child(5) { animation-delay: 0.5s; }


/* Lists */
.page-content ul {
    margin: 20px 0 30px 20px;
    padding-left: 20px;
}
.page-content ul li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(39,79,211,0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
    border-radius: 4px;
}

.page-content ul li:hover::after {
    transform: translateX(100%);
}


.page-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    padding-left: 10px;

    /* Smooth hover */
    transition: transform 0.5s cubic-bezier(.22,1,.36,1), 
                color 0.5s cubic-bezier(.22,1,.36,1),
                opacity 0.5s ease,
                background 0.5s ease;
}

/* Hover */
.page-content ul li:hover {
    transform: translateX(10px) scale(1.05);
    color: #274fd3;
}
@media (hover: none) {
    .content-block:hover,
    .stream-card:hover,
    .page-content ul li:hover {
        transform: none;
        box-shadow: none;
    }
}


.page-content ul li::marker {
    color: #1c3f8f;
    font-weight: bold;
}

/* Section separation */
.page-content h3:not(:first-child) {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
/* ================= CONTENT BLOCK (LEVEL 1 UPGRADE) ================= */


.content-block h3 {
    margin-top: 0;
}

@keyframes shadowPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(28,63,143,0.1); }
    50% { box-shadow: 0 30px 80px rgba(28,63,143,0.15); }
}


.content-block {
    background: #ffffff;
    padding: 60px 70px;
    position: relative;
    border-radius: 20px;
    margin-bottom: 80px;

    box-shadow: 
        0 20px 60px rgba(0,0,0,0.05),
        0 5px 20px rgba(28,63,143,0.03);

    transition: transform 0.6s cubic-bezier(.22,1,.36,1),
                box-shadow 0.6s cubic-bezier(.22,1,.36,1),
                background 0.6s ease;
        animation: shadowPulse 6s ease-in-out infinite;
}
.page-content ul li {
    transition-delay: 0s;
}
.page-content ul li:nth-child(1):hover { transition-delay: 0s; }
.page-content ul li:nth-child(2):hover { transition-delay: 0.05s; }
.page-content ul li:nth-child(3):hover { transition-delay: 0.1s; }
.page-content ul li:nth-child(4):hover { transition-delay: 0.15s; }

.content-block:hover {
   transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 90px rgba(28,63,143,0.15), 0 15px 35px rgba(28,63,143,0.1);
    background: linear-gradient(145deg, #ffffff, #e6f0ff);
    transition: all 0.5s cubic-bezier(.19,1,.22,1);
}
.content-block:hover h3 {
    color: #274fd3;
    transform: translateY(-3px);
    transition: color 0.4s ease, transform 0.4s ease;
}

.content-block:hover p,
.content-block:hover ul li {
    color: #1c3f8f;
    transition: color 0.4s ease;
}
.content-block::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(28,63,143,0.3), transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}





/* DARK GLASS OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.7),
        rgba(28,63,143,0.65),
        rgba(0,0,0,0.75)
    );
    backdrop-filter: blur(6px);
    animation: overlayMove 10s ease infinite alternate;
}

@keyframes overlayMove {
    0% { opacity: 0.85; }
    100% { opacity: 0.7; }
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    animation: heroReveal 1.4s cubic-bezier(.19,1,.22,1);
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* TITLE SHIMMER */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #8db8ff, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1c3f8f, #274fd3);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
    text-decoration: none;
    color: white;
}

.hero-btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(0,32,173,0.5);
}

/* FLOATING PARTICLES */
.particles::before,
.particles::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: floatParticles 40s linear infinite;
}

.particles::after {
    animation-direction: reverse;
    opacity: 0.5;
}

@keyframes floatParticles {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 3px;
    height: 40px;
    background: white;
    animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}



/* =========================
DARK BLUE SCROLLBAR
========================= */


/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #0d1117; /* dark base */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    270deg,
    #0f1c3f,
    #1c3f8f,
    #274fd3,
    #0f1c3f
  );
  background-size: 400% 400%;
  animation: scrollGlow 6s ease infinite;
}

@keyframes scrollGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #1c3f8f,
    #274fd3,
    #6b9cff
  );
  box-shadow: 
    0 0 18px rgba(31,79,163,0.7),
    inset 0 0 8px rgba(255,255,255,0.2);
}



/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    
    background: #f8faff;
    animation: pageFade 0.8s ease;
    overflow-x: hidden;
    
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================= NAVBAR ================= */


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.1);

    transition: all 0.4s ease;
}
.navbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.8s ease;
}

.navbar:hover::after {
    transform: translateX(100%);
}

.navbar.scrolled {
    height: 110px;
    background: rgba(1, 28, 102, 0.844);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
/* Navbar text default (over hero) */
.navbar .college-text h1,
.navbar .college-text p,
.nav-menu a {
    color: white;
}

/* When scrolled */
.navbar.scrolled .college-text h1,
.navbar.scrolled .college-text p,
.navbar.scrolled .nav-menu a {
    color: #ffffff;
}



/* LEFT SIDE */

.nav-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-left img{
    height:100px;

}
img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* RIGHT MENU */

.nav-menu {
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(8px);
    animation: navItemReveal 0.6s ease-out forwards;
}


/* Nav reveal animation */
@keyframes navItemReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger animation */
.nav-menu a:nth-child(1) { animation-delay: 0.35s; }
.nav-menu a:nth-child(2) { animation-delay: 0.42s; }
.nav-menu a:nth-child(3) { animation-delay: 0.49s; }
.nav-menu a:nth-child(4) { animation-delay: 0.56s; }
.nav-menu a:nth-child(5) { animation-delay: 0.63s; }
.nav-menu a:nth-child(6) { animation-delay: 0.70s; }
.nav-menu a:nth-child(7) { animation-delay: 0.77s; }
.nav-menu a:nth-child(8) { animation-delay: 0.84s; }
.nav-menu a:nth-child(9) { animation-delay: 0.91s; }

/* Gradient capsule */
.nav-menu a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c3f8f, #274fd3);
    background-size: 200% 200%;
    transition: 0.6s cubic-bezier(.19,1,.22,1);
    opacity: 0;
    z-index: -1;
}

/* Glow border */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,#8db8ff,#ffffff);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

/* Hover */
.nav-menu a:hover {
    color: #ffffff;
    transform: scale(1.08);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
    background-position: 100% 50%;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    opacity: 1;
    box-shadow:
        0 6px 20px rgba(28,63,143,0.25),
        0 15px 40px rgba(28,63,143,0.18);
}

.nav-menu a.active {
    color: white;
    font-weight: 700;
}
.nav-menu a:hover::after {
    width: 60%;
}



/* ================= PREMIUM FOOTER ================= */

.premium-footer {
    color: #dbeafe;
    padding: 80px 100px 40px;
    background: linear-gradient(270deg, #0f1f3d, #02101f, #0f1f3d);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}
/* FOOTER COLUMN REVEAL STAGGER */
.footer-column {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(.19,1,.22,1);
}

.footer-column.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay */
.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }
.footer-column:nth-child(4) { transition-delay: 0.4s; }

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #3a6df0;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-column ul li:hover {
    
    opacity: 1;
    transform: translateX(5px);
    color: white;
    
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}


/* ================= REVEAL SYSTEM ================= */

.reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(60px) scale(0.95);
    transition:
        opacity 0.9s cubic-bezier(0.22,1,0.36,1),
        transform 0.9s cubic-bezier(0.22,1,0.36,1),
        filter 0.9s ease;
}

/* Directions */
.reveal[data-reveal="left"] {
    transform: translateX(-80px) scale(0.95);
}

.reveal[data-reveal="right"] {
    transform: translateX(80px) scale(0.95);
}

.reveal[data-reveal="bottom"] {
    transform: translateY(80px) scale(0.95);
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) translateY(0) scale(1);
    transition-delay: 0.1s;
}
.reveal.active h3::before {
    transform: translateY(0);
    opacity: 1;
}

.page-content h3::before {
    transform: translateY(20px);
    opacity: 0;
    transition: 0.8s cubic-bezier(.19,1,.22,1);
}

.notification-card:nth-child(1) { transition-delay: 0.1s; }
.notification-card:nth-child(2) { transition-delay: 0.2s; }
.notification-card:nth-child(3) { transition-delay: 0.3s; }
.notification-card:nth-child(4) { transition-delay: 0.4s; }
/* ================= FOOTER SOCIALS ================= */

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.footer-socials .social i {
    position: relative;
    z-index: 1;
}
.footer-socials .social:hover::before {
    transform: scale(1);
}

.footer-socials .social {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(.19,1,.22,1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}


/* Individual colors */

.social.facebook { color: #1877f2; }
.social.youtube { color: #ff0000; }
.social.instagram { color: #e1306c; }
.social.linkedin { color: #0077b5; }

/* HOVER ANIMATION */
.footer-socials a {
    text-decoration: none;
}
.premium-footer a {
    text-decoration: none;
}

.footer-socials .social:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.footer-socials .social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    transform: scale(0);
    transition: 0.4s ease;
    border-radius: 12px;
    z-index: 0;
}
@keyframes floatSocial {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

.footer-socials .social {
    animation: floatSocial 4s ease-in-out infinite;
}

.footer-socials .social:nth-child(2) { animation-delay: 0.5s; }
.footer-socials .social:nth-child(3) { animation-delay: 1s; }
.footer-socials .social:nth-child(4) { animation-delay: 1.5s; }


/* ================= CINEMATIC PARALLAX UPGRADE ================= */
html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 100px 0;
    border-radius: 20px;
}

/* Dark cinematic gradient overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.75),
        rgba(10,25,80,0.65),
        rgba(0,0,0,0.8)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Centered content */
.parallax-content {
    text-align: center;
    color: white;
    max-width: 800px;
    animation: fadeUpHero 1.2s ease forwards;
}

/* Small category tag */
.parallax-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Big dramatic heading */
.parallax h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;

    background: linear-gradient(90deg,#ffffff,#8db8ff,#ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shimmer 6s linear infinite;
}

/* Supporting text */
.parallax p {
    font-size: 18px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Subtle zoom-in background effect */
.parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
    z-index: -1;
}

.parallax:hover::after {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .parallax h2 {
        font-size: 34px;
    }

    .parallax p {
        font-size: 16px;
    }
}


/* ================= MOBILE NAV ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

/* Tablet */
@media (max-width: 1024px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-menu {
        gap: 5px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 8px 14px;
    }
}
@media (max-width: 1024px) {
    .navbar {
        height: 90px;
    }

    .nav-left img {
        height: 75px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .navbar {
        height: 80px;
        padding: 0 20px;
    }

    .nav-left img {
        height: 60px;
    }

    .college-text h1 {
        font-size: 14px;
    }

    .college-text p {
        font-size: 11px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(1, 28, 102, 0.844);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        gap: 25px;
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media (max-width: 768px) {

    .page-hero {
         height: 75svh; /* better than 100vh on mobile */
        min-height: 500px;
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }

      .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
    }




    .hero-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    .page-content {
        margin: 100px auto 60px;
        padding: 0 20px;
    }

    .content-block {
        padding: 30px 25px;
        margin-bottom: 50px;
    }

    .page-content h3 {
        font-size: 24px;
    }

    .page-content h3::before {
        font-size: 45px;
        top: -25px;
    }

    .page-content p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (hover: none) and (pointer: coarse) {
    .page-hero {
        background-attachment: scroll;
        height: 85vh;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .premium-footer {
        padding: 60px 30px 30px;
    }
}
@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {

    .stream-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stream-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .stream-header h4 {
        font-size: 20px;
    }

    .stream-card p {
        font-size: 14px;
    }

    .stream-btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 18px;
    }
}
@media (max-width: 768px) {

    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 60px 20px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 14px;
    }
    .stat-box {
    width: 100%;
    max-width: 300px;
}
}