@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Joti+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Joti+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", sans-serif;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 50%, #2a3f5f 100%);
    color: white;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #121923;
    height: 90px;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    width: 151.7435302734375px;
    height: 69px;


}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-left {
    justify-self: start;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-self: end;
}

.nav-right .nav-menu {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #64b5f6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64b5f6;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(69.74deg, #FEFEFE 9.28%, #D2D2D2 32.09%, #FFFFFF 50.13%, #D2D2D2 74.3%, #FFFFFF 95.96%);
    color: #0a0f1c;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background: #64b5f6;
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* height: 869px; */
    display: flex;
    align-items: center;
    position: relative;
    /* padding: 0 2rem; */
    background: url('../images/Group\ 1\ \(1\).png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8) 0%, rgba(26, 35, 50, 0.6) 50%, rgba(42, 63, 95, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
    width: 886px;

}

.hero-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(89.47deg, #131B27 0.45%, rgba(14, 21, 31, 0) 47.66%);

}

.hero-logo img {
    margin-top: 10rem;
}

.hero-subtitle {
    font-family: Joti One;
    font-weight: 400;
    font-style: Regular;
    font-size: 48px;
    line-height: 40.41px;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.hero-description {
    font-family: Jost;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 19px;
    letter-spacing: 0%;
    padding-bottom: 10px;
    text-align: left;
    margin-left: 160px;

}

.btn {
    margin: 3rem;
    text-align: left;
    margin-left: 12rem;
}

.get-started-btn {
    background: linear-gradient(69.74deg, #FEFEFE 9.28%, #D2D2D2 32.09%, #FFFFFF 50.13%, #D2D2D2 74.3%, #FFFFFF 95.96%);

    width: 0px;
    height: 62.673274993896484px;
    border-radius: 9px;
    border: none;


}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.6);
    background: linear-gradient(45deg, #1565c0, #2196f3);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #64b5f6, transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-orb:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-orb:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-orb:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 15, 28, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-logo img {
        width: 100%;

    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 0 1rem;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 2rem;
    }

    .hero-logo img {
        margin-top: 10rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-btn {
        padding: 0.2rem .2rem;

    }

}


.games-section {
    padding: 4rem 2rem;
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
    background: #003352;
    background: linear-gradient(174.38deg, rgba(19, 27, 39, 0) -32.69%, #131B27 7.59%, rgba(19, 27, 39, 0) 58.38%);

}

.games-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.games-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 2rem;
    margin-bottom: 3rem;

    height: 434px;


    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(174.38deg, #0A2336 23.51%, #131B27 63.79%, rgba(30, 64, 77, 0) 114.58%);

}

.game-card {
    width: 300px;
    height: 300px;
    background: url("../images/Frame\ 3.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px
}

/* .game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
} */

.game-image {
    width: 100%;
    height: auto;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(174.38deg, #0A2336 4.47%, #131B27 49.12%, rgba(30, 64, 77, 0) 95.53%);

    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.play-button {
background: linear-gradient(69.74deg, #FEFEFE 9.28%, #D2D2D2 32.09%, #FFFFFF 50.13%, #D2D2D2 74.3%, #FFFFFF 95.96%);
    color: #151009;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.play-button:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-section {
        padding: 3rem 1rem;
    }

    .games-title {
        font-size: 2rem;
    }

    .games-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .play-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .games-title {
        font-size: 1.75rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .game-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }

    .game-title {
        font-size: 1rem;
    }
}

/* Adding About Us section styles */
.about-section {
    padding: 4rem 2rem;
    /* max-width: 1200px; */
    background: url(../images/Group\ 165.png) no-repeat center center/cover;
    height: 1060px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 4rem;
}

.about-image {
    flex: 0 0 auto;
    width: 576px;
    height: 393px;

}

.polaroid {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* transform: rotate(-2deg); */
    transition: transform 0.3s ease;
    margin-top: 12rem;

}

.polaroid img {
    object-fit: cover;
    width: 576px;
    height: 393px;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

.team-photo {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.about-content {
    flex: 1;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    width: 629px;
    height: 171px;
    text-align: left;
    margin-left: 30px;

}

.about-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .games-section {
        padding: 3rem 1rem;
    }

    .games-title {
        font-size: 2rem;
    }

    .games-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .play-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Adding responsive styles for About Us section */
    .about-section {
        padding: 3rem 1rem;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .team-photo {
        width: 250px;
        height: 167px;
    }
}

@media (max-width: 480px) {
    .games-title {
        font-size: 1.75rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .game-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }

    .game-title {
        font-size: 1rem;
    }

    /* Adding mobile styles for About Us section */
    .about-title {
        font-size: 1.75rem;
    }

    .team-photo {
        width: 200px;
        height: 133px;
    }

    .polaroid {
        padding: 0.75rem;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.vision-container {
    /* max-width: 1200px; */
    width: 100%;
    height: 1010px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 2rem;
    /* margin-bottom: 3rem; */
    background: url(../images/Rectangle\ 38.png) center center/cover no-repeat;
}



.section {
    background: url(../images/Rectangle\ 15.png) center center/cover no-repeat;
    backdrop-filter: blur(10px);

    width: 1279px;
    height: 250px;

    padding-top: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section2 {
    width: 1282px;
    height: 495px;
    border-radius: 24px;
    border-width: 6px;
    background: #10689273;
    border: 6px solid #DAE6E8A3;
    backdrop-filter: blur(4px);
    padding: 3rem 2rem;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.vision-content {
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.vision-content p {
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: url(../images/Group\ 127.png) center center/cover no-repeat;
    width: 276.28167724609375px;
    height: 196.38980102539062px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 1);
    box-shadow: 0 12px 40px rgba(255, 165, 0, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffa500, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.icon-container {
    width: 80px;
    height: 80px;
    margin-top: 2rem;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffa500;
}

.value-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    text-align: center;
    margin-top: 1rem;
}

/* Icons using CSS */
.brain-icon::before {
    content: "🧠";
    font-size: 2.5rem;
}

.gear-icon::before {
    content: "⚙️";
    font-size: 2.5rem;
}

.people-icon::before {
    content: "👥";
    font-size: 2.5rem;
}

.target-icon::before {
    content: "🎯";
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }

    .section {
        padding: 2rem 1.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .vision-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        gap: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .value-description {
        font-size: 0.85rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease forwards;
}

.section:nth-child(2) {
    animation-delay: 0.2s;
}


/* Footer styles */
.footer {
   background: #04202E;
    padding: 3rem 2rem 1.5rem;
    height: 499px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #64b5f6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #64b5f6, #90caf9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #e3f2fd;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #64b5f6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    background: #D9D9D9;
    border-radius: 8px;
    color: #131F2C;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(100, 181, 246, 0.2);
    color: #64b5f6;
    transform: translateY(-2px);
}

.footer-copyright {
    color: #b3e5fc;
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles for footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-nav-row {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-nav-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-social {
        justify-content: center;
    }
}