     .about-section {
         position: relative;
         padding: 80px 0;
         background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #0f3460);
         color: #fff;
     }

     .section-title {
         font-size: 2.5rem;
         font-weight: 700;
         margin-bottom: 20px;
     }

     .section-title span {
         color: #ffcc00;
         /* Gold accent */
     }

     .about-content p {
         font-size: 1.1rem;
         line-height: 1.7;
         margin-bottom: 20px;
     }

     .features-list {
         list-style: none;
         padding: 0;
     }

     .features-list li {
         font-size: 1.05rem;
         margin-bottom: 10px;
     }

     .about-img {
         max-width: 100%;
         border-radius: 12px;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
     }


     /* mission  */

     .mission-vision-section {
         position: relative;
         padding: 80px 0;
         background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #0f3460);
         color: #fff;
     }

     .section-title {
         font-size: 2.5rem;
         font-weight: 700;
         margin-bottom: 30px;
     }

     .section-title span {
         color: #ffcc00;
         /* gold highlight */
     }

     .mv-content h4 {
         font-size: 1.4rem;
         color: #ffcc00;
         margin-bottom: 10px;
     }

     .mv-content p {
         font-size: 1.05rem;
         line-height: 1.7;
         margin-bottom: 25px;
     }

     .mv-img {
         max-width: 100%;
         border-radius: 12px;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
     }


     .director-profile {
         width: 100%;
         padding: 80px 0;
         background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #0f3460);
         color: #fff;
         font-family: 'Segoe UI', sans-serif;
     }

     .director-container {
         max-width: 1200px;
         margin: 0 auto;
         padding: 0 20px;
     }

     .section-title {
         font-size: 2.5rem;
         font-weight: 700;
         margin-bottom: 50px;
     }

     .section-title span {
         color: #ffcc00;
     }

     .director-img {
         width: 220px;
         height: 220px;
         object-fit: cover;
         border-radius: 30%;
         border: 5px solid #ffcc00;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
         margin-bottom: 20px;
     }

     .director-content {
         padding-left: 20px;
     }

     .director-name {
         font-size: 2rem;
         font-weight: 600;
         margin-bottom: 5px;
     }

     .director-role {
         font-size: 1.2rem;
         color: #ffcc00;
         margin-bottom: 15px;
     }

     .director-info {
         font-size: 1rem;
         margin: 6px 0;
         color: #ddd;
     }

     .director-bio {
         font-size: 1.05rem;
         line-height: 1.7;
         margin-top: 15px;
         color: #f5f5f5;
     }

     /* Responsive */
     @media (max-width: 768px) {
         .director-img {
             width: 180px;
             height: 180px;
         }

         .director-content {
             padding-left: 0;
             text-align: center;
             margin-top: 20px;
         }
     }




     /* gallery code   */


     .gallery-section {
         padding: 80px 20px;
         background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #0f3460);
         color: #fff;
         text-align: center;
     }

     .section-title {
         font-size: 2.5rem;
         font-weight: 700;
         margin-bottom: 40px;
     }

     .section-title span {
         color: #ffcc00;
     }

     .gallery-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 20px;
     }

     .gallery-item {
         position: relative;
         overflow: hidden;
         border-radius: 12px;
         box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
     }

     .gallery-item img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.5s ease, filter 0.5s ease;
     }

     .gallery-item:hover img {
         transform: scale(1.1);
         filter: brightness(80%);
     }

     .gallery-item::after {
         content: "View More";
         position: absolute;
         bottom: -50px;
         left: 0;
         width: 100%;
         text-align: center;
         background: rgba(0, 0, 0, 0.6);
         color: #ffcc00;
         font-weight: bold;
         padding: 10px 0;
         transition: bottom 0.4s ease;
     }

     .gallery-item:hover::after {
         bottom: 0;
     }


     .services-container {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 25px;
         margin-top: 30px;
     }

     .service-box {
         background: linear-gradient(145deg, #1f1f1f, #2b2b2b);
         padding: 30px 20px;
         border-radius: 14px;
         box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
         width: 240px;
         text-align: center;
         color: #fff;
         transition: transform 0.3s, box-shadow 0.3s;
     }

     .service-box:hover {
         transform: translateY(-8px) scale(1.03);
         box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
     }

     .service-box i {
         font-size: 40px;
         color: #00d4ff;
         margin-bottom: 15px;

     }

     .service-box h4 {
         margin-bottom: 10px;
         font-size: 18px;
         font-weight: 600;
         color: #fff;
     }

     .service-box p {
         font-size: 14px;
         color: #ccc;
         line-height: 1.6;
     }

     .mm-navbar {
         display: none;
     }