 .testimonials-section {
     background: linear-gradient(to bottom, #ff9a8b, #ff6a00);
     color: #fff;
     padding: 5rem 0;
     border-radius: 15px;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: bold;
     color: #fff;
 }

 /* Testimonial Cards */
 .testimonial-card {
     background: #fff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     border-radius: 12px;
     transition: all 0.3s ease-in-out;
     
     padding: 20px;
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
 }

 .testimonial-text {
     font-size: 1.1rem;
     color: #333;
     font-style: italic;
     margin-bottom: 20px;
 }

 /* Footer styling for each testimonial */
 .testimonial-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .testimonial-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #ddd;
     margin-right: 15px;
 }

 .student-name {
     font-size: 1.2rem;
     color: #333;
 }

 .whatsapp-icon {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background-color: #25D366;
     border-radius: 50%;
     padding: 15px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     z-index: 1000;
 }

 .whatsapp-icon i {
     font-size: 30px;
     color: white;
 }

 /* Responsive Design for smaller screens */
 @media (max-width: 768px) {
     .testimonial-card {
         margin-bottom: 20px;
     }
 }

 .hero-section {
     background-image: url('../image/scenes-film-set-movie-production-progress-crew-working-with-camera-lights-capturing-cinema-magic-professional-filming-environment-with-creative-vibe-ai_372197-30851.avif');
     /* Replace with your image URL */
     background-size: cover;
     background-position: 60%;
     color: white;
     padding: 150px 0;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
 }

 .hero-section h1 {
     font-size: 3rem;
     font-weight: bold;
 }

 .hero-section p {
     font-size: 1.2rem;
 }

 .btn-custom {
     background-color: #007bff;
     color: white;
     font-size: 20px;
     font-weight: bold;
     border-radius: 30px;
     padding: 12px 30px;
     transition: background-color 0.3s ease;
 }

 .btn-custom:hover {
     background-color: #0056b3;
 }

 /* Glass Effect */
 .glass-effect {
     border-radius: 10px;
     padding: 30px;
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
 }

 /* Workshop Information */
 .workshop-info {
     padding: 60px 0;
 }

 .workshop-card {
     border-radius: 10px;
     padding: 30px;
     text-align: center;
     transition: transform 0.3s ease;
     height: 150px;
     border: 1px solid white;
 }

 .workshop-card:hover {
     transform: scale(1.05);
 }

 .workshop-card h3 {
     font-size: 1.6rem;
     font-weight: bold;
 }

 .workshop-card p {
     font-size: 1.2rem;
 }

 .cta-section {
     background-color: #007bff;
     padding: 50px 0;
     text-align: center;
 }

 .cta-section h2 {
     font-size: 2rem;
 }

 .cta-section .btn {
     font-size: 22px;
     padding: 12px 40px;
 }

 /* Icon Adjustments */
 .fa {
     color: inherit;
     /* No specific icon color */
 }



 .faq-section {
     background-color: #007bff;
     color: white;
     padding: 60px 0;
 }

 .faq-item {
     margin-bottom: 30px;
 }

 .faq-item h5 {
     font-weight: bold;
 }

 .faq-item p {
     font-size: 1.2rem;
 }

 .workshop-card i {
     font-size: 20px;
 }

 .workshop-description {
     background-color: black;
     color: white;
     padding: 15px;

     bottom: 80px;
     left: 20px;
     right: 20px;
     text-align: center;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     border-radius: 10px;
 }