 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

 @keyframes scroll {
     0% {
         transform: translateX(0);
    }
     100% {
         transform: translateX(-50%);
    }
}
 .service-card:hover {
     transform: translateY(-5px);
     transition: transform 0.3s ease;
}
 .testimonial-slider {
     display: flex;
     transition: transform 0.5s ease;
}
 .fade-in {
     opacity: 0;
     transform: translateY(20px);
     animation: fadeIn 0.8s ease forwards;
}
 @keyframes fadeIn {
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .counter {
     font-size: 2rem;
     font-weight: bold;
     color: #FCAA40;
}

/* custom Css */
/* hero banner */
.hero-banner{
     position: relative;
     width: 100%;
     height: 580px;
     overflow: hidden;
}
 .carousel-wrapper {
     display: flex;
     width: 300%;
    /* 3 slides × 100% */
     height: 100%;
     transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
 .slide {
     width: 33.33%;
     height: 100%;
     position: relative;
     background-size: cover;
     background-position: center;
}
 .slide-1 {
     background-image: url('banner1.jpg');
}
 .slide-2 {
     background-image: url('banner2.jpg');
}
 .slide-3 {
     background-image: url('banner3.jpg');
}
 .slide-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0);
     display: flex;
     align-items: center;
     padding: 0 40px;
}
 .slide-content {
     text-align: left;
     color: white;
     max-width: 800px;
     padding: 40px;
     animation: slideInContent 0.8s ease-out;
}
 .slide-title {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 40px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
 .slide-description {
     font-size: 1.1rem;
     margin-bottom: 30px;
     opacity: 0.95;
}
 .cta-button {
     background: #FCAA40;
     color: white;
     border: none;
     padding: 15px 35px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 2px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
}
 .cta-button:hover {
     background: #e55a2b;
     transform: translateY(-2px);
}
/* Nav buttons */
 .carousel-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255,255,255,0.9);
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     color: #333;
     opacity: 0;
     transition: all 0.3s ease;
     z-index: 10;
}
 .carousel-nav.prev {
     left: 20px;
}
 .carousel-nav.next {
     right: 20px;
}
 .carousel-container:hover .carousel-nav {
     opacity: 1;
}
/* Indicators */
 .carousel-indicators {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
}
 .indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s ease;
}
 .indicator.active {
     background: white;
     transform: scale(1.2);
}
/* Line heading */
 .main-heading {
     font-size: 18px;
     font-weight: 400;
     margin-bottom: 20px;
     position: relative;
     color: #fff;
     display: inline-block;
}
 .main-heading .line {
     display: inline-block;
     width: 40px;
     height: 2px;
     background-color: white;
     margin-right: 15px;
}
/*main heading dark version */
.main-heading-dark {
     font-size: 18px;
     font-weight: 400;
     margin-bottom: 20px;
     position: relative;
     color: #000;
     display: inline-block;
}
 .main-heading-dark .line-dark {
     display: inline-block;
     width: 40px;
     height: 2px;
     background-color: black;
     margin-right: 15px;
}
/* Animation */
 @keyframes slideInContent {
     from {
         opacity: 0;
         transform: translateY(30px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
/* Responsive Design */
 @media (max-width: 768px) {
     .carousel-container {
         height: auto;
         min-height: 600px;
         margin: 0 0px;
    }
     .slide {
         display: flex;
         flex-direction: column;
    }
     .slide-overlay {
         position: relative;
         background: none;
         flex-direction: column;
         align-items: stretch;
         justify-content: flex-start;
         padding: 0px;
    }
     .slide-background {
         width: 100%;
         height: 200px;
         background-size: cover;
         background-position: center;
    }
    /* Hide desktop background images */
  .slide-1,
  .slide-2,
  .slide-3 {
    background-image: none !important;
  }
     .slide-1 .slide-background {
         background-image: url('banner1.jpg');
    }
     .slide-2 .slide-background {
         background-image: url('banner2.jpg');
    }
     .slide-3 .slide-background {
         background-image: url('banner3.jpg');
    }
     .slide-content {
         background: rgba(0,0,0,0.1);
         color: #333;
         padding: 30px 50px;
         text-align: center;
         animation: none;
         width: 100%;
    }
     .slide-title {
         font-size: 1.8rem;
         margin-bottom: 15px;
         color: #333;
         text-shadow: none;
    }
     .slide-description {
         font-size: 1rem;
         margin-bottom: 25px;
         color: #666;
         text-shadow: none;
         opacity: 1;
    }
     .cta-button {
         padding: 12px 25px;
         font-size: 1rem;
    }
     .carousel-nav {
         opacity: 1;
         width: 40px;
         height: 40px;
         font-size: 16px;
    }
     .carousel-nav.prev {
         left: 10px;
    }
     .carousel-nav.next {
         right: 10px;
    }
     .main-heading{
         display: none;
    }
     .carousel-indicators{
         display: none;
    }
}
 @media (max-width: 480px) {
     .carousel-container {
         height: 350px;
    }
     .slide-title {
         font-size: 1.4rem;
    }
     .slide-description {
         font-size: 0.9rem;
    }
     .cta-button {
         padding: 10px 20px;
         font-size: 0.9rem;
    }
}



.cta-button-blue {
     background: #FCAA40;
     color: white;
     border: none;
     padding: 15px 35px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
}
 .cta-button:hover {
     background: #e55a2b;
     transform: translateY(-2px);
}
#stats-section{
    text-align: left;
}
.inital-transform{
    text-transform: initial;
    font-size: 1.1rem;
}
  /* Client Card */
.client-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 0 0.75rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: scale(1.05);
}

/* Client Logo */
.client-logo {
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Owl Carousel Arrows */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #d1d5db;
  color: #374151;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
  transform: scale(1.1);
}

.owl-nav button.owl-prev {
  left: -50px;
}

.owl-nav button.owl-next {
  right: -50px;
}

/* Owl Carousel Dots */
.owl-dots {
  display: none !important;
}

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

.owl-dot span {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: #f97316;
  transform: scale(1.2);
}

/* Client Logo Card Styling */
#clientsCarousel .item {
  /*border: 1px solid #eee;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.4) ;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-stage-outer{
    padding: 10px 0px;
}


.item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;      /* uniform box for all logos */
}

.client-logo {
  max-height: 100%;   /* take available height inside the box */
  max-width: 100%;    /* don’t overflow */
  object-fit: contain; /* keep aspect ratio */
}