* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}


.heading {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #6141ac;
}

.heading-success {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #1cab51;
}

header {
    backdrop-filter: blur(6px);
    background-color: #6261c5;
    font-weight: 500;
    font-size: 18px;
}

.nav-1 a {
    transition: all 0.3s ease;
}

    .nav-1 a:hover {
        color: #151539;
    }

.dropdown {
    width: 250px;
    position: absolute;
    padding: 10px;
    margin: 0;
    top: 100%;
    right: -10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000; /* Ensure dropdown appears above other elements */
}

.dropdown-menu:hover {
    color: #151539;
}

.dropdown-items {
    position: relative;
    z-index: 999;
    backdrop-filter: blur(6px);
    background-color: #6261c5;
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border-radius: 12px;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px 0px; */
}

    .dropdown-items a {
        padding: 10px;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        /* Apply the hover on .all-pages and make the dropdown visible */
        .all-pages:hover + .dropdown,
        .dropdown:hover,
        .dropdown-items a:hover {
            opacity: 1;
            visibility: visible;
        }

.house {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    opacity: 1;
    padding: 8px;
}

    .house img {
        width: 25px;
    }

.dropdown-items a:hover {
    color: #151539;
}

.hero-1-container {
    backdrop-filter: blur(6px);
    background: linear-gradient( 180deg, #ffffff 0%, rgba(255, 255, 255, 0.20000000298023224) 100% );
}

.company-slider {
    margin: 90px auto;
    width: 80%; /* Full viewport width */
    overflow: hidden; /* Hide the overflowing content */
    white-space: nowrap; /* Prevent line breaks */
    position: relative;
}

.slider-content {
    display: inline-block;
    animation: scroll 30s linear infinite; /* Scroll horizontally infinitely */
}

    .slider-content img {
        display: inline-block;
        margin-right: 10px;
        border-radius: 5px;
    }

.bg-black {
    background-color: #6261c5 !important;
}

.bg-success {
    background-color: #1cab51;
}

.bg-light {
    background-color: #edecf8;
}

.bg-danger {
    background-color: #dc3545;
}

.text-danger {
    color: red;
}

.fade {
    position: absolute;
    bottom: 0;
    width: 100px; /* Width of the fade */
    height: 70px;
    pointer-events: none;
}

.fade-left {
    left: 0;
    z-index: 10;
    background: linear-gradient( to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) );
}

.fade-right {
    right: 0;
    background: linear-gradient( to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) );
}

.logo-overlay {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100% );
    border-radius: 100%;
    height: 318px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 60px;
    transform: translate(-50%);
    width: 318px;
}

.waitlist-overlay {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100% );
    border-radius: 100%;
    height: 218px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 60px;
    z-index: 0;
    transform: translate(-50%);
    width: 218px;
}

.section-img {
    background: url(/images/img-bg.svg) center;
    background-size: cover;
    background-position: center;
    height: 100%;
    background-color: #f8fafc;
}

/* pricing section */

.container {
    text-align: center;
}

.toggle {
    margin-bottom: 20px;
}

.toggle-btn {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .toggle-btn.active {
        background-color: #fff;
        color: black;
        border-radius: 7px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.no-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-card {
    background: url(/images/footer-card-bg1.png) center no-repeat;
    background-size: cover;
}

.faq-container {
    max-width: 100%;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    gap: 20px;
}

.faq-item {
    background-color: #F4F7F9;
    border-radius: 15px;
    padding: 0 30px;
    border: 1px solid #ddeffb;
    overflow: hidden;
    width: 100%;
    transition: height 0.5s ease;
}

.faq-question {
    color: #000;
    font-family: "Bricolage Grotesque", sans-serif;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: max-height 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

    .faq-answer p {
        padding: 15px 0;
        color: #000;
        margin: 0;
        font-weight: 500;
        font-size: 17px;
    }

.faq-item.active .faq-answer {
    max-height: 800px; /* Adjust based on content length */
}

.cross {
    transition: transform 0.5s ease;
    min-width: 25px;
    min-height: 25px;
}

.faq-item.active .cross {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 0 0 60px 0;
}

    .clients .swiper-slide img {
        opacity: 0.5;
        transition: 0.3s;
    }

        .clients .swiper-slide img:hover {
            filter: none;
            opacity: 1;
        }

/* General testimonial container */
.testimonial-container {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: scroll 20s linear infinite; /* Scroll horizontally infinitely */
}

.review-slider {
    margin: 90px auto;
    width: 80%; /* Full viewport width */
    overflow: hidden; /* Hide the overflowing content */
    white-space: nowrap; /* Prevent line breaks */
    position: relative;
}

.timer-container {
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

#timer {
    font-size: 1.5rem;
    font-weight: bold;
}

#hours, #minutes, #seconds {
    color: #000000;
}

@media (max-width: 1023px) {
    .review-slider {
        width: 95%;
        margin: 30px auto;
    }

    /* Ensure container has correct width on mobile */
    .testimonial-container {
        width: calc(300px * 12); /* Adjust this to the number of testimonials */
        animation: scrollMobile 100s linear infinite;
    }

    .faq-item {
        padding: 0 10px;
    }

    .cross {
        min-width: 20px;
        min-height: 20px;
    }
}

/* Keyframes for the desktop scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Keyframes for mobile scroll animation */
@keyframes scrollMobile {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(calc(-300px * 6)); /* Adjust based on the number of testimonials */
    }
}


@media screen and (min-width: 1600px) {
    .xl3 {
        margin-top: 5rem !important;
    }
}
