@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --background-color: #0a0a2a;
    --text-color: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}
body {
    font-family: Arial, sans-serif;
    color: #fff;
    scroll-behavior: smooth;
    background-color: black;
}
header {
    position: fixed;
    font-size: 1.2rem;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.8s;
    padding: 30px 100px;
    z-index: 998;
}
header.sticky {
    padding: 20px 100px;
    background-color: rgba(17, 17, 17, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header .logo {
    position: relative;
    font-weight: 700;
    color: cyan;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
    animation: slide-in-left 3s forwards;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: cyan;
    letter-spacing: 2px;
    font-weight: 300;
    transition: 0.8s;
}

header.sticky .logo,
header.sticky ul li a {
    color: #00ffff;
}

header ul li a:hover {
    color: whitesmoke;
}

header .logo:hover {
    color: whitesmoke;
}
.name{
    color:cyan;
    display: flex;
    gap: 10px;
}
.name img{
    cursor: pointer;
    height: 45px;
    padding-left:6px;
    transform: scale(2); 
}
.name img:hover{
    transform: scale(1.9); 
}
.navt{
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.top {
    width: 100%;
    height: 97vh;
    position: relative;
    overflow: hidden;
}
.top::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; 
    background: linear-gradient(transparent, rgb(0, 0, 0));
    pointer-events: none; 
}
.top video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.content {
    position: relative;
    z-index: 1;
    height: 69vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.bottom {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: black;
}
.main-txt {
    opacity: 0;
    margin-top: -16%;
    transform: translateY(50px);
    transition: opacity 2s ease, transform 2s ease;
}
.main-txt.visible {
    opacity: 1;
    transform: translateY(0);
}
.neon {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    color: var(--primary-color);
}
.partners-section {
    padding: 90px 6%;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 30px var(--neon-glow);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    
}
.partners-section.animate {
    opacity: 1;
    transform: translateY(0);
}
.partners-section h1 {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    padding-top: 110px;
    font-size: 3.5rem;
}
.partners-hr {
    border: none;
    height: 3px;
    background-color: var(--primary-color);
    margin: 30px auto;
    box-shadow: 0 0 15px var(--primary-color);
}
.partners-hr.top {
    width: 80%;
}
.partners-hr.bottom {
    width: 80%;
}
.partners-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.partners-text {
    color:rgb(197, 197, 197);
    font-size: 1.6em;
    padding-left: 30px;
    padding-top: 30px;
    flex: 1;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.partners-section.animate .partners-text {
    opacity: 1;
    transform: translateX(0);
}

.partners-logos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: popIn 0.5s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}
.partners-section.animate .partner-logo {
    opacity: 1;
    transform: scale(1);
}

.partner-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}
.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }}
@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }
.partner-logo:nth-child(6) { animation-delay: 0.6s; }

.message {
    font-size: 1.5rem;
    margin-top: 20px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cards {
    background-color: black;
    height: 99.69%;
}
.Heading-cards {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.969%;
    padding-top: 100px;
    font-size: 2.969em;
}
.card-container {
    position: relative;
    overflow: hidden;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 1.969%;
    padding-bottom: 2.869%;
}

.card {
    cursor: pointer;
    position: relative;
    width: 290.69px;
    height: 420.69px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1.2s;
    padding-left: 7.69px;
    padding-right: 7.69px;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    width: 120%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 1;
}
.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

.bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #033541;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
    transition: transform 0.65s ease-in-out, clip-path 0.65s ease-in-out;
    transform: translateX(-100%);
    z-index: 3.5;
}

.card:hover .bg::after {
    transform: translateX(0);
}

.card:hover .card-img {
    opacity: 0;
    transition: opacity 0.7s ease-in-out 0.35s;
}
.card:hover .content {
    opacity: 1;
    transition: opacity 0.55s ease-in-out 0.7s;
}

.content {
    position: relative;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.heading {
    text-align: center;
    font-family: 'dosis';
    font-size: 36.69px;
    text-transform: capitalize;
    color: white;
    margin-bottom: 16.69px;
}
.info {
    font-family: 'roboto', sans-serif;
    color: white;
    text-align: center;
    line-height: 19.69px;
}
.card:hover .info {
    font-family: 'roboto', sans-serif;
    color: white;
    font-size: 16.69px;
}
.card:hover .heading{
    text-align: center;
    font-family: 'dosis';
    font-size: 41px;
    text-transform: capitalize;
    color: white;
    margin-bottom: 29.69px;
}
.navigation-buttons {
    display: flex;
    justify-content: center;
    margin-top: 19.69px;
    padding-bottom: 38.69px;
}
.nav-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background-color: var(--primary-color);
    color: black;
}
.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
::-webkit-scrollbar {
    width: 12px;
    z-index: 997;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, #00c6ff);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, #00c6ff);
}
.para{
    width: 100%;
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 26, 0.8); 
}
.trans {
    padding: 60px 100px;
    background-color: black; 
    color: var(--text-color); 
    text-align: left;
    display: grid;
    grid-template-columns: 0.9fr 0.9fr;
    gap: 20px;
    align-items: start; 
}
.neon-text {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    grid-column: 1 / -1; 
    text-transform: uppercase;
    font-size: 4.4rem;
    text-align: center;
    color: #00ffff;
}
.gaming-club-content {
    display: grid;
    grid-template-columns: 2fr 0.8fr;
    gap: 18px;
    align-items: start; 
}
.text-content {
    font-family: "Audiowide", sans-serif;
}
.text-content h1 {
    font-size: 3rem;
    color: var(--primary-color); 
    margin-bottom: 20px;
}
.trans p {
    color:rgb(197, 197, 197);
    font-size: 1.6em;
    padding-left: 30px;
    padding-top: 60px;
}
.trans img {
    width: 90%;
    height: auto;
    object-fit: cover;
    padding-top: 4em;
    border-radius: 8px;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}.loading-gif {
    width: 49%;   
}
footer {
    background-color: #1a1a1a;
    color:rgb(197, 197, 197);
    font-family: 'Poppins', sans-serif;
    padding: 60px 0 20px;
    font-size: 15px;
    line-height: 1.5;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}
.footer-section {
    flex: 1;
    padding: 0 18px;
    min-width: 300px;
    margin-bottom: 37px;
}
.footer-section h2 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.about .logo-text {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.about p {
    margin-bottom: 20px;
}
.about .contact span {
    display: block;
    margin-bottom: 10px;
}
.socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.socials a:hover {
    background: #00ffff;
    color: #1a1a1a;
    transform: translateY(-5px);
}
.links ul {
    list-style: none;
    padding: 0;
}
.links ul li {
    margin-bottom: 15px;
}
.links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.links ul li a:hover {
    color: #00ffff;
    padding-left: 10px;
}
.contact-form .contact-input {
    background: #333;
    color: #ffffff;
    border: none;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
}
.contact-form .contact-input::placeholder {
    color: #999;
}
.contact-form .contact-btn {
    background: #00ffff;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form .contact-btn:hover {
    background: #ffffff;
}

.footer-bottom {
    background: #111;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #00ffff;
    text-decoration: none;
}
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
}
.side-navbar {
    display: none;
    position: fixed;
    top: 0;
    right: -250px;
    width: 180px;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 999;
    transition: 0.3s;
    overflow-y: auto;
}
.side-navbar.active {
    right: 0;
}
.side-navbar ul {
    padding: 50px 0;
    list-style: none;
}
.side-navbar ul li {
    padding: 15px 30px;
}
.side-navbar ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}
.side-navbar ul li a:hover {
    color: var(--secondary-color);
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 1024px) and (orientation: portrait) {
    header {
        padding: 14px 0px;
        font-size: 1.0em;
    }

    header.sticky {
        padding: 14px 0px;
    }
    .partners-content{
        display: flex;
        flex-direction: column;
    }
    .mobile-menu-icon {
        position: absolute;
        top: 1rem;
        right: 0.6rem;
        cursor: pointer;
        font-size: 20px;
        color: var(--primary-color);
    }
    .trans {
        padding: 40px 50px;
        grid-template-columns: 1fr;
    }
    .gaming-club-content {
        grid-template-columns: 1fr;
    }
    .trans img{
        justify-self: center;
    }
    .card-container{
        display: flex;
        flex-direction: row;
        flex-wrap:wrap;
        justify-content: center;
    }
   .card-container .card {
        width: 49.69%;
        max-width: 36.69%;
        height: 57.69%;
    }
    .card-container .card .content p{
        font-size: 0.9em;
    }
    .navigation-buttons{
        margin-top: -16.69%;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait){
    ::-webkit-scrollbar {
        display: none;
    }
    header {
        padding: 14px 0px;
    }
    header .logo{
        font-size: 1.269em;
    }
    header .name{
        gap: 5px;
    }
    header.sticky {
        padding: 14px 0px;
    }

    header ul {
        display: none;
    }
    .partners-section{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .name{
        padding-top:1.85%;
    }
    .mobile-menu-icon {
        display: block;
    }
    .side-navbar {
        display: block;
    }
    .message {
        font-size: 1.2rem;
    }

    .partners-section h1 {
        font-size: 2.8em;
    }
    .partners-section .partners-text {
        font-size: 1.0em;
        padding-left: 7.7%;
        margin-bottom: 24%;
    }

    .card-container{
        display: flex;
        flex-direction: row;
        flex-wrap:wrap;
    }
   .card-container .card {
        width: 30%;
        max-width: 31%;
        height: 60%;
    }
    .trans p {
        font-size: 0.9em;
        padding-left: 0;
    }
    .socials a{
        font-size: 15px;
    }
    .card-container .flex .card .content{
        padding-bottom:339px;
    }
    .card-container .flex .card .content .heading{
        padding-top: 80px;
        font-size: 15.69px;
    }
    .card-container .flex .card .content .info{
        font-size: 9px;
    }
    .navigation-buttons{
        margin-top: -20.69%;
    }
}

@media screen and (max-width: 480px) and (orientation: portrait){
    .top {
        width: 100%;
        height: 45vh;
        position: relative;
        overflow: hidden;
    }
    .partners-hr {
        display: none;
    }
    .name{
        font-size: 0.96rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .side-navbar {
        display: block;
    }
    .name{
        padding-top:1%;
        padding-left: -2.05%;
        padding-right: 3.07%;
    }
    .name img{
        cursor: pointer;
        height: 27px;
        padding-left:6px;
        transform: scale(2);
    }

    .mobile-menu-icon {
        display: block;
        cursor: pointer;
        font-size: 1.2em;
        color: var(--primary-color);
    }
    .partners-logos{
        padding-top: -38%;
        margin-top: -38%;
    }
    .card-container{
        display: flex;
        padding-top: 7%;
        flex-direction: row;
        flex-wrap:wrap;
        justify-content: center;
    }
   .card-container .card {
        width: 48%;
        max-width: 41%;
        height: 50%;
    }
    .navigation-buttons{
        margin-top: -40%;
        padding-top: -40%;
    }
    .flex {
        display: flex;
        flex-wrap: wrap;
    }
    .trans .gaming-club-content p{
        font-family: sans-serif;
        text-align: center;
        font-size:1rem;
    }
    .partners-section h1 {
        margin-top: -30%;
        font-size: 2.1rem;
    }

    .Heading-cards h1 {
        font-size: 2.1rem;
    }

    .trans .neon-text {
        font-size: 1.569rem;
    }

    .text-content h1 {
        font-size: 2.1rem;
    }

    .trans p {
        font-size: 0.9em;
    }
}
@media only screen and (max-width: 768px) and (orientation: portrait){
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        padding: 0;
        margin-bottom: 30px;
    }

    .footer-section h2 {
        font-size: 1.5rem;
    }

    .about .logo-.name-text {
        font-size: 1.8rem;
    }

    .socials a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    .contact-form {
        display: none;
    }
}

@media only screen and (max-width: 480px) and (orientation: portrait){
    .footer-content {
        padding: 0 10px;
    }

    .footer-section h2 {
        font-size: 1.3rem;
    }

    .about .logo-text {
        font-size: 1.6rem;
    }

    .footer-section {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .socials a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
@media (orientation: landscape) and (max-width: 1111px){
    header{
        padding: 14px 0px;
    }
    header .sticky{
        padding: 14px 0px;
    }
    header .name img{
        width: 70px;
        height: 35px;
    }
    header .name a{
        font-size: 1.5rem;
    }
    header ul{
        display: none;
    }
    .partners-content{
        display: flex;
        flex-direction: column;
    }
    .mobile-menu-icon {
        display: block;
        position: absolute;
        top: 0.81rem;
        right: 0.6rem;
        cursor: pointer;
        font-size: 40px;
        color: var(--primary-color);
    }
    .side-navbar{
        display: block;
        width: 230px;
        padding-left: 25px;
    }
   
    .trans {
        padding: 40px 50px;
        grid-template-columns: 1fr;
    }
    .trans h1{
        font-size: 3rem;
    }
    .trans img{
        justify-self: center;
        width: 500px;
        height: 300px;
    }
    .gaming-club-content {
        grid-template-columns: 1fr;
        font-size: 0.8rem;
    }
    .cards .Heading-cards h1{
        font-size: 3rem;
        margin-bottom: 5px;
    }
    .card-container{
        display: flex;
        flex-direction: row;
        flex-wrap:wrap;
        justify-content: center;
    }
    .card-container .card{
        width: 50%;
        max-width: 20%;
        height: 80%;
    }
    .card-container .card .content{
        margin-top: -20%;
    }
    .card-container .card .content p{
        font-size: 0.3em;
    }
    .card-container .card .content h1{
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .navigation-buttons{
        margin-top: -4%;
    }
    .partners-section{
        padding-top: 10px;
        padding-bottom: 50px;
    }
    .partners-section h1{
        font-size: 2.8rem;
    }
    .partners-text{
        font-size: 1rem;
    }
    .partners-hr .middle{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .partners-logos{
        margin-top: -14%;
    }
    .partner-logo{
        height: 150px;
        width: 150px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        padding: 0;
        margin-bottom: 30px;
    }

    .footer-section h2 {
        font-size: 1.5rem;
    }

    .about .logo-.name-text {
        font-size: 1.8rem;
    }

    .socials a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    .contact-form {
        display: none;
    }
}
@media (orientation: landscape) and (max-width: 768px){
    header .name a{
        font-size: 1.1rem;
    }
    header .name img{
        width: 40px;
        height: 20px;
    }
    .mobile-menu-icon{
        font-size: 20px;
    }
    .trans h1{
        font-size: 2rem;
    }
    .trans img{
        width: 300px;
        height: 200px;
    }
    .gaming-club-content{
        font-size: 0.7rem;
    }
    .cards .Heading-cards h1{
        font-size: 2rem;
    }
    .card-container .card{
        width: 30%;
        max-width: 30%;
        height:110%;
    }
    .navigation-buttons{
        margin-top: 50px;
    }
    .partners-section h1{
        font-size: 2rem;
    }
    .partners-text{
        font-size: 0.9rem;
    }
    .partners-logos{
        margin-top: -20%;
    }
    .partner-logo{
        width: 100px;
        height: 100px;
    }
}