
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


.mms-regular {
   font-family: "Outfit", sans-serif;
   font-weight: 500;
}

.mms-bold {
   font-family: "Outfit", sans-serif;
    font-weight: 400;
}

html{
    scroll-behavior: smooth;
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    /* You can change to any other font */
    line-height: 1.6;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

@keyframes anim2 {
    0% {
        opacity: 0;
        transform: translateX(100%);
        visibility: hidden;
        /* Ensure it's hidden initially */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        /* Make it visible when the animation is complete */
    }
}

.i1,
.i2 {
    display: block;
    animation: anim2 1s forwards;
    /* Animation duration and final state kept */
    animation-delay: 2.1s;
    /* Delays the animation by 1 second */
    visibility: hidden;
    /* Set the initial visibility to hidden */
}

@keyframes anim {
    0% {
        opacity: 0;
        transform: translateX(-100%);
        visibility: hidden;
        /* Ensure it's hidden initially */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        /* Make it visible when the animation is complete */
    }
}

.v1,
.v2 {
    display: block;
    animation: anim 2s forwards;
    /* Animation duration and final state kept */
    animation-delay: 2.1s;
    /* Delays the animation by 1 second */
    visibility: hidden;
    /* Set the initial visibility to hidden */
}



.c1 .circle1 {
    animation: increaseWidth 1s forwards;
    /* Width increase animation */
    animation-delay: 1s;
    /* Delay the animation by 1 second */
}

@keyframes increaseWidth {
    0% {
        width: 160px;
        /* Initial width */
    }

    100% {
        width: 300px;
        /* Increased width */
    }
}


.c5 .circle5 {
    animation: increaseWidth2 1s forwards;
    /* Width increase animation */
    animation-delay: 1s;
    /* Add a delay of 1.5 seconds before starting the animation */
}

@keyframes increaseWidth2 {
    0% {
        width: 150px;
        /* Initial width */
    }

    100% {
        width: 380px;
        /* Increased width */
    }
}


@keyframes anim3 {
    0% {
        border-radius: 50%;
        /* Fully rounded at the start */
        visibility: hidden;
        border: 1px solid #0F0F0F;
        /* Initial border visible */
        background-color: transparent;
        /* Initially transparent */
    }

    50% {
        visibility: visible;
        /* Ensure content becomes visible */
        border-radius: 100% 0% 100% 100%;
        /* Shape change halfway */
        background-color: transparent;
        /* Background remains transparent */
    }

    100% {
        visibility: visible;
        background-color: #0E5648;
        /* Final background color */
        border-radius: 100% 0% 100% 100%;
        /* Keep final shape */
        border: 1px solid #0E5648;
        /* Border remains visible */
    }
}

.p {
    color: transparent;
    /* Initially hidden text */
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially not visible */
    animation: fadeIn 2s ease-in-out forwards;
    /* Text fade-in animation */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        /* Fully visible */
        visibility: visible;
        /* Make visible */
    }
}

.c4 .circle4 {
    animation: anim3 1s ease-in-out forwards;
    /* Smooth animation for border & shape change */
    animation-delay: 1s;
    /* Delay for smooth timing */
}

.c4 .circle4 {
    position: relative;
    /* Positioning context for the content */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    /* Initially a circle */
    background-color: transparent;
    /* Initially transparent */
    border: 1px solid #0F0F0F;
    /* Initial border visible */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for shape change */
}

.p {
    color: white;
    /* Text will be white after animation */
    text-align: center;
    opacity: 0;
    /* Start with hidden text */
    visibility: hidden;
    /* Initially not visible */
    animation-delay: 1.5s;
    /* Delay the appearance of text for smoother timing */
    animation: fadeIn 2s ease-in-out forwards;
    /* Fade-in effect for text with smooth transition */
}

/* Existing keyframe for A to H */
@keyframes word {
    0% {
        opacity: 0;
        transform: translateX(80%);
        /* Start off-screen */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End at normal position */
    }
}

/* New keyframe for sliding in from the right for a1 to a11 */
@keyframes slideInRight {
    0% {
        opacity: 0;
        /* Initially hidden */
        transform: translateX(20%);
        /* Start from the right off-screen */
    }

    100% {
        opacity: 1;
        /* Fully visible */
        transform: translateX(0);
        /* End at normal position */
    }
}


/* Apply animation for A to H */
.A,
.B,
.C,
.D,
.E,
.F,
.G,
.H {
    animation: word 1s forwards;
    /* Apply the existing animation */
    opacity: 0;
    /* Initially hidden */
}

.A {
    animation-delay: 0.3s;
}

.B {
    animation-delay: 0.4s;
}

.C {
    animation-delay: 0.5s;
}

.D {
    animation-delay: 0.6s;
}

.E {
    animation-delay: 0.7s;
}

.F {
    animation-delay: 0.8s;
}

.G {
    animation-delay: 0.9s;
}

.H {
    animation-delay: 1s;
}

/* Apply new slide-in animation for a1 to a11 */
.a1,
.a2,
.a3,
.a4,
.a5,
.a6,
.a7,
.a8,
.a9,
.a10,
.a11 {
    animation: slideInRight 1s forwards;
    /* Apply the slide-in animation */
    opacity: 0;
    /* Initially hidden */
    display: inline-block;
}


.a1 {
    animation-delay: 1.5s;
}

.a2 {
    animation-delay: 1.7s;
}

.a3 {
    animation-delay: 1.9s;
}

.a4 {
    animation-delay: 2s;
}

.a5 {
    animation-delay: 2.1s;
}

.a6 {
    animation-delay: 2.2s;
}

.a7 {
    animation-delay: 2.3s;
}

.a8 {
    animation-delay: 2.5s;
}

.a9 {
    animation-delay: 2.6s;
}

.a10 {
    animation-delay: 2.7s;
}

.a11 {
    animation-delay: 2.8s;
}


/* Ensure button fades in after a delay */
@keyframes button {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.buttons {
    animation: button 1s forwards;
    opacity: 0;
    animation-delay: 3s;
}



/* Container for the scrolling buttons */
.row1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
    /* Adjust the height as needed */
    overflow: hidden;
    /* Hide content that goes outside the container */
}


/* Wrapper for the buttons */
.scrolling-buttons {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    /* Ensures the wrapper has enough width for both buttons */
    animation: moveButtons 100s linear infinite;
    /* Infinite animation */
    will-change: transform;
    /* Suggests to the browser to prepare for transform changes */
    gap: 60px;
    /* Add space between buttons (adjust the value as needed) */
}

/* Define the keyframes for the animation */
@keyframes moveButtons {
    0% {
        transform: translateX(0);
        /* Initially, both buttons are in place */
    }

    50% {
        transform: translateX(-100%);
        /* Move the entire set of buttons to the left */
    }

    100% {
        transform: translateX(-200%);
        /* Move both buttons out of the left side */
    }
}

/* Prevent buttons from shrinking */
.scrolling-buttons button {
    flex-shrink: 0;
    margin-right: 20px;
    /* Optional: add some space between buttons */
    width: auto;
    /* Prevent shrinking */
    will-change: transform;
    /* Suggests to the browser to prepare for transform changes */
}

/* Initial state for the buttons */
.scrolling-buttons button {
    transform: translateX(0px);
    /* Make sure the buttons start at 0px */
}


/* Container for the scrolling buttons */
.row2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
    /* Adjust the height as needed */
    overflow: hidden;
    /* Hide content that goes outside the container */
}

/* Wrapper for the buttons */
.scrolling-buttons2 {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    /* Ensures the wrapper has enough width for both buttons */
    animation: moveButtons2 100s linear infinite;
    /* Infinite animation */
    will-change: transform;
    /* Suggests to the browser to prepare for transform changes */
    gap: 60px;
}

/* Define the keyframes for the animation */
@keyframes moveButtons2 {
    0% {
        transform: translateX(-200%);
        /* Initially, both buttons are in place */
    }

    50% {
        transform: translateX(100%);
        /* Move the entire set of buttons to the left */
    }

    100% {
        transform: translateX(110%);
        /* Move both buttons out of the left side */
    }

 
}

/* Prevent buttons from shrinking */
.scrolling-buttons2 button {
    flex-shrink: 0;
    margin-right: 20px;
    /* Optional: add some space between buttons */
    width: auto;
    /* Prevent shrinking */
    will-change: transform;
    /* Suggests to the browser to prepare for transform changes */
}

/* Initial state for the buttons */
.scrolling-buttons2 button {
    transform: translateX(0px);
    /* Make sure the buttons start at 0px */
}

.faq {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Changed from center to allow content to grow down */
    min-height: 140vh;
    /* Ensures there is enough space for the content */
    flex-direction: column;
    overflow: visible;
    /* Allow the content to expand without overflow */
}

.faq-container {
    width: 90%;
    /* padding: 40px; */
    border-radius: 10px;
    overflow: hidden;
}

.faq-content {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.faq-content h1 {
    font-size: 17px;
    color: orangered;
    font-weight: 50;
    /* Lighter weight for thinner text */
    font-family: 'Arial', sans-serif;
    /* Use a thinner, lighter font if needed */
}

.faq-content h2 {
    font-size: 28px;
    color: white;
    font-weight: 500;
    font-size: 3.4vw;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.faq-content span {
    font-size: 28px;
    color: white;
    font-weight: 500;
    font-size: 3.4vw;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.faq-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.faq-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.faq-item {
    border-top: 1px solid #6B6B6B;
    padding: 40px;
    cursor: pointer;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: 1px solid #6B6B6B;
}

.faq-item:hover {
    border-bottom: 1px solid #ccc;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 28px;
    font-weight: 100;
    color: #F5F5F5;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

.faq-icon {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 1px solid white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.faq-item:hover .faq-icon {
    transform: rotate(120deg);
}

.faq-answer {
    max-height: 0;
    /* overflow: hidden; */
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.faq-answer p {
    text-align: left;
}

.faq-item.open .faq-answer {
    min-height: 50px;
    max-height: 600vh;
    opacity: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
    background-color: white;
    color: black;
}

.faq-item:hover .faq-icon {
    background-color: white;
    color: black;
}

.wrapper1 img {
    margin-top: 20px;
    height: 60vh;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.wrapper1 .overview {
    height: 100vh;
    width: 100%;
    display: flex;
    gap: 0;
    margin-top: 20px;
}

.wrapper1 .overview h1 {
    font-size: 17px;
    color: #898989;
    margin-top: 125px;
    font-weight: 100;
    letter-spacing: 2px;
    width: 30%;
    text-align: left;
}

.wrapper1 .overview .hop {
    color: black;
}

.wrapper1 .overview .content {
    margin-left: 50px;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.wrapper1 .overview .content .content_i {
    display: flex;
    gap: 100px;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.wrapper1 .overview .content .content_i .first {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    align-items: start;
    justify-content: start;
}

.wrapper1 .overview .content .content_i .first span {
    font-size: 17px;
    color: #898989;
    text-align: left;
    font-weight: 100;
    line-height: 1.6;
    /* Adjust line spacing for better readability */
    font-family: 'Arial', sans-serif;
    /* Change font to a more modern one */
    letter-spacing: 0.5px;
    /* Add letter spacing for a cleaner look */
    padding: 2px 0;
    /* Add padding to give space around text */
    text-transform: capitalize;
    /* Capitalize the first letter of each word */
    transition: color 0.3s ease;
    /* Smooth transition effect when changing color */
}

.wrapper1 .overview .content .content_i .first p {
    font-size: 25px;
    color: white;
    font-family: 'Arial', sans-serif;
    /* Change font to a more modern one */
    text-align: left;
    width: 100%;
    /* Ensure it takes full available width for responsiveness */
    line-height: 1.5;
    /* Enhance readability with line height */
}


.wrapper1 .overview .content .second {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: start;
    justify-content: start;
    margin-top: 120px;
}

.wrapper1 .overview .content .second h2 {
    font-size: 25px;
    color: white;
    text-align: left;
    font-weight: 200;
}

.wrapper1 .overview .content .second p {
    font-size: 15px;
    color: #F5F5F5;
    letter-spacing: 1px;
    line-height: 30px;
    font-weight: 100;
}

.wrapper1 .overview .content .second img {
    height: 60vh;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ----------------------------------------------------------- */

@media only screen and (max-width: 768px) {

    .over,
    .chal,
    .sol {
        flex-direction: column;
    }

    .wrapper1 .overview .content .content_i .first span {
        font-size: 12px;
    }

    .wrapper1 .overview .content .content_i .first p {
        font-size: 10px;
    }

    .wrapper1 .overview .content .content_i {
        gap: 10px;
    }

    .wrapper1 .overview .content .content_i .first {
        gap: 5px;
    }

    .wrapper1 .overview .content {
        width: 100%;
    }
}