   
            .row-rate-table {
            display: flex;
            flex-wrap: wrap;
            margin-left: 0;
            margin-right: 0;
            }
            body {
              overflow-x: hidden;
            }
          

            .logo-track {
              display: flex;
              width: max-content;
            }

            .logo-item {
              flex: 0 0 auto;
              padding: 10px;
            }
     
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Desktop */
.popup-box {
  position: relative;
  max-width: 500px;
  width: 90%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  animation: popupFade 0.4s ease;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .popup-box {
    max-width: 320px;
    border-radius: 10px;
  }

  .close-btn {
    font-size: 24px;
    top: 5px;
    right: 10px;
  }
}

.popup-img {
  width: 100%;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
  z-index: 10;
}

@keyframes popupFade {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

 .testimonial-slider .testimonial-block {
    text-align: center;
}

.owl-dots {
    margin-top: 20px;
    text-align: center;
}

.service-slider .item {
    padding: 10px;
}

.service-block {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}


.hero-banner {
    position: relative;
    width: 100%;
}

.hero-banner img {
    width: 100%;
    height: auto;
}

/* TEXT LEFT SIDE */
.hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 450px;
    color: #fff;
}

/* Text styling */

.hero-text p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #000;
}

/* Button */
.hero-text .btn {
    padding: 12px 25px;
    font-size: 16px;
}

.hero-text h1 { 
    font-size: 40px;
    line-height: 50px;

}

.hero-text h1::before { 
    display:none!important;
}

/* =========================
   MOBILE RESPONSIVE CSS
========================= */
@media (max-width: 768px) {

    .hero-banner{
        position: relative;
        overflow: hidden;
    }

    .hero-banner img{
        width: 100%;
        height: 500px; /* mobile banner height */
        object-fit: cover;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        max-width: 100%;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 15px;
        color: #000;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
        color: #000;
    }

    .hero-text .btn {
        padding: 10px 20px;
        font-size: 14px;
        display: inline-block;
    }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .hero-banner img{
        height: 220px;
    }

    .hero-text {
        left: 15px;
        right: 15px;
    }

    .hero-text h1 {
        font-size: 22px;
        line-height: 32px;
    }

    .hero-text p {
        font-size: 13px;
        line-height: 22px;
    }

    .hero-text .btn {
        width: auto;
        font-size: 11px;
        padding: 8px 8px;
    }
}



/*  testimonial
*/

.testimonial-slider .owl-nav {
    position: absolute;
    top: 25%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-slider .owl-nav button {
    position: absolute;
    background: #1a3c6e !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.testimonial-slider .owl-nav .owl-prev {
    left: 10px;   /* 👈 inside visible */
}

.testimonial-slider .owl-nav .owl-next {
    right: 10px;
}

.testimonial-slider .owl-nav i {
    font-size: 16px;
    color: #fff;
}


/* 📱 Mobile Fix */
@media (max-width: 768px) {

    .testimonial-slider .owl-nav button {
        width: 30px;   /* smaller buttons */
        height: 30px;
    }

    .testimonial-slider .owl-nav i {
        font-size: 12px;
    }

    .testimonial-slider .owl-nav .owl-prev {
        left: 5px;   /* 👈 keep inside screen */
    }

    .testimonial-slider .owl-nav .owl-next {
        right: 5px;
    }

    .testimonial-slider .owl-nav {
        top: 45%;   /* better alignment on mobile */
    }
}
@media (max-width: 768px) {

    .process_box {
        text-align: center;
        margin-bottom: 30px;
    }

    .process_img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .process_img img {
        width: 90px;
        margin: 0 auto;
    }

    .process_title {
        font-size: 15px;
        margin-top: 10px;
    }

    /* ❌ hide zig-zag arrows */
    .process_box::before,
    .process_box::after {
        display: none !important;
    }

    /* ❌ remove up/down shifting */
    .process_box.up,
    .process_box.down {
        margin-top: 0 !important;
    }
}


