.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: white; /* Set a background color */
    height: 100px; /* Adjust based on your logo height */
}
.logo-track {
    display: flex;
    width: calc(200%); /* Correct, as long as each .logo-set is exactly half */
    animation: scroll-logos 30s linear infinite; /* Adjust timing as needed */
}

.logo-set {
    display: flex;
    flex: none; /* Override the default flex settings */
    width: 100%; /* Each set is 100% of the .logo-marquee width */
    justify-content: space-around;
    align-items: center;
}

.logo-set img {
    height: 80px; /* Control the size */
    width: auto; /* Maintain aspect ratio */
    padding: 0 10px; /* Adjust padding to manage spacing */
    flex: 0 0 auto; /* Do not allow the images to grow or shrink */
}


/* 
.logo-track {
    display: flex;
    width: calc(200%);
    animation: scroll-logos 20s linear infinite;
}

.logo-set {
    display: flex;
    flex: 1;
    justify-content: space-around; 
    align-items: center;
}

.logo-set img {
    height: 80px; 
    width: auto; 
    padding: 0 20px; 
} */
 /* 
testimonial section

 */.impact-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f4f4f9;
}

.stats-container {
    width: 40%;
}

.stats-container h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    flex-direction: column;  /* Change to row for horizontal alignment if needed */
}

.stat-box {
    background-color: white;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.number {
    display: block;
    font-size: 40px;
    color: red;
}

.label {
    font-size: 18px;
    color: #666;
}

.testimonials {
    width: 60%;
    padding-left: 20px;
}

.testimonial {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.testimonial img {
    float: left;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial p {
    font-size: 16px;
    color: #333;
}

.testimonial cite {
    display: block;
    font-size: 14px;
    color: #999;
}
/*Course Sections */
.course-section {
    background-color: #1f4f8f; /* Deep blue background */
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.header h1 {
    font-size: 24px;
    color: #ffffff;
}

.header p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature {
    width: 30%; /* Adjust based on container width */
    margin: 10px;
    padding: 20px;
    background-color: #ffffff;
    color: #333333;
    border-radius: 8px;
}

.feature .icon {
    font-size: 24px;
    color: #1f4f8f;
}

.feature h3 {
    font-size: 20px;
    color: #333333;
}

.feature p {
    font-size: 16px;
    color: #666666;
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%); 
    }
}
