:root {
    --default-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei", "Source Han Sans CN", sans-serif;
}

@font-face {
    font-family: 'Reospec';
    src: url('../ASSETS/font/Reospec.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


/* Background container */
body {
    margin: 0;
    font-family: sans-serif;
    background: black;
    color: white;
    height: 200vh;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.background {
    position: relative;
    overflow: hidden;
}

/* Shared snake styling */
.snake {
    position: absolute;
    background: linear-gradient(45deg, #ffecb3, #ffd54f, #ffb300);
    filter: blur(80px);
    animation: colorShift 15s infinite alternate ease-in-out;
    will-change: transform, background;
    transition: background 2s ease-in-out;
    opacity: 0.8;
}

/* Circular snake 1 */
.snake1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: 10%;
    left: 20%;
    animation: roam1 30s infinite alternate ease-in-out;
}

/* Circular snake 2 */
.snake2 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 30%;
    left: 60%;
    animation: roam2 25s infinite alternate ease-in-out;
}

/* Oval snake 3 */
.snake3 {
    width: 1000px;
    height: 400px;
    border-radius: 50%;
    top: 50%;
    left: 40%;
    animation: roam3 25s infinite alternate ease-in-out;
}

/* Oval snake 4 */
.snake4 {
    width: 800px;
    height: 300px;
    border-radius: 50%;
    top: 20%;
    left: 50%;
    animation: roam4 30s infinite alternate ease-in-out;
}

/* Oval snake 7 */
.snake7 {
    width: 1100px;
    height: 450px;
    border-radius: 50%;
    top: 60%;
    left: 25%;
    animation: roam7 32s infinite alternate ease-in-out;
}

/* Circular snake 8 */
.snake8 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 15%;
    left: 70%;
    animation: roam8 26s infinite alternate ease-in-out;
}

/* Oval snake 9 */
.snake9 {
    width: 950px;
    height: 400px;
    border-radius: 50%;
    top: 35%;
    left: 15%;
    animation: roam9 29s infinite alternate ease-in-out;
}

/* Circular snake 10 */
.snake10 {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    top: 25%;
    left: 10%;
    animation: roam10 30s infinite alternate ease-in-out;
}

/* Updated Color Shift Animation for Aurora Effect */
@keyframes colorShift {
    0% {
        background: linear-gradient(45deg, #ffecb3, #ffd54f, #ffb300);
    }

    50% {
        background: linear-gradient(45deg, #ffd54f, #ffb300, #ff8f00);
    }

    100% {
        background: linear-gradient(45deg, #ffb300, #ff8f00, #ffd54f);
    }
}

/* Roam animations with more fluid aurora-like motion */
@keyframes roam1 {
    0% {
        transform: translate(-15vw, -15vh) scale(1.1);
    }

    50% {
        transform: translate(25vw, 25vh) scale(1.3);
    }

    100% {
        transform: translate(-15vw, -15vh) scale(1.1);
    }
}

@keyframes roam2 {
    0% {
        transform: translate(20vw, 10vh) scale(1);
        filter: blur(90px);
    }

    50% {
        transform: translate(-30vw, -20vh) scale(1.2);
        filter: blur(120px);
    }

    100% {
        transform: translate(20vw, 10vh) scale(1);
        filter: blur(90px);
    }
}

@keyframes roam3 {
    0% {
        transform: translate(-10vw, 10vh) scale(1.2);
    }

    50% {
        transform: translate(30vw, -30vh) scale(1.4);
    }

    100% {
        transform: translate(-10vw, 10vh) scale(1.2);
    }
}

@keyframes roam4 {
    0% {
        transform: translate(15vw, -10vh) scale(1);
        filter: blur(100px);
    }

    50% {
        transform: translate(-20vw, 20vh) scale(1.3);
        filter: blur(140px);
    }

    100% {
        transform: translate(15vw, -10vh) scale(1);
        filter: blur(100px);
    }
}

@keyframes roam7 {
    0% {
        transform: translate(-10vw, -10vh) scale(1);
    }

    50% {
        transform: translate(20vw, 20vh) scale(1.3);
    }

    100% {
        transform: translate(-10vw, -10vh) scale(1);
    }
}

@keyframes roam8 {
    0% {
        transform: translate(5vw, 5vh) scale(1.1);
    }

    50% {
        transform: translate(-15vw, -15vh) scale(1.3);
    }

    100% {
        transform: translate(5vw, 5vh) scale(1.1);
    }
}

@keyframes roam9 {
    0% {
        transform: translate(-5vw, -5vh) scale(1);
    }

    50% {
        transform: translate(15vw, 15vh) scale(1.2);
    }

    100% {
        transform: translate(-5vw, -5vh) scale(1);
    }
}

@keyframes roam10 {
    0% {
        transform: translate(0vw, 0vh) scale(1);
    }

    50% {
        transform: translate(-10vw, 10vh) scale(1.3);
    }

    100% {
        transform: translate(0vw, 0vh) scale(1);
    }
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns content to the left */
    padding: 20px 10%;
    box-sizing: border-box;
    position: relative;
    min-height: 100vh;
    /* Ensures it covers full screen height if necessary */
    justify-content: center;
    /* Aligns vertically to center */
    z-index: 1;
    margin-left: 12rem;
}

.title {
    font-size: 12vw;
    font-family: 'Reospec', sans-serif;
    margin: -50px 0 0;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.tagline {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-family: Inter, var(--default-font);
    font-weight: 200;
    margin: -30px 0 0;
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.silhouette_mobile {
    display: none;
}

/* Banner Section */
.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: black;
}

.image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    text-align: left;
    max-width: 50%;
    margin-left: 5%;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.5);
    border-left: 5px solid white;
}

.shield_tagline {
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background-color: #000;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.shield {
    width: 150px;
    height: auto;
    margin-right: 1rem;
    transition: transform 0.3s ease-in-out;
    animation: breathe 3s infinite ease-in-out;
    vertical-align: middle;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.wrapper {
    display: flex;
    align-items: center;
    /* This aligns the static and dynamic text vertically */
}

.wrapper .static-txt {
    color: #fff;
    font-size: 3.12vw;
    font-weight: 400;
    display: flex;
    align-items: center;
    /* Align text vertically */
    height: 90px;
    /* Match the height of dynamic text */
    font-weight: 600;
}

.wrapper .dynamic-txts {
    margin-left: 15px;
    height: 90px;
    line-height: 90px;
    overflow: hidden;
    position: relative;
}

.dynamic-txts li {
    list-style: none;
    color: #ffd100;
    font-size: 3.12vw;
    font-weight: 500;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite;
    font-weight: 600;
}

@keyframes slide {
    100% {
        top: -360px;
    }
}

.dynamic-txts li span {
    position: relative;
    margin: 5px 0;
    line-height: 90px;
}

.dynamic-txts li span::after {
    margin-top: .5rem;
    content: "";
    position: absolute;
    left: 0;
    height: 120%;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 20%, black 100%);
    border-left: 2px;
    animation: typing 3s steps(12) infinite;
}

@keyframes typing {

    40%,
    60% {
        left: calc(100% + 30px);
    }

    100% {
        left: 0;
    }
}


.contact-section {
    position: relative;
    display: flex;
    background-color: #000;
    padding: 40px;
    height: 500px;
    /* Increased to accommodate the contact card */
 
    margin-top: -100px;
}

.map {
    width: 70%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.contact-card {
    position: absolute;
    bottom: 20px;
    /* Adjusted from -200px to bring it inside */
    right: 20px;
    width: 35%;
    height: auto;
    /* Allows flexible height */
    background-color: #ffd100;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-details li span {
    font-size: 1.5rem;
    margin-right: 12px;
    color: black;
    /* Adjust as needed */
}

.contact-details li:hover span {
    color: #333;
    /* Slightly darker for hover effect */
}

.contact-details a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.contact-details p {
    margin: 0;
    color: black;
}


/*Sponsors*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffb300;
    border-radius: 2px;
}

/* Partnership Section Desktop Styles */
.partnership-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

.logo-carousel {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 1);
    width: 100%;
}

.logos {
    display: flex;
    align-items: center;
    gap: min(60px, 4vw);
    animation: scroll 80s linear infinite;
    width: max-content;
    transform: translateZ(0); /* Enable hardware acceleration */
    will-change: transform; /* Optimize for animations */
}

.partner-logo {
    width: clamp(120px, 10vw, 150px);
    height: clamp(60px, 5vw, 80px);
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(80%);
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Gradient fade effect on edges */
.logo-carousel:before,
.logo-carousel:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel:before {
    left: 0;
    background: linear-gradient(to right, black, rgba(0, 0, 0, 0));
}

.logo-carousel:after {
    right: 0;
    background: linear-gradient(to left, black, rgba(0, 0, 0, 0));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px)); /* Move exactly half the width */
    }
}

@media (max-width: 768px) {
    .partner-logo {
        width: 100px;
    }

    .logos {
        gap: 40px;
    }
}


#features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 10%;
    text-align: center;
}

.feature {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    font-size: 3.65vw;
    color: white;
    margin-bottom: 10px;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.6vw;
    margin-bottom: 10px;
}

.feature h2 {
    font-size: 1.15vw;
    margin-bottom: 10px;
    color: white;
}

.feature p {
    font-size: 0.83vw;
    color: #666;
}