@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/*---------------- main-------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navbar: #E1F1FF;
    --text-primary: #141E47;
    --body-text: #000000;
    --white-text: #FFFFFF;
    --buttons: #2B46BA;
    --border: #141E4733;
    --accentdesc: #999999;
    --accentcolor: #EEF1FB;
    --placebolder: #A0A9CF;
}

/* All sections heading and descriptions */

.section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-heading {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

.section-description {
    font-family: Plus Jakarta Sans;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.02em;
    text-align: left;
}

/* ^ All sections heading and descriptions ends ^ */

.nav-cta-button {
    width: fit-content;
    background-color: var(--buttons);
    border: 1px solid linear-gradient(100.54deg, #B8FF89 2.13%, #5474FF 96.81%);
    color: var(--white-text);
    padding: 12px 12px 12px 24px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -0.03em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s;

}

.nav-cta-button:hover i {
    transition: transform 0.5s;
    /* Smooth transition for arrow movement */
}


/* Global button */
.button {
    width: fit-content;
    background-color: var(--buttons);
    color: var(--white-text);
    padding: 12px 12px 12px 24px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -0.03em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s;
    /* Smooth background and text color change */
}

.button i {
    transition: transform 0.5s;
    /* Smooth transition for arrow movement */
}

.button:hover {
    background: linear-gradient(100.54deg, #B8FF89 2.13%, #5474FF 96.81%);
    color: var(--heading);
}

.button:hover>i {
    transform: translateX(-10px);
}

/* All view buttons */
.view-button {
    width: fit-content;
    height: 48px;
    padding: 16px 16px 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    border-radius: 24px;
    opacity: 0px;
    background-color: var(--white-text);
    font-family: Plus Jakarta Sans;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-decoration: none;
    color: var(--heading);
}

.view-button svg,
.view-button span {
    transition: transform 0.5s;
    /* Smooth transition for arrow movement */
}

.view-button:hover>span {
    transform: translateX(10px);
}

.view-button:hover>svg {
    transform: translateX(-10px);
}

/* standard button wih animation*/
.about-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 80px;
    background: transparent;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    position: relative;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: center;
    transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.arrow-dissapear,
.arrow-appear {
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
}

.arrow-dissapear {
    opacity: 1;
    transform: translateX(0);
}

.arrow-appear {
    opacity: 0;
    transform: translateX(20px);
}

.button-text {
    transition: transform 0.5s ease, margin-right 0.5s ease;
}

.about-button:hover {
    background: linear-gradient(100.54deg, #003366 2.13%, #0f52ba 96.81%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.about-button:hover .arrow-dissapear {
    opacity: 0;
    transform: translateX(-20px);
}

.about-button:hover .arrow-appear {
    opacity: 1;
    transform: translateX(0);
}

.about-button:hover .button-text {
    transform: translateX(-20px);
    /* Move the text left to close the gap */
    margin-right: -10px;
    /* Adjust spacing between text and right arrow */
}


/* global responsive section heading */
@media screen and (max-width: 768px) {
    .section-header {
        padding: 0px;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .section-heading {
        width: 100%;
        text-align: left;
        text-wrap: wrap;
    }

    .section-description {
        text-align: left;
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        font-family: Urbanist;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: -0.03em;
    }
}

@media screen and (max-width: 430px) {
    .section-header {
        padding: 0px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        line-height: 5px;
        letter-spacing: -0.03em;
    }

    .section-heading {
        width: 100%;
        text-align: left;
        font-size: 2.235rem;
        font-weight: 900;
        line-height: 50.16px;
        letter-spacing: -0.03em;
        color: var(--heading);
    }

    .section-description {
        text-align: left;
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        font-family: Urbanist;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: -0.03em;
    }

    .button {
        font-size: 18px;
        padding: 8px 12px 8px 16px;
    }
}

/* main ends here */


/* header ends here */

.general-container {
    padding: 50px;
}

.native-links{
    display: flex;
    align-items: center;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-decoration: none;
    color: #000000;
}

@media screen and (max-width: 768px) {
    .general-container {
        padding: 40px;
    }
}

@media screen and (max-width: 430px) {
    .general-container {
        padding: 20px;
    }
}

/* Loader hidden by default */
.btn-loader {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 8px;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility class to toggle visibility */
.loading .btn-loader {
    display: inline-block;
}

.loading .button-text {
    opacity: .5;
}

/* optional fade text */


/* ---------------------------------*/
/* Global Hero section side footer  */
/* ---------------------------------*/

.hero-footer {
    position: absolute;
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 48px 0 0 0;
    bottom: 0;
    right: 0;
}

.hero-footer::before {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background: transparent;
    top: -50px;
    right: 0;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.hero-footer::after {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background-color: transparent;
    bottom: 0px;
    left: -50px;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.breadcrumbs>a,
.breadcrumbs>span {
    font-family: Urbanist;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.618;
    text-align: left;
    text-decoration: none;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.breadcrumbs>a {
    color: #141E47;
}

@media screen and (max-width:430px) {

    .breadcrumbs>a,
    .breadcrumbs>span {
        font-size: 0.71rem;
    }
}

/* ---------------------------------*/
/* Global Hero section side footer ends */
/* ---------------------------------*/