 .brand-one {
            padding: 80px 0;
            /* background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%); */
            overflow: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .block-title {
            margin-bottom: 60px;
            text-align: center;
        }
        
        .block-title h1 {
            color: #2957a4;
            font-weight: bold;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .block-title h3 {
            color: #333;
            font-size: 1.8rem;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        
        .block-title h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #2957a4;
        }
        
        .carousel-container {
            position: relative;
        }
        
        .carousel-row {
            margin-bottom: 50px;
        }
        
        .carousel-row:last-child {
            margin-bottom: 0;
        }
        
        .carousel-title {
            text-align: center;
            margin-bottom: 25px;
            font-size: 1.3rem;
            color: #444;
            font-weight: 600;
        }
        
        .scroller {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }
        
        .scroller-inner {
            display: flex;
            width: max-content;
            animation: scrollLeft 40s linear infinite;
        }
        
        .right-moving .scroller-inner {
            animation: scrollRight 40s linear infinite;
        }
        
        .brand-one__box {
            background: white;
            border-radius: 12px;
            padding: 20px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
            margin: 0 15px;
            flex-shrink: 0;
            min-width: 180px;
        }
        
        .brand-one__box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .brand-one__box img {
            max-width: 100%;
            max-height: 70px;
            width: auto;
            height: auto;
            /* filter: grayscale(100%); */
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .brand-one__box:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-180px * 9));
            }
        }
        
        @keyframes scrollRight {
            0% {
                transform: translateX(calc(-180px * 9));
            }
            100% {
                transform: translateX(0);
            }
        }
        
        /* Pause animation on hover */
        .scroller:hover .scroller-inner {
            animation-play-state: paused;
        }
        
        /* Gradient overlays for smooth edges */
        .scroller::before,
        .scroller::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        
        .scroller::before {
            left: 0;
            /* background: linear-gradient(to right, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%); */
        }
        
        .scroller::after {
            right: 0;
            /* background: linear-gradient(to left, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%); */
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .brand-one {
                padding: 50px 0;
            }
            
            .block-title h1 {
                font-size: 2rem;
            }
            
            .block-title h3 {
                font-size: 1.5rem;
            }
            
            .brand-one__box {
                height: 100px;
                padding: 15px;
                margin: 0 10px;
                min-width: 140px;
            }
            
            .brand-one__box img {
                max-height: 50px;
            }
            
            @keyframes scrollLeft {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-140px * 9));
                }
            }
            
            @keyframes scrollRight {
                0% {
                    transform: translateX(calc(-140px * 9));
                }
                100% {
                    transform: translateX(0);
                }
            }
        }
        
        @media (max-width: 480px) {
            .block-title h1 {
                font-size: 1.6rem;
            }
            
            .block-title h3 {
                font-size: 1.3rem;
            }
            
            .brand-one__box {
                height: 80px;
                padding: 12px;
                margin: 0 8px;
                min-width: 120px;
            }
            
            .brand-one__box img {
                max-height: 40px;
            }
            
            .carousel-title {
                font-size: 1.1rem;
            }
            
            @keyframes scrollLeft {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-120px * 9));
                }
            }
            
            @keyframes scrollRight {
                0% {
                    transform: translateX(calc(-120px * 9));
                }
                100% {
                    transform: translateX(0);
                }
            }
        }





        /* induestry */
         .industry-section {
      padding: 40px 0;
    }

    .industry-left {
      background-color: #003366;
      color: #fff;
      padding: 50px 14px;
      border-radius: 4px;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .industry-left p {
      font-size: 16px;
      line-height: 1.9;
      margin: 0;
    }

    .industry-card {
      background-color: #f8fbff;
      border: none;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 6px;
    }

    .industry-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      /* border-radius: 6px; */
    }

    .industry-card h5 {
      margin-top: 12px;
      
      color: #003366;
      font-weight: 600;
      font-size: 14px;
    }

    .industry-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    @media (max-width: 991px) {
      .industry-left {
        margin-bottom: 25px;
      }
    }




    /* gobal */
     .global-section {
      padding: 60px 0;
      text-align: center;
    }

    .global-section h2 {
      color: #003366;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .global-section p {
      max-width: 1100px;
      margin: 0 auto 30px;
      font-size: 16px;
      line-height: 1.8;
      color: #333;
    }

    .filter-buttons {
      margin-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .filter-btn {
      background-color: #f8f9fb;
      border: 2px solid transparent;
      color: #003366;
      font-weight: 500;
      padding: 12px 35px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn.active,
    .filter-btn:hover {
      border-color: #003366;
      color: #003366;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .map-container {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .map-container img {
      width: 100%;
      border-radius: 8px;
    }

    /* Example marker placement (You can change top/left % values) */
    .map-marker {
      position: absolute;
      transform: translate(-50%, -100%);
      cursor: pointer;
    }

    .map-marker span {
      background-color: #003366;
      color: #fff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 12px;
      white-space: nowrap;
      position: absolute;
      top: -28px;
      left: 50%;
      transform: translateX(-50%);
      display: none;
    }

    .map-marker:hover span {
      display: block;
    }

    @media (max-width: 768px) {
      .filter-btn {
        width: 45%;
        text-align: center;
      }
    }