/* All your existing CSS code goes here */
@import url('https://fonts.cdnfonts.com/css/transformers-2');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/blanka');


/* Hide scrollbar but allow scrolling */
::-webkit-scrollbar {
    display: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Mono', monospace;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: white;
    background-color: #000;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* Navbar Styles */
.navbars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbars-main {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbars-main.scrolled {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(125, 227, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbars-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbars-logo-img {
    height: 35px;
    transition: all 0.3s ease;
}

.navbars-main.scrolled .navbars-logo-img {
    height: 35px;
}

.navbars-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbars-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbars-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7ee3ff, #8f51ea);
    transition: width 0.4s ease;
}

.navbars-link:hover::after {
    width: 100%;
}

.navbars-link:hover {
    color: #7ee3ff;
    text-shadow: 0 0 10px rgba(126, 227, 255, 0.5);
}

/* Active state for desktop links */
.navbars-link.active {
    color: #7ee3ff;
    text-shadow: 0 0 10px rgba(126, 227, 255, 0.5);
}

.navbars-link.active::after {
    width: 100%;
}

.navbars-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    z-index: 1001;
    transition: color 0.3s ease;
    margin-right: 20px;
}

.navbars-menu-btn:hover {
    color: #7ee3ff;
}

.navbars-close-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    z-index: 1001;
    transition: color 0.3s ease;
    margin-right: 20px;
}

.navbars-close-btn:hover {
    color: #7ee3ff;
}

/* Mobile Nav */
.navbars-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.navbars-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.navbars-mobile-link {
    color: white;
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0.8rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    text-transform: uppercase;
}

.navbars-mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7ee3ff, #8f51ea);
    transition: width 0.4s ease;
}

.navbars-mobile-link:hover::after {
    width: 100%;
}

.navbars-mobile-link:hover {
    color: #7ee3ff;
    transform: translateX(10px);
}

/* Active state for mobile links */
.navbars-mobile-link.active {
    color: #7ee3ff;
    text-shadow: 0 0 10px rgba(126, 227, 255, 0.5);
}

.navbars-mobile-link.active::after {
    width: 100%;
}

/* Responsive Styles for Navbar */
@media (max-width: 1024px) {
    .navbars-links {
        gap: 2rem;
    }

    .navbars-link {
        font-size: 1.3rem;
    }
}

/* FIXED: Changed from 768px to 900px to prevent mobile nav on small laptops */
@media (max-width: 900px) {
    .navbars-links {
        display: none;
    }

    .navbars-menu-btn {
        display: block;
    }

    .navbars-logo-img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .navbars-main {
        padding: 1.2rem;
    }

    .navbars-main.scrolled {
        padding: 0.9rem 1.2rem;
    }

    .navbars-close-btn {
        color: white;
    }

    .navbars-logo-img {
        height: 32px;
    }

    .navbars-mobile-link {
        font-size: 1.8rem;
    }
}

/* Show close button and hide menu button when mobile nav is active */
.navbars-mobile.active~.navbars-main .navbars-menu-btn {
    display: none;
}

.navbars-mobile.active~.navbars-main .navbars-close-btn {
    display: block;
}

/* MLH Badge Styles - FIXED FOR MOBILE */
#mlh-trust-badge {
    display: block;
    max-width: 100px;
    min-width: 60px;
    position: fixed;
    top: 0;
    width: 10%;
    z-index: 10000;
}

/* Desktop positioning */
#mlh-trust-badge {
    right: 50px;
}

/* Mobile positioning */
@media (max-width: 900px) {
    #mlh-trust-badge {
        left: 10px;
        right: auto;
        width: 80px;
        max-width: 80px;
    }

    .navbars-menu-btn,
    .navbars-close-btn {
        margin-right: 10px;
        margin-left: auto;
        /* Push to the right */
    }

    .navbars-logo {
        margin-left: 80px;
        /* Make space for MLH badge */
    }
}

@media (max-width: 480px) {
    #mlh-trust-badge {
        left: 5px;
        width: 70px;
        max-width: 70px;
    }

    .navbars-logo {
        margin-left: 70px;
        /* Adjust space for smaller badge */
    }
}

/* starfield background starts */
.starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* starfield background ends */

/* cursor code starts */
.cursor-target {
    background: transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: none;
}

.cursor-target:hover {
    background: transparent;
    transform: scale(1.05);
}

.target-cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.target-cursor-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.target-cursor-corner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    will-change: transform;
}

.corner-tl {
    transform: translate(-150%, -150%);
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    transform: translate(50%, -150%);
    border-left: none;
    border-bottom: none;
}

.corner-br {
    transform: translate(50%, 50%);
    border-left: none;
    border-top: none;
}

.corner-bl {
    transform: translate(-150%, 50%);
    border-right: none;
    border-top: none;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    .cursor-target {
        cursor: pointer;
    }

    .target-cursor-wrapper {
        display: none;
    }
}

/* cursor code ends */

/*Home section starts*/
.home-main-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;

}

.home-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 40px;
}

.home-title-container {
    text-align: center;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-hud-title {
    color: white;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    font-family: 'Transformers', sans-serif;
    margin: 0;
    line-height: 1;
    font-size: 6rem;
}

.home-title-text {
    color: white;
    font-family: 'Teko', sans-serif;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.home-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 25;
}

/* Button Container */
.home-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1000;
    padding: 0 20px;
    box-sizing: border-box;
}

.home-button-row {
    display: flex;
    width: 100%;
    gap: 16px;
    justify-content: center;
}

.home-button-row .home-hud-button {
    flex: 1;
    min-width: 0;
}

.home-galaxy-button,
.home-new-button-wrapper {
    position: relative;
    z-index: 1001;
    width: 100%;
}

/* Space Button Wrapper */
.home-space-btn-wrapper {
    width: 90%;
    display: flex;
    justify-content: center;
    z-index: 1001;
    gap: 16px;
}

/* Timer Styles */
.home-timer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    z-index: 1000;
}

.home-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.home-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.home-timer-unit:hover {
    transform: translateY(-5px);
}

.home-timer-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.home-timer-label {
    font-size: 0.9rem;
    color: #c7c7c7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-family: 'Teko', sans-serif;
}

/* Galaxy Button Styles */
.home-galaxy-button {
    position: relative;
    height: 3rem;
    flex: 1;
    min-width: 0;
    z-index: 1002;
    touch-action: manipulation;
}

.home-galaxy-button .home-text {
    translate: 2% -6%;
    letter-spacing: 0.01ch;
    color: hsl(0 0% calc(60% + (var(--active, 0) * 26%)));
    z-index: 1003;
    padding: 0 34px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    pointer-events: none;
}

.home-space-button {
    --cut: 0.1em;
    --active: 0;
    --bg: radial-gradient(120% 120% at 126% 126%,
            hsl(0 calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%,
            transparent 50%) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
        radial-gradient(120% 120% at 120% 120%,
            hsl(0 calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%,
            transparent 70%) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
        hsl(0 calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));
    background: var(--bg);
    font-size: 1.4rem;
    font-weight: 500;
    border: 0;
    padding: 0.9em 1.3em;
    display: flex;
    align-items: center;
    gap: 0.25em;
    white-space: nowrap;
    border-radius: 2rem;
    position: relative;
    box-shadow:
        0 0 calc(var(--active) * 6em) calc(var(--active) * 3em) hsla(12, 97%, 61%, 0.3),
        0 0.05em 0 0 hsl(0, calc(var(--active) * 97%), calc((var(--active) * 50%) + 30%)) inset,
        0 -0.05em 0 0 hsl(0, calc(var(--active) * 97%), calc(var(--active) * 10%)) inset;
    transition:
        box-shadow 0.25s ease-out,
        scale 0.25s,
        background 0.25s;
    scale: calc(1 + (var(--active) * 0.1));
    transform-style: preserve-3d;
    perspective: 100vmin;
    overflow: hidden;
    width: 100%;
    height: 100%;
    justify-content: center;
    z-index: 1004;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Blue theme for Visit 2.0 button */
.home-blue-theme {
    --bg: radial-gradient(120% 120% at 126% 126%,
            hsl(220 calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%,
            transparent 50%) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
        radial-gradient(120% 120% at 120% 120%,
            hsl(220 calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%,
            transparent 70%) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
        hsl(220 calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));
    box-shadow:
        0 0 calc(var(--active) * 6em) calc(var(--active) * 3em) hsla(220, 97%, 61%, 0.3),
        0 0.05em 0 0 hsl(220, calc(var(--active) * 97%), calc((var(--active) * 50%) + 30%)) inset,
        0 -0.05em 0 0 hsl(220, calc(var(--active) * 97%), calc(var(--active) * 10%)) inset;
}

.home-space-button:active {
    scale: 1;
}

.home-galaxy {
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    overflow: hidden;
    opacity: var(--active);
    transition: opacity 0.25s;
    pointer-events: none;
}

.home-backdrop {
    position: absolute;
    inset: var(--cut);
    background: var(--bg);
    border-radius: 2rem;
    transition: background 0.25s;
    pointer-events: none;
}

.home-space-button:is(:hover, :focus-visible) {
    --active: 1;
}

/* NEW DEVFOLIO BUTTON STYLES */
.devfolio-btn {
    border: none;
    background: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 312px;
    margin: 0 auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.devfolio-btn img {
    width: 100%;
    height: auto;
    max-width: 256px;
    max-height: 38px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.devfolio-btn:hover {
    transform: scale(1.05);
}

.devfolio-btn:hover img {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* NEW GLITCH EFFECT FOR 3.0 - MODIFIED FOR CYCLIC ANIMATION */
.glitch-30 {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 6rem;
    font-weight: 900;
    text-shadow: none;
    animation: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.glitch-30 span {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glitch-30.glitch-active {
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
        0.025em 0.04em 0 #fffc00;
    animation: glitch 725ms infinite;
}

.glitch-30.glitch-active span:first-child {
    animation: glitch 500ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-0.04em, -0.03em);
    opacity: 0.75;
}

.glitch-30.glitch-active span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(0.04em, 0.03em);
    opacity: 0.75;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
            0.025em 0.04em 0 #fffc00;
    }

    15% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
            0.025em 0.04em 0 #fffc00;
    }

    16% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
            -0.05em -0.05em 0 #fffc00;
    }

    49% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
            -0.05em -0.05em 0 #fffc00;
    }

    50% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
            0 -0.04em 0 #fffc00;
    }

    99% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
            0 -0.04em 0 #fffc00;
    }

    100% {
        text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
            -0.04em -0.025em 0 #fffc00;
    }
}

/* NEW BUTTON STYLES FOR COLLEGE AND SCHOOLS */
.home-apply-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Teko', sans-serif;
    padding: 10px 40px;
    font-size: 20px;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.home-apply-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.home-apply-btn.college {
    background: white;
    color: black;
}

.home-apply-btn.schools {
    background: black;
    color: white;
    border: 2px solid white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .devfolio-btn {
        padding: 10px 70px !important;
        font-size: 18px !important;
    }

    .home-hud-title {
        font-size: 3rem;
    }

    .home-title-text {
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .home-timer-unit {
        width: 60px;
        height: 60px;
    }

    .home-timer-value {
        font-size: 1.4rem;
    }

    .home-button-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .home-button-container {
        padding: 0 10px;
        gap: 12px;
    }

    .home-content-wrapper {
        gap: 30px;
    }

    .home-space-button,
    .home-space-btn {
        width: 100%;
        min-height: 50px;
    }

    .home-galaxy-button {
        min-height: 50px;
    }

    .home-space-button {
        font-size: 1.1rem;
        padding: 0.8em 1.1em;
    }

    /* Adjust glitch effect for mobile */
    .glitch-30 {
        font-size: 3rem;
    }

    /* Adjust Devfolio button for mobile */
    .devfolio-btn {
        max-width: 280px;
    }

    .devfolio-btn img {
        max-width: 230px;
        max-height: 34px;
    }

    /* Adjust apply buttons for mobile */
    .home-space-btn-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .home-apply-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .home-hud-title {
        font-size: 3.0rem;
    }

    .home-title-text {
        font-size: 1rem;
    }

    .home-timer-unit {
        width: 50px;
        height: 50px;
    }

    .home-timer-value {
        font-size: 1.6rem;
    }

    .home-timer-label {
        font-size: 0.6rem;
    }

    .home-button-row {
        flex-direction: column;
        align-items: center;
    }

    .home-button-container {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .home-content-wrapper {
        gap: 25px;
        justify-content: center;
    }

    .home-space-btn {
        width: 100%;
    }

    .home-space-button {
        font-size: 1rem;
        padding: 0.7em 1em;
    }

    .home-galaxy-button .home-text {
        font-size: 0.8rem;
        padding: 0 20px;
    }

    /* Adjust glitch effect for extra small screens */
    .glitch-30 {
        font-size: 3.0rem;
    }

    /* Adjust Devfolio button for extra small screens */
    .devfolio-btn {
        max-width: 250px;
    }

    .devfolio-btn img {
        max-width: 200px;
        max-height: 30px;
    }

    .home-apply-btn {
        width: 100%;
        max-width: 180px;
    }

    .home-apply-btn.schools {
        background: black;
        color: white;
        border: 2px solid white;
        font-size: 14px;
    }
}

.home-space-button * {
    pointer-events: none;
}

/*About section starts*/
.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling - FIXED SCROLLING ISSUE */
.about-section {
    position: relative;
    background: transparent;
    z-index: 30;
    min-height: 100vh;
    /* Changed from height to min-height */
    height: auto;
    /* Allow content to determine height */
}

.about-section .about-absolute-inset {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.about-section .about-relative-z-10 {
    position: relative;
    z-index: 10;
}

/* Common Heading Styles */
.section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 100px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.heading-shadow {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    font-family: 'Transformers', sans-serif;
    width: 100%;
    margin: 0;
    line-height: 1;
}

.heading-small {
    display: flex;
    justify-content: center;
    font-size: 88px;
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 6;
    font-family: 'Transformers', sans-serif !important;
    margin: 0;
    line-height: 1;
    align-items: center;
}

.heading-small div {
    overflow: hidden;
    height: 98px;
}

.heading-small div div {
    transform: translateY(0%);
    will-change: auto;
}

/* Content Styling */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-content-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-title {
    font-size: 32px;
    color: #7ee3ff;
    margin-bottom: 30px;
    font-family: 'Teko', sans-serif;
}

.about-para {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    padding: 0 30px;
    /* Added left and right padding */
}

.about-highlight-text {
    font-weight: 600;
    color: #7ee3ff;
    letter-spacing: 0.025em;
    font-size: 24px;
}

.about-bold-white {
    font-weight: 600;
    color: white;
}

/* Bento Grid Stats Section */
.about-stats-section {
    max-width: 1000px;
    background: transparent;
    border-radius: 12px;
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
}

.stats-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: glassmorphic;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 227, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 227, 255, 0.15);
    border-color: rgba(125, 227, 255, 0.4);
}

.stat-box-large {
    grid-column: span 2;
    min-height: 140px;
}

.stat-box-small {
    min-height: 150px;
}

.stat-box-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.stat-icon {
    font-size: 35px;
    margin-bottom: 10px;
    color: #7ee3ff;
}

.stat-number {
    font-size: 22px;
    font-weight: bold;
    color: white;
    font-family: 'Teko', sans-serif;
    display: inline;
    line-height: 1;
}

.stat-plus {
    display: inline-block;
    font-weight: bold;
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    color: white;
}

.stat-label {
    font-size: 22px;
    color: white;
    margin-top: 5px;
    font-family: 'Teko', sans-serif;
}

/* Bento Grid Layout */
.stat-box:nth-child(1) {
    /* Registrations - Top Left Large */
    grid-column: 1 / span 2;
    grid-row: 1;
}

.stat-box:nth-child(2) {
    /* Colleges - Top Right Small */
    grid-column: 3;
    grid-row: 1;
}

.stat-box:nth-child(3) {
    /* Cities - Top Right Small */
    grid-column: 4;
    grid-row: 1;
}

.stat-box:nth-child(4) {
    /* Hackers - Bottom Left Small */
    grid-column: 1;
    grid-row: 2;
}

.stat-box:nth-child(5) {
    /* Projects - Bottom Left Small */
    grid-column: 2;
    grid-row: 2;
}

.stat-box:nth-child(6) {
    /* Prize Pool - Bottom Right Large */
    grid-column: 3 / span 2;
    grid-row: 2;
}

/* Responsive Styles for Stats Section */
@media (max-width: 768px) {
    .stats-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }

    .stat-box {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 140px;
    }

    .stat-icon {
        font-size: 35px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats-bento-grid {
        gap: 10px;
    }

    .stat-box {
        padding: 15px;
        min-height: 120px;
    }

    .stat-icon {
        font-size: 30px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 18px;
    }
}

/* Cosmic Card Styles */
.about-cosmic-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 227, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    padding: 20px;
}

.about-cosmic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 227, 255, 0.15);
    border-color: rgba(125, 227, 255, 0.4);
}

/* Grid Layout */
.about-grid {
    display: grid;
}

.about-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Flexbox */
.about-flex {
    display: flex;
}

.about-flex-col {
    flex-direction: column;
}

.about-items-center {
    align-items: center;
}

.about-justify-center {
    justify-content: center;
}

/* Spacing */
.about-gap-20 {
    gap: 20px;
}

.about-gap-30 {
    gap: 30px;
}

.about-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.about-mb-30 {
    margin-bottom: 30px;
}

.about-mb-50 {
    margin-bottom: 50px;
}

.about-mt-30 {
    margin-top: 30px;
}

.about-mt-50 {
    margin-top: 50px;
}

/* Text Styles */
.about-text-center {
    text-align: center;
}

.about-text-left {
    text-align: left;
}

.about-text-xl {
    font-size: 20px;
    line-height: 1.5;
}

.about-text-2xl {
    font-size: 24px;
    line-height: 1.5;
}

.about-text-3xl {
    font-size: 28px;
    line-height: 1.3;
}

.about-text-4xl {
    font-size: 36px;
    line-height: 1.2;
}

.about-font-bold {
    font-weight: 700;
}

.about-text-white {
    color: white;
}

.about-text-cyan {
    color: #7ee3ff;
}

.about-text-gray {
    color: #9ca3af;
}

/* Sizing */
.about-w-full {
    width: 100%;
}

.about-w-120 {
    width: 120px;
}

.about-w-150 {
    width: 150px;
}

.about-h-120 {
    height: 120px;
}

.about-h-150 {
    height: 150px;
}

.about-min-h-180 {
    min-height: 180px;
}

/* Padding */
.about-p-20 {
    padding: 20px;
}

.about-px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.about-px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

/* Positioning */
.about-relative {
    position: relative;
}

.about-absolute {
    position: absolute;
}

/* Border */
.about-border-2 {
    border-width: 2px;
}

.about-border-cyan {
    border-color: rgba(125, 227, 255, 0.5);
}

.about-rounded-full {
    border-radius: 9999px;
}

/* Overflow */
.about-overflow-hidden {
    overflow: hidden;
}

/* Object Fit */
.about-object-cover {
    object-fit: cover;
}

.about-object-contain {
    object-fit: contain;
}

/* Association Container */
.about-association-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px auto;
    max-width: 1000px;
}

.about-organized-container {
    flex: 1;
    background: black;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 227, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    max-width: 400px;
}

.about-associated-container {
    flex: 2;
    background: black;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 227, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    max-width: 600px;
}

.about-organized-container:hover,
.about-associated-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 227, 255, 0.15);
    border-color: rgba(125, 227, 255, 0.4);
}

.about-organized-title,
.about-associated-title {
    font-size: 28px;
    font-weight: bold;
    color: #7ee3ff;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Teko', sans-serif;
}

.about-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.about-logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.about-logo-text {
    font-size: 20px;
    color: #d1d5db;
    text-align: center;
    font-family: 'Teko', sans-serif;
}

.about-associated-logos {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.about-associated-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Patrons Grid */
.about-patrons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.about-patron-card {
    background: black;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 227, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 180px;
}

.about-patron-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 227, 255, 0.15);
    border-color: rgba(125, 227, 255, 0.4);
}

.about-patron-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 227, 255, 0.5);
}

.about-patron-info {
    flex: 1;
}

.about-patron-name {
    font-size: 20px;
    font-weight: bold;
    color: #7ee3ff;
    margin-bottom: 10px;
    font-family: 'Teko', sans-serif;
}

.about-patron-role {
    font-size: 18px;
    color: #9ca3af;
    font-family: 'Teko', sans-serif;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-patrons-grid {
        max-width: 800px;
    }

    .about-associated-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        height: 80px;
        margin-bottom: 80px;
        margin-top: 80px;
    }

    .heading-shadow {
        font-size: 80px;
    }

    .heading-small {
        font-size: 48px;
    }

    .heading-small div {
        height: 54px;
    }

    .about-content-wrapper {
        max-width: 100%;
    }

    .about-para {
        padding: 0 20px;
        /* Adjusted padding for mobile */
    }

    .about-text-4xl {
        font-size: 28px;
    }

    .about-patrons-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .about-association-container {
        flex-direction: column;
        align-items: center;
    }

    .about-organized-container,
    .about-associated-container {
        max-width: 100%;
        width: 100%;
    }

    .about-associated-logos {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        height: 60px;
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .heading-shadow {
        font-size: 62px;
    }

    .heading-small {
        font-size: 45px;
    }

    .heading-small div {
        height: 50px;
    }

    .about-para {
        padding: 0 15px;
        /* Further adjusted padding for small mobile */
        font-size: 20px;
    }

    .about-text-4xl {
        font-size: 24px;
    }

    .about-organized-container,
    .about-associated-container {
        padding: 20px;
    }

    .about-patron-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .about-patron-image {
        width: 100px;
        height: 100px;
    }
}

/* Animation for text */
@keyframes about-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.about-animate-fade-in-up {
    animation: about-fadeInUp 0.6s ease-out forwards;
}

/* Not selectable */
.about-not-selectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*About section ends*/


/* Our Patrons Section Styles */


/* Gallery Section Styles */
.gallery-section {
    position: relative;
    background: transparent;
    z-index: 40;
    padding: 80px 0;
    min-height: 100vh;
    height: auto;
}

.gallery-wrap {
    width: min(1200px, 100%);
    text-align: center;
    margin: 0 auto;
}

/* GRID - 12 columns */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6px 12px;
    align-items: start;
    justify-items: stretch;
    margin-bottom: 2.5rem;
}

/* hex item container */
.gallery-hex-container {
    grid-column: span 2;
    overflow: hidden;
    margin: calc(-18% / 1.732) 0;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: block;
    --hov: 0;
    transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #000;
    aspect-ratio: calc(sqrt(3) / 2);
}

.gallery-hex-container:focus,
.gallery-hex-container:hover {
    --hov: 1;
    transform: translateY(-8px) scale(1.05);
    outline: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Flip card styling */
.gallery-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-hex-container:hover .gallery-flip-card {
    transform: rotateY(180deg);
}

.gallery-flip-front,
.gallery-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-flip-back {
    transform: rotateY(180deg);
}

/* image inside hex */
.gallery-flip-front img,
.gallery-flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption overlay */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.2rem 0.5rem 0.5rem;
    font-weight: 600;
    opacity: var(--hov);
    transition: opacity 0.35s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.gallery-flip-front .gallery-caption {
    transform: translateZ(1px);
}

.gallery-flip-back .gallery-caption {
    transform: rotateY(180deg) translateZ(1px);
}

@media (max-width: 900px) {
    .gallery-grid {
        gap: 4px 8px;
    }
}

/* Mobile layout with alternating rows of 3 and 2 */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px 4px;
    }

    .gallery-hex-container {
        margin: calc(-12% / 1.732) 0;
    }

    /* First row of 3 */
    .gallery-hex-container:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .gallery-hex-container:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .gallery-hex-container:nth-child(3) {
        grid-column: 5 / span 2;
    }

    /* Second row of 2 */
    .gallery-hex-container:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .gallery-hex-container:nth-child(5) {
        grid-column: 4 / span 2;
    }

    /* Third row of 3 */
    .gallery-hex-container:nth-child(6) {
        grid-column: 1 / span 2;
    }

    .gallery-hex-container:nth-child(7) {
        grid-column: 3 / span 2;
    }

    .gallery-hex-container:nth-child(8) {
        grid-column: 5 / span 2;
    }

    /* Fourth row of 2 */
    .gallery-hex-container:nth-child(9) {
        grid-column: 2 / span 2;
    }

    .gallery-hex-container:nth-child(10) {
        grid-column: 4 / span 2;
    }

    /* Fifth row of 3 */
    .gallery-hex-container:nth-child(11) {
        grid-column: 1 / span 2;
    }

    .gallery-hex-container:nth-child(12) {
        grid-column: 3 / span 2;
    }

    .gallery-hex-container:nth-child(13) {
        grid-column: 5 / span 2;
    }

    /* Sixth row of 2 */
    .gallery-hex-container:nth-child(14) {
        grid-column: 2 / span 2;
    }

    .gallery-hex-container:nth-child(15) {
        grid-column: 4 / span 2;
    }

    /* Seventh row of 3 */
    .gallery-hex-container:nth-child(16) {
        grid-column: 1 / span 2;
    }

    .gallery-hex-container:nth-child(17) {
        grid-column: 3 / span 2;
    }

    .gallery-hex-container:nth-child(18) {
        grid-column: 5 / span 2;
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        gap: 6px 3px;
    }

    .gallery-hex-container {
        margin: calc(-10% / 1.732) 0;
    }
}

/* Glimpse Section */
.glimpse-section {
    position: relative;
    background: transparent;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 50;
}

/* Flashback Title */
.glimpse-title {
    position: absolute;
    top: 20px;
    text-align: center;
    width: 100%;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Transformers', sans-serif;
    text-shadow: 2px 2px 5px black;
    z-index: 2;
}

/* Video Frame */
.video-container {
    position: relative;
    width: 800px;
    max-width: 95%;
    border: 3px solid white;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;

}

.video-container iframe {
    width: 100%;
    height: 450px;
}

/* Corner Lines */
.video-container::before,
.video-container::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid white;
}

.video-container::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.video-container::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

/* Responsive Styles for Glimpse Section */
@media (max-width: 768px) {
    .glimpse-title {
        font-size: 3rem;
    }

    .video-container {
        padding: 15px;
    }

    .video-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .glimpse-title {
        font-size: 2.5rem;
    }

    .video-container {
        padding: 10px;
    }

    .video-container iframe {
        height: 250px;
    }

    .video-container::before,
    .video-container::after {
        width: 40px;
        height: 40px;
    }

    .glimpse-section {
        height: 60vh;
    }
}

/*domains section start */

.pec-domain-cards-container {
    display: grid;
    place-items: center;
    margin-inline: 1.5rem;
    padding-block: 2rem;

}

.pec-domain-cards-wrapper {
    display: grid;
    row-gap: 3.5rem;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1200px;

}

.pec-domain-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    margin: 0 auto;
    max-width: 328px;
}

.pec-domain-card__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.pec-domain-card__data {
    width: 210px;
    background-color: rgba(0, 0, 0, 0.5);
    /* Changed from 'glassy' to a valid RGBA */
    padding: 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(126, 227, 255, 0.15);
    border: 1px solid rgba(125, 227, 255, 0.3);
    border-radius: 1rem;
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 1s 1s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    /* Center text */
}

.pec-domain-card__description {
    display: block;
    font-size: 0.875rem;
    margin-bottom: .25rem;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    /* Ensure text is centered */
}

.pec-domain-card__title {
    font-size: 1.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: .75rem;
    font-family: 'Teko', sans-serif;
    text-align: center;
    /* Ensure title is centered */
    width: 100%;
    /* Make sure title takes full width for proper centering */
}

.pec-domain-card__button {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    /* Center button text */
}

.pec-domain-card__button:hover {
    text-decoration: underline;
    color: #8f51ea;
}

/* Card animation */
@keyframes pec-show-data {
    50% {
        transform: translateY(-10rem);
    }

    100% {
        transform: translateY(-7rem);
    }
}

@keyframes pec-remove-overflow {
    to {
        overflow: initial;
    }
}

@keyframes pec-remove-data {
    0% {
        transform: translateY(-7rem);
    }

    50% {
        transform: translateY(-10rem);
    }

    100% {
        transform: translateY(.5rem);
    }
}

@keyframes pec-show-overflow {
    0% {
        overflow: initial;
        pointer-events: none;
    }

    50% {
        overflow: hidden;
    }
}

/* For medium devices */
@media screen and (min-width: 768px) {
    .pec-domain-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1.5rem;
    }
}

/* For large devices */
@media screen and (min-width: 1120px) {
    .pec-domain-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .pec-domain-card__img {
        height: 320px;
    }

    .pec-domain-card__data {
        width: 316px;
        padding-inline: 2.5rem;
    }
}

@media (max-width: 340px) {
    .pec-domain-cards-container {
        margin-inline: 1rem;
    }

    .pec-domain-card__data {
        width: 190px;
        padding: 1rem;
    }
}

/*domain section ends*/

/*timeline section starts*/

.timeline-section {
    position: relative;
    padding: 60px 0;
    background: transparent;
    z-index: 70;
}

.timeline-container {
    width: 95vw;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 15px;
}

.timeline-component {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #414141;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #ff7448, #ff4848 51%, #6248ff);
    z-index: 2;
    transition: height 0.1s ease;
}

.timeline-events {
    position: relative;
    z-index: 3;
}

.timeline-event {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    position: relative;
}

.timeline-event-content {
    width: 45%;
    padding: 0 20px;
    font-family: 'Teko', sans-serif;
}

.timeline-event-content-left {
    text-align: right;
}

.timeline-event-content-right {
    text-align: left;
}

.timeline-event-center {
    width: 10%;
    display: flex;
    justify-content: center;
    position: relative;
}

.timeline-event-marker {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 8px #0a0a0a;
    transition: all 0.3s ease;
    z-index: 3;
}

.timeline-event-marker.active {
    background-color: #ff7448;
    transform: translateY(-50%) scale(1.2);
}

.timeline-event-date {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.timeline-event-description {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.timeline-event-description.active {
    opacity: 1;
}

.timeline-event-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.timeline-fade-overlay-top,
.timeline-fade-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 4;
}

.timeline-fade-overlay-top {
    top: 0;
}

.timeline-fade-overlay-bottom {
    bottom: 0;
}

/* Tablet Styles */
@media (max-width: 991px) {
    .timeline-event-content {
        width: 42%;
        padding: 0 15px;
    }

    .timeline-event-center {
        width: 16%;
    }

    .timeline-event-date {
        font-size: 32px;
    }

    .timeline-event-description {
        font-size: 17px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .timeline-section {
        padding: 40px 0;
    }

    .timeline-container {
        width: 100%;
        padding: 0 30px;
    }

    .timeline-track {
        left: 1px;
        transform: none;
    }

    .timeline-progress {
        left: 1px;
        transform: none;
    }

    .timeline-event {
        display: block;
        padding: 40px 0;
    }

    .timeline-event-content {
        width: 100%;
        padding: 0;
        text-align: left !important;
        margin-left: 60px;
    }

    .timeline-event-center {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .timeline-event-marker {
        position: relative;
        top: 50%;
        left: -15px;
        transform: translate(-50%, -50%);
    }

    .timeline-event-badge {
        margin-left: 20px;
    }

    .timeline-event-date {
        font-size: 28px;
        position: static;
        transform: none;
        margin-left: 20px;
    }

    .timeline-event-description {
        font-size: 16px;
        margin-left: 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 479px) {
    .timeline-section {
        padding: 30px 0;
    }

    .timeline-container {
        width: 100%;
        padding: 0 30px;
    }

    .timeline-track {
        left: 1px;
    }

    .timeline-progress {
        left: 1px;
    }

    .timeline-event {
        padding: 30px 0;
    }

    .timeline-event-content {
        margin-left: 50px;
    }

    .timeline-event-center {
        width: 50px;
    }

    .timeline-event-marker {
        left: -15px;
        width: 12px;
        height: 12px;
    }

    .timeline-event-date {
        font-size: 24px;
    }

    .timeline-event-description {
        font-size: 15px;
    }

    .timeline-event-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 359px) {
    .timeline-event-content {
        margin-left: 25px;
    }

    .timeline-event-center {
        width: 45px;
    }

    .timeline-track {
        left: 1px;
    }

    .timeline-progress {
        left: 1px;
    }

    .timeline-event-marker {
        left: -15px;
        width: 12px;
        height: 12px;
    }

    .timeline-event-date {
        font-size: 22px;
    }

    .timeline-event-badge {
        font-size: 0.8rem;
    }

    .timeline-event-description {
        font-size: 25px;
    }
}

/*timeline section ends*/

/*prize section starts*/
/* Fluid Typography & Utilities */
.nnprize-section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.nnprize-section-title {
    font-family: 'Transformers', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 0.9;
}

.nnprize-section-subtitle {
    color: #888;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 6px);
}

/* =========================================
           SECTION 1: COMPACT MAIN PODIUM
           ========================================= */
.nnprize-podium-section {
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Grid Layout for Desktop/Tablet */
.nnprize-podium-stage {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(240px, 320px) minmax(200px, 280px);
    grid-template-rows: auto;
    gap: clamp(10px, 2vw, 40px);
    align-items: end;
    margin-top: 180px;
    perspective: 1000px;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
}

.nnprize-podium-platform {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    width: 100%;
}

/* --- DESKTOP/GLOBAL BORDER (Straight Line) --- */
.nnprize-podium-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    box-shadow: 0 0 20px currentColor;
    opacity: 0.7;
    border-bottom: none;
    border-radius: 0;
    z-index: 10;
}

.nnprize-second-platform {
    height: 160px;
    color: #3b82f6;
    order: 1;
}

.nnprize-first-platform {
    height: 240px;
    color: #ffd700;
    z-index: 10;
    order: 2;
    background: linear-gradient(to bottom, #252010, #0a0a0a);
}

.nnprize-third-platform {
    height: 120px;
    color: #ef4444;
    order: 3;
}

/* --- ENHANCED CARD DESIGN --- */
.nnprize-award-display {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 220px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    z-index: 20;
}

.nnprize-award-card-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.4));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 15px 25px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: nnprize-cardFloat 5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Rank Header Ribbon/Gradient (New Design Feature) */
.nnprize-award-card-inner::before {
    content: attr(data-rank);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 16px 16px 0 0;
    background: #444;
    z-index: 5;
}



/* --- RANK IMAGES (REPLACING BADGES) --- */
.nnprize-podium-platform .nnprize-award-card-inner .nnprize-rank-img,
.nnprize-rank-img {
    width: 50px !important;
    max-width: 50px !important;
    min-width: 50px !important;
    height: auto !important;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
    display: block !important;
}

.nnprize-award-card-inner:hover .nnprize-rank-img {
    transform: scale(1.1) rotate(5deg);
}

.nnprize-award-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Teko', sans-serif;
}

.nnprize-award-prize {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(180deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* --- RANK 1: GOLD STYLES --- */
/* Removed CSS badge styles, kept container effects */
.nnprize-first-platform .nnprize-award-card-inner {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2), inset 0 0 15px rgba(255, 215, 0, 0.15);
    animation: nnprize-cardFloat 5s ease-in-out infinite;
}

.nnprize-first-platform .nnprize-award-card-inner::before {
    content: '';
    background: linear-gradient(90deg, #5e4300, #ffd700, #5e4300);
    box-shadow: 0 0 15px #ffd700;
}

.nnprize-first-platform .nnprize-award-prize {
    font-size: clamp(3rem, 5vw, 3.8rem);
    background: linear-gradient(180deg, #fff2cc, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px #ffd700;
}

/* --- RANK 2: SILVER/BLUE STYLES --- */
/* Removed CSS badge styles, kept container effects */

.nnprize-second-platform .nnprize-award-card-inner {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2), inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.nnprize-second-platform .nnprize-award-card-inner::before {
    content: '';
    background: linear-gradient(90deg, #0b1a37, #3b82f6, #0b1a37);
    box-shadow: 0 0 10px #3b82f6;
}

/* --- RANK 3: BRONZE/RED STYLES --- */
/* Removed CSS badge styles, kept container effects */

.nnprize-third-platform .nnprize-award-card-inner {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2), inset 0 0 10px rgba(239, 68, 68, 0.1);
}

.nnprize-third-platform .nnprize-award-card-inner::before {
    content: '';
    background: linear-gradient(90deg, #370c0c, #ef4444, #370c0c);
    box-shadow: 0 0 10px #ef4444;
}

.nnprize-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 80px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

@keyframes nnprize-cardFloat {

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

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* --- MOBILE & TABLET OPTIMIZATIONS (Podium Fix: Cards Only) --- */

/* Tablet Portrait (Vertical Stacking Logic Starts) */
@media (max-width: 900px) {
    .nnprize-podium-stage {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
        width: 100%;
        max-width: 300px;
        display: grid;
        justify-content: center;
    }

    .nnprize-podium-platform {
        height: 0;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
        overflow: visible;
        margin-bottom: 0;
        display: block;
    }

    .nnprize-podium-platform::before {
        content: none;
    }

    .nnprize-award-display {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        margin-bottom: 0;
    }

    .nnprize-first-platform {
        order: -1;
    }

    .nnprize-second-platform {
        order: 0;
    }

    .nnprize-third-platform {
        order: 1;
    }

    .nnprize-award-card-inner {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.05);
        transition: transform 0.2s ease;
        animation: none;
    }

    .nnprize-award-card-inner:active {
        transform: scale(0.98);
    }

    .nnprize-first-platform .nnprize-award-card-inner {
        transform: scale(1);
    }

    .nnprize-podium-platform {
        height: auto;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    .nnprize-podium-stage {
        gap: 30px;
    }

    .nnprize-award-prize {
        font-size: 2.5rem;
    }

    .nnprize-first-platform .nnprize-award-prize {
        font-size: 3rem;
    }
}

/* =========================================
           SECTION 2: TRACK PRIZES (Techy UI)
           ========================================= */
.nnprize-tech-section {
    background-color: #050505;
    padding: clamp(60px, 10vw, 100px) 20px;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.nnprize-track-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nnprize-tech-card {
    background: #0a0a0a;
    border: 1px solid #333;
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: 0.4s ease;
    min-height: 320px;
    cursor: pointer;
    flex: 0 1 calc(33.333% - 30px);
    width: calc(33.333% - 30px);
    font-family: 'Teko', sans-serif;
}

/* --- DESKTOP HOVER ANIMATION (Card & Corner) --- */
@media (min-width: 901px) {
    .nnprize-tech-card:hover {
        transform: translateY(-8px) scale(1.01);
        border-color: var(--accent-color);
        box-shadow: 0 15px 50px -10px var(--accent-glow);
    }

    .nnprize-tech-card:hover .nnprize-watermark-icon {
        transform: rotate(10deg) scale(1.15);
        opacity: 0.1;
    }

    .nnprize-tech-card:hover .nnprize-corner {
        opacity: 1;
    }
}

.nnprize-tech-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.nnprize-watermark-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 12rem;
    color: var(--accent-color);
    opacity: 0.05;
    transition: 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.nnprize-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nnprize-card-label {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    align-self: flex-start;
    font-family: 'Teko', sans-serif;
}

.nnprize-tech-prize-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    transition: margin-bottom 0.4s ease;
    font-family: 'Teko', sans-serif;
}

.nnprize-tech-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-bottom 0.5s ease-out;
    font-family: 'Teko', sans-serif;
}

/* Desktop Hover State: Reveal Description */
@media (min-width: 901px) {
    .nnprize-tech-card:hover .nnprize-tech-description {
        max-height: 500px;
        opacity: 1;
        margin-bottom: 1.5rem;
    }

    .nnprize-tech-card:hover .nnprize-tech-prize-title {
        margin-bottom: 0.5rem;
    }
}

/* Mobile Tap/Toggle State (using .nnprize-active-tap class) */
@media (max-width: 900px) {
    .nnprize-tech-card.nnprize-active-tap {
        transform: translateY(-4px) scale(1.01);
        border-color: var(--accent-color);
        box-shadow: 0 15px 30px var(--accent-glow);
    }

    .nnprize-tech-card.nnprize-active-tap .nnprize-tech-description {
        max-height: 100px;
        opacity: 1;
        margin-bottom: 1rem;
    }

    .nnprize-tech-card.nnprize-active-tap .nnprize-tech-prize-title {
        margin-bottom: 0.5rem;
    }
}

.nnprize-tech-amount-box {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin-top: auto;
    background: linear-gradient(90deg, var(--accent-glow) 0%, transparent 100%);
    padding-top: 10px;
    padding-bottom: 10px;
}

.nnprize-tech-amount-val {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    line-height: 1;
    display: block;
}

.nnprize-tech-amount-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Teko', sans-serif;
}

/* Tech Card Variants */
.nnprize-card-track1 {
    --accent-color: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.2);
}

.nnprize-card-track2 {
    --accent-color: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.2);
}

.nnprize-card-track3 {
    --accent-color: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.2);
}

.nnprize-card-track4 {
    --accent-color: #ef4444;
    --accent-glow: rgba(239, 68, 68, 0.2);
}

.nnprize-card-track5 {
    --accent-color: #eab308;
    --accent-glow: rgba(234, 179, 8, 0.2);
}

.nnprize-card-track6 {
    --accent-color: #ec4899;
    --accent-glow: rgba(236, 72, 153, 0.2);
}

.nnprize-card-track7 {
    --accent-color: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.2);
}

.nnprize-card-track8 {
    --accent-color: #e2e8f0;
    /* Aptos: White/Silver */
    --accent-glow: rgba(226, 232, 240, 0.2);
}

.nnprize-card-track9 {
    --accent-color: #6366f1;
    /* Orkes: Indigo */
    --accent-glow: rgba(99, 102, 241, 0.2);
}

.nnprize-card-track10 {
    --accent-color: #22c55e;
    /* Requestly: Green */
    --accent-glow: rgba(34, 197, 94, 0.2);
}

.nnprize-card-track11 {
    --accent-color: #5271ff;
    /* InsForge: Royal Blue */
    --accent-glow: rgba(82, 113, 255, 0.2);
}

.nnprize-card-track12 {
    --accent-color: #FF6B00;
    /* Kiro: Orange */
    --accent-glow: rgba(255, 107, 0, 0.2);
}

.nnprize-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    transition: 0.3s;
    opacity: 0.5;
}

.nnprize-top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.nnprize-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Mobile adjustment for Track Cards - Enforces 1 column on mobile */
@media (max-width: 900px) {
    .nnprize-track-grid {
        flex-direction: column;
    }

    .nnprize-tech-card {
        width: 100%;
        flex: 1 1 100%;
    }

    .nnprize-tech-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .nnprize-tech-prize-title {
        font-size: 1.8rem;
    }

    .nnprize-tech-amount-val {
        font-size: 3rem;
    }

    .nnprize-tech-description {
        font-size: 1.15rem;
    }
}

/* =========================================
           SECTION 3: SPECIAL CATEGORIES (Glass UI)
           ========================================= */
.nnprize-glass-section {
    position: relative;
    background: transparent;
    padding: clamp(60px, 10vw, 40px) 10px;
    overflow: hidden;
    perspective: 1000px;
    font-family: 'Teko', sans-serif;
}

/* Ambient Animations */
@keyframes nnprize-fogDrift {

    0%,
    100% {
        transform: translateX(0) translateY(0);
        opacity: .03
    }

    50% {
        transform: translateX(100px) translateY(-50px);
        opacity: .06
    }
}

@keyframes nnprize-morphShape {

    0%,
    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }

    25% {
        border-radius: 30% 60% 70% 40%/50% 60% 40% 60%
    }

    50% {
        border-radius: 50% 60% 40% 60%/40% 70% 60% 30%
    }

    75% {
        border-radius: 70% 30% 60% 40%/30% 50% 40% 70%
    }
}

@keyframes nnprize-lightSweep {
    0% {
        transform: translateX(0) skewX(-25deg);
    }

    100% {
        transform: translateX(200%) skewX(-25deg);
    }
}

@keyframes nnprize-gentleFloat {

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

    50% {
        transform: translateY(-20px)
    }
}

.nnprize-fog,
.nnprize-morph-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.nnprize-fog {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, .02), transparent 70%);
    animation: nnprize-fogDrift 30s ease-in-out infinite;
}

.nnprize-morph-shape {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .03));
    animation: nnprize-morphShape 20s ease-in-out infinite;
    filter: blur(40px);
}

.nnprize-glass-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.nnprize-glass-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.nnprize-glass-card {
    max-width: 450px;
    width: 100%;
    position: relative;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nnprize-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.nnprize-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: nnprize-lightSweep 4s ease-in-out infinite;
    pointer-events: none;
}

.nnprize-glass-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.nnprize-glass-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: nnprize-gentleFloat 6s ease-in-out infinite;
}

.nnprize-glass-icon-container i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.nnprize-glass-number {
    font-size: 50px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
}

.nnprize-glass-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
}

.nnprize-glass-prize-section {
    display: flex;
    flex-direction: column;
}

.nnprize-glass-prize-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 5px;
}

.nnprize-glass-prize-amount {
    font-size: clamp(3rem, 3rem, 4rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.nnprize-glass-card.nnprize-school-card .nnprize-glass-icon-container i {
    color: #00F0FF;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.nnprize-glass-card.nnprize-school-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.nnprize-glass-card.nnprize-girls-card .nnprize-glass-icon-container i {
    color: #FF0055;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

.nnprize-glass-card.nnprize-girls-card:hover {
    border-color: rgba(255, 0, 85, 0.3);
}

/* Mobile adjustments for Glass Cards */
@media (max-width: 600px) {
    .nnprize-glass-grid {
        gap: 30px;
    }

    .nnprize-glass-card {
        padding: 30px;
    }

    .nnprize-glass-card-title {
        font-size: 28px;
    }

    .nnprize-glass-icon-container {
        width: 70px;
        height: 70px;
    }

    .nnprize-glass-icon-container i {
        font-size: 28px;
    }

    .nnprize-glass-number {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .nnprize-glass-card {
        max-width: 280px;
    }
}

@media (max-width: 375px) {
    .nnprize-glass-card {
        max-width: 280px;
    }
}

/*prize section ends */

/* Judges Section Styles */
.judges-section {
    padding: 80px 20px;
    background: transparent;
    min-height: 100vh;
}

/* TITLE */
.judges-title {
    text-align: center;
    margin-bottom: 50px;
}

.judges-title h1 {
    font-size: 48px;
    color: #e6c77b;
    /* Gold */
    font-family: 'Teko', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(230, 199, 123, 0.6);
}

.judges-title p {
    color: #b3a378;
    font-size: 18px;
}

/* FLEX GRID */
.judges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
    max-width: 1200px;
    margin: auto;
}

.judges-card {
    width: calc((100% - 90px) / 3);
    /* 3 cards per row with 2 gaps of 45px */
}

@media (max-width: 900px) {
    .judges-card {
        width: calc((100% - 45px) / 2);
        /* 2 cards per row */
    }
}

@media (max-width: 600px) {
    .judges-card {
        width: 100%;
        /* 1 card per row */
    }
}

/* CARD */
.judges-card {
    background: linear-gradient(145deg, #111, #0b0b0b);
    border: 1px solid rgba(230, 199, 123, 0.2);
    border-radius: 18px;
    padding: 20px 10px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 0 14px rgba(255, 215, 130, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
    height: 100%;
}

.judges-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(255, 215, 130, 0.4);
    border-color: rgba(255, 215, 130, 0.6);
}

/* IMAGE WRAPPER WITH GOLD RING */
.judges-image-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: auto;
    padding: 4px;
    background: linear-gradient(135deg, #d6b15d, #f8e7b0);
    box-shadow: 0 0 20px rgba(255, 215, 130, 0.5);
}

.judges-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* NAME */
.judges-name {
    margin-top: 15px;
    font-size: 23px;
    color: #fff;
    font-family: 'Teko', sans-serif;
}

/* ROLE */
.judges-role {
    color: #e6c77b;
    margin-top: -5px;
    font-family: 'Teko', sans-serif;
}

/* BADGES */
.judges-badge {
    display: inline-block;
    padding: 5px 18px;
    margin-top: 12px;
    font-size: 14px;
    border-radius: 23px;
    font-family: 'Teko', sans-serif;
}

.judge-badge {
    background: rgba(255, 215, 130, 0.1);
    border: 1px solid #e6c77b;
    color: #e6c77b;
}

.mentor-badge {
    background: linear-gradient(135deg, #e6c77b, #c19a3d);
    color: #000;
    box-shadow: 0 0 12px rgba(230, 199, 123, 0.4);
}

/* DESCRIPTION */
.judges-description {
    color: #d0c6a4;
    font-size: 15px;
    margin-top: 12px;
}

/* SOCIAL BUTTONS — HIDDEN BY DEFAULT */
.judges-socials {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    margin-right: -2px;
}

/* SHOW SOCIAL ICONS ON HOVER */
.judges-card:hover .judges-socials {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SOCIAL BUTTON STYLE */
.social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(230, 199, 123, 0.15);
    margin: 12px 6px 0 6px;
    font-size: 18px;
    color: #e6c77b;
    border: 1px solid rgba(230, 199, 123, 0.3);
    transition: 0.3s;
    text-decoration: none !important;
    /* REMOVE UNDERLINE */
}

.social-btn i {
    text-decoration: none !important;
    /* Remove underline from icon */
}

.social-btn:hover {
    background: #e6c77b;
    color: #000;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(230, 199, 123, 0.6);
}

/* MOBILE */
@media (max-width: 480px) {
    .judges-title h1 {
        font-size: 36px;
    }

    /* Mobile: Always show social icons if you want */
    /* Uncomment if needed:
    .judges-socials {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    */
}


/*full sponeser section starts*/

/* Section container */
.partners-section {
    position: relative;
    padding: 5rem 1rem;
    background: transparent;
    width: 100%;
    z-index: 90;
}

.partners-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Cosmic Card Styles */
.partners-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 227, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partners-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 227, 255, 0.15);
    border-color: rgba(125, 227, 255, 0.4);
}

.partners-card .partners-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.partners-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.5px;
}

.partners-card p {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
    font-family: 'Teko', sans-serif;
}

/* Why Partner Section */
.partners-why {
    margin-bottom: 5rem;
    margin-top: 2.5rem;
}

.partners-why h3 {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    color: #7ee3ff;
    margin-bottom: 3rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
}

/* Partners by Category */
.partners-categories {
    margin-bottom: 4rem;
    padding-top: 1.5rem;
}

/* Sponsor Sections */
.partners-sponsor-section {
    margin-bottom: 3rem;
}

.partners-section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-gold-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.partners-silver-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: linear-gradient(135deg, #C0C0C0, #D9D9D9, #E0E0E0, #B0B0B0);
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.partners-bronze-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #CD7F32;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.partners-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.partners-item {
    transition: transform 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.partners-item:hover {
    transform: scale(1.05);
}

.partners-logo {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 128px;
    width: 224px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;

}

.partners-logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.internship {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}

/* Community Partners */
.partners-community {
    margin-bottom: 3rem;
}

.partners-community-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Teko', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Partners Carousel - FIXED INFINITE SCROLLING */
.partners-carousel-container {
    width: 100%;
    margin: 0 auto 6rem;
    overflow: hidden;
    position: relative;
}

.partners-carousel-section {
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partners-carousel-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
}

.partners-carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.partners-carousel-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.partners-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.partners-carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partners-carousel-item:hover img {
    filter: grayscale(0%);
}

/* PERFECT INFINITE SCROLLING ANIMATION */
.partners-carousel-row-1 .partners-carousel-track {
    animation: partners-scroll-left 60s linear infinite;
    padding-left: 50px;
}

.partners-carousel-row-2 .partners-carousel-track {
    animation: partners-scroll-right 60s linear infinite;
    padding-left: 100px;
}

@keyframes partners-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes partners-scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.partners-carousel-row:hover .partners-carousel-track {
    animation-play-state: paused;
}

/* Call to Action */
.partners-cta {
    text-align: center;
    margin-top: 2rem;
}

.partners-cta-card {
    background: rgba(15, 23, 42, 0.9);
    max-width: 896px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(125, 227, 255, 0.2);
    border: 1px solid rgba(125, 227, 255, 0.2);
}

.partners-cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partners-cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.5px;
}

.partners-cta-description {
    font-size: 1.3rem;
    color: #d1d5db;
    font-family: 'Teko', sans-serif;
    line-height: 1.5;
}

.partners-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.partners-cta-button {
    border: 2px solid #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-family: 'Teko', sans-serif;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.partners-cta-button:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.partners-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

.partners-contact-text {
    font-size: 1.25rem;
    color: #9ca3af;
    font-family: 'Teko', sans-serif;
}

.partners-contact-email {
    color: #7ee3ff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.partners-contact-email:hover {
    color: #a5f3fc;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .partners-section {
        padding: 5rem 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-cta-buttons {
        flex-direction: row;
    }

    .partners-carousel-item {
        width: 200px;
        height: 110px;
    }
}

@media (min-width: 768px) {
    .partners-section {
        padding: 5rem 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partners-carousel-section {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-why h3 {
        font-size: 1.875rem;
    }

    .partners-logo {
        height: 100px;
        width: 180px;
    }

    .partners-carousel-item {
        width: 150px;
        height: 85px;
    }
}

@media (max-width: 480px) {
    .partners-why h3 {
        font-size: 1.5rem;
    }

    .partners-card {
        padding: 1rem;
    }

    .partners-card h4 {
        font-size: 1.125rem;
    }

    .partners-card p {
        font-size: 1rem;
    }

    .partners-logo {
        height: 80px;
        width: 140px;
    }

    .partners-section-title h3 {
        font-size: 1.5rem;
    }

    .partners-carousel-section {
        padding: 1rem;
    }

    .partners-carousel-item {
        width: 130px;
        height: 75px;
        padding: 0.75rem;
    }

    .partners-cta-title {
        font-size: 1.25rem;
    }

    .partners-cta-description {
        font-size: 1.1rem;
    }

    .partners-cta-button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .partners-contact-text,
    .partners-contact-email {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .partners-logo {
        height: 70px;
        width: 120px;
    }

    .partners-carousel-item {
        width: 110px;
        height: 65px;
    }
}

/*full sponeser section ends*/

/*faq section starts*/
.faqs-container {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
    padding: 40px 30px;
    background-color: transparent;
}

.faqs-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.faqs-column {
    flex: 1;
    min-width: 300px;
}

.faqs-accordion {
    background-color: transparent;
    border-radius: 8px;
}

.faqs-accordion-item {
    background-color: #1a1a1a;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.faqs-accordion-item:hover {
    border-color: #444444;
}

.faqs-accordion-button {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: 'Teko', sans-serif;
}

.faqs-accordion-button:hover {
    background-color: #222222;
}

.faqs-accordion-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: #ffffff;
}

.faqs-accordion-button.active .faqs-accordion-icon {
    transform: rotate(45deg);
}

.faqs-accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #1c1c1c;
    transition: max-height 0.5s ease-in-out;
    padding: 0 20px;
    line-height: 1.6;
}

.faqs-accordion-content p {
    margin: 0;
    padding: 20px 10px;
    font-size: 20px;
    color: #e0e0e0;
    text-align: left;
    font-family: 'Teko', sans-serif;
}

.faqs-accordion-item.active {
    border-color: #ffffff;
}

.faqs-accordion-item.active .faqs-accordion-button {
    background-color: #222222;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faqs-heading {
        height: 80px;
        margin-bottom: 80px;
        margin-top: 30px;
    }

    .faqs-heading-shadow {
        font-size: 80px;
    }

    .faqs-heading-small {
        font-size: 48px;
    }

    .faqs-heading-small div {
        height: 54px;
    }

    .faqs-row {
        flex-direction: column;
    }

    .faqs-column {
        width: 100%;
    }

    .faqs-accordion-button {
        font-size: 16px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .faqs-heading {
        height: 60px;
        margin-bottom: 60px;
        margin-top: 20px;
    }

    .faqs-heading-shadow {
        font-size: 62px;
    }

    .faqs-heading-small {
        font-size: 45px;
    }

    .faqs-heading-small div {
        height: 50px;
    }

    .faqs-accordion-button {
        font-size: 15px;
    }

    .faqs-accordion-content p {
        font-size: 14px;
    }

    .faqs-container {
        padding: 30px 20px;
    }
}

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

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

.faqs-accordion-content p {
    animation: faqs-fadeIn 0.3s ease-in;
}

/*faq section ends*/

/*general styles starts*/
@media (max-width: 768px) {
    .section-heading {
        height: 80px;
        margin-bottom: 80px;
        margin-top: 80px;
    }

    .heading-shadow {
        font-size: 80px;
    }

    .heading-small {
        font-size: 48px;
    }

    .heading-small div {
        height: 54px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        height: 60px;
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .heading-shadow {
        font-size: 62px;
    }

    .heading-small {
        font-size: 45px;
    }

    .heading-small div {
        height: 50px;
    }
}

/*general styles end*/

/* Team Section Styles */
/* Team Section Styles */
/* Team Section Styles */
.teams-section {
    position: relative;
    background: transparent;
    z-index: 95;
    padding: 80px 0;
    min-height: 100vh;
    height: auto;
}

/* Team Container with 1-4-4-4 Rows */
.teamss-container {
    max-width: 1500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
    padding: 0 20px;
}

.judges-card {
    width: 320px;
    max-width: 100%;
}

/* Specific centering for badge and socials as requested */
.judges-content {
    display: flex;
    flex-direction: column;
}

.judges-badge {
    align-self: center;
    margin-top: 10px;
    /* Add some spacing if needed */
    margin-bottom: 15px;
    margin-right: 20px;
    margin-left: 22px;
    /* Nudge left */
}



/* Force centering for Judges heading */
.judges-section .section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.judges-section .heading-shadow {
    text-align: center;
    width: 100%;
}

/* Team Row Styles */
.teamss-row {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 60px;
}

/* Row with 1 card */
.teamss-row-1 {
    justify-content: center;
}

/* Row with 4 cards */
.teamss-row-4 {
    justify-content: center;
}

/* Team Card Styles */
.teamss {
    display: flex;
    justify-content: center;
    width: 340px;
    height: 140px;
    position: relative;
}

.teamss__img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid transparent;
    object-fit: cover;
    background: #ccc;
}

.teamss__card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teamss__content {
    width: 100%;
    height: 100%;
    background: transparent;
    background-color: rgba(235, 235, 235, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 1.5rem;
    border: 2px solid white;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    z-index: 10;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-sizing: border-box;
}

.teamss__data {
    margin-left: .25rem;
    flex: 1;
    font-family: 'Teko', sans-serif;
}

.teamss__name {
    font-size: 1.1rem;
    color: white;
    margin-bottom: .25rem;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
}

.teamss__profession {
    font-size: 1.25rem;
    color: hsl(220, 8%, 56%);
}

.teamss__button {
    width: 46px;
    height: 46px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px hsla(220, 48%, 30%, .3);
    display: grid;
    place-items: center;
    margin-inline: auto .5rem;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: none;
    outline: none;
}

.teamss__button:hover {
    transform: scale(1.1);
}

.teamss__menu,
.teamss__close {
    color: black;
    font-size: 1.5rem;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.teamss__menu {
    opacity: 1;
    transform: rotate(0deg);
}

.teamss__close {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Social menu positioned below the card for all screen sizes - NOW FULL WIDTH MATCHING CONTENT */
.teamss__social {
    position: absolute;
    width: 95%;
    /* Changed from 90% to 100% to match content card */
    height: 0;
    background-color: rgba(235, 235, 235, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 0 0 1.5rem 1.5rem;
    /* Changed from 0 0 1rem 1rem to match content card */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    margin-top: 0;
    transform: translateY(-20px);
    top: 100%;
    z-index: 15;
    box-shadow: 0 8px 24px hsla(220, 48%, 20%, .2);
    overflow: hidden;
    border: 2px solid white;
    border-top: none;
    box-sizing: border-box;
}

.teamss__link {
    position: static;
    transform: none !important;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(10px);
}

.teamss__link:nth-child(1) {
    transition-delay: 0.1s;
}

.teamss__link:nth-child(2) {
    transition-delay: 0.15s;
}

.teamss__link:nth-child(3) {
    transition-delay: 0.2s;
}

.teamss__link span {
    width: 42px;
    height: 42px;
    background-color: rgba(235, 235, 235, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px hsla(220, 48%, 20%, .1),
        inset 0 4px 8px hsla(220, 48%, 30%, .3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid white;
}

.teamss__link span:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
    text-decoration: none !important;
}

/* Remove any underline from links */
.teamss__link,
.teamss__link:hover,
.teamss__link:focus,
.teamss__link:active {
    text-decoration: none !important;
    outline: none !important;
}

/* Teams Section Active States - FOR MOBILE ACCORDION ONLY */
.teamss-show-social {
    opacity: 1 !important;
    height: 50px !important;
    padding: 1rem 0.5rem !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.teamss-show-icon .teamss__menu {
    opacity: 0 !important;
    transform: rotate(90deg) !important;
}

.teamss-show-icon .teamss__close {
    opacity: 1 !important;
    transform: rotate(0deg) !important;
}

.teamss-show-social .teamss__link {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* DESKTOP/LAPTOP: Hover FUNCTIONALITY (769px and above) */
@media (min-width: 769px) {

    /* Show close icon on card hover */
    .teamss:hover .teamss__menu {
        opacity: 0;
        transform: rotate(90deg);
    }

    .teamss:hover .teamss__close {
        opacity: 1;
        transform: rotate(0deg);
    }

    /* Show social on card hover */
    .teamss:hover .teamss__social {
        opacity: 1;
        height: 80px;
        padding: 1rem 0.5rem;
        transform: translateY(0);
        pointer-events: auto;
    }

    .teamss:hover .teamss__link {
        opacity: 1;
        transform: translateY(0);
    }

    /* When hovered, content card bottom border radius should be straight (0 radius) */
    .teamss:hover .teamss__content {
        border-radius: 1.5rem 1.5rem 0 0;
    }

    /* Disable button clicks on desktop - hover only */
    .teamss__button {
        pointer-events: none;
    }
}

/* INCREASED GAPS FOR LAPTOP VIEW ONLY */
@media (min-width: 993px) and (max-width: 1300px) {
    .teamss-container {
        gap: 120px !important;
    }

    .teamss-row {
        gap: 70px !important;
    }
}

@media (min-width: 1301px) {
    .teamss-container {
        gap: 100px !important;
    }

    .teamss-row {
        gap: 50px !important;
    }
}

/* Responsive Design */
@media (max-width: 1500px) {
    .teamss-row {
        gap: 50px;
    }

    .teamss {
        width: 320px;
    }
}

@media (max-width: 1300px) {
    .teamss-row {
        gap: 40px;
    }

    .teamss {
        width: 300px;
    }
}

@media (max-width: 1200px) {
    .teamss-row-4 {
        flex-wrap: wrap;
        gap: 50px;
    }

    .teamss {
        width: 320px;
    }
}

@media (max-width: 1100px) {
    .teamss-row-4 {
        gap: 40px;
    }

    .teamss {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .teamss-row {
        flex-wrap: wrap;
        gap: 50px;
    }

    .teamss-row-1,
    .teamss-row-4 {
        justify-content: center;
    }

    .teamss {
        width: 340px;
        margin-bottom: 40px;
    }

    .teamss-container {
        gap: 90px;
    }
}

/* MOBILE STYLES WITH ACCORDION FUNCTIONALITY (768px and below) */
/* MOBILE STYLES WITH ACCORDION FUNCTIONALITY (768px and below) */
@media (max-width: 768px) {

    /* Enable button clicks for mobile */
    .teamss__button {
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Change to accordion layout */
    .teamss {
        width: 100%;
        max-width: 400px;
        height: auto !important;
        margin-bottom: 30px !important;
        /* Increased bottom margin */
        transition: all 0.3s ease;
    }

    .teamss:last-child {
        margin-bottom: 0 !important;
    }

    .teamss__card {
        height: auto !important;
    }

    .teamss__content {
        height: 120px;
        border-radius: 1.5rem;
        /* Reset to rounded when closed */
        transition: border-radius 0.3s ease;
    }

    .teamss-container {
        gap: 50px !important;
        /* Increased gap between rows */
    }

    .teamss-row {
        gap: 35px !important;
        /* Increased gap between cards */
        flex-direction: column;
        align-items: center;
    }

    /* SOCIAL MENU STYLES FOR MOBILE */
    .teamss__social {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        margin-top: 0;
        margin-bottom: 20px;
        /* Gap below the social menu */
        transition: all 0.3s ease-in-out !important;
        border-radius: 0 0 1.5rem 1.5rem !important;
        border: 2px solid white;
        border-top: none;
        box-sizing: border-box;
        background-color: rgba(235, 235, 235, 0.1);
        backdrop-filter: blur(5px);
    }

    /* When menu is open - ADD SPACING */
    .teamss-show-social {
        height: 60px !important;
        /* Height with spacing */
        padding: 40px 0 !important;
        /* Internal vertical padding */
        margin-bottom: 20px !important;
        /* Gap below social menu */
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* When menu is closed - hide properly */
    .teamss__social:not(.teamss-show-social) {
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-top: none !important;
        overflow: hidden !important;
        opacity: 0 !important;
    }

    /* When active on mobile, content card should have straight bottom */
    .teamss-show-social~.teamss__content {
        border-radius: 1.5rem 1.5rem 0 0 !important;
    }

    /* Social links spacing */
    .teamss__link {
        transition: opacity 0.3s ease 0.2s;
        margin: 0 12px !important;
        /* Spacing around social icons */
        transform: translateY(10px);
    }

    /* Active state social links */
    .teamss-show-social .teamss__link {
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin: 0 15px !important;
        /* Consistent spacing */
    }

    .teamss__link span {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid white;
        min-width: 44px;
        /* Minimum touch target size */
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .teamss-container {
        gap: 35px !important;
        padding: 0 15px;
    }

    .teamss-row {
        gap: 25px !important;
    }

    .teamss {
        margin-bottom: 20px !important;
        width: 95%;
        max-width: 350px;
    }

    .teamss__img {
        width: 100px;
        height: 100px;
    }

    .teamss__content {
        height: 110px;
        padding: 0 12px;
    }

    .teamss__name {
        font-size: 1.25rem;
    }

    .teamss__profession {
        font-size: 1.1rem;
    }

    .teamss__button {
        width: 42px;
        height: 42px;
    }

    /* Extra spacing for very small screens */
    .teams-section {
        padding: 60px 0;
    }
}

@media (max-width: 380px) {
    .teamss-row {
        gap: 20px !important;
    }

    .teamss-container {
        gap: 30px !important;
    }

    .teamss {
        margin-bottom: 18px !important;
        width: 92%;
        max-width: 320px;
    }

    .teamss__content {
        height: 105px;
        padding: 0 10px;
    }

    .teamss__img {
        width: 90px;
        height: 90px;
    }
}

/* Extra small devices (phones under 320px) */
@media (max-width: 320px) {
    .teamss-container {
        gap: 25px !important;
        padding: 0 10px;
    }

    .teamss-row {
        gap: 15px !important;
    }

    .teamss {
        margin-bottom: 15px !important;
        width: 90%;
        max-width: 280px;
    }

    .teamss__content {
        height: 100px;
    }

    .teamss__img {
        width: 85px;
        height: 85px;
    }

    .teamss__name {
        font-size: 1.15rem;
    }

    .teamss__profession {
        font-size: 1rem;
    }
}

/*teams section ends*/

.footer-container {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: black;
    pointer-events: none;
    z-index: -1;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #7ee3ff, #8f51ea, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;

}

.social-icon {
    font-size: 1.25rem;
    color: white;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #7ee3ff;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.5;
}

.footer-link {
    color: #7ee3ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.25rem;
}

.footer-link:hover {
    color: #8f51ea;
    text-decoration: underline;
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
    font-size: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.4rem;
    }

    .footer-content {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 0;
    }
}

/* WORKSHOP SECTION STYLES */
/* Cosmic Container */
.workshop-cosmic-container {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    background: transparent;
    overflow: hidden;
    font-family: 'Teko', sans-serif;
}

/* Nebula Background */
.workshop-nebula-background {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
}

.workshop-nebula-1,
.workshop-nebula-2 {
    position: absolute;
    width: 25rem;
    height: 25rem;
    background: rgba(126, 227, 255, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.workshop-nebula-1 {
    top: 20%;
    left: 20%;
    animation: workshop-nebula-swirl 25s ease-in-out infinite;
    background: radial-gradient(circle, rgba(126, 227, 255, 0.2) 0%, rgba(143, 81, 234, 0.1) 100%);
}

.workshop-nebula-2 {
    bottom: 20%;
    right: 20%;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(143, 81, 234, 0.2) 0%, rgba(126, 227, 255, 0.1) 100%);
    animation: workshop-nebula-swirl 25s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes workshop-nebula-swirl {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg) scale(0.95);
    }
}

/* Workshop Wrapper */
.workshop-wrapper {
    width: 100%;
    max-width: 70rem;
    position: relative;
    z-index: 10;
}

/* Section Title */
.workshop-section-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.workshop-main-heading {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 25px rgba(126, 227, 255, 0.4);
    letter-spacing: 0.05em;
    line-height: 1.1;
    background: linear-gradient(180deg, #fff, #a2d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workshop-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #7ee3ff;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(126, 227, 255, 0.3);
}

/* Workshop Card - PREMIUM GLASSMORPHISM COMPACT */
.workshop-card {
    position: relative;
    height: auto;
    min-height: 32rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(10, 10, 14, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(126, 227, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(126, 227, 255, 0.1) inset, 0 0 25px rgba(126, 227, 255, 0.05);
    margin: 0 auto;
    transition: all 0.5s ease;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126, 227, 255, 0.5), transparent);
    opacity: 0.7;
}

.workshop-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(126, 227, 255, 0.2) inset, 0 0 35px rgba(126, 227, 255, 0.1);
    border-color: rgba(126, 227, 255, 0.3);
}

/* Starfield Canvas */
.workshop-starfield-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}

/* Card Content */
.workshop-card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 80px;
    min-height: 32rem;
}

.workshop-content-area {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    position: relative;
}

.workshop-content-area::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(126, 227, 255, 0.2), transparent);
}

.workshop-content-area.workshop-transitioning {
    opacity: 0;
    filter: blur(10px);
}

/* Workshop Header */
.workshop-header {
    margin-bottom: 1rem;
}

.workshop-meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #a6a6a6;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
}

.workshop-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-separator {
    color: #7ee3ff;
    text-shadow: 0 0 10px #7ee3ff;
}

.workshop-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    stroke: #7ee3ff;
}

.workshop-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #d4eaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(126, 227, 255, 0.2);
}

/* Speakers Section */
.workshop-speakers-section {
    margin-bottom: 1.5rem;
}

.workshop-section-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #7ee3ff;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(126, 227, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.workshop-section-label::after {
    content: '';
    height: 1px;
    width: 30px;
    background: linear-gradient(90deg, #7ee3ff, transparent);
}

.workshop-speakers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.workshop-speaker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.workshop-speaker-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(126, 227, 255, 0.3);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.workshop-speaker-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #000;
    border: 2px solid rgba(126, 227, 255, 0.3);
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(126, 227, 255, 0.1);
}

.workshop-speaker-item:hover .workshop-speaker-image {
    transform: scale(1.05) rotate(5deg);
    border-color: #7ee3ff;
    box-shadow: 0 0 25px rgba(126, 227, 255, 0.3);
}

.workshop-speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-speaker-info {
    min-width: 0;
    flex: 1;
}

.workshop-speaker-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.workshop-speaker-name {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
}

.workshop-linkedin-link {
    color: #a6a6a6;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.workshop-linkedin-link:hover {
    color: #fff;
    background: #0077b5;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

.workshop-icon-tiny {
    width: 1rem;
    height: 1rem;
}

.workshop-speaker-role {
    font-size: 1.1rem;
    color: #7ee3ff;
    line-height: 1.2;
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.05em;
}

/* Description Section */
.workshop-description-section {
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 1rem;
    border-left: 2px solid #7ee3ff;
    border-radius: 0 0.75rem 0.75rem 0;
}

.workshop-description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #d1d5db;
    font-family: 'Teko', sans-serif;
}

/* Takeaways Section */
.workshop-takeaways-section {
    margin-bottom: 1.5rem;
}

.workshop-takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.workshop-takeaways-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    font-family: 'Teko', sans-serif;
}

.workshop-takeaways-list li:hover {
    background: rgba(126, 227, 255, 0.05);
    border-color: rgba(126, 227, 255, 0.2);
    transform: translateY(-2px);
}

.workshop-takeaway-bullet {
    color: #7ee3ff;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(126, 227, 255, 0.5);
}

/* Actions Section */
.workshop-actions-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.workshop-register-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, #7ee3ff, #8f51ea);
    color: #000;
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    border-radius: 2rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
}

.workshop-register-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.5s;
}

.workshop-register-button:hover::after {
    transform: translateX(100%) skewX(-20deg);
}

.workshop-register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 81, 234, 0.4);
    background: linear-gradient(90deg, #8f51ea, #7ee3ff);
}

.workshop-icon-inline {
    width: 1.1rem;
    height: 1.1rem;
}

.workshop-difficulty-badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    letter-spacing: 0.05em;
    color: #d1d5db;
    font-family: 'Teko', sans-serif;
}

/* Navigation Column */
.workshop-navigation-column {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.workshop-day-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    padding: 1.5rem 0.5rem;
}

.workshop-day-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #a6a6a6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.workshop-day-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7ee3ff, #8f51ea);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.workshop-day-button:hover {
    border-color: #7ee3ff;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(126, 227, 255, 0.3);
}

.workshop-day-button.workshop-active {
    border-color: transparent;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(126, 227, 255, 0.5);
    background: linear-gradient(135deg, #7ee3ff, #8f51ea);
}

.workshop-day-button.workshop-active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #fff, #7ee3ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

/* Workshop Content Areas */
.workshop-content {
    display: none;
}

.workshop-content.active {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
    animation: workshopFadeIn 0.5s ease;
}

@keyframes workshopFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Laptop Optimization */
@media (max-width: 1440px) {
    .workshop-card {
        min-height: 20rem;
    }

    .workshop-card-content {
        min-height: 20rem;
        grid-template-columns: 1fr 70px;
    }

    .workshop-content-area {
        padding: 0.8rem;
        gap: 0.4rem;
    }

    .workshop-header {
        margin-bottom: 0.2rem;
    }

    .workshop-speaker-image {
        width: 3.5rem;
        height: 3.5rem;
    }

    .workshop-main-heading {
        font-size: 2.5rem;
    }

    /* Optimized font sizes for laptop view */
    .workshop-title {
        font-size: 2rem !important;
    }

    .workshop-description {
        font-size: 1.2rem !important;
    }

    .workshop-speaker-name {
        font-size: 1.8rem !important;
    }

    .workshop-speaker-role {
        font-size: 1.2rem !important;
    }

    .workshop-takeaways-list li {
        font-size: 1.1rem !important;
    }

    .workshop-meta-info {
        font-size: 1.1rem !important;
    }

    .workshop-section-label {
        font-size: 1.2rem !important;
    }

    .workshop-register-button {
        font-size: 1.4rem !important;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .workshop-card {
        margin: 0 0.5rem;
        min-height: 35rem;
    }

    .workshop-content-area {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .workshop-cosmic-container {
        padding: 0.5rem;
    }

    .workshop-card {
        margin: 0;
        border-radius: 1rem;
        min-height: auto;
        gap: 0;
    }

    .workshop-card-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        min-height: auto;
    }

    .workshop-content-area {
        padding: 0.5rem;
        order: 1;
        gap: 0.4rem;
        min-height: auto;
    }

    .workshop-content-area::after {
        display: none;
    }

    .workshop-navigation-column {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        order: 2;
    }

    .workshop-day-buttons {
        flex-direction: row;
        padding: 0.25rem;
        gap: 0.4rem;
        justify-content: center;
        height: auto;
        min-height: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .workshop-day-button {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.9rem;
        margin: 0;
    }

    .workshop-main-heading {
        font-size: 2.8rem;
    }

    .workshop-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.15rem;
        line-height: 1.1;
    }

    .workshop-speaker-item {
        max-width: 100%;
        padding: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0.4rem;
    }

    .workshop-speaker-name {
        font-size: 1.2rem !important;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .workshop-speaker-image {
        width: 2.5rem;
        height: 2.5rem;
        border-width: 2px;
    }

    .workshop-description-section {
        margin-bottom: 0.4rem;
        padding: 0.4rem;
    }

    .workshop-description {
        font-size: 1.0rem !important;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .workshop-takeaways-section {
        margin-bottom: 0.4rem;
    }

    .workshop-takeaways-list {
        gap: 0.3rem;
        grid-template-columns: 1fr;
    }

    .workshop-takeaways-list li {
        font-size: 1.0rem !important;
        padding: 0.3rem;
        min-height: auto;
    }

    .workshop-section-label {
        font-size: 1.0rem !important;
        margin-bottom: 0.3rem;
    }

    .workshop-actions-section {
        flex-direction: column;
        align-items: stretch;
    }

    .workshop-register-button {
        justify-content: center;
        width: 100%;
        padding: 0.6rem 1.5rem;
        font-size: 1.2rem !important;
    }

    .workshop-actions-section {
        padding-top: 0.8rem;
        margin-top: 0.5rem;
        gap: 0.8rem;
    }

    .workshop-difficulty-badge {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .workshop-main-heading {
        font-size: 2.2rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .workshop-day-button:hover {
        transform: none;
    }
}

/* Workshop Section Global Font Override */
.workshops-section,
.workshops-section * {
    font-family: 'Teko', sans-serif !important;
}

.workshops-section .heading-shadow,
.workshops-section .heading-small,
.workshops-section .heading-small * {
    font-family: 'Transformers', sans-serif !important;
}

/* Progress Circle Scroll Button */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

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

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f062';
    /* fa-arrow-up icon */
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #a6a6a6;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f062';
    /* fa-arrow-up icon */
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    opacity: 0;
    color: #7ee3ff;
    /* Cyan theme color */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-circle path {
    fill: none;
}

.progress-circle path {
    stroke: #7ee3ff;
    /* Cyan theme color */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}


/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children elements if needed */
.animate-delay-100 {
    transition-delay: 100ms;
}

.animate-delay-200 {
    transition-delay: 200ms;
}


/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
    transition: opacity 1s ease-out;
}

#preloader .loader {
    --main-size: 4em;
    --text-color: #ffffff;
    --shine-color: #ffffff40;
    --shadow-color: #aaaaaa;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    position: relative;
    font-size: var(--main-size);
    font-weight: 900;
    font-family: 'Blanka', sans-serif;
    text-transform: uppercase;
    color: var(--text-color);
    width: 15em;
    height: 1em;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 0.05em var(--shine-color));
}

#preloader .text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

#preloader .text:nth-child(1) {
    clip-path: polygon(0% 0%, 11.11% 0%, 11.11% 100%, 0% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: -2.1em;
    opacity: 0.6;
}

#preloader .text:nth-child(2) {
    clip-path: polygon(11.11% 0%, 22.22% 0%, 22.22% 100%, 11.11% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: -0.98em;
    opacity: 0.7;
}

#preloader .text:nth-child(3) {
    clip-path: polygon(22.22% 0%, 33.33% 0%, 33.33% 100%, 22.22% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: -0.33em;
    opacity: 0.8;
}

#preloader .text:nth-child(4) {
    clip-path: polygon(33.33% 0%, 44.44% 0%, 44.44% 100%, 33.33% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: -0.05em;
    opacity: 0.9;
}

#preloader .text:nth-child(5) {
    clip-path: polygon(44.44% 0%, 55.55% 0%, 55.55% 100%, 44.44% 100%);
    font-size: calc(var(--main-size) / 10);
    margin-left: 0em;
    opacity: 1;
}

#preloader .text:nth-child(6) {
    clip-path: polygon(55.55% 0%, 66.66% 0%, 66.66% 100%, 55.55% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: 0.05em;
    opacity: 0.9;
}

#preloader .text:nth-child(7) {
    clip-path: polygon(66.66% 0%, 77.77% 0%, 77.77% 100%, 66.66% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: 0.33em;
    opacity: 0.8;
}

#preloader .text:nth-child(8) {
    clip-path: polygon(77.77% 0%, 88.88% 0%, 88.88% 100%, 77.77% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: 0.98em;
    opacity: 0.7;
}

#preloader .text:nth-child(9) {
    clip-path: polygon(88.88% 0%, 100% 0%, 100% 100%, 88.88% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: 2.1em;
    opacity: 0.6;
}

#preloader .text span {
    animation:
        scrolling 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite,
        shadow 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite;
}

#preloader .text:nth-child(1) span {
    background: linear-gradient(to right,
            var(--text-color) 4%,
            var(--shadow-color) 7%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(2) span {
    background: linear-gradient(to right,
            var(--text-color) 9%,
            var(--shadow-color) 13%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(3) span {
    background: linear-gradient(to right,
            var(--text-color) 15%,
            var(--shadow-color) 18%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(4) span {
    background: linear-gradient(to right,
            var(--text-color) 20%,
            var(--shadow-color) 23%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(6) span {
    background: linear-gradient(to right,
            var(--shadow-color) 29%,
            var(--text-color) 32%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(7) span {
    background: linear-gradient(to right,
            var(--shadow-color) 34%,
            var(--text-color) 37%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(8) span {
    background: linear-gradient(to right,
            var(--shadow-color) 39%,
            var(--text-color) 42%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .text:nth-child(9) span {
    background: linear-gradient(to right,
            var(--shadow-color) 45%,
            var(--text-color) 48%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

#preloader .line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 0.05em;
    width: calc(var(--main-size) / 2);
    margin-top: 0.9em;
    border-radius: 0.05em;
}

#preloader .line::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--text-color);
    opacity: 0.3;
}

#preloader .line::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 0.05em;
    transform: translateX(-90%);
    animation: wobble 2s cubic-bezier(0.5, 0.8, 0.5, 0.2) infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(-90%);
    }

    50% {
        transform: translateX(90%);
    }

    100% {
        transform: translateX(-90%);
    }
}

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

    100% {
        transform: translateX(100%);
    }
}

@keyframes shadow {
    0% {
        background-position: -98% 0;
    }

    100% {
        background-position: 102% 0;
    }
}

/* View Button for Podium Prizes */
.nnprize-view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 20px;
    background: transparent;
    border: 1px solid #7ee3ff;
    color: #7ee3ff;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.nnprize-view-btn:hover {
    background: rgba(126, 227, 255, 0.1);
    box-shadow: 0 0 15px rgba(126, 227, 255, 0.4);
    color: #fff;
    text-shadow: 0 0 8px rgba(126, 227, 255, 0.8);
    transform: translateY(-2px);
}