body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #0b0f19;
    color: #ffffff;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTmlzf5RDOPprqKPu0wmj6FZb_nR9MG7KrUyg&s') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    scroll-snap-align: start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.85);
    /* Dark tint over the background image */
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 100%;
    pointer-events: none;
    z-index: 1;
}

.custom-navbar {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

.logo-container .logo {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.6)) brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-container .logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.8rem;
    padding: 2px 12px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s;
}

.menu-toggle:hover {
    background: rgba(15, 20, 30, 0.8);
}

.nav-links-container {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.nav-links li a {
    color: #c9d1df;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 6px 10px;
    white-space: nowrap;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px #ffd700;
}

.nav-links li a:hover {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hero-content {
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 50px;
}

.hero-title,
.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    position: relative;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: glitch 5s infinite;
}

.hero-title::before,
.hero-title::after {
    content: 'HACKASTORM';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-title::before {
    color: #ff3c5f;
    z-index: -1;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.hero-title::after {
    color: #2ed573;
    z-index: -2;
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

.hero-subtitle {
    font-size: clamp(3rem, 10vw, 7rem);
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    margin-top: -10px;
}

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 40px, 0);
        transform: translate(-2px, -2px);
    }

    20% {
        clip: rect(30px, 9999px, 60px, 0);
        transform: translate(2px, 2px);
    }

    40% {
        clip: rect(50px, 9999px, 80px, 0);
        transform: translate(-2px, 2px);
    }

    60% {
        clip: rect(70px, 9999px, 10px, 0);
        transform: translate(2px, -2px);
    }

    80% {
        clip: rect(90px, 9999px, 30px, 0);
        transform: translate(-2px, -2px);
    }

    100% {
        clip: rect(10px, 9999px, 50px, 0);
        transform: translate(2px, 2px);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(80px, 9999px, 20px, 0);
        transform: translate(2px, 2px);
    }

    20% {
        clip: rect(60px, 9999px, 40px, 0);
        transform: translate(-2px, -2px);
    }

    40% {
        clip: rect(40px, 9999px, 60px, 0);
        transform: translate(2px, -2px);
    }

    60% {
        clip: rect(20px, 9999px, 80px, 0);
        transform: translate(-2px, 2px);
    }

    80% {
        clip: rect(10px, 9999px, 100px, 0);
        transform: translate(2px, 2px);
    }

    100% {
        clip: rect(90px, 9999px, 10px, 0);
        transform: translate(-2px, -2px);
    }
}

.title-wrapper {
    padding: 20px;
    z-index: 5;
}


.college-name {
    font-size: 1.25rem;
    font-weight: 400;
    color: #c0cada;
    margin-bottom: 5px;
    margin-top: 30px;
}

.event-date {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
}

.stats-row {
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stats-row .stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.stats-row .stat-label {
    font-size: 0.85rem;
    color: #8c9baf;
    letter-spacing: 1px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.countdown-container {
    background: rgba(16, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-width: fit-content;
}

.countdown-label {
    color: #8c9baf;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.time-box {
    display: flex;
    flex-direction: column;
    min-width: 60px;
    align-items: center;
}

.time-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
}

.time-text {
    font-size: 0.65rem;
    color: #8c9baf;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.time-colon {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #a4b3c6;
    margin-top: -5px;
}

/* Floating Robots placeholders */
.robot {
    position: absolute;
    font-size: 40px;
    top: 50%;
    transform: translateY(-50%);
    animation: float 3s ease-in-out infinite;
}

.left-robot {
    left: -60px;
}

.right-robot {
    right: -60px;
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-60%);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Responsive Navbar Adjustments */
@media (max-width: 991px) {
    .custom-navbar {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px 30px;
        align-items: center;
    }

    .logo-container .logo {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links-container {
        display: none;
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        border-radius: 15px;
        flex-direction: column;
    }

    .nav-links-container.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .robot {
        display: none;
        /* Hide robots on smaller screens to prevent overflow */
    }
}

@media (max-width: 576px) {
    .custom-navbar {
        padding: 10px 20px;
    }

    .logo-container .logo {
        height: 60px;
    }

    .nav-links-container {
        padding: 15px 10px;
        width: 100%;
        border-radius: 15px;
    }

    .nav-links {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        margin: 0 !important;
    }

    .countdown-container {
        padding: 15px 20px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-colon {
        font-size: 1.2rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: rgba(5, 8, 15, 0.75);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    /* Grid Dot Background */
    background-image: radial-gradient(rgba(255, 60, 95, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    scroll-snap-align: start;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, rgba(255, 60, 95, 0.1), transparent 70%);
    pointer-events: none;
}

.faq-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.faq-main-title .highlight {
    background: linear-gradient(90deg, #ff3c5f, #ff8a40);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.faq-header:hover .faq-question {
    color: #ff3c5f;
    transform: translateX(10px);
}

.faq-header:hover .faq-number {
    transform: scale(1.2);
}

.faq-number {
    font-size: 0.9rem;
    color: #ff3c5f;
    margin-right: 25px;
    font-weight: 700;
    opacity: 0.8;
    transition: transform 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.faq-header[aria-expanded="true"] .faq-icon-wrapper {
    background: #ff3c5f;
    border-color: #ff3c5f;
}

.faq-icon {
    font-size: 1.2rem;
    color: #8c9baf;
    transition: 0.3s transform ease, color 0.3s ease;
}

.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #fff;
}

.faq-header[aria-expanded="true"] .faq-question {
    color: #fff;
}

.faq-body {
    padding: 0 40px 30px 50px;
    color: #8c9baf;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.faq-visual-container {
    position: relative;
}

.faq-image {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.faq-image:hover {
    transform: translateY(-10px) scale(1.02);
}

.faq-slogan {
    margin-top: 40px;
}

.faq-slogan h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.slogan-build {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 5px;
}

.slogan-impact {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #4b5563;
    /* Muted gray for emphasis on the second line */
}

/* Scroll reveal animation class */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-main-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .faq-visual-container {
        margin-top: 50px;
    }
}

/* Domains Section Styles */
.domains-section {
    background-color: rgba(5, 8, 15, 0.6);
    position: relative;
    height: 300vh;
    /* Room to scroll vertically while sticking */
}

.domains-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(46, 213, 115, 0.02) 2px,
            rgba(46, 213, 115, 0.02) 4px);
    pointer-events: none;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* Better distribution of title and cards */
    overflow: hidden;
    padding: 20px 0;
}

.domain-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2ed573;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.domain-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.domain-subtitle {
    color: #8c9baf;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.domains-container {
    padding: 30px 0 100px;
    /* Space for cards to lift on hover */
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.domains-container::-webkit-scrollbar {
    display: none;
}

.domains-track {
    display: flex;
    gap: 30px;
    padding: 20px min(50px, 5vw);
    width: max-content;
}

.domain-card {
    width: calc((100vw - 200px) / 3);
    /* Responsive width for 3 cards with padding */
    max-width: 400px;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.domain-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.domain-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 2.2rem;
    color: #fff;
    position: relative;
    transition: 0.3s;
}

.domain-card:hover .domain-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.health .domain-icon-box {
    background: linear-gradient(135deg, #2ed573, #7bed9f);
    box-shadow: 0 15px 30px rgba(46, 213, 115, 0.3);
}

.education .domain-icon-box {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    box-shadow: 0 15px 30px rgba(255, 71, 87, 0.3);
}

.industry .domain-icon-box {
    background: linear-gradient(135deg, #ffa502, #ff7f50);
    box-shadow: 0 15px 30px rgba(255, 165, 2, 0.3);
}

.energy .domain-icon-box {
    background: linear-gradient(135deg, #747d8c, #2f3542);
    box-shadow: 0 15px 30px rgba(47, 53, 66, 0.3);
}

.cities .domain-icon-box {
    background: linear-gradient(135deg, #1e90ff, #70a1ff);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.3);
}

.sdg-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #aebacd;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.domain-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

.domain-desc {
    color: #8c9baf;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .domain-card {
        width: 350px;
        min-width: 300px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background-color: #0b0f19;
    overflow: hidden;
    scroll-snap-align: start;
}

.gallery-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #8c9baf;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gallery-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.marquee-container {
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 20px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    width: max-content;
    /* Ensure the content takes full width of images */
}

.marquee-content img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.marquee-content img:hover {
    transform: scale(1.05);
    border-color: #ff3c5f;
    z-index: 10;
}

/* Row 1: Right to Left */
.row-ltr .marquee-content {
    animation: scroll-ltr 30s linear infinite;
}

/* Row 2: Left to Right */
.row-rtl .marquee-content {
    animation: scroll-rtl 30s linear infinite;
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
        /* Half of the gap to align perfectly */
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-content img {
        width: 280px;
        height: 180px;
    }

    .gallery-section {
        padding: 60px 0;
    }
}

/* Timeline Section Styles */
/* New Timeline Section Styles */
.timeline-section {
    background-color: rgba(5, 8, 15, 0.7);
    /* More transparent to reveal home bg */
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.6), transparent);
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.timeline-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.6), transparent);
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.timeline-bg-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10L90 10M10 50L90 50M10 90L90 90' stroke='rgba(255,215,0,0.1)' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.timeline-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    position: relative;
    z-index: 10;
}

.nav-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-logo img {
    height: 40px;
    filter: brightness(1.2);
}

.day-badge h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 2px;
}

.day-badge p {
    font-size: 0.75rem;
    color: #556070;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.nav-center {
    flex: 1;
    padding-top: 10px;
}

.quote-text {
    font-style: italic;
    color: #8c9baf;
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.6;
}

.quote-author {
    color: #4b5563;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.btn-download-tm {
    background: #00c853;
    /* Premium Green */
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
}

.btn-download-tm:hover {
    background: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 200, 83, 0.3);
    color: #fff;
}

.timeline-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 5;
    padding-bottom: 80px;
}

.big-time {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.event-main-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.event-sub-desc {
    font-size: 1.25rem;
    color: #8c9baf;
    margin-bottom: 40px;
}

.timeline-footer-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.progress-track {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-filler {
    height: 100%;
    background: #556070;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-counter {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    min-width: 60px;
}

/* Timeline Ball Animation */
.scroll-ball-timeline {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #fff700, #ffaa00);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(1px);
    box-shadow: 0 0 40px rgba(255, 170, 0, 0.6),
        0 0 100px rgba(255, 170, 0, 0.2);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    transition: transform 0.4s cubic-bezier(0.1, 0.1, 0.2, 1),
        background 0.8s ease,
        box-shadow 0.8s ease;
}

.scroll-ball-timeline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .timeline-header-nav {
        padding: 20px 30px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-center {
        order: -1;
    }

    .nav-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .big-time {
        font-size: 6rem;
    }
}

/* Contact Us Section Styles */
.contact-section {
    background-color: rgba(5, 8, 15, 0.8);
    padding: 100px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), transparent 70%);
    pointer-events: none;
}

.contact-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.map-card {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
    /* Dark mode map effect */
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 20, 30, 0.9);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 5;
    max-width: 300px;
}

.map-overlay-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.4;
}

.map-overlay-info p {
    font-size: 0.85rem;
    color: #8c9baf;
    margin: 5px 0 0;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4b5563;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.green-dot {
    width: 6px;
    height: 6px;
    background-color: #2ed573;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ed573;
}

.info-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.email-box {
    background: rgba(16, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    transition: 0.3s;
    text-decoration: none;
}

.email-box:hover {
    border-color: rgba(46, 213, 115, 0.4);
    background: rgba(46, 213, 115, 0.05);
}

.email-text {
    font-weight: 500;
    color: #e2e8f0;
}

.email-arrow {
    color: #2ed573;
    font-size: 1.2rem;
}

.call-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8c9baf;
    margin-bottom: 15px;
}

.contact-row {
    background: rgba(15, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
}

.contact-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-role {
    font-size: 0.8rem;
    color: #636e72;
    margin-left: 10px;
}

.contact-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
}

.social-section {
    margin-bottom: 30px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-box {
    background: rgba(16, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #e2e8f0;
}

.social-box:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.social-box.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.2);
}

.social-box.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2);
}

.social-icon-wrapper {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-box.instagram .social-icon-wrapper {
    color: #e4405f;
}

.social-box.linkedin .social-icon-wrapper {
    color: #0077b5;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.response-note {
    font-size: 0.8rem;
    color: #4b5563;
    margin-top: 20px;
}

.reach-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.reach-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.reach-icon {
    font-size: 1.5rem;
    color: #a855f7;
}

.reach-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8c9baf;
    font-weight: 700;
}

.reach-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #c9d1df;
    margin-bottom: 15px;
}

.reach-info p b {
    color: #fff;
}

.creator-footer {
    padding: 40px 0;
    text-align: center;
    background-color: #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.creator-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4b5563;
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .map-card {
        height: 400px;
    }
}

/* Digital Cyber Background */
body {
    position: relative;
    background-color: #0b0f19 !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(5, 8, 15, 0.4) 100%),
        linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    z-index: -5;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    box-shadow: inset 0 0 150px rgba(255, 215, 0, 0.05);
    z-index: -4;
    pointer-events: none;
    animation: atmospheric-pulse 8s infinite alternate;
}

@keyframes atmospheric-pulse {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0.8;
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100vh);
    }
}

#cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -6;
    background-color: #05080f;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.03), transparent);
    animation: scanline 10s linear infinite;
    z-index: -3;
    pointer-events: none;
    opacity: 0.5;
}

/* Floating Code Fragments */
.floating-code {
    position: fixed;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: rgba(255, 215, 0, 0.1);
    z-index: -4;
    white-space: nowrap;
    pointer-events: none;
    animation: float-code 20s linear infinite;
}

@keyframes float-code {
    from {
        transform: translateY(100vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Prize Pool Section Styles */
.prize-section {
    background-color: rgba(5, 8, 15, 0.7);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.prize-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.prize-header {
    text-align: center;
    margin-bottom: 60px;
}

.prize-badge {
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.prize-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.prize-subtitle {
    color: #8c9baf;
    font-size: 1.1rem;
    font-weight: 500;
}

.total-prize-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.total-prize-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.total-prize-card .label {
    font-size: 0.75rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.total-prize-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.winners-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.winner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    backdrop-filter: blur(15px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.winner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.winner-rank-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    font-size: 0.9rem;
}

.rank-1 .winner-rank-badge {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
}

.rank-1:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3), 0 30px 60px rgba(0, 0, 0, 0.8);
}

.rank-2 .winner-rank-badge {
    background: #aebacd;
    color: #000;
}

.rank-3 .winner-rank-badge {
    background: #cd7f32;
    color: #000;
}

.winner-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8c9baf;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.winner-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
}

.rank-1 {
    transform: translateY(-20px);
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.1);
}

.rank-1 .winner-amount {
    color: #ffd700;
}

.consolation-prizes {
    text-align: center;
    margin-top: 60px;
}

.consolation-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.prize-footer-text {
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Side Door Styles */
.side-door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 30;
    /* Ensure it stays above EVERYTHING in the section */
    pointer-events: none;
    opacity: 0.95;
    /* Higher visibility */
    backdrop-filter: blur(12px);
    transition: transform 0.1s linear, opacity 0.1s linear;
}

.door-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.95), rgba(0, 0, 0, 0.9));
    box-shadow: inset -15px 0 50px rgba(255, 215, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.5);
    border-right: 5px solid #ffd700;
    transform: translateX(0);
}

.door-left::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 20px;
    height: 100px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transform: translateY(-50%);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #ffd700;
    color: #0b0f19;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-5px) scale(1.1);
}

.scroll-top-btn:active {
    transform: scale(0.95);
}

/* Particles & Stars for Prize Section */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    filter: blur(0.5px);
    box-shadow: 0 0 10px #fff, 0 0 15px #ffd700;
    animation: twinkle var(--duration) infinite alternate;
}

.particle-dot {
    position: absolute;
    background: rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    animation: float-particle var(--duration) linear infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0.2;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-20vh) translateX(var(--drift));
        opacity: 0;
    }
}

.door-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 215, 0, 0.95), rgba(0, 0, 0, 0.9));
    box-shadow: inset 15px 0 50px rgba(255, 215, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.5);
    border-left: 5px solid #ffd700;
    transform: translateX(0);
}

.door-right::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 20px;
    height: 100px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transform: translateY(-50%);
}