 /* Small custom styles */
    /* Page background (slightly darker) */
    body {
      background-color: #eceff1;
      font-family: 'Poppins';
      /* slightly darker than #f8f9fa */
    }

    /* Base nav size and spacing adjustments */
    header .navbar {
      font-size: 1.125rem;
      /* base for inherited elements (~18px) */
    }

    .product-carousel {
      background-color: #e2e8f0;
    }

    /* Brand (logo/text) */
    .navbar-brand {
      font-weight: 700;
      letter-spacing: .4px;
      font-size: 2.75rem;
      /* larger brand */
    }

    /* ensure inner brand text inherits the brand size (remove conflicting Bootstrap utility) */
    .brand-text {
      font-size: 55px;
      line-height: 1;
    }

    /* Navigation links: larger and more spaced */
    .nav-link {
      padding: 20px 30px;
      font-size: 21px;
      /* ~20px */
    }

    .nav-link:hover {
      color: #0d6efd;
      /* bootstrap primary */
    }

    .nav-link.active {
      color: #0d6efd;
      font-weight: 600;
    }

    /* Add gap between nav items; works for row or column layouts (responsive)
        increase gap slightly on larger screens */
    .navbar-nav {
      gap: .6rem;
      align-items: center;
    }

    @media (min-width: 992px) {
      .navbar-nav {
        gap: 2rem;
      }
    }

    /* Optional: control logo image height (slightly larger to match bigger text) */
    .brand-logo {
      height: 900px;
      width: auto;
    }

    /* Carousel (slider) styles */
    /* Full-width carousel images (edge-to-edge). For full-screen height, add the
        .carousel-fullscreen class on the .carousel element (see markup below). */
    /* Remove any border, radius or shadow from the carousel so it sits flush */
    .carousel,
    .carousel-inner {
      border: none !important;
      box-shadow: none !important;
      border-radius: 0 !important;
    }

    .carousel-item img {
      width: 100%;
      height: 600px;
      /* increased desktop height */
      object-fit: cover;
      /* crop to fill */
      display: block;
    }

    @media (max-width: 576px) {
      .carousel-item img {
        height: 420px;
        /* increased mobile height */
      }
    }

    /* Optional: make carousel take full viewport height when .carousel-fullscreen
        is added to the carousel container */
    .carousel-fullscreen .carousel-item img {
      height: 100vh;
    }

    /* Gallery: ensure images fill the card area and keep aspect ratio */
    .gallery-section h2 {
      font-size: 2.5rem;
      /* larger heading */
      line-height: 1.05;
    }

    .gallery-section p {
      font-size: 1.125rem;
      /* larger paragraph */
      color: #6c757d;
    }

    .gallery-section .card {
      overflow: hidden;
    }

    /* Position overlays on gallery images */
    .gallery-section .card {
      position: relative;
    }

    .gallery-section .card .card-img-overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 1rem 1.25rem;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.0));
      color: #fff;
      border-bottom-left-radius: .75rem;
      border-bottom-right-radius: .75rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .gallery-section .card .card-img-overlay h5 {
      margin: 0 0 .25rem 0;
      font-weight: 600;
    }

    .gallery-section .card .card-img-overlay p {
      margin: 0;
      font-size: .95rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .gallery-section .card-img-top {
      width: 100%;
      height: 300px;
      /* larger mobile height */
      object-fit: cover;
      display: block;
    }

    @media (min-width: 992px) {
      .gallery-section .card-img-top {
        height: 420px;
        /* larger desktop height */
      }

      .gallery-section h2 {
        font-size: 3rem;
      }

      .gallery-section p {
        font-size: 1.125rem;
      }
    }

    /* Feature split section: left image, right text */
    .feature-section {
      background-color: #e2e8f0;
      /* slightly darker subtle background */
      padding: 60px 0;
    }

    .feature-section .feature-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: .5rem;
      display: block;
    }

    .feature-section .feature-content h3 {
      font-size: 2rem;
      margin-bottom: .75rem;
    }

    .feature-section .feature-content p {
      font-size: 1.125rem;
      color: #495057;
      margin-bottom: 1.25rem;
    }

    .feature-section .btn-primary {
      padding: .6rem 1.1rem;
      font-size: 1rem;
    }

    @media (max-width: 576px) {
      .feature-section .feature-image img {
        height: 260px;
      }

      .feature-section {
        padding: 40px 0;
      }
    }

    /* Three info boxes (icon centered at top, heading, text) */
    .services-section {
      padding: 80px 0;
      /* larger vertical padding to increase size */
      margin-top: 40px;
      /* gap between previous section and this one */
    }

    .info-box {
      background: #fff;
      border-radius: .75rem;
      padding: 3rem 1.75rem 1.75rem;
      box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
      position: relative;
      text-align: center;
      overflow: visible;
      min-height: 320px;
      /* increased height */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .info-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #0d6efd;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 8px 24px rgba(13, 110, 253, 0.12);
    }

    .info-box h5 {
      margin-top: 1.5rem;
      font-weight: 600;
      font-size: 1.25rem;
    }

    .info-box p {
      color: #6c757d;
      margin-top: .75rem;
      font-size: 1rem;
      max-width: 42ch;
    }

    @media (max-width: 576px) {
      .info-icon {
        width: 72px;
        height: 72px;
        top: -36px;
        font-size: 24px;
      }

      .info-box {
        padding: 2.25rem 1rem 1rem;
        min-height: 260px;
      }
    }

    @media (min-width: 992px) {
      .info-box {
        min-height: 360px;
      }

      .info-icon {
        width: 112px;
        height: 112px;
        top: -56px;
        font-size: 40px;
      }

      .info-box h5 {
        font-size: 1.375rem;
      }

      .info-box p {
        font-size: 1.05rem;
      }
    }

    /* Product carousel (3 slides) styles */
    .product-carousel .carousel-item img,
    .product-carousel .product-slide img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
      border-radius: .5rem;
    }

    .product-carousel .stars-overlay,
    .product-carousel .product-slide .stars-overlay {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.55);
      color: #ffd54d;
      padding: 6px 8px;
      border-radius: 20px;
      font-weight: 700;
      display: inline-flex;
      gap: 3px;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .product-carousel .price-badge,
    .product-carousel .product-slide .price-badge {
      position: absolute;
      left: 12px;
      bottom: 12px;
      background: rgba(255, 255, 255, 0.95);
      color: #111827;
      padding: 6px 10px;
      border-radius: 6px;
      font-weight: 700;
    }

    @media (max-width: 576px) {
      .product-carousel .carousel-item img {
        height: 220px;
      }

      .product-carousel .stars-overlay {
        padding: 4px 6px;
        font-size: .9rem;
      }

      .product-carousel .price-badge {
        padding: 5px 8px;
        font-size: .95rem;
      }
    }

    /* Footer styling */
    .site-footer {
      background: transparent;
      color: #6c757d;
      font-size: .95rem;
    }

    .site-footer small {
      color: inherit;
    }

    /* Testimonials Section */
    .testimonials {
      background-color: #f9f9f9;
      padding: 80px 0;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
    
     margin-bottom: 13px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-avatar {
      width: 90px;
      height: 90px;

      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #eee;
    }

    .testimonial-quote {
      font-style: italic;
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .testimonial-meta {
      font-weight: 600;
      color: #222;
    }

    .testimonial-role {
      font-size: 0.9rem;
      color: #777;
    }

    .testimonial-stars {
      color: #f5c518;
      font-size: 1rem;
      letter-spacing: 1px;
    }

    /* Carousel controls */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    /* Responsive: 1 card on mobile */
    @media (max-width: 768px) {
      .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }


    @media (max-width: 768px) {

      /* Stack testimonials vertically (1 per slide) */
      .carousel-item .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
      }

      .carousel-item .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
      }

      /* Card styling on mobile */
      .testimonial-card {
        margin: 0 auto;
        max-width: 90%;
        padding: 20px;
        border-radius: 12px;
      }

      .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .testimonial-avatar {
        width: 75px;
        height: 75px;
      }

      .testimonial-meta {
        font-size: 1rem;
      }

      .testimonial-role {
        font-size: 0.9rem;
      }

      /* Controls — position tighter for small screens */
      .carousel-control-prev,
      .carousel-control-next {
        width: 10%;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 25px;
        height: 25px;
      }
    }

    /* === Very small screens (phones under 480px) === */
    @media (max-width: 480px) {
      .testimonial-card {
        padding: 15px;
        margin-bottom: 12px;
      }

      .testimonial-quote {
        font-size: 0.9rem;
      }

      .testimonial-avatar {
        width: 65px;
        height: 65px;
      }

      .testimonial-meta {
        font-size: 0.95rem;
      }

      .testimonial-role {
        font-size: 0.85rem;
      }
    }

    /* Updated Steps Section Styles */
    .steps-section {
      text-align: center;
      padding: 100px 20px;
      background-color: #f8f9fa;
    }

    .steps-subtitle {
      color: #ff6a00;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 15px;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .steps-section h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #2e3546;
    }

    .steps-description {
      color: #7a8594;
      font-size: 1.3rem;
      margin-bottom: 60px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1287px;
      margin: 0 auto;
      padding: 20px;
    }

    .step-card {
      background: #fff;
      border-radius: 20px;
      padding: 50px 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .icon {
      font-size: 2.5rem;
      background-color: #fff3ed;
      color: #ff6a00;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(255, 106, 0, 0.15);
    }

    .step-card h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: #2e3546;
      font-weight: 600;
    }

    .step-card p {
      color: #7a8594;
      font-size: 1.2rem;
      line-height: 1.6;
      max-width: 280px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .steps-section h1 {
        font-size: 2.4rem;
      }

      .steps-description {
        font-size: 1.2rem;
      }

      .step-card {
        padding: 40px 25px;
        min-height: 250px;
      }

      .step-card h3 {
        font-size: 1.5rem;
      }

      .step-card p {
        font-size: 1.1rem;
      }
    }




    /* service */
    .service-section {
  background-color: #fff;
}

.service-section h2 {
  font-size: 2.5rem;
  color: #222;
}

.service-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-section .border-start {
  border-left: 3px solid #0056ff !important; /* blue vertical line */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .service-section h2 {
    font-size: 2rem;
    text-align: center;
  }
  .service-section .border-start {
    border-left: none !important;
    border-top: 3px solid #0056ff !important;
    margin-top: 20px;
    padding-top: 15px;
  }
  .service-section p {
    text-align: center;
  }
}

/* operation */

.benefits-section {
  background: #fff;
}

.benefits-section h3 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    
}

.benefits-section .underline {
  width: 40px;
  height: 3px;
  background-color: #0056ff;
  border-radius: 5px;
}

.benefits-section p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.benefits-section ul li {
  font-size: 20px;
  color: #444;
}

.benefits-section i {
  font-size: 1.2rem;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .benefits-section h3,
  .benefits-section p,
  .benefits-section ul {
    text-align: center;
  }
  .benefits-section .underline {
    margin: 0 auto 20px;
  }
}
/* top background service */

.about-banner {
  position: relative;
  width: 100%;
  height: 300px; /* आप चाहें तो height बदल सकते हैं */
  background: url('../assets/images/service/about-banner.jpg')   no-repeat center;

}


.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(123, 47, 86, 0.2); 
  backdrop-filter: blur(2px); 
}

.about-banner h1 {
  position: relative;
  font-size: 3rem;
  z-index: 2;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 200px;
  }
  .about-banner h1 {
    font-size: 2rem;
  }
}

/* about content */

   .about-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 38px 117px;
      flex-wrap: wrap;
      gap: 28px;
    }

    .about-image {
      flex: 1 1 45%;
    }

    .about-image img {
      width: 100%;
      height: 465px;
      border-radius: 4px;
      object-fit: cover;
      display: block;
    }

    .about-content {
      flex: 1 1 50%;
    }

    .about-content h2 {
      font-size: 1.9rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111;
    }

    .about-content p {
      margin-bottom: 16px;
      font-size: 1rem;
      color: #333;
    }

    @media (max-width: 992px) {
      .about-container {
        flex-direction: column;
        padding: 30px 20px;
      }
      .about-content h2 {
        margin-top: 20px;
        text-align: left;
      }
    }


    /* serice mobile */

    @media (max-width: 576px) {

  .about-container {
    display: flex;
    flex-direction: column; /* image upar, content niche */
    padding: 10px 7px;
  }

  .about-image {
    order: 1;
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .about-content {
    order: 2;
    padding: 20px 15px;
  }

  .about-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}
    /* service moblie end */