body {
    font-family: Inter, sans-serif;
    background-color: #010101;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Recoleta, sans-serif !important;
}


/* Set the text color inside the header to white */
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .btn {
    color: rgb(255, 255, 255);
    font-size: 18px;
}

/* Style the logo's container */
.navbar-brand {
    padding: 0;
}

/* Style the logo image */
.logo {
    max-height: 40px; /* Adjust the logo height as needed */
}

/* Style the button */
.btn {
    margin-left: auto; /* Push the button to the far right */
}

.download-btn {
    margin-left: auto; /* Add some spacing between the buttons */
    background-color: #3AB54A;
    border-color: #3AB54A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

/* hide download-btn on mobile */
@media (max-width: 768px) {
    .download-btn {
        display: none;
    }
}


/* Style Font Awesome icons */
.nav-link i {
    font-size: 20px; /* Adjust the icon size as needed */
    margin-right: 5px; /* Add spacing between icon and text */
}

#mode-switch {
    position: fixed;
    top: 50%; /* Adjust the vertical position as needed */
    left: 0; /* Adjust the horizontal position as needed */
    transform: translateY(-50%);
    z-index: 1000; /* Ensure it's above other elements */
}

.switch-button {
    background-color: #3AB54A;
    color: #fff;
    border-radius: none;
    width: 30px;
    height: 30px;
    border: 1px solid #3AB54A;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#side-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* background-color: #fff; Background color for the side navigation */
    padding: 10px;
    /* text-align: center; */
}

#side-nav ul {
    list-style-type: none;
    padding: 0;
}

/* side nav responsive styling */
@media (max-width: 768px) {
    #side-nav {
        display: none;
    }
}

.section-item {
    cursor: pointer;
    /* margin-bottom: 5px; */
    position: relative;
}

.section-item::before {
    content: '○'; 
    font-size: 14px;
    margin-right: 10px;
    color: #fff;
}

/* Style the checked list item (selected) */
.section-item.checked::before {
    content: '○'; 
    color: #3AB54A; 
    font-size: 14px;
}



/* Style the home slider container */
.home-slider {
    position: relative;
}

/* Style each slide */
.slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Style the slide text overlay */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.slide-text h2 {
    font-size: 48px;
}

.slide-text p {
    font-size: 24px;
}

/* Style the Owl Carousel navigation arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Style circular containers for navigation arrows */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    font-size: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

/* Set the width and height to create circular containers */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    width: 40px;
    height: 40px;
}

/* Position the "Left" arrow to the left and the "Right" arrow to the right */
.owl-nav .owl-prev {
    margin-left: 30px;
}

.owl-nav .owl-next {
    margin-right: 30px;
}

/* Style the navigation arrows on hover */
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Align text left for .slide-left */
.slide-left .slide-text {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    text-align: left;

}

/* Align text right for .slide-right */
.slide-right .slide-text {
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    text-align: right;
}


#landing {
    padding: 100px 100px;
    background-image: url(../images/globe.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.landing-content-part {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

}

/* .landing-image-part {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
} */

.landing-heading {
    font-size: 3.63rem;
    font-weight: 600;
    font-family: Recoleta, sans-serif !important;
    color: rgb(255, 255, 255);
    line-height: 64px;
}

.landing-text {
    font-size: 1.19rem;
    font-weight: 200;
    font-family: Inter, sans-serif;
    line-height: 30px;
    color: rgb(255, 255, 255);
}

.digits {
    font-size: 1.63rem;
    font-weight: 600;
    font-family: Recoleta, sans-serif;
    color: rgb(255, 255, 255);
    line-height: 64px;
}

.landing-button {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    color: #000;
}

.landing-button:hover {
    background-color: #3AB54A;
    border-color: #3AB54A;
    color: #fff;
}

.landing-image {
    width: 100%;
    /* max-width: 500px; */
    height: auto;
    border-radius: 20px;
    padding-top: -200;
}

/* responsive styling for landing section */
@media (max-width: 768px) {
    #landing {
        padding: 50px 20px;
    }

    .landing-heading {
        font-size: 2.03rem;
        line-height: 40px;
    }

    .landing-text {
        font-size: 1.19rem;
        line-height: 30px;
    }

    .digits {
        font-size: 1.63rem;
        line-height: 64px;
    }

    .landing-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-top: 20px;
    }
}




.advantages-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    margin-top: -50px;
}

.advantage-box {
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-radius: 10px;
    min-height: 300px;
}

.box-1 {
    background-color: #3AB54A;
    color: #fff;
}

.box-2 {
    background-color: #CD9933;
    color: #fff;
}

.box-3 {
    background-color: #FFFFFF;
    color: #010101;
}

/* Styles for icons, titles, and text */
.icon {
    font-size: 36px;
    margin-bottom: 10px;
    /* Add icon styles (e.g., using Font Awesome) */
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Recoleta, sans-serif !important;
    margin-bottom: 20px;
}

.text {
    font-size: 16px;
}


/* responsive styling for advantages section */
@media (max-width: 768px) {
    .advantages-container {
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .advantage-box {
        flex: 0 0 100%;
        margin: 10px 0px;
    }
}




/* app download section */

.app-download-section {
    background-color: #3BCCFF;
    padding: 50px 50px;
    border-radius: 30px;
}

.app-download-text {
    margin-bottom: 50px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.app-download-text h2 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    margin-bottom: 20px;
    color: #010101;
}

.app-download-text p {
    color: #010101;
    font-size: 18px;
    margin-bottom: 40px;
}

.app-download-button {
    padding: 20px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    background-color: #000;
    color: #fff;
}

.app-download-button:hover {
    background-color: #3AB54A;
    border-color: #3AB54A;
    color: #fff;
}

.app-download-button span {
    margin-left: 10px;
}

.app-svg {
    width: 100%;
    max-width: 500px;
}

/* responsive styling for app download section */
@media (max-width: 768px) {
    .app-download-text h2 {
        font-size: 30px;
    }

    .app-download-text p {
        font-size: 16px;
    }

    .app-download-button {
        font-size: 16px;
    }

    .app-svg {
        width: 100%;
        max-width: 300px;
    }
}


/* About section */

/* Style the "About" section */
#about-section {
    background-color: #010101;
    padding: 60px 0px;
    border-radius: 30px;
}


.about-container {
    display: flex;
    flex-wrap: wrap-reverse; 
    align-items: center;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.about-content {
    flex: 0 0 calc(50% - 20px);
}

.about-content h2 {
    position: relative;
    display: inline-block;
    font-size: 35px;
    margin-bottom: 30px;
    font-family: Recoleta, sans-serif !important;
    font-weight: 700;
    color: #fff;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    margin-bottom: -5px;
    left: 25%;
    transform: translateX(-50%);
    width: 50%; 
    height: 3px; 
    background-color: #fff; 
}

.about-content p {
    font-size: 22px;
    color: #fff;
    line-height: 40px;
}

/* Style the about image */
.about-image {
    flex: 0 0 calc(50% - 20px);
    margin-left: 40px;
    border-radius: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.globe {
    animation: rotate 5s infinite linear; /* Adjust duration and animation style as needed */
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse; 
    }

    .about-content,
    .about-image {
        flex: 0 0 100%; 
        margin-bottom: 20px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 80%; 
    }

    .about-content h2::after {
        width: 30%; 
    }

    .about-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .about-content h2 {
        font-size: 30px;
    }

}



/* Style the "Features" section */
#features {
    padding: 30px 0;
    margin: 20px 0px;
}

.features-content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.features-content .feature-title {
    position: relative;
    display: inline-block;
    font-size: 40px;
    margin-bottom: 40px;
    color: #fff;
}

.features-content .feature-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    margin-bottom: -15px;
    left: 28%;
    transform: translateX(-50%);
    width: 50%; 
    height: 3px; 
    background-color: #fff; 
}

.features-content .feature-text {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Style the navigation buttons */
.carousel-buttons {
    float: left;
}

.prev-feature-button,
.next-feature-button {
    background-color: transparent;
    color: #fff; 
    border: 2px solid #fff; 
    border-radius: 50%;    width: 40px;
    height: 40px;
    font-size: 24px;
    margin: 10px 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* Style the hover effect */
.prev-feature-button:hover,
.next-feature-button:hover {
    background-color: #3AB54A; 
    color: #fff; 
    transform: scale(1.1); 
}


/* Style the feature boxes */
.feature-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-right: 30px;
}

/* Style the feature box images */
.feature-box img {
    max-width: 100%;
    height: auto;
}

.feature-box .content {
    padding: 20px;
    min-height: 230px;
}

.feature-box .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box .content p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}


#our-products {
    padding: 60px 0;
    margin: 50px 100px;
}

.our-products-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.our-products-content .our-products-title {
    position: relative;
    display: inline-block;
    font-family: Recoleta, sans-serif !important;
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.our-products-content .our-products-text {
    color: #fff;
    font-size: 18px;
}

/* responsive styling */
@media (max-width: 768px) {
    #our-products {
        margin: 20px 0px;
    }
}


#numbers {
    /* background-color: #f9f9f9; */
    padding: 20px 0;
}

#numbers .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: #000;
    padding: 10px;
    background-color: #fff;
}

.quote {
    border-left: 5px solid #3AB54A;
    padding-left: 20px;
    margin-bottom: 20px;
}

.quote blockquote {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 50px;
    color: #fff;
}

.quote cite {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    /* float: right; */
}

.numbers-boxes {
    display: flex;
}

.number-box {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 10px;
}

.number-box .number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.number-box .number-description {
    font-size: 18px;
}

/* responsive styling for numbers section */
@media (max-width: 768px) {
    #numbers {
        padding: 20px 0;
    }

    .numbers-boxes {
        flex-wrap: wrap;
    }

    .number-box {
        flex: 0 0 100%;
        margin: 10px 0px;
    }

    .number-box .number {
        font-size: 24px;
    }

    .number-box .number-description {
        font-size: 14px;
    }

    .quote blockquote {
        font-size: 18px;
    }
}




/* Style the testimonial section */
#testimonials {
    /* background-color: #f9f9f9; */
    padding: 40px 50px;
}

/* Style the testimonial container */
/* .testimonial-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
} */

/* Style each testimonial slide */
.testimonial-slide {
    flex: 0 0 50%;
    margin: 40px 30px;
    padding: 2px;
}

/* Style the white box for each testimonial */
.testimonial-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    /* box-shadow: 0 0 10px rgba(216, 19, 19, 0.3); */
    /* max-width: fit-content; */
}

.testimonial-info {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: row;
    gap: 10px;
}

.testimonial-info .testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    /* background: url(<path-to-image>), lightgray 50% / cover no-repeat; */
    /* box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25); */
    
}

.testimonial-info .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/* Style the testimonial details (name, company, rating) */
.testimonial-details h3 {
    font-size: 18px;
    margin: 0;
}

.testimonial-details p {
    font-size: 14px;
    color: #888;
}

/* Style the rating stars */
.rating {
    font-size: 24px;
    color: #FFD700; /* Gold color for stars */
    margin-top: 10px;
}

/* Style the testimonial text */
.testimonial-text {
    margin-top: 20px;
}

/* Style the navigation dots */
#testimonial-dots .owl-dot {
    /* display: inline-block; */
    background-color: transparent; 
    border: 1px solid #3AB54A; 
    border-radius: 50%; 
    width: 12px;
    height: 12px;
    margin: 0 5px; 
    transition: background-color 0.3s ease; 
    float: right;
}

/* Style the active dot (filled) */
#testimonial-dots .owl-dot.active {
    background-color: #3AB54A;
}

/* responsive styling for testimonial section */
@media (max-width: 768px) {
    #testimonials {
        padding: 20px 0;
    }
    

    .testimonial-info {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .testimonial-info .testimonial-image {
        width: 80px;
        height: 80px;
    }

    .testimonial-details {
        text-align: center;
    }

    .testimonial-details h3 {
        font-size: 16px;
    }

    .testimonial-details p {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .rating {
        font-size: 20px;
    }

    .testimonial-box {
        padding: 10px;
        width: 100%;
    }

    .testimonial-container {
        margin: 0px 0px;
        padding: 0px 0px;
    }
}

.testimonial-carousel .owl-dots {
    position: absolute;
    top: 0;
    right: 20px;
}

.testimonial-carousel .owl-dot {
    background-color: transparent; 
    border: 1px solid #3AB54A; 
    border-radius: 50%; 
    width: 12px;
    height: 12px;
    margin: 0 5px; 
    transition: background-color 0.3s ease; 
}

.testimonial-carousel .owl-dot.active {
    background-color: #3AB54A;
}


