@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&family=Quicksand:wght@300..700&display=swap");

/* new Hero rwd */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.hero-section-container {
    background-color: #fbf6f6;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fbf6f6;
    /* border: 5px solid red; */
    max-width: 1600px;
    margin: auto;
}

.hero-content {
    flex: 1;
    padding: 20px 10px 20px 8%;
    color: black;
    max-width: 50%;
    /* border: 2px solid blue; */
}

.hero h1 {
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 2.5em;
    color: #111827;
}

.hero h1 .bold {
    color: #4b38f2;
}

.color-highlight {
    color: #0397ec;
}

.color-highlight-2 {
    background: linear-gradient(90.09deg, #00a2ff 41.4%, #ff5200 72.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    color: #111827;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #111827;
    padding: 5px 5px 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    background-color: transparent;
    width: max-content;
    max-width: 500px;
    box-sizing: border-box;
}

.input-group img {
    height: 44px;
    width: 44px;
}

.input-group span {
    padding: 5px;
    border-right: 1px solid #ccc;
}

.input-group input {
    padding: 10px;
    font-size: 1em;
    border: none;
    outline: none;
    flex: 1;
    background-color: transparent;
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    color: #111827;
    max-width: 150px;
}

.input-group button {
    padding: 13px 20px;
    font-size: 0.9em;
    border: none;
    background: #4b38f2;
    color: #f0f0f0;
    cursor: pointer;
    outline: none;
    border-radius: 100px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    margin-left: 5px;
    box-sizing: border-box;
}

.input-group input::placeholder {
    font-size: 0.8em;
}

.sub-title-item {
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
    margin: 0;
}

.sub-title-item img {
    margin: 0;
    margin-right: 10px;
    /* border: 2px solid red; */
}

.sub-title-text {
    margin: 10px 0;
    font-size: 1em;
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    /* border: 2px solid red; */
}

.hero-content-logos {
    /* border: 2px solid red; */
    display: flex;
    gap: 20px;
    width: max-content;
    margin-top: 25px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* counter plus sponsor section */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.counter-section {
    padding: 20px 20px 70px;
    background-color: #f9f9f9;
    text-align: center;
    /* border: 5px solid red; */
}

.counter-section h2 {
    font-size: 3.25em;
    color: #000;
    margin-bottom: 50px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.counter-section h2 .blue-text {
    color: #4a4aef;
}

.counters {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding-bottom: 40px;
    /* border: 5px solid red; */
    max-width: 1600px;
    margin: auto;
}

.counter {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    border-right: 2px solid #9389ec;
}

.counter:last-child {
    border-right: none;
}

.counter h2 {
    font-size: 3.25em;
    color: #7b66ff;
    margin: 0;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
}

.numbers-unit {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.numbers {
    margin: 0;
}

.unit {
    font-size: 1em;
    margin-left: 5px;
}

.counter p {
    font-size: 1.5em;
    color: #666;
    margin: 10px 0 0;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.sponsors {
    text-align: center;
    overflow: hidden;
}

.sponsors p {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 25px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.sponsor-logos {
    display: flex;
    white-space: nowrap;
    justify-content: center;
    animation: scroll 30s linear infinite;
}

.sponsor-logos img {
    margin: 0 15px;
    height: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-logos::after {
    content: "";
    display: flex;
}

/* signup steps section */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.steps-section-container {
    background-color: #4a4aef;
}
.steps-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 8%;
    color: white;
    max-width: 1600px;
    margin: auto;
    /* border: 5px solid red; */
}

.steps-content {
    max-width: 600px;
    /* border: 2PX SOLID; */
}

.steps-content h2 {
    font-size: 2.75em;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    /* border: 2px solid red; */
}

.step {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.step img {
    height: 50px;
}

.step h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    /* border: 2PX SOLID; */
}

.step p {
    font-size: 0.75em;
    line-height: 1.5;
    font-weight: normal;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    /* border: 2PX SOLID; */
    text-align: center;
}

.cta-button {
    background-color: white;
    color: #4a4aef;
    border: none;
    padding: 20px 35px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e0e0e0;
}

.cta-button-wrapper {
    /* border: 2px solid red; */
    display: flex;
    justify-content: center;
}

.steps-section .images {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid; */
    /* width: 50%; */
}

.images img {
    height: 420px;
    margin-left: 20px;
    width: auto;
}

/* Offerings */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.offerings {
    text-align: center;
    padding: 50px 7% 0;
    background-color: #ffffff;
    max-width: 1600px;
    margin: auto;
    /* border: 5px solid red; */
}

.offerings h2 {
    font-size: 3.25em;
    color: #000;
    margin-bottom: 50px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.offerings h2 .blue-text {
    color: #4a4aef;
}

.offering {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    position: relative;
    /* border: 3px solid; */
}

.offering.reverse {
    flex-direction: row-reverse;
}

.image-container {
    position: relative;
    width: 40%;
    /* border: 2px solid; */
}

.image-container .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
    background: linear-gradient(90deg, #4a39de 50%, #c4c0ec 100%);
    border-radius: 50%;
    z-index: 1;
}

.image-container .small-circle {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    background: linear-gradient(90deg, #4a39de 50%, #c4c0ec 100%);
    border-radius: 50%;
}

.offering img {
    max-height: 450px;
    position: relative;
    z-index: 1;
    margin: auto !important;
}

.offering-content {
    text-align: left;
    max-width: 500px;
    width: 60%;
}

.offering-content h3 {
    font-size: 2.5em;
    color: #000;
    margin-bottom: 20px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.offering-content p {
    font-size: 1.25em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.buttons {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: white;
    color: #4a4aef;
    border: 2px solid #4a4aef;
    padding: 20px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 100px;
    cursor: pointer;
    margin-right: 20px;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.contact-link {
    color: black;
    text-decoration: none;
    font-size: 1.25em;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.contact-link span {
    color: #4a4aef;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Features section */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.app-features {
    text-align: center;
    padding: 0px 20px 20px;
    background-color: #ffffff;
    max-width: 1600px;
    margin: auto;
    /* border: 5px solid red; */
}

.app-features h2 {
    font-size: 3.25em;
    color: #000;
    margin-bottom: 50px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    /* border: 3px solid blue; */
}

.app-features h2 .blue-text {
    color: #4a4aef;
}

.slider-container {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
    /* border: 5px solid blue; */
}

.slider {
    display: flex;
    transition: transform 1s ease;
    padding-bottom: 80px;
    /* border: 3px solid red; */
}

.slide {
    min-width: 20%;
    box-sizing: border-box;
    /* border: 3px solid red; */
}

.slide img {
    width: 100%;
    display: block;
}

.arrows {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    /* border: 3px solid red; */
}

.arrow {
    /* background-color: white; */
    color: #ff6f91;
    border: none;
    padding: 10px;
    font-size: 2em;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* border: 3px solid red; */
}

.arrow:hover {
    /* background-color: #4a4aef; */
    background-color: #d1d1d1;
    color: white;
}

/* testimonial section */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.testimonials {
    text-align: center;
    padding: 0px 20px 50px;
    background-color: #ffffff;
    max-width: 1600px;
    margin: auto;
    /* border: 5px solid red; */
}

.testimonials h2 {
    font-size: 3.25em;
    color: #000;
    margin-bottom: 50px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.testimonials h2 .blue-text {
    color: #4a4aef;
}

.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thumbnail {
    position: relative;
    width: 300px;
    height: 280px;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-modal iframe {
    width: 80%;
    height: 80%;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff6f91;
    color: white;
    border: none;
    /* padding: 10px; */
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
}

.close-button:hover {
    background-color: #4a4aef;
}

/* FAQ Corrected */
.faq-section .highlight {
    color: #4b38f2;
}

.faq-section {
    padding: 50px 10%;
    background-color: #ffffff;
    max-width: 1600px;
    margin: auto;
    /* border: 5px solid red; */
}

.faq-section h2 {
    font-size: 3.25em;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* border: 2px solid red; */
}

.faq-left .faq-item,
.faq-right .faq-item {
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgb(207, 202, 202);
    position: relative;
}

.faq-left .faq-item:not(:last-child),
.faq-right .faq-item:not(:last-child) {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    /* border: 2px solid red; */
}

.faq-item h3 {
    font-size: 1.375em;
    color: #333;
    margin: 0;
    padding-right: 30px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.faq-answer {
    display: none;
    background-color: #fff;
    /* border: 2px solid red; */
    margin-top: 10px;
}

.faq-answer p {
    font-size: 1em;
    color: #666;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    /* border: 2px solid red; */
    width: 91%;
}

.faq-question button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b38f2;
}

.faq-question button:hover {
    color: white;
    cursor: pointer;
    background-color: #4b38f2;
    border-radius: 5px;
}

.know-more {
    margin-top: 30px;
    text-align: right;
    width: 100%;
}

.know-more a {
    text-decoration: none;
    color: #4a4aef;
    border: 2px solid #4a4aef;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.know-more a:hover {
    background-color: #4a4aef;
    color: #ffffff;
}

/* featured on */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

.featured-section {
    text-align: center;
    padding: 0px 20px 30px;
    background-color: #ffffff;
    margin: auto;
    /* border: 5px solid red; */
}

.featured-section h2 {
    font-size: 3.25em;
    color: #000;
    margin-bottom: 30px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.featured-section h2 .blue-text {
    color: #4a4aef;
}

.logo-container {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logos {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(100% * 2); /* Adjust width to fit both sets of logos */
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 20px;
    transition: transform 0.3s ease;
}

.logo-item img {
    max-height: 150px;
}

.logo-item:hover {
    transform: scale(1.15);
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* contact */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
    background-color: #f9f9f9;
}

.contact-section {
    padding: 40px 10%;
    background-color: #ffffff;
    max-width: 1600px;
    margin: auto;
}

.contact-header {
    text-align: center;
    font-size: 3.25em;
    color: #000;
    margin-bottom: 30px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.contact-header .blue-text {
    color: #4a4aef;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-left,
.contact-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left {
    margin-top: -100px;
}

.contact-left h2 {
    font-size: 2.125em;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.contact-left p {
    font-size: 1em;
    color: #666;
    margin-top: 40px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    width: 90%;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    text-decoration: none;
    font-size: 1.5em;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4a4aef;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    font-size: 1.25em;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    margin-top: 20px;
}

.contact-form select {
    font-size: 1.25em;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: auto;
}

.contact-form .phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.phone-group select,
.phone-group input {
    border: none;
    outline: none;
    font-size: 1.25em;
    padding: 20px;
    margin: 0;
}

.phone-group select {
    padding-left: 20px;
    padding-right: 20px;
}

.phone-group input {
    flex: 1;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.g-recaptcha {
    margin-bottom: 20px;
}

.contact-form button {
    padding: 15px;
    font-size: 1em;
    color: #fff;
    background-color: #4a4aef;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px;
}

.contact-form button:hover {
    background-color: #3b3bc7;
}

/* app download section */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
    background-color: #f9f9f9;
}

.app-section-wrapper {
    max-width: 1600px;
    margin: auto;
    /* border: 5px solid red; */
}

.app-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px 40px;
    background: linear-gradient(90deg, #9d3eaf, #e96949);
    border-radius: 10px;
    margin: 100px 60px;
    position: relative;
}

.app-content {
    width: 50%;
}

.app-content h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
}

.app-content h2 .blue-text {
    color: #4a4aef;
    color: orange;
}

.app-content p {
    font-size: 1em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: "Figtree", sans-serif;
    font-weight: 400;
}

.store-buttons {
    display: flex;
    gap: 10px;
}

.store-buttons a img {
    height: 50px;
}

.app-images {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 90px;
    bottom: 0;
}

.app-images img {
    min-height: 350px;
    max-width: 350px;
    margin-left: 20px;
}

.store-buttons {
    /* border: 2px solid red; */
    margin: auto;
    width: max-content;
}

/* animation */
.offerings h2,
.steps-content,
.app-features h2,
.testimonials,
.faq-section,
.featured-section,
.contact-left,
.app-content {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 2s ease-out, transform 1s ease-out;
}

.offerings h2.visible,
.steps-content.visible,
.app-features h2.visible,
.testimonials.visible,
.faq-section.visible,
.featured-section.visible,
.contact-left.visible,
.app-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.offering-content h3 {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 2s ease-out, transform 1s ease-out;
}

.offering-content h3.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .offering-content h3 {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 2s ease-out, transform 1s ease-out;
    }
}