

.banner_image {
    position: relative;
    max-width: 100%;
    border-radius: 100%;
    right: -50%;
    border: 15px solid white;
    outline: 15px solid var(--light-blue);
}

.banner-content {
    min-height: 100%;
    color: #fff;
    text-align: right;
    background-color: var(--light-blue);
    display: flex;
    justify-content: end;
    align-items: center;
}

.banner-content .banner_description {
    width: 100%;
    margin-right: 10vw;
    margin-left: 15vw;
    text-align: left;
}

.banner-content h1 {
    font-size: 30px;
}

.banner-content h3 {
    font-size: 40px;
    color: transparent;
    -webkit-text-stroke: 0.5px #fff;
    background-image: linear-gradient(to right, #F39C12, #E74C3C); /* Gradient for the text */
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    animation: animateText 6s linear infinite;
}

.banner-content p {
    text-align: justify;
}

@keyframes animateText {
    0%, 95%, 100% {
        background-position: -810px 0;
    }

    65%, 85% {
        background-position: 0 0;
    }
}


/* Testimonial Section */
.testimonial-section {
    background-color: var(--light-blue);
    padding: 50px 20px;
    text-align: center;
}

.testimonial-section h2 {
    color: #736efe;
    margin-bottom: 30px;
}

/* Container for testimonials */
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* Individual testimonial */
.testimonial {
    background: whitesmoke;
    padding: 20px;
    width: 30%; /* 3 testimonials per row */
    min-width: 250px;
    border-left: 5px solid var(--light-blue);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
}

/* Profile images */
.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid var(--light-blue);
}

/* Text styling */
.testimonial p {
    font-size: 16px;
    color: black;
}

.testimonial h4 {
    margin-top: 10px;
    color: var(--light-blue);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial {
        width: 45%; /* 2 testimonials per row on tablets */
    }
}

@media (max-width: 768px) {
    .testimonial {
        width: 100%; /* 1 testimonial per row on mobile */
    }
}
.testimonial-pic{
width: 100px;
height: 100px;  

}
