/* Reset some default styles */
/* body, h1, p {
    margin: 0;
    padding: 0;
} */
/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 90vh; /* Adjust the height as needed */
    overflow: hidden;
}

/* YouTube Video Background Styles */
/* .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

iframe {
    width: 100%;
    height: 100%;
} */

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Maintain the 16:9 aspect ratio for the video */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dark-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 70%;
    background: linear-gradient(90deg, rgba(40, 48, 63, 0.90) 24.59%, rgba(40, 48, 63, 0.78) 38.12%, rgba(55, 65, 81, 0.10) 98.84%);
    mix-blend-mode: multiply;
    pointer-events: none; /* Allow clicks to pass through the layer */
}
/* Content Overlay Styles */
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the overlay color and opacity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Text color */
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    /* max-width: 600px; */
    margin-bottom: 40px;
}

/* Logos Section Styles */
.acc-section{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.logos-section {
    display: flex;
    justify-content: start;
    align-items: bottom;
    margin-top: 40px;
}

.logos-section img {
    max-width: 150px; /* Adjust the maximum width of the logos */
    height: auto;
    margin-right: 20px; /* Adjust the spacing between logos */
}