/* Additional styles for the testimonials section */
/* General styles remain unchanged */
* {
    margin: 0;
    padding: 0;
}

nav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin-bottom: 100%;
    top: 0;
}

.a {
    display: flex;
    height: 50px;
    background-color: #201c1b;
    color: #09aba0;
    padding: 10px;
    width: auto;
}

.c {
    padding-top: 15px;
    padding: 10px;
    align-items: center;
    margin-left: 27.5%;
}

.d {
    display: flex;
    background-color: #09aba0;
    width: auto;
    justify-content: center;
    padding: 5px;
    gap: 30px; 
}

.d ul li a {
    color: #201c1b;
    text-decoration: none;
}

ul {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.d ul {
    gap: 30px;
}
.d ul a:hover{
    color: white;
    transform: scale(1.1);
  }

.testimonials {
    max-width: 800px;
    margin: 100px auto; /* Adjust for fixed navbar */
    padding: 20px;
    background-color: #201c1b; /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #09aba0;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.testimonial video {
    width: 100%; /* Make video responsive */
    border-radius: 5px;
    height: 600px;
}

.testimonial h3 {
    margin-top: 10px;
    color: #201c1b;
    text-align: center; /* Center align the names */
}
body{
    background-color: #201c1b;
    color: #09aba0;
    font-family: Arial, sans-serif;
}
.aaaa{
    font-size: 30px;
}
@media (max-width:500px){
    .a{
        width:500px;
        height:60px;
        
    }
    .b{
        height:40px;
        
    }
    .aaaa{
        font-size: 20px;
    }
    .c{
        font-size: 15px;
        margin-left: 20px;
        margin-right: 0px;
        margin-bottom: 20px;
        flex-grow: inherit;
    }
    .testimonials h2{
        margin-top: 50px;
    }
}