@import url('imports/reset.css');
@import url('imports/variables.css');
@import url('imports/elements.css');
@import url('imports/roadmap.css');
@import url('imports/static.css');
@import url('imports/pricing.css');


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;

    font-family: 'Figtree', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: var(--color5);
/*
    background-image: url('/assets/images/bg-body-2.png');
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
*/

}

@media (max-width: 768px) {
    body {
        background-size: 200% auto;
    }
}


/* ------------------ carousel ----------------- */

.carousel {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carousel {
        height: 15vh;
    }
}


.carousel-track {
    display: flex;
    width: 300%; /* Adjust for number of slides */
    height: 100%;
    transition: transform 2s ease-in-out;
}

@media (max-width: 768px) {
    .carousel-track {

    }
}

.slide {
    flex: none;
    height: 100%;
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .slide {
        margin-top: 80px;
    }
}

.slide img {
    margin-left: -20px !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .slide img {
        width: 30%;
    }
}

.slide.slide-1 {
    transform: translateY(-85px);
    animation: slideAnimation1 4s infinite alternate ease-in-out;
    transform-origin: top left;
}

.slide.slide-2 {
    transform: translateY(-80px);
    animation: slideAnimation2 4s infinite alternate ease-in-out;
    transform-origin: bottom left;
}

.slide.slide-3 {
    transform: translateY(-20px);
    animation: slideAnimation1 4s infinite alternate ease-in-out;
    transform-origin: top left;
}

@keyframes slideAnimation1 {
    0% {
        transform: translateY(-85px) scale(1);
    }
    100% {
        transform: translateY(-120px) translateX(-1px) scale(1.08)
    }
}

@keyframes slideAnimation2 {
    0% {
        transform: translateY(-85px) scale(1);
    }
    100% {
        transform: translateY(-50px) translateX(35px) scale(1.08)
    }
}

.pagination {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: .5;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--color2);
    border-radius: 4px;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dot.active { opacity: 1; }

/* ------------------ HEADER ----------------- */

.default-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    backdrop-filter: blur(10px); /* Adjust blur intensity */
    background: rgba(255, 255, 255, 0.7); /* Optional: Adds transparency */
    z-index: 1000;
    transition: top 0.3s;
}

.default-header.near-top {
    border-bottom: 1px solid var(--border-color-light);
}

.default-header-inner {
    max-width: var(--site-max-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.default-header-right,
.default-header-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.default-header-left {
    gap: 2rem;
}

#burger-menu-button, .close-menu-button {
    display: none; /* Hide burger button by default */
}

.default-menu {
    flex: 1;
    justify-content: center;
    display: flex;
}

.default-menu .default-button {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 3px 0 0 0px;
}

@media (max-width: 768px) {
    .default-menu {
        justify-content: flex-start;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        position: fixed;
        top: 55px; /* Adjust based on header height */
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: all 0.2s ease-in-out;
        z-index: 0;
        border-top: 1px solid var(--border-color-light);
        height: calc(100vh - 60px);
    }

    .default-menu .close-menu-button {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;

    }

    .default-menu .close-menu-button:before {
        color: var(--color1);
    }

    .default-menu ul {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    #burger-menu-button {
        display: flex; /* Show burger button on mobile */
        margin-top: -3px
    }

    #burger-menu-button:before {
        color: var(--color1);
        font-size: 1.25rem;
    }

    .default-menu ul li a {
        font-size: 1.4rem;
        padding: 0 5px;
    }
    .default-menu.show {
        transform: translateX(0);
    }
}

.default-logo img {
    height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .default-logo img {
        height: 30px;
        margin-left: -1rem;
    }
}

.default-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.default-menu li {

}

.default-menu a {
    text-decoration: none;
    display: block;
    color: var(--color1);
    font-size: 13px;
    padding: 10px 5px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-transform: capitalize;
}

.default-menu a:hover {
    opacity: .75;
}

/* ------------------ FOOTER ----------------- */

.default-footer {
    background: var(--accent-color2-dark);
    color: var(--color5);
    text-align: center;
    padding: 4.5rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;

}

@media (max-width: 768px) {
    .default-footer {
        padding-top: 35px;
    }
}


.default-footer > div {
    width: 100%;
    max-width: var(--site-max-width);
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .default-footer > div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
}

.default-footer .default-footer-left {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.default-footer .default-footer-left img {
    width: 24px;
}


.default-footer p {
    font-size: .8rem;
    margin: 0;
    color: var(--color5);
}

.default-footer ul {
    display: flex;
    gap: .5rem;
}

@media (max-width: 768px) {
    .default-footer ul {
        flex-direction: column;
        align-items: center;
    }
}


.default-footer li {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.default-footer li:after {
    content: '|';
    font-size: .75rem;
    opacity: .5;
}

@media (max-width: 768px) {
    .default-footer li:after {
        display: none;
    }
}

.default-footer li:last-of-type:after {
    display: none;
}

.default-footer a {
    font-size: .8rem;
    color: var(--color5);
    margin: 0;
}

@media (max-width: 768px) {
    .default-footer-left > a {
        margin: 0 auto;
    }
}


.default-footer p a:hover {
    opacity: .8;
    color: unset;
}

.default-footer a.highlight {
    padding: .25rem .5rem;
    background-color: var(--color5);
    color: var(--accent-color2-dark);
    border-radius: var(--corner);
    transition: all 0.3s ease-in-out;
}

.default-footer a.highlight:hover {
    opacity: .8;
}

/* ------------------ MAIN ----------------- */

main {
    display: flex;
    flex-direction: column;
    flex: 1; /* Fills remaining space */
    background: var(--color5);
    padding-top: 140px; /* Adjust based on header height */
    text-align: center;
    gap: 2rem;

}

@media (max-width: 768px) {
    main {
        /* padding-bottom: 45px; */
    }

}

@media (min-width: 1024px) {
    main {

        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    main {
        padding-top: 160px;
    }
}

@media (min-width: 1023px) {
    main.padding-top-small {
        padding-top: 80px;
    }
}

@media (min-width: 1023px) {
    main.padding-top {
        padding-top: 200px;
    }
}


main.padding-bottom {
    padding-bottom: 80px;
}

main.column-2, main.column-1 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    main.column-2, main.column-1 {
        flex-direction: column;
        margin-bottom: 0;
    }
}

main.no-gap {
    gap: 0;
}


main.column-2 > section {
    flex: 0 50%;
}

main.column-1 > section {
    flex: 0 70%;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    main.column-1 > section {
        flex: 0 100%;
        margin: 0 auto;
    }
}


/* ------------------ PRESENTATION ----------------- */

.main-presentation {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .main-presentation {
        max-width: var(--site-max-width);
    }
}

.main-presentation.full-width {
    max-width: none;
    width: 100%;
    background-color: var(--color4);
    margin: 0;
    padding: 20px 0 30px 0;

    position: relative;
}

.main-presentation.full-width:has(.carousel) {
    opacity: 1 !important;
}

.main-presentation.full-width:has(.carousel) div {
    max-width: unset;
}

.main-presentation.full-width.no-bg {
    background: none;
}

.main-presentation.full-width.padding-bottom {
    padding-bottom: 3rem;
}

.main-presentation.full-width.border {
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
}


.main-presentation.full-width.margin-bottom {
    margin-bottom: 3rem;
}

.main-presentation.full-width.main-img {
    padding: 0 30px !important;
}

.main-presentation.full-width.no-padding > div {
    max-width: 100%;
}

@media (max-width: 768px) {
    .main-presentation.full-width:has(.carousel) {
        aspect-ratio: 3 / 1 ;
    }
}


.main-presentation.full-width.padding {
    padding: 20px 0 30px;
}

@media (max-width: 768px) {
    .main-presentation.full-width {
        padding: 1rem 2rem;
    }
}

.main-presentation.full-width:before {
    /*
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 3%, transparent 97%, rgba(0, 0, 0, 0.05) 100%);

    box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.2),
    inset 0 -10px 10px rgba(0, 0, 0, 0.2);
    */
}

.main-presentation.separator {
    position: relative;
}

.main-presentation.separator:after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background-color: var(--border-color);
}

.main-presentation img.shadow {
    padding: .5rem;
    background-color: #f0f0f0;
    border-radius: var(--corner);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .main-presentation.full-width img {

    }
}

.main-presentation > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .main-presentation > div {
        max-width: 1280px;
    }
}

.main-presentation .default-button.margin-bottom {
    margin: 30px auto 50px;
}

.main-presentation.align-left > div .default-button {
    margin: 0;
}

@media (max-width: 768px) {
    .main-presentation.align-center > div .default-button {
        margin: 30px auto 40px;
    }
}

@media (min-width: 768px) {
    .main-presentation > div p {
        max-width: 32rem;
    }
}

.main-presentation.align-left {
    text-align: left;
}

.main-presentation.align-center {
    text-align: center;
}

.main-presentation.align-left p {
    margin: 0;
    text-align: left;
}

.main-presentation div .img-feature {
    height: auto;
    width: 500px;
}

.main-presentation.column-2 h2 {
    text-align: left;

}

.main-presentation.align-center > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    align-items: center;
}

/* ------------------ HOME page animation  ----------------- */


.home-page section {
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Move down slightly */
    transition: opacity .5s ease-out, transform 1s ease-out;
}

.home-page section.fade-in {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
}

/* ------------------ PRESENTATION variant ----------------- */

.main-presentation.frame {
    width: 100%;
    padding: 2rem;
    border-radius: var(--corner);
    /*
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.65);
    background-image: url('/assets/images/bg-banner.png');


    background: linear-gradient(45deg, rgb(247 242 250), rgb(234 242 248), rgb(251 244 246));
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;
    */

    background: linear-gradient(45deg,
        rgba(103, 48, 140, 0.05),
        rgba(17, 114, 186, 0.05),
        rgba(212, 28, 92, 0.05)
    );


}

.main-presentation.frame div, p, a {
    margin: 0 auto;
}

/* ------------------ HOME PAGE CARDS ----------------- */

.main-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 800px;
}

@media (max-width: 768px) {
    .main-cards-container {
        margin: 0 2rem;
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .main-cards-container {
        max-width: none;
        padding: 0;
    }
}

.main-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.65);
    /*
    background: linear-gradient(45deg,
        rgba(103, 48, 140, 0.05),
        rgba(17, 114, 186, 0.05),
        rgba(212, 28, 92, 0.05)
    );

    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;
    */

}

.main-card:nth-last-of-type(odd) {
    /*
    background: linear-gradient(45deg,
        rgba(17, 114, 186, 0.05),
        rgba(103, 48, 140, 0.05),
        rgba(212, 28, 92, 0.05)
    );
    */

}

.main-card-body {
    display: flex;
    flex-direction: row;
    display: none;
}

@media (max-width: 768px) {
    .main-card-body {
        flex-direction: column;
    }
}

.main-card h3 {
    color: var(--color1);
    font-weight: 500;
    display: flex;
    gap: .25rem;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 1.1rem !important;
    margin-bottom: -1.125rem;
}

.main-card hr {
    display: none;
}

@media (max-width: 1023px) {
    .main-card h3 {
        font-size: 26px;
    }
}

.main-card h3:before {
    color: var(--accent-color2);
    opacity: .5;
    font-size: 30px;
    display: block;

}

.main-card > p.sub-title {
    margin: 0 0 0 0;
    text-align: left;
    font-size: 1rem;
    font-style: italic;
    opacity: .5;
}

.main-card > p {
    text-align: left;
}

.main-card ul {
    flex-grow: 1;
    display: flex;
    gap: 1rem;
    flex-direction: column;

}

.main-card hr {
    height: 1px;
    border: none;
    background: var(--color1);
    opacity: .125;
    margin-bottom: .25rem;
}

.main-card ul li {
    font-size: .9rem;
    color: var(--color1);
    text-align: left;
    line-height: 1.2;
}

.main-card ul li p {

}

.main-card ul li strong {
    display: block;
}

.main-card img {
    margin-top: 1rem;
    width: 40%;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}


@media (max-width: 768px) {

    .main-card-body img {
        width: 100%
    }
}

@media (min-width: 768px) {
    .main-card img {
        width: 50%;
    }
}

.main-card h2 {
    margin: 10px 0;
}

.main-card p {

}

/* ------------------ Partner Section ----------------- */

.partner-logos {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin: 0 2rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .partner-logos {
        margin: 0;
    }
}


.partner-logos li {
    background-color: var(--color5);
    padding: 2rem .5rem;
    border-radius: var(--corner);
    height: 90px;
    text-align: center;
    display: flex;
    align-items: center;
    flex: 1;
}

.partner-logos li img {
    width: 80%;
    margin: 0 auto !important;
    height: auto;
}

.partner-logos li img.tc {
    width: 90%;
}

.partner-logos li img.sr {
    width: 90%;
}

.partner-logos li img.gr {
    width: 70%;
}

.partner-logos li img.cbr {
    width: 50%;
}

.partner-logos li img.cb {
    width: 70%;
}

.partner-logos li img.htg {
    width: 85%;
}

@media (max-width: 768px) {
    .partner-logos {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        padding-right: 1rem;
    }

    .partner-logos li {
        scroll-snap-align: center;
        flex: 0 0 43%;
    }

    .partner-logos li:first-of-type {
        margin-left: 1rem;
    }

    .partner-logos::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for Firefox */
    .partner-logos {
        scrollbar-width: none; /* Firefox */
    }
}

.section-wrapper a {
    text-decoration: underline;
}

.custom-alpha-list {
    list-style-type: none; /* Hide the default 'a.', 'b.', etc. */
    counter-reset: custom-alpha-counter; /* Initialize the counter */
    padding-left: 0; /* Remove default padding from <ol> */
    margin-left: 0; /* Remove default margin from <ol> */
}

.custom-alpha-list li {
    list-style: none !important;
    counter-increment: custom-alpha-counter; /* Increment the counter for each li */
    margin-bottom: 5px; /* Add some space between items */
    padding-left: 30px; /* Make space for the custom marker */
    position: relative; /* Essential for positioning the ::before pseudo-element */
}


.custom-alpha-list li::before {
    content: "(" counter(custom-alpha-counter, lower-alpha) ") "; /* The magic happens here! */
    position: absolute;
    left: 0;
    top: 0; /* Align with the top of the line */
    color: #555; /* Optional: style the marker color */
    font-weight: bold; /* Optional: style the marker weight */
}
