/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #5500ff;
    overflow-x: hidden;
}

/* Header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #5500ff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(85, 0, 255, 0.3); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
} */

.logo img {
    width: 150px;
    max-width: 180px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-family: "Comfortaa";
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f8efef;
}

/* Download Dropdown */
.download-dropdown {
    position: relative;
}

#downloadBtn {
    background: #f7f4f5;
    color: #060606;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s, background 0.3s;
}

#downloadBtn:hover {
    background: #000000;
    color: #fff;
    transform: scale(1.05);
}

.download-options {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 40px;
    background: transparent;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
    border-radius: 10px;
    z-index: 1001;
}

.download-options a {
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px
}

.download-options a img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    color: #ffffff;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
}

.mobile-nav.show {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    padding: 15px;
    text-decoration: none;
    color: #2E1A47;
    font-family: "Comfortaa";
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.mobile-close {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #070707;
}

.mobile-close:hover {
    color: #0b0b0b;
}

.mobile-download {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
    gap: 10px;
}

.mobile-download a img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* Headings with Underline */
h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    font-family: "Comfortaa";
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 50%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
}

/* Underlined Text */
.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
}

/* Section Separator */
section:not(#faqs):not(.cut-section) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 90px 5% 40px;
}

footer {
    border-top: none;
    padding: 80px 5% 40px;
}

/* Content Container */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 40px;
}

/* Content Left Wrapper */
.content-left {
    flex: 1;
    text-align: left;
}

/* Content Center Wrapper */
.content-center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Image Right */
.image-right {
    flex: 0 0 auto;
    max-width: 40%;
    display: block;
}

.image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Image Right for Mobile (below h2) */
.image-right-mobile {
    display: none;
    max-width: 40%;
    margin-left: auto;
}

.image-right-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Center Content Wrapper */
.center-content {
    text-align: center;
    margin: 10px 0;
}

/* Home Section (Find Events) */
.home {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.home .home-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.home .home-image .home-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Preserve the entire image */
    object-position: center;
    /* Center the image */
    display: block;
}

.home .home-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px;
}

.home .download-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.home .download-buttons a img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.home .download-buttons a:hover img {
    transform: scale(1.05);
}

/* How It Works Section */
.how-it-works-section {
    /* background-color: #000; */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image {
    width: 100%;
    height: 308px;
    /* Fixed height for uniformity */
    object-fit: cover;
    /* Maintain aspect ratio, fill space */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    color: #ffffff;
    font-family: "Inter";
    font-weight: 400;
    text-align: center;
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    min-height: 200px;
    position: relative;
    flex: 0 0 calc(33.33% - 20px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

.testimonial-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Latest News Section */
.latest-news {
    padding: 80px 5% 40px;
}

.latest-news .content-left {
    width: 100%;
}

.latest-news .section-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    color: #ffffff;
    font-family: "Inter";
    font-weight: 400;
    text-align: center;
}

.latest-news h2 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.2;
    max-width: 50%;
    text-transform: uppercase;
}

.latest-news .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns side by side */
    gap: 20px;
    margin: 20px auto;
    max-width: 50%;
    /* Allow the grid to expand naturally */
}

.latest-news .news-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.latest-news .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.latest-news .news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #FFFFFF;
}

.latest-news .news-date {
    font-size: 0.85rem;
    color: #ffffff;
    padding: 10px 15px;
    font-weight: 500;
}

.latest-news .news-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    padding: 0 15px 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Blog Post Section */
.blog-post {
    padding: 80px 5% 40px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-post .content-left {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.blog-post .blog-date {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-post h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: "Comfortaa";
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post .blog-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-post .blog-content {
    color: #ffffff;
    line-height: 1.8;
    font-family: "Comfortaa";
}

.blog-post .blog-intro {
    font-size: 1.1rem;
    font-family: "Inter";
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
    border-left: 4px solid #ffffff;
    padding-left: 15px;
}

.blog-post .blog-subheading {
    font-size: 1.5rem;
    color: #ffffff;
    font-family: "Comfortaa";
    margin: 20px 0 10px;
    position: relative;
    padding-bottom: 5px;
}

.blog-post .blog-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffffff;
}

.blog-post .blog-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: "Inter";
}

.blog-post .blog-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid #ffffff;
}

/* Diversity Section */
.diversity {
    padding: 80px 5% 40px;
    border: none;
}

.diversity .content-container {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    padding: 30px;
}

.diversity .content-left {
    max-width: 50%;
}

.diversity .download-label {
    font-size: 0.9rem;
    /* font-family: "Comfortaa"; */
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.diversity h2 {
    font-size: 2.5rem;
    font-family: "Inter";
    color: #ffffff;
    line-height: 1.2;
    max-width: 100%;
    text-transform: none;
}

.diversity h2::after {
    display: none;
}

.diversity .download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.diversity .download-buttons a img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.diversity .download-buttons a:hover img {
    transform: scale(1.05);
}

.diversity .image-right img {
    max-width: 300px;
}

/* Company Section  */
.company-section {
    background-color: #5500ff;
    padding: 40px 0;
    width: 100%;
}

.company-section h2 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.2;
    max-width: 50%;
    text-transform: uppercase;
}

.company-section .section-subtitle {
    font-size: 1.0rem;
    margin: 10px 0 15px;
    color: #ffffff;
    font-family: "Inter";
    font-weight: 400;
    text-align: center;
}

.company-section .section-subtitlee {
    font-size: 0.5rem;
    margin: 10px 0 32px;
    color: #ffffff;
    font-family: "Inter";
    font-weight: 400;
    text-align: center;
}


.company-text {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroller-container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.company-logos {
    display: flex;
    width: max-content;
    animation: scroll 10s linear infinite;
}

.logo-container {
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.logo-container img {
    height: 100px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%) brightness(200%); */
    transition: all 0.3s ease;
}

.logo-container img:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        ransform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Trusted By Section */
.trusted-by-section {
    color: white;
    padding: 80px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trusted-by-text {
    position: relative;
    z-index: 1;
}

.trusted-by-text h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.trusted-by-text p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.testimonial-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial-images img {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.testimonial-images .img-4 {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.testimonial-images .img-6 {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.testimonial-images .img-5 {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}


/* Positioning the images in a circular pattern, plus top and bottom center */
.img-1 {
    top: 10%;
    left: 20%;
}

.img-2 {
    top: 5%;
    right: 20%;
}

.img-3 {
    top: 40%;
    left: 5%;
}

.img-4 {
    top: 35%;
    right: 5%;
    width: 73px;
    height: 72px;
}

.img-5 {
    bottom: 10%;
    left: 15%;
}

.img-6 {
    bottom: 5%;
    right: 15%;
}

.img-7 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.img-8 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}


/* Tab-Scroller Section */
.tab-scroller-section {
    /* background-color: #000; */
    color: white;
    padding: 20px 0;
    width: 100%;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.scroller-wrapper-1 {
    width: calc(100% - 20px);
    /* 10px margin on each side */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.scroller-container-1 {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.scroller-container-1:hover {
    animation-play-state: paused;
    /* Pause on hover for professional interaction */
}

.tab-item {
    padding: 0 40px;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tab-item:hover {
    opacity: 1;
}

/* Separator dot between sentences */
.tab-item:not(:last-child)::after {
    content: '•';
    margin-left: 40px;
    color: #000000;
    opacity: 0.6;
}

/* Benifits section */
.benefits-section {
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 40px;
}

.benefits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    /* Slight white tint with transparency */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border for glass edge */
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Soft shadow for depth */
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
}

.mobile-image {
    flex: 1;
    max-width: 300px;
}

.mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); */
}

/* Video Section */
.video-section {
    /* background-color: #000; */
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.play-button:hover {
    background-color: #fff;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.video-player {
    display: none;
    width: 100%;
    height: 450px;
    /* Adjust height to match YouTube iframe aspect ratio (16:9) */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Feature Section */
.features-section {
    /* background-color: #000; */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.feature-card {
    /* background-color: #1a1a1a; */
    background-color: rgba(255, 255, 255, 0.1);
    /* Slight white tint with transparency */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border for glass edge */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Soft shadow for depth */
    border-radius: 10px;
    width: 350px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-content {
    padding: 20px;
    text-align: left;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
}

/* Animation for cards */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for each card */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Carousel Styles for Mobile */
.carousell-wrapper {
    display: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.carousell {
    display: flex;
    transition: transform 0.5s ease;
}

.carousell .feature-card {
    flex: 0 0 100%;
    width: 100%;
    animation: none;
    /* Disable animations in carousel */
    transform: none;
    opacity: 1;
}

.carousell .feature-card:hover {
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #fff;
}


/* Numbers section*/
.number-section {
    padding: 80px 5% 40px;
    text-align: center;
    /* background-color: #1a1a1a; */
    /* Dark background for contrast */
}

.number-section h2 {
    font-size: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
    /* font-family: Arial, sans-serif; */
}

.number-section .section-subheading {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.numbers-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.number-value {
    font-size: 5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.number-label {
    font-size: 1rem;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQs Section */
.faqs {
    padding: 80px 5% 40px;
    text-align: center;
}

.faqs h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: linear-gradient(90deg, #f6f4f5, #f8f6f7);
    color: #0a090a;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: linear-gradient(90deg, #f8f6f7, #f6f3f4);
}

.faq-question i {
    color: #000000;
}

.faq-answer {
    background: rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Footer */
.cut-section {
    background-color: #5500ff;
    /* Background for the aavo-cut image */
    width: 100%;
    margin-bottom: 0;
    /* No gap below */
}

.cut-image {
    width: 51%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-section {
    background-color: #000;
    width: 100%;
    padding: 40px 20px;
    margin-top: 0;
    /* No gap above */
    font-family: Arial, sans-serif;
    color: #fff;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Space between main content and copyright/legal links */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align to top */
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.8;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.download-button img {
    width: 120px;
    height: auto;
    transition: opacity 0.3s ease;
}

.download-button img:hover {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 40px;
    /* Spacing between the two columns of links */
    justify-content: flex-end;
    /* Align links to the right */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    color: #ccc;
}

.legal-links {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* Privacy Policy and Terms & Conditions Sections */
.privacy-policy,
.terms-conditions {
    padding: 80px 5% 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.privacy-policy .content-left,
.terms-conditions .content-left {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 35px 20px;
}

.privacy-policy h2,
.terms-conditions h2 {
    font-size: 3rem;
    color: #ffffff;
    font-family: "Comfortaa";
    text-align: relative;
    margin-bottom: 20px;
}

.privacy-policy h3,
.terms-conditions h3 {
    font-size: 1.5rem;
    font-family: "Comfortaa";
    color: #ffffff;
    margin: 20px 0 10px;
    text-align: center;
}

.privacy-policy p,
.terms-conditions p {
    font-size: 1rem;
    font-family: "Inter";
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-policy ul,
.terms-conditions ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-policy ul li,
.terms-conditions ul li {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Section Divider */
.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    margin: 40px 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .latest-news .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px auto;
        max-width: 83%;
    }
}

/* Responsive Design */
@media (max-width: 769px) {
    header {
        padding: 15px 5%;
    }

    .logo img {
        width: 130px;
        max-width: 160px;
    }

    .nav-links {
        display: none;
    }

    .download-dropdown {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .home .download-buttons a img {
        width: 150px;
    }

    .how-it-works,
    .aavo-different,
    .faqs,
    .testimonials,
    .diversity,
    .latest-news,
    .blog-post,
    .company-section {
        padding: 60px 5% 20px;
    }

    .how-it-works h2,
    .aavo-different h2,
    .testimonials h2,
    .diversity h2,
    .latest-news h2,
    .blog-post h1,
    .company-section h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .how-it-works .section-subtitle,
    .latest-news .section-subtitle,
    .company-section .section-subtitle {
        max-width: 100%;
    }

    .how-it-works-section {
        padding: 40px 15px;
    }

    .how-it-works-section h2 {
        font-size: 2rem;
    }

    .section-subheading {
        font-size: 1rem;
        padding: 0 10px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        max-width: 100%;
    }

    .step-image {
        max-width: 250px;
        height: 250px;
        /* Adjusted height for smaller screens */
    }

    .aavo-different .features-grid {
        grid-template-columns: 1fr;
    }

    .aavo-different .feature-item {
        justify-content: flex-start;
    }

    .aavo-different .feature-text h3 {
        font-size: 1rem;
    }

    .aavo-different .feature-text p {
        font-size: 0.85rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 180px;
        padding-bottom: 40px;
    }

    .testimonial-grid {
        gap: 15px;
    }

    .testimonial-author {
        bottom: 5px;
        right: 5px;
        font-size: 0.9rem;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .left-arrow {
        left: -40px;
    }

    .right-arrow {
        right: -40px;
    } */


    /* .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 220px;
        padding: 20px 15px 70px 15px;
    }

    .testimonial-grid {
        gap: 10px;
    }

    .testimonial-item p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .testimonial-photo {
        width: 40px;
        height: 40px;
        bottom: 35px;
        right: 15px;
    }

    .testimonial-author {
        bottom: 10px;
        right: 15px;
        font-size: 0.9rem;
    } */

    .testimonials {
        padding: 50px 4% 35px;
    }

    .testimonials .section-subtitle {
        font-size: 1.05rem;
    }

    .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        /* 2 items per page */
        padding: 15px;
        min-height: 170px;
    }

    .testimonial-photo {
        width: 38px;
        height: 38px;
        margin-right: 10px;
    }

    .testimonial-author {
        font-size: 0.92rem;
    }

    .testimonial-item p {
        font-size: 0.88rem;
    }

    .diversity .content-container {
        flex-direction: column;
        align-items: center;
    }

    .diversity .content-left {
        max-width: 100%;
        text-align: center;
    }

    .diversity .image-right {
        display: none;
    }

    .diversity .image-right-mobile {
        display: block;
        max-width: 60%;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .diversity .download-buttons {
        justify-content: center;
    }

    .diversity .download-buttons a img {
        width: 150px;
    }

    .latest-news .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .latest-news .news-item img {
        height: 200px;
    }

    .blog-post h1 {
        font-size: 1.8rem;
    }

    .blog-post .blog-image {
        max-height: 300px;
    }

    .blog-post .blog-subheading {
        font-size: 1.3rem;
    }

    .blog-post .blog-content p {
        font-size: 0.95rem;
    }

    .blog-post .blog-quote {
        font-size: 1rem;
        padding: 15px;
    }

    .company-text {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .scroller-container {
        width: 90%;
    }

    .logo-container {
        gap: 30px;
        padding: 0 15px;
    }

    .logo-container img {
        height: 60px;
    }

    .trusted-by-section {
        min-height: 500px;
        padding: 60px 15px;
    }

    .trusted-by-text h1 {
        font-size: 2.2rem;
    }

    .trusted-by-text p {
        font-size: 1rem;
    }

    .testimonial-images img {
        width: 70px;
        height: 70px;
    }

    .testimonial-images .img-4 {
        width: 50px;
        height: 50px;
    }

    .testimonial-images .img-6 {
        width: 50px;
        height: 50px;
    }

    .testimonial-images .img-5 {
        width: 50px;
        height: 50px;
    }

    .img-1 {
        top: 5%;
        left: 15%;
    }

    .img-2 {
        top: 5%;
        right: 15%;
    }

    .img-3 {
        top: 35%;
        left: 2%;
    }

    .img-4 {
        top: 35%;
        right: 2%;
    }

    .img-5 {
        bottom: 5%;
        left: 10%;
    }

    .img-6 {
        bottom: 5%;
        right: 10%;
    }

    .img-7 {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .img-8 {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .tab-item {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .tab-item:not(:last-child)::after {
        margin-left: 30px;
    }

    .scroller-wrapper-1 {
        width: calc(100% - 20px);
    }

    .benefits-section {
        padding: 40px 15px;
    }

    .benefits-section h2 {
        font-size: 2rem;
    }

    .section-subheading {
        font-size: 1rem;
        padding: 0 10px;
    }

    .benefits-container {
        flex-direction: column;
        gap: 20px;
    }

    .benefits-column {
        gap: 15px;
    }

    .benefit-card {
        padding: 15px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .mobile-image {
        max-width: 250px;
    }

    .video-section {
        padding: 40px 15px;
    }

    .video-container {
        max-width: 100%;
    }

    .video-player {
        height: 350px;
        /* Adjust height for smaller screens */
    }

    .play-button {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .play-icon {
        border-left: 10px solid #000;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .features-section {
        padding: 40px 15px;
    }

    .features-section h2 {
        font-size: 2rem;
    }

    .section-subheading {
        font-size: 1rem;
        padding: 0 10px;
    }

    .feature-card {
        width: calc(50% - 15px);
    }

    .feature-image {
        height: 150px;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .footer-section {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-left {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-right {
        justify-content: center;
        /* Center the links in mobile view */
        gap: 20px;
        /* Reduced gap for smaller screens */
    }

    .download-button img {
        width: 100px;
    }

    .social-icon img {
        width: 25px;
        height: 25px;
    }

    .footer-links {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 1rem;
    }

    .legal-links {
        font-size: 0.85rem;
    }

    .number-section {
        padding: 60px 5% 30px;
    }

    .number-section h2 {
        font-size: 2.5rem;
    }

    .number-section .section-subheading {
        font-size: 1rem;
        max-width: 90%;
    }

    .numbers-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid */
        gap: 30px;
    }

    .number-value {
        font-size: 3rem;
        /* Reduced size for tablet/mobile */
    }

    .number-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .home .download-buttons a img {
        width: 120px;
    }

    .how-it-works h2,
    .aavo-different h2,
    .testimonials h2,
    .diversity h2,
    .latest-news h2,
    .blog-post h1,
    .company-section h2 {
        font-size: 1.5rem;
    }

    .how-it-works .section-subtitle,
    .latest-news .section-subtitle,
    .company-section .section-subtitle {
        font-size: 1rem;
    }

    .how-it-works .carousel-wrapper {
        max-width: 250px;
        padding: 10px;
    }

    .how-it-works .carousel-item {
        max-width: 250px;
    }

    .how-it-works .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .how-it-works .dot {
        width: 8px;
        height: 8px;
    }

    .how-it-works-section {
        padding: 30px 10px;
    }

    .how-it-works-section h2 {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .step-image {
        max-width: 200px;
        height: 200px;
        /* Further adjusted height for mobile */
    }

    .aavo-different .feature-text h3 {
        font-size: 0.9rem;
    }

    .aavo-different .feature-text p {
        font-size: 0.75rem;
    }

    /* .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 150px;
        padding-bottom: 35px;
    }

    .testimonial-item p {
        font-size: 0.85rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    .carousel-arrow {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .left-arrow {
        left: -30px;
    }

    .right-arrow {
        right: -30px;
    } */

    /* .testimonial-item {
        flex: 0 0 calc(50% - 10px);
        min-height: 180px;
        padding: 15px 10px 60px;
    }

    .testimonial-item p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .testimonial-photo {
        width: 35px;
        height: 35px;
        bottom: 30px;
        right: 10px;
    }

    .testimonial-author {
        font-size: 0.8rem;
        right: 10px;
        bottom: 5px;
    } */

    .testimonials {
        padding: 40px 3% 30px;
    }

    .testimonials .section-subtitle {
        font-size: 1rem;
    }

    .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        /* 2 items per page */
        padding: 12px;
        min-height: 160px;
    }

    .testimonial-photo {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .diversity .image-right-mobile {
        max-width: 80%;
    }

    .diversity .download-buttons a img {
        width: 70%;
    }

    .latest-news .news-item img {
        height: 180px;
    }

    .latest-news .news-item h3 {
        font-size: 1.1rem;
    }

    .blog-post h1 {
        font-size: 1.5rem;
    }

    .blog-post .blog-image {
        max-height: 250px;
    }

    .blog-post .blog-subheading {
        font-size: 1.2rem;
    }

    .blog-post .blog-content p {
        font-size: 0.9rem;
    }

    .blog-post .blog-quote {
        font-size: 0.95rem;
        padding: 10px;
    }

    .company-text {
        font-size: 1rem;
    }

    .scroller-container {
        width: 95%;
    }

    .logo-container {
        gap: 20px;
        padding: 0 10px;
    }

    .logo-container img {
        height: 100px;
    }

    .trusted-by-section {
        min-height: 450px;
        padding: 40px 10px;
    }

    .trusted-by-text h1 {
        font-size: 1.8rem;
    }

    .trusted-by-text p {
        font-size: 0.9rem;
    }

    .testimonial-images img {
        width: 60px;
        height: 60px;
    }

    .testimonial-images .img-4 {
        width: 40px;
        height: 40px;
    }

    .testimonial-images .img-6 {
        width: 40px;
        height: 40px;
    }

    .testimonial-images .img-5 {
        width: 40px;
        height: 40px;
    }

    .img-1 {
        top: 5%;
        left: 10%;
    }

    .img-2 {
        top: 5%;
        right: 10%;
    }

    .img-3 {
        top: 30%;
        left: 0;
    }

    .img-4 {
        top: 30%;
        right: 0;
    }

    .img-5 {
        bottom: 5%;
        left: 5%;
    }

    .img-6 {
        bottom: 5%;
        right: 5%;
    }

    .img-7 {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .img-8 {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .tab-scroller-section {
        padding: 15px 0;
    }

    .tab-item {
        font-size: 1rem;
        padding: 0 20px;
    }

    .tab-item:not(:last-child)::after {
        margin-left: 20px;
    }

    .scroller-wrapper-1 {
        width: calc(100% - 20px);
    }

    .benefits-section {
        padding: 30px 10px;
    }

    .benefits-section h2 {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 0.9rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .mobile-image {
        max-width: 200px;
    }

    .video-section {
        padding: 30px 10px;
    }

    .video-player {
        height: 250px;
        /* Further adjust height for mobile */
    }

    .play-button {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .play-icon {
        border-left: 8px solid #000;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .features-section {
        padding: 30px 10px;
    }

    .features-section h2 {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 0.9rem;
    }

    .features-container {
        display: none;
        /* Hide static layout on mobile */
    }

    .carousell-wrapper {
        display: block;
        /* Show carousel on mobile */
    }

    .feature-image {
        height: 311px;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .footer-section {
        padding: 20px 10px;
    }

    .footer-right {
        gap: 15px;
        /* Further reduce gap for mobile */
    }

    .download-button img {
        width: 90px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .footer-links {
        font-size: 0.8rem;
    }

    .legal-links {
        flex-direction: row;
        /* Stack legal links vertically on mobile */
        gap: 10px;
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.9rem;
    }

    .number-section {
        padding: 40px 5% 20px;
    }

    .number-section h2 {
        font-size: 2rem;
    }

    .number-section .section-subheading {
        font-size: 0.9rem;
    }

    .numbers-container {
        gap: 20px;
    }

    .number-value {
        font-size: 2.5rem;
        /* Further reduced for small mobile screens */
    }

    .number-label {
        font-size: 0.85rem;
    }
}