/* INDEX PAGE CONTENT STYLES */
.page-wrapper {
    display: block;
    width: 100%;
    overflow-y: auto;
    justify-content: center;
    /* scroll-behavior: smooth; */
}

.banner-video-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}

.cols {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.desc-container {
    margin: 20px 15px 200px 15px;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    display: block;
    line-height: 1.6;
    color: #333;
}

.section {
    display: block;
    width: 100%;
    justify-content: center;
    font-size: 20px;
    text-align: justify;
}

h2 {
    color: #000000;
    margin-top: 15px;
    /* font-size: 28px; */
    font-size: clamp(22px, 1.6vw, 28px)
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 90%;
}

.logo-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px; 
    border-radius: 8px;
    box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.logo-grid img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.video-embed {
    text-align: center;
    margin: 10px 10px;
    padding: 10px 10px;
}

.video-embed iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;  /* keeps default YouTube ratio */
    border: none;
    border-radius: 8px;  
    box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.2);
}

.graph-img {
    width: 85%;
    height: auto;
    display: block;
    margin: 20px auto;
    /* max-width: 70%; */
}

