    /* ----- GLOBAL RESET + BOOTSTRAP OVERRIDES (100% responsive) ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: #fff7ec;
      color: #1a1a1a;
      font-family: 'Geist', 'Inter', sans-serif;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: clamp(3rem, 8vw, 4.6875rem); /* 48px → 75px */
  letter-spacing: -0.125rem; /* -2px */
  font-weight: 400;
}
    h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
    .section-title {
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.85rem;
      font-weight: 500;
      color: #535353;
    }

    .container{
        max-width: 1200px !important;
        padding: 30px;
    }
    /* ----- NAVBAR (Bootstrap based + fully responsive) ----- */
    .navbar-custom {
      position: fixed;
      top: 1rem;
      left: 0;
      right: 0;
      z-index: 1030;
      pointer-events: none;
    }
    .navbar-custom .navbar {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-radius: 1rem;
      padding: 0.5rem 1.5rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.05);
      pointer-events: auto;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      color: #000;
    }
    .nav-link {
      font-weight: 500;
      font-size: 0.9rem;
      color: #1a1a1a;
      opacity: 0.8;
      transition: 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      opacity: 1;
      font-weight: 600;
    }
    @media (max-width: 991px) {
      .navbar-custom .navbar {
        margin: 0 1rem;
      }
      .navbar-collapse {
        background: #fff;
        border-radius: 28px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        border: 1px solid #eee;
      }
      .navbar-nav .nav-link {
        padding: 0.75rem 0;
        text-align: center;
      }
      .btn-talk {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
      }
    }
    @media (min-width: 992px) {
      .navbar-custom .navbar {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0.5rem 2rem;
      }
    }
    /* ----- HERO SECTION (Bootstrap grid, full responsive) ----- */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 6rem;
      margin-bottom: 2rem;
      background-color: #fff7ec;
    }
    .hero-badge-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .avatar-stack {
      display: flex;
      align-items: center;
    }
    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #fff;
      background: #e9e2d8;
      margin-right: -12px;
      background-size: cover;
      background-position: center;
    }
    .avatar-count {
      background: #1a1a1a;
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #fff;
    }
    /* Cards & utilities */
    .service-card, .choose-card, .process-card, .tech-badge, .stat-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 1.5rem;
      padding: 1.8rem 1.5rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.05);
      height: 100%;
      backdrop-filter: blur(2px);
    }
    .service-card:hover, .choose-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }
    .process-circle {
      width: 56px;
      height: 56px;
      background: #ebf213;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
      color: #000;
    }
    .project-card {
      position: relative;
      overflow: hidden;
      border-radius: 1.2rem;
      cursor: pointer;
      background: #fff;
    }
    .project-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: 0.4s;
    }
    .project-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: 0.3s;
      color: white;
      text-align: center;
      padding: 1rem;
    }
    .project-card:hover .project-overlay {
      opacity: 1;
    }
    .stat-number {
      font-size: 2.6rem;
      font-weight: 700;
      color: #000;
    }
    /* Testimonial swiper styles */
    .testimonials-swiper {
      width: 100%;
      padding: 20px 0 50px;
    }
    .testimonial-card {
      background: #ffffff;
      border-radius: 1.75rem;
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
      height: auto;
      transition: 0.3s;
      border: 1px solid #f0f0f0;
    }
    .testimonial-inner {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .testimonial-quote {
      font-size: 1.1rem;
      line-height: 1.5;
      font-weight: 450;
      position: relative;
      padding-left: 0.5rem;
    }
    .testimonial-quote::before {
      content: "“";
      font-size: 3.5rem;
      position: absolute;
      top: -1rem;
      left: -0.8rem;
      opacity: 0.2;
      font-family: serif;
    }
    .testimonial-avatar {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #ebf213, #cbd90e);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
    }
    .swiper-button-prev, .swiper-button-next {
      background: rgba(255,255,240,0.85);
      backdrop-filter: blur(8px);
      width: 44px;
      height: 44px;
      border-radius: 60px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .swiper-button-prev:after, .swiper-button-next:after {
      font-size: 1.2rem;
      font-weight: bold;
      color: #1a1a1a;
    }
    .swiper-pagination-bullet-active {
      background: #1a1a1a !important;
      width: 24px !important;
      border-radius: 8px !important;
    }
    @media (max-width: 768px) {
      .swiper-button-prev, .swiper-button-next { display: none; }
      .testimonial-inner { padding: 1.5rem; }
    }
    /* footer (bootstrap overrides) */
    footer {
      background-color: #f8f9fa !important;
      border-top: 1px solid rgba(0,0,0,0.08);
      margin-top: 3rem;
    }
    footer .footer-link {
      color: #6c757d;
      text-decoration: none;
      transition: color 0.2s;
      font-size: 0.85rem;
    }
    footer .footer-link:hover { color: #4F46E5 !important; }
    .badge-cert {
      background: #fff;
      border: 1px solid #dee2e6;
      border-radius: 999px;
      padding: 0.35rem 0.9rem;
      font-size: 0.7rem;
      font-weight: 500;
    }
    /* trust logos marquee style */
    .logo-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      opacity: 0.7;
    }
    .logo-row img {
      height: 32px;
      filter: grayscale(0.2);
    }
    @media (max-width: 640px) {
      .logo-row { justify-content: center; }
    }
    .bg-soft-cream { background-color: #fef9e6; }
    .rounded-xl { border-radius: 1.5rem; }
    .btn-custom-primary {
      background-color: #1a1a1a;
      border-radius: 999px;
      padding: 12px 28px;
      font-weight: 500;
      transition: 0.2s;
      color: white;
      border: none;
    }
    .btn-custom-primary:hover {
      background-color: #333;
      transform: scale(0.98);
    }
    .btn-outline-dark-custom {
      border: 1px solid #1a1a1a;
      background: transparent;
      border-radius: 999px;
      padding: 12px 28px;
      font-weight: 500;
    }
    .btn-outline-dark-custom:hover {
      background: #e9e2d8;
    }

    
  /* Horizontal scroll container styles */
  .horizontal-scroll-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  .horizontal-scroll-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem 0 2rem 0;
  }
  
  .horizontal-scroll-item {
    scroll-snap-align: start;
    width: calc(50% - 0.75rem); /* 2 items per screen */
    min-width: 280px; /* Minimum width for smaller screens */
  }
  
  /* Desktop: 2 items per screen */
  @media (min-width: 768px) {
    .horizontal-scroll-item {
      width: calc(50% - 0.75rem);
    }
  }
  
  /* Optional: scrollbar styling */
  /* .horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  
  .horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  .horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* Hide scrollbar on mobile if desired (optional) */
  @media (max-width: 768px) {
    .horizontal-scroll-wrapper::-webkit-scrollbar {
      height: 4px;
    }
  }
  
  /* Scroll indicators (optional) */
  .scroll-indicator {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
  }
  
  .scroll-indicator i {
    animation: bounceHorizontal 1.5s infinite;
    display: inline-block;
  }
  
  @keyframes bounceHorizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  } */

  /* ===== NodesFlow Exact Design ===== */
.nodesflow-section {
    background: #fdf7ef;
    padding: 100px 20px;
    text-align: center;
}

.nodesflow-section h2 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 10px;
}

.nodesflow-section .section-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.nodesflow-section .subhead {
    color: #777;
    margin-bottom: 60px;
}

/* layout */
.nodesflow-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    flex-wrap: wrap;
}

/* card */
.nodesflow-card {
    width: 200px;
    height: 180px;
    border-radius: 30px;
    background: linear-gradient(180deg, #1cc7b7, #0f766e);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1),
                inset 0 10px 30px rgba(255,255,255,0.2);
    position: relative;
    color: white;
    padding:20px;
}

/* number */
.nodesflow-number {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* text */
.nodesflow-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
}

.nodesflow-card p {
    font-size: 13px;
    opacity: 0.85;
}

/* connection line */
.nodesflow-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #0f766e;
    opacity: 0.3;
    z-index: 0;
}

/* bring cards above line */
.nodesflow-card {
    z-index: 1;
}

/* zig-zag effect */
.nodesflow-card:nth-child(2),
.nodesflow-card:nth-child(4) {
    transform: translateY(40px);
}

/* responsive */
@media (max-width: 768px) {
    .nodesflow-grid {
        flex-direction: column;
    }
    .nodesflow-grid::before {
        display: none;
    }
    .nodesflow-card:nth-child(2),
    .nodesflow-card:nth-child(4) {
        transform: none;
    }
}
.flow-line {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
}
 .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05);
  }
  
  .filter-btn:hover {
    transform: translateY(-2px);
  }
  
  .project-card .btn:hover {
    background: #ebf213 !important;
    color: #000 !important;
    transform: translateY(-2px);
  }
  .project-card{
    height: 480px !important;
  }
    /* testimonial slider specific styles - SINGLE SLIDE FULL WIDTH */
  .section_testimonials {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 2rem 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }
  .testimonials_header {
    margin-bottom: 2rem;
  }
  .testimonials_header .text_title {
    color: #535353;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.85rem;
  }
  .slider_wrap {
    margin-top: 0;
    position: relative;
    width: 100%;
  }
  .slider {
    background-color: transparent;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .slider-mask {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
  }
  .slider-mask::-webkit-scrollbar {
    display: none;
  }
  .slide-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
  }
  .testimonials_item {
    display: grid;
    grid-template-columns: 27.83% 1fr;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
  }
  .testimonial_left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
  }
  .testimonials_img {
    border-radius: 0.75rem;
    position: relative;
    overflow: clip;
    aspect-ratio: 1 / 1.2;
    width: 100%;
  }
  .testimonials_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .testimonials_logo {
    background-color: #f7f5f1;
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1.25rem;
    width: 100%;
  }
  .logo {
    height: 2rem;
    flex: none;
    max-width: 100%;
  }
  .testimonial_right {
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    gap: 2rem;
    width: 100%;
  }
  .testimonial_right.bg-pink {
    background-color: #ffbdf5;
  }
  .testimonial_right.bg-lilac {
    background-color: #e0dbff;
  }
  .testimonial_right.bg-soft-yellow {
    background-color: #fcffa8;
  }
  .text-testimonial {
    font-size: clamp(1rem, 4vw, 1.8rem);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 0;
  }
  .testimonial_autor {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  .testimonial_author_img {
    border-radius: 100%;
    width: clamp(3rem, 8vw, 4.5rem);
    height: clamp(3rem, 8vw, 4.5rem);
    position: relative;
    overflow: clip;
    flex-shrink: 0;
  }
  .testimonial_author_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider-arrows {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
  }
  .arrow-btn {
    background-color: #f7f5f1;
    border-radius: 0.75rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .arrow-btn:hover {
    background-color: #e9e2d8;
  }
  
  /* Responsive adjustments - always single slide, full width */
  @media (max-width: 991px) {
    .testimonials_item {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .testimonial_left {
      flex-direction: row;
      gap: 1rem;
    }
    .testimonials_img {
      width: 35%;
      aspect-ratio: 1 / 1;
    }
    .testimonials_logo {
      width: 65%;
      padding: 1rem;
    }
    .testimonial_right {
      padding: 1.5rem;
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .section_testimonials {
      padding: 1.5rem 1rem;
    }
    .testimonial_left {
      flex-direction: column;
    }
    .testimonials_img {
      width: 100%;
      aspect-ratio: 1 / 1;
    }
    .testimonials_logo {
      width: 100%;
      padding: 1.25rem;
    }
    .testimonial_right {
      padding: 1.25rem;
    }
    .testimonial_autor {
      gap: 1rem;
    }
    .slider-arrows {
      margin-top: 1rem;
    }
    .arrow-btn {
      width: 2.5rem;
      height: 2.5rem;
    }
  }
  
  @media (min-width: 1200px) {
    .testimonial_right {
      padding: 2.5rem;
    }
    .text-testimonial {
      font-size: 1.5rem;
      line-height: 1.4;
    }
  }
  
  .text-xl {
    font-size: clamp(1rem, 4vw, 1.125rem);
    font-weight: 500;
  }
  .text-sm {
    font-size: clamp(0.75rem, 3vw, 0.875rem);
  }
  .text-color-tertiary {
    color: #535353;
  }
  .container-large {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Services Section Styles */
#services {
  background: linear-gradient(135deg, #fff7ec 0%, #fef9e6 100%);
  position: relative;
  overflow-x: hidden;
  padding: 80px 0;
}

.services-container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-title {
  background: #ebf21320;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.services-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subhead {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Pin wrapper for horizontal scroll */
.services-pin-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
}

.horizontal-scroll-container {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 7rem 0 3rem 0;
  will-change: transform;
}

.horizontal-scroll-item {
  width: 380px !important;
  flex-shrink: 0;
}

/* Enhanced Service Card Styles */
.service-card-enhanced {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ebf213, #d4e00c, #ebf213);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(235, 242, 19, 0.3);
}

.service-card-enhanced:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f0;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon {
  background: #ebf213;
  transform: scale(1.05);
}

.service-icon-bg {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(235, 242, 19, 0.2) 0%, transparent 70%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-enhanced:hover .service-icon-bg {
  opacity: 1;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0.8rem 0 0.75rem;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: #f5f3ee;
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #4a4a4a;
  transition: all 0.2s ease;
}

.service-card-enhanced:hover .feature-tag {
  background: #ebf21320;
}

.service-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: #000;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Scroll progress bar */
.scroll-progress-wrapper {
  max-width: 300px;
  margin: 2rem auto 1rem;
  height: 4px;
  background: #e9e2d8;
  border-radius: 4px;
  overflow: hidden;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ebf213, #d4e00c);
  border-radius: 4px;
  transition: width 0.1s linear;
}

.scroll-indicator {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.scroll-indicator i {
  animation: bounceVertical 1.5s infinite;
}

/* @keyframes bounceVertical {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
} */

/* Responsive adjustments */
@media (max-width: 1200px) {
  .horizontal-scroll-item {
    width: 340px;
  }
}

@media (max-width: 992px) {
  .horizontal-scroll-item {
    width: 320px;
  }
  
  .service-card-enhanced {
    padding: 1.5rem;
  }
  
  .service-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 0 15px;
  }
  
  .horizontal-scroll-item {
    width: 280px;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 2.5rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .service-description {
    font-size: 0.85rem;
  }
  
  .scroll-indicator {
    font-size: 0.75rem;
  }
  .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}
}

@media (max-width: 480px) {
  .horizontal-scroll-item {
    width: 260px;
  }
  
  .service-card-enhanced {
    padding: 1.25rem;
  }
  
  .service-features {
    gap: 0.4rem;
  }
  
  .feature-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }
}
/* Fix for last card being cut off in horizontal scroll */
.horizontal-scroll-container {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: max-content;
  padding: 7rem 0 3rem 0;
  will-change: transform;
  /* Add extra padding at the end to ensure last card is fully visible */
  padding-right: calc(100% - 100px);
}

/* Fix for last card being fully visible */
.horizontal-scroll-container {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: max-content;
  padding: 7rem 0 3rem 0;
  will-change: transform;
  /* Add padding at the end to ensure last card is fully visible when scrolled to max */
  padding-right: calc(100vw - 1000px);
   flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .horizontal-scroll-container {
    padding-right: calc(100vw - 320px);
  }
}

@media (max-width: 992px) {
  .horizontal-scroll-container {
    padding-right: calc(100vw - 300px);
  }
}

@media (max-width: 768px) {
  .horizontal-scroll-container {
    padding-right: calc(100vw - 260px);
  }
}

@media (max-width: 480px) {
  .horizontal-scroll-container {
    padding-right: calc(100vw - 240px);
  }
}
  .why-choose-swiper {
    overflow: visible;
  }
  .why-choose-swiper .swiper-slide {
    height: auto;
  }
  .why-choose-swiper .swiper-button-prev:after,
  .why-choose-swiper .swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
  }
  .why-choose-swiper .swiper-pagination-bullet-active {
    background: #1a1a1a !important;
  }
  /* Mobile: Make Services Section Vertical Scroll */
@media (max-width: 768px) {
  #services {
    overflow-x: hidden;
  }
  
  #services .services-pin-wrapper {
    overflow-x: visible !important;
    overflow-y: visible !important;
    transform: none !important;
  }
  
  #services .horizontal-scroll-container {
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding: 1rem 0 2rem 0 !important;
    gap: 1.5rem !important;
    transform: none !important;
  }
  
  #services .horizontal-scroll-item {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  #services .service-card-enhanced {
    width: 100%;
    margin: 0;
  }
  
  /* Hide horizontal scroll indicators on mobile */
  #services .scroll-progress-wrapper,
  #services .scroll-indicator {
    display: none;
  }
}