* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Aquirie, sans-serif;
}
@font-face {
    font-family: 'Aquirie';
    src: url('../Assets/Fonts/Aquire-BW0ox.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Body */
body {
    background-color: black;
    color: #fff;
    text-align: center;
}

header {
    background-image: linear-gradient(#26415B, #233C54, #162737);
    padding: 10px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: Aquirie;
    background: linear-gradient(90deg, #FF7E5F, #FEB47B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

    .nav-links li {
        display: inline;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s ease;
    }

        .nav-links a:hover {
            color: #0BF1F5;
        }

.menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.popup-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background: #162737;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

    .popup-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .popup-menu ul li {
            padding: 10px;
        }

            .popup-menu ul li a {
                color: white;
                text-decoration: none;
                display: block;
                text-align: center;
            }

                .popup-menu ul li a:hover {
                    color: #0BF1F5;
                }

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .popup-menu.active {
        display: block;
    }
}

/* Ensure hero section takes full viewport */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures space between hero-content and h2 */
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    overflow: hidden; /* Prevents any unwanted scrolling */
}

/* Background Spline Scene */
.spline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places it behind the content */
}

/* Hero Content Styling */
.hero-content {
    max-width: 100%;
    background: url(../Assets/Images/subcontentframe.png) no-repeat center/cover;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-self: center;
    margin-top: 40px; /* Adds spacing from the top */
    display: flex;
    flex-wrap: wrap;
}
.hero-irieimage {
    width: min(10vw, 10vh);
    background: url(../Assets/Images/IrieSun.png ) no-repeat center/cover;
    aspect-ratio: 1/1;
    padding: 30px;
    background-size: contain;
}

.hero-subcontent {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    max-width: 725px;
}
.hero h1 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 10px;
}

.hero p,
.hero h3 {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 20px;
    text-align: start;
}

/* Hero Footer Styling */
.hero-footer {
    position: relative;
    margin-bottom: 50px; /* Adds spacing from the bottom */
    font-size: clamp(18px, 2vw, 28px);
}
.portalHolder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: contain;
    margin-bottom: 40px;
    overflow: hidden;
}
    .portal h1 {
        margin: 10px;
        font-size: revert;
        display: flex;
        width: auto; /* Keeps the portal square */
        height: auto;
        aspect-ratio: 1/1;
        

    }
    .portalHolder img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        object-fit: cover; /* Ensure the image covers the container */
        z-index: -1; /* Make sure the image is behind other elements */
    }

/* Portal Section */
.portal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto; /* Keeps the portal square */
    height: 40%;
    aspect-ratio: 1/1;
    position: absolute;
    margin-bottom: 5%;
}

.hexagon {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1; /* Keeps hexagon square */
    background: #00ffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-in-out;
    z-index: 1;
    transform: scale(1); /* Start at normal size */
}

    /* EXPANDING STATE */
    .hexagon.expand {
        transform: scale(12); /* Expands smoothly from its original size */
        z-index: 99;
        opacity: 1;
    }

        /* Make the portal GIF expand smoothly too */
        .hexagon.expand .portal-gif {
            transform: scale(12);
            transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

.portal-gif {
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    background: url('../Assets/Images/portal-animation2.gif') no-repeat center center/cover;
}

.hexagon-frame {
    position: absolute;
    width: 120%;
    height: 120%;
    background: url('../Assets/Images/hexagon-frame.png') no-repeat center center;
    background-size: 100% 100%;
    z-index: 3;
    pointer-events: none;
}

/* Common styles for both sections */
.ecosystem,
.irie_poster_1{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden; /* Prevents unwanted scrollbars */
}

    .ecosystem img,
    .irie_poster_1 img{
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.gamemasters_1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 100px;
    overflow: hidden;
}
    .gamemasters_1 img{
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.johnScreenHead {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    margin-top: 90px;
}

    .johnScreenHead img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.missionWheel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 200px;
    overflow: hidden; /* Prevents unwanted scrollbars */
}
    .missionWheel img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.rewardsMain {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 200px;
    overflow: hidden; /* Prevents unwanted scrollbars */
}

    .rewardsMain img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.rewards1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 200px;
    overflow: hidden; /* Prevents unwanted scrollbars */
}

    .rewards1 img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.main-div {
    display: flex;
    flex-wrap: nowrap; /* Ensures elements are in a single row */
    width: 100vw;
    height: 100vh;
    background-color: #0D0D0D; /* Dark sci-fi background */
    justify-content: center;
    align-items: center;
    padding: 40px;
    overflow: hidden;
}

.sub-div1 {
    flex: 1;
    min-width: 300px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../Assets/Images/GameMasterForSchools_1.png') no-repeat center center;
    background-size: contain;
}
.sub-div2 {
    flex: 1;
    min-height: 300px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../Assets/Images/GameMasterForSchools_2.png') no-repeat center center;
    background-size: contain;
    flex-direction: column;
    text-align: left;
    padding: 20px;
}
.sub-div3 {
    flex: 1;
    min-width: 300px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../Assets/Images/GameMasterForSchools_3.png') no-repeat center center;
    background-size: contain;
}

@media (max-width: 800px) {
    .main-div {
        flex-direction: column;
    }
}
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}

img:hover {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
.hover-text {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: aqua;
    font-weight: bold;
}

    .hover-text::after {
        content: attr(data-text);
        position: absolute;
        background-color: black;
        color: white;
        padding: 5px 8px;
        border-radius: 5px;
        font-size: 14px;
        white-space: nowrap;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
    }

    .hover-text:hover::after {
        visibility: visible;
        opacity: 1;
    }


@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
    }

    .portal {
        flex-direction: column;
    }

    .hexagon {
        width: 250px;
        height: 250px;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .portal p {
        font-size: 0.9rem;
    }
}

.conslusion {
    max-width: 80%;
    background: url(../Assets/Images/subcontentframe.png) no-repeat center/cover;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    align-content:center;
    position: center;
    align-self: center;
    margin-top: 40px; /* Adds spacing from the top */
    display: flow;
}
.conslusion-subcontent {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;

    max-width: 725px;
    align-self: center;
}
.conslusion-acquirieimg {
    width: min(10vw, 10vh);
    background: url(../Assets/Images/AcquirieLogo.png ) no-repeat center/cover;
    aspect-ratio: 1/1;
    padding: 30px;
    background-size: contain;
}

.conslusion1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 200px;
    overflow: hidden; /* Prevents unwanted scrollbars */
}

    .conslusion1 img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }
.earth_poster_1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden; /* Prevents unwanted scrollbars */
}

    .earth_poster_1 img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block;
    }



.hero-subcontent {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    max-width: 725px;
}

.hero h1 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 10px;
}

.hero p,
.hero h3 {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 20px;
    text-align: start;
}

/* Hero Footer Styling */
.hero-footer {
    position: relative;
    margin-bottom: 50px; /* Adds spacing from the bottom */
    font-size: clamp(18px, 2vw, 28px);
}






.infinity-container {
    position: relative;
    width: 90vw;
    max-width: 835px; /* Based on original image */
    height: auto;
    margin:auto;
}

.background {
    width: 100%;
    height: auto;
    display: block;
}
.icon {
    position: absolute;
    width: 20%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: transparent;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 0px;

   
}
    .icon img
    {
        
        height: 80%;
    }
    .icon span {

        padding: 5px 10px;
        border-radius: 5px;
        font-size: clamp(10px, 2vw, 25px);
    }
.icon:hover {
    filter: brightness(1.5);
}
.neurodiverse {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}
.neurodiverse-label {
    top: 0%;
    left: 50%;
    color: white;
    transform: translateX(-50%);
}

.early-learning {
    top: 20%;
    left: 0%;
}

.international {
    top: 20%;
    right: 0%;
}

.nep-cbse {
    top: 35%;
    left: 15%;
}

.nios {
    top: 35%;
    right: 15%;
}

.higher-education {
    top: 55%;
    left: 15%;
}

.corporate {
    top: 55%;
    right: 15%;
}

.sports {
    top: 70%;
    left: 0%;
}

.extracurricular {
    top: 70%;
    right: 0%;
}

.sustainability {
    bottom: -1%;
    left: 50%;
    transform: translateX(-50%);
}





.workflow-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 100px;
    text-align: center;
    position: relative;
}
.top-header {
    margin-bottom: 40px;
}

    .top-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: white;
    }

    .top-header p {
        font-size: 1rem;
        color: #b3b3b3;
    }
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 10px;
    padding: 20px;
}

    .gallery img {
        width: 100%;
        height: auto;
        cursor: pointer;
        border-radius: 5px;
        transition: transform 0.2s;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
    color: white;
}

    .lightbox img {
        max-width: 80%;
        max-height: 80%;
        transition: transform 0.2s;
    }

    .lightbox .close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        cursor: pointer;
    }

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
}

    .zoom-controls button {
        font-size: 20px;
        padding: 10px;
        margin: 5px;
        background: white;
        border: none;
        cursor: pointer;
    }










footer {
    padding: 10px;
    background: linear-gradient(#26415B, #162737);
    width: 100%;
    display: flex;
    flex-direction: column;
    bottom: 0;
    font-family: Aquire;
}

.footer-top {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
    .footer-top a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.2s ease;
        padding: 10px;
        border-radius: 10px;
        margin: 10px;
    }

        .footer-top a:hover {
            color: #0BF1F5;
        }
.footer-bottom {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.footerImg {
    margin: auto;
    display: flex;
    flex-direction: row;
}
.footerImg img
{
    margin: auto;
    width: 50%;
}
.footer-bottom p
{
    margin: 10px;
}
.footer-bottom a
{
    color: white;
    margin: 10px;
}



