 .subtitle {
     font-size: 1.2rem;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto;
 }

 .section-title {
     font-size: 2rem;
     margin: 40px 0 20px;
     text-align: center;
     color: #ffd700;
     position: relative;
 }

 .section-title::after {
     content: "";
     display: block;
     width: 80px;
     height: 4px;
     background: linear-gradient(to right, #ffd700, #ff8c00);
     margin: 10px auto;
     border-radius: 2px;
 }

 /* Quote Carousel Styles */
 .quote-carousel-container {
     position: relative;
     width: 100%;
     height: 500px;
     overflow: hidden;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
 }

 .quote-carousel {
     display: flex;
     width: 400%;
     height: 100%;
     transition: transform 1s ease-in-out;
 }

 .quote-slide {
     flex: 1 0 25%;
     height: 100%;
     background-size: cover;
     background-position: center;
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 40px;
 }

 .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
 }

 .quote-container {
     position: relative;
     z-index: 2;
     color: white;
     max-width: 800px;
     padding: 40px;
     background: rgba(0, 0, 0, 0.4);
     border-radius: 15px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .quote {
     font-size: 1.5rem;
     font-weight: 500;
     line-height: 1.4;
     margin-bottom: 30px;
     font-style: italic;
     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
 }

 .author {
     font-size: 1.6rem;
     font-weight: 600;
     text-align: right;
     color: #ffd700;
     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
 }

 .author::before {
     content: "— ";
 }

 .quote-controls {
     margin-top: 20px;
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .quote-btn {
     background: rgba(255, 255, 255, 0.15);
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     color: white;
     font-size: 1rem;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 0.3s ease;
     backdrop-filter: blur(5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .quote-btn:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-3px);
 }

 .quote-indicators {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 30px;
 }

 .quote-indicator {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .quote-indicator.active {
     background: white;
     transform: scale(1.2);
 }

 .quote-slide-1 {
     background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://pcssevtrust.pstd.in/assets/ngo\ \(6\).jpg');
 }

 .quote-slide-2 {
     background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://pcssevtrust.pstd.in/assets/ngo\ \(1\).jpg');
 }

 .quote-slide-3 {
     background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://pcssevtrust.pstd.in/assets/ngo\ \(4\).jpg');
 }

 .quote-slide-4 {
     background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://pcssevtrust.pstd.in/assets/ngo\ \(3\).jpg');
 }

 /* Box Carousel Styles */
 .box-carousel-container {
     position: relative;
     width: 100%;
     overflow: hidden;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 30px 0;
     margin-top: 20px;
 }

 .box-carousel-wrapper {
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 .box-carousel {
     display: flex;
     transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
     padding: 20px 0;
     width: max-content;
     margin: 0 auto;
 }

 .box {
     flex: 0 0 300px;
     height: 380px;
     margin: 0 15px;
     background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     padding: 30px;
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: all 0.4s ease;
     transform: scale(0.95);
     opacity: 0.8;
 }

 .box.active {
     transform: scale(1.05);
     opacity: 1;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
 }

 .box-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 25px;
     font-size: 2.2rem;
     color: white;
     box-shadow: 0 8px 20px rgba(37, 117, 252, 0.4);
 }

 .box h3 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     color: #2c3e50;
 }

 .box p {
     color: #34495e;
     line-height: 1.6;
     margin-bottom: 25px;
     flex-grow: 1;
 }

 .box-btn {
     background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
     color: white;
     border: none;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
 }

 .box-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(37, 117, 252, 0.5);
 }

 .box-controls {
     margin-top: 30px;
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .box-btn-control {
     background: rgba(255, 255, 255, 0.15);
     border: none;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 0.3s ease;
     backdrop-filter: blur(5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .box-btn-control:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-3px);
 }

 .box-indicators {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 30px;
 }

 .box-indicator {
     width: 16px;
     height: 16px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .box-indicator.active {
     background: white;
     transform: scale(1.3);
 }

 footer {
     margin-top: 60px;
     text-align: center;
     padding: 20px;
     color: rgba(255, 255, 255, 0.7);
     font-size: 1rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     width: 100%;
 }

 /* Responsive Adjustments */
 @media (max-width: 1200px) {
     .box {
         flex: 0 0 280px;
         height: 360px;
     }
 }

 @media (max-width: 992px) {
     .box {
         flex: 0 0 260px;
         height: 340px;
     }

     .quote {
         font-size: 2rem;
     }
 }

 @media (max-width: 768px) {
     .quote-carousel-container {
         height: 400px;
     }

     .quote {
         font-size: 1.3rem;
     }

     .author {
         font-size: 1.3rem;
     }

     .box {
         flex: 0 0 220px;
         height: 320px;
         padding: 25px;
     }

     h1 {
         font-size: 2.2rem;
     }

     .box h3 {
         font-size: 1.6rem;
     }

     .box p {
         font-size: 0.95rem;
     }
 }

 @media (max-width: 576px) {
     .quote-carousel-container {
         height: 350px;
     }

     .quote {
         font-size: 1.5rem;
     }

     .author {
         font-size: 1.1rem;
     }

     .quote-btn,
     .box-btn-control {
         width: 50px;
         height: 50px;
         font-size: 1.2rem;
     }

     .box {
         flex: 0 0 200px;
         height: 320px;
         padding: 20px;
         margin: 0 10px;
     }

     h1 {
         font-size: 1.8rem;
     }

     .box-icon {
         width: 70px;
         height: 70px;
         font-size: 1.8rem;
     }

     .box h3 {
         font-size: 1.4rem;
     }

     .box-btn {
         padding: 10px 20px;
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .box {
         flex: 0 0 180px;
         height: 300px;
         padding: 15px;
     }

     .quote-container {
         padding: 20px;
     }
 }

 @media (max-width: 400px) {
     .box {
         flex: 0 0 160px;
         height: 300px;
     }

     .box-icon {
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
         margin-bottom: 15px;
     }

     .box h3 {
         font-size: 1.3rem;
         margin-bottom: 15px;
     }

     .box p {
         font-size: 0.85rem;
         margin-bottom: 15px;
     }
 }