     /* Hero Slider */
     .hero-slider {
         height: 100vh;
         position: relative;
         overflow: hidden;
     }

     .hero-swiper {
         width: 100%;
         height: 100%;
     }

     .hero-slide {
         display: flex;
         align-items: center;
         justify-content: center;
         position: relative;
         overflow: hidden;
     }

     .hero-slide img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         position: absolute;
         top: 0;
         left: 0;
         z-index: 1;
     }

     .hero-slide::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: rgba(0, 0, 0, 0.4);
         z-index: 2;
     }

     .slide-content {
         text-align: center;
         color: white;
         z-index: 3;
         position: relative;
         max-width: 1200px;
         padding: 0 20px;
     }

     .slide-content h1 {
         font-weight: 700;
         font-size: 80px;
         margin-bottom: 20px;
         line-height: 1.2;

     }

     /* Hero Navigation */
     .hero-button-next,
     .hero-button-prev {
         width: 60px;
         height: 60px;
         background: rgba(255, 255, 255, 0.1);
         border-radius: 50%;
         backdrop-filter: blur(10px);
         border: 1px solid rgba(255, 255, 255, 0.2);
         transition: all 0.3s ease;
         z-index: 10;
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         cursor: pointer;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .hero-button-next {
         right: 30px;
     }

     .hero-button-prev {
         left: 30px;
     }

     .hero-button-next:after,
     .hero-button-prev:after {
         font-size: 18px;
         color: white;
         font-weight: bold;
     }

     .hero-button-next:after {
         content: '›';
     }

     .hero-button-prev:after {
         content: '‹';
     }

     .hero-button-next:hover,
     .hero-button-prev:hover {
         background: rgba(255, 255, 255, 0.2);
         transform: translateY(-50%) scale(1.1);
     }



     .hero-preview-next {
         right: -300px;
     }

     .hero-preview-prev {
         left: -300px;
     }

     .hero-button-next:hover~.hero-preview-next,
     .hero-preview-next:hover {
         opacity: 1;
         right: -290px;
         transform: translateY(-50%) scale(1.02);
     }

     .hero-button-prev:hover~.hero-preview-prev,
     .hero-preview-prev:hover {
         opacity: 1;
         left: -290px;
         transform: translateY(-50%) scale(1.02);
     }


/* Mobile Hero Slider Modifications */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 500px;
    }
    
    /* Perfect centering for slide content */
    .hero-slide {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .slide-content {
        text-align: center;
        padding: 0 60px; /* Space for nav buttons */
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .slide-content h1 {
        font-size: 32px;
        line-height: 1.3;
        margin: 0;
        font-weight: 600;
        text-align: center;
    }
    
    /* Mobile navigation buttons - smaller but visible */
    .hero-button-next,
    .hero-button-prev {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
    }
    
    .hero-button-next {
        right: 15px;
    }
    
    .hero-button-prev {
        left: 15px;
    }
    
    .hero-button-next:after,
    .hero-button-prev:after {
        font-size: 16px;
    }
    
    /* Hide preview on mobile but keep buttons */
    .hero-preview {
        display: none !important;
    }
    
    /* Better overlay for readability */
    .hero-slide::before {
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* Ensure image covers properly */
    .hero-slide img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 50px;
    }
    
    .slide-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-button-next,
    .hero-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .hero-button-next {
        right: 10px;
    }
    
    .hero-button-prev {
        left: 10px;
    }
}

/* Ensure proper vertical centering across all screen sizes */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    z-index: 3;
}

     /* vist us section */

  
  
     .image-slider-section {
         padding: 100px 0;
     }

     /* .section-title {
         text-align: center;
         margin-bottom: 60px;
     } */

     /* .section-title h2 {
         font-size: 3rem;
         font-weight: bold;
         color: #1e4a72;
         margin-bottom: 20px;
     } */

     /* Swiper Container - FIXED */
     .image-swiper {
         width: 100%;
         height: 400px !important;
         padding: 20px 0 80px;
     }

     .swiper {
         width: 100%;
         height: 100%;
     }

     .swiper-slide {
         display: flex;
         justify-content: center;
         align-items: center;
         height: 100%;
     }

     /* Image Styling */
     .slide-image {
         max-width: 100%;
         max-height: 100%;
         width: auto;
         height: auto;
         /* object-fit: contain; */
         display: block;
     }

     /* Pagination */
     /* .swiper-pagination {
         position: static !important;
         margin-top: 30px;
         text-align: center;
     } */

     .swiper-pagination-bullet {
         width: 12px;
         height: 12px;
         background: rgba(30, 74, 114, 0.3);
         border-radius: 50%;
         margin: 0 8px !important;
         opacity: 1;
     }

     .swiper-pagination-bullet-active {
         background: #1e4a72 !important;
     }

     /* Responsive */
     @media (max-width: 768px) {
         .image-slider-section {
             padding: 60px 0;
         }

         .section-title h2 {
             font-size: 2.2rem;
         }

         .image-swiper {
             height: auto !important;
         }

         .swiper-pagination-bullet {
             width: 10px;
             height: 10px;
         }
     }

     @media (max-width: 576px) {
         .image-slider-section {
             padding: 40px 0;
         }

         .section-title h2 {
             font-size: 1.8rem;
         }

         .image-swiper {
             height: 250px;
         }
     }

     .company-overview-section {
         padding: 80px 0;
         background: #ffffff;
     }

     .main-heading {
         font-size: 44px;
         line-height: 52.8px;
         font-weight: 700;
         color: rgb(0, 65, 118);
     }

     .company-points {
         list-style: none;
         padding: 0;
         margin: 0;
     }

     .company-points li {
         font-size: 18px;
         border-bottom: 2px solid #eeeeee;
         padding: 20px 0;
         line-height: 1.5;
         font-weight: 400;
         font-size: 18px;
         max-width: 85%;
         color: rgb(129, 132, 135);
     }

     .border {
         border-bottom: 2px solid #eeeeee;
     }

     /* Responsive Design */
     @media (max-width: 1200px) {
         .main-heading {
             font-size: 3rem;
         }

         .company-points li {
             font-size: 1.2rem;
         }
     }

     @media (max-width: 992px) {
         .main-heading {
             font-size: 2.5rem;
             margin-bottom: 30px;
         }

         .company-points li {
             font-size: 1.1rem;
         }
     }

     @media (max-width: 768px) {
         .main-heading {
             font-size: 2rem;
             text-align: center;
             margin-bottom: 30px;
         }

         .company-points {
             text-align: center;
         }

         .company-points li {
             font-size: 1rem;
             margin-bottom: 15px;
             width:100%;
             max-width:100%;
         }

         .company-overview-section {
             padding: 60px 0;
         }
     }

     @media (max-width: 576px) {
         .main-heading {
             font-size: 1.8rem;
             line-height: 1.3;
         }

         .company-points li {
             font-size: 0.95rem;
             margin-bottom: 12px;
            max-width:100%;
         }

         .company-overview-section {
             padding: 50px 0;
         }
     }

     .customers-section {
         /* padding: 80px 0; */
         background: #ffffff;
         text-align: center;
     }

     /* .section-title {
         font-size: 3rem;
         font-weight: 600;
         color: #1e4a72;
         margin-bottom: 30px;
     } */

   

 
   
.customers-swiper {
    width: 100%;
    height: 200px; /* Fixed height */
    margin-bottom: 60px; /* Space for pagination */
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 20px 0;
}

.customers-swiper .swiper {
    width: 100%;
    height: 100%;
}

     .customers-swiper .swiper-slide {
         display: flex !important;
         align-items: center;
         justify-content: center;
         height: 100%;
         flex-shrink: 0;
     }

     .customer-slide {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 100%;
         height: 100%;
         padding: 10px;
     }

     .customer-logo {
         max-width: 100px;
         max-height: 50px;
         width: auto;
         height: auto;
         object-fit: contain;
         object-position: center;
         filter: grayscale(30%);
         opacity: 0.8;
         transition: all 0.3s ease;
     }

     .customer-slide:hover .customer-logo {
         filter: grayscale(0%);
         opacity: 1;
         transform: scale(1.05);
     }

   
.customers-swiper .swiper-pagination {
    position: absolute !important;
  
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    height: auto !important;
    text-align: center;
}

.customers-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(30, 74, 114, 0.3) !important; /* Better visibility */
    border-radius: 50% !important;
    margin: 0 6px !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.customers-swiper .swiper-pagination-bullet:hover {
    background: rgba(30, 74, 114, 0.6) !important;
    transform: scale(1.1);
}

.customers-swiper .swiper-pagination-bullet-active {
    background: #1e4a72 !important;
    transform: scale(1.3);
   
}
     /* Responsive */
     @media (max-width: 768px) {
         .customers-swiper {
             height: 120px;
             margin-bottom: 40px;
         }

         /* .customer-logo {
             max-width: 80px;
             max-height: 40px;
         } */
     }

     @media (max-width: 576px) {

         /* .swiper {
                height: 80px;
            } */
         /* .customer-logo {
             max-width: 70px;
             max-height: 35px;
         } */

         .swiper-slide {
             padding: 10px;
         }
     }

     .video-section {
         padding: 80px 0;
         background: #ffffff;
         text-align: center;
     }

     /* .section-title {
         font-size: 3rem;
         font-weight: 600;
         color: #1e4a72;
         margin-bottom: 60px;
         line-height: 1.2;
     } */

     .video-container {
         position: relative;
         /* max-width: 900px; */
         margin: 0 auto;
         /* border-radius: 15px; */
         overflow: hidden;
         /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
         /* transition: all 0.3s ease; */
     }

     /* .video-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        } */

     .video-wrapper {
         position: relative;
         width: 100%;
         height: 0;
         padding-bottom: 56.25%;
         /* 16:9 aspect ratio */
     }

     .video-iframe {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         border: none;

     }

     /* Custom Play Button Overlay (if needed) */
     .play-overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         background: rgba(0, 0, 0, 0.3);
         cursor: pointer;
         transition: all 0.3s ease;
         opacity: 0;
         pointer-events: none;
     }

     .play-overlay:hover {
         opacity: 1;
     }

     .play-button {
         width: 80px;
         height: 80px;
         background: rgba(255, 255, 255, 0.9);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: all 0.3s ease;
     }

     .play-button::before {
         content: '';
         width: 0;
         height: 0;
         border-left: 25px solid #1e4a72;
         border-top: 15px solid transparent;
         border-bottom: 15px solid transparent;
         margin-left: 5px;
     }

     .play-button:hover {
         transform: scale(1.1);
         background: white;
     }

     /* Video Description */
     .video-description {
         margin-top: 40px;
         max-width: 700px;
         margin-left: auto;
         margin-right: auto;
     }

     .video-description h3 {
         font-size: 1.5rem;
         color: #1e4a72;
         margin-bottom: 15px;
         font-weight: 600;
     }

     .video-description p {
         font-size: 1.1rem;
         color: #666;
         line-height: 1.6;
         margin-bottom: 0;
     }

     /* Responsive Design */
     @media (max-width: 1200px) {
         .section-title {
             font-size: 2.7rem;
         }
     }

     @media (max-width: 992px) {
         .section-title {
             font-size: 2.3rem;
             margin-bottom: 50px;
         }

         .video-container {
             margin: 0 20px;
         }
     }

     @media (max-width: 768px) {
         .video-section {
             padding: 60px 0;
         }

         .section-title {
             font-size: 2rem;
             margin-bottom: 40px;
             padding: 0 15px;
         }

         .video-container {
             margin: 0 15px;
             border-radius: 10px;
         }

         .video-iframe {
             border-radius: 10px;
         }

         .video-description h3 {
             font-size: 1.3rem;
         }

         .video-description p {
             font-size: 1rem;
             padding: 0 15px;
         }
     }

     @media (max-width: 576px) {
         .section-title {
             font-size: 1.8rem;
             line-height: 1.3;
         }

         .video-container {
             margin: 0 10px;
             border-radius: 8px;
         }

         .video-iframe {
             border-radius: 8px;
         }

         .play-button {
             width: 60px;
             height: 60px;
         }

         .play-button::before {
             border-left: 18px solid #1e4a72;
             border-top: 12px solid transparent;
             border-bottom: 12px solid transparent;
         }
     }

     /* Loading State */
     .video-loading {
         background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
         display: flex;
         align-items: center;
         justify-content: center;
         min-height: 400px;
         border-radius: 15px;
     }

     .group-companies-section {
         padding: 100px 0;
         background: #ffffff;
         text-align: center;
     }

   
     .companies-grid {
         margin-bottom: 50px;
     }

     .company-logo-item {
         margin-bottom: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         min-height: 100px;
     }

     .company-logo {
         max-width: 100%;
         max-height: 110px;
         width: auto;
         height: auto;
         object-fit: contain;
         transition: all 0.3s ease;
         filter: grayscale(20%);
     }

     .company-logo:hover {
         filter: grayscale(0%);
         transform: scale(1.05);
     }

     

     /* Know More Button */
     .know-more-btn {
         background: #ff0000;
         color: white;
         padding: 15px 40px;
         font-size: 1.1rem;
         font-weight: 600;
         border: none;

         text-decoration: none;
         display: inline-block;
         transition: all 0.3s ease;
         text-transform: uppercase;
         letter-spacing: 0.5px;
     }

     .know-more-btn:hover {
         background: #c82333;
         color: white;
         text-decoration: none;
         transform: translateY(-2px);
         box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
     }

     /* Responsive Design */
     @media (max-width: 1200px) {
         .section-title {
             font-size: 2.7rem;
         }

        
     }

     @media (max-width: 992px) {
         .section-title {
             font-size: 2.3rem;
             margin-bottom: 50px;
         }

         .company-logo-item {
             margin-bottom: 35px;
             min-height: 90px;
         }

         /* .company-logo {
             max-height: 65px;
         } */
     }

     @media (max-width: 768px) {
         .group-companies-section {
             padding: 60px 0;
         }

         .section-title {
             font-size: 2rem;
             margin-bottom: 40px;
         }

         .company-logo-item {
             margin-bottom: 30px;
             /* min-height: 80px; */
         }

         /* .company-logo {
             max-height: 55px;
         } */

         .know-more-btn {
             padding: 12px 30px;
             font-size: 1rem;
         }
     }

     @media (max-width: 576px) {
         .section-title {
             font-size: 1.8rem;
         }

         .company-logo-item {
             margin-bottom: 25px;
             min-height: 70px;
         }

         /* .company-logo {
             max-height: 50px;
         } */

         .know-more-btn {
             padding: 10px 25px;
             font-size: 0.95rem;
         }
     }

     /* Grid alignment for different screen sizes */
     @media (min-width: 768px) {
         .company-logo-item {
             display: flex;
             align-items: center;
             justify-content: center;
         }
     }