
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f97316;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #0e0e0f;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #ff4500;
  color: white;
}

/* ============================= */
/* 🌟 FIXED HEADER STYLING */
/* ============================= */
.fixed-header {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1rem);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Shrink effect on scroll */
body.scrolled .fixed-header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%) scale(0.98);
}

/* Padding adjustment for header */
body {
  padding-top: 100px;
  transition: padding-top 0.3s ease;
}


.clients-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.clients-track img {
  height: 80px;
  margin: 0 20px;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================= */
/* 🌟 STATS OVERVIEW SECTION */
/* ============================= */
.stats-overview {
  background-image:
    radial-gradient(circle at 10px 10px, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(135deg, #fdfdfd 0%, #f9fbff 50%, #fefaf8 100%);
  background-size: 20px 20px, 100% 100%;
  position: relative;
}

.stats-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,180,130,0.15), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255,120,69,0.12), transparent 70%);
  z-index: 1;
}

.stat-card {
  position: relative;
  overflow: hidden;
  background: #f9fafb;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 240%;
  height: 100%;
  background: linear-gradient(90deg,
    rgba(255,69,0,0) 0%,
    rgba(255,69,0,0.85) 40%,
    rgba(255,120,69,0.85) 70%,
    rgba(255,120,69,0) 100%);
  transform: skewX(-12deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.5s ease;
  z-index: 5;
}

.stat-card:hover::before {
  transform: translateX(50%);
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255,69,0,0.25);
}

.stat-card > * {
  position: relative;
  z-index: 10;
}

/* ============================= */
/* 🌟 CLIP SHAPES & DECORATIVE EDGES */
/* ============================= */
.clip-x-orange {
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%);
}
.clip-x-dark {
  clip-path: polygon(55% 0, 100% 0, 70% 100%, 25% 100%);
}
.rounded-custom {
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

/* ============================= */
/* 🌟 DOTS (SLIDER INDICATOR) */
/* ============================= */
.dot.active {
  background-color: #ff4c00;
  transform: scale(1.3);
  transition: all 0.3s ease;
}

/* ============================= */
/* 🌟 RESPONSIVE OPTIMIZATION */
/* ============================= */
@media (max-width: 1024px) {
  .clip-x-orange {
    clip-path: polygon(50% 0, 100% 0, 70% 100%, 0 100%);
  }
}

@media (max-width: 768px) {
  .clip-x-orange,
  .clip-x-dark {
    clip-path: none;
  }
  .rounded-custom {
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

@media (max-width: 480px) {
  .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
  body {
    padding-top: 80px;
  }
  .fixed-header {
    width: calc(100% - 0.5rem);
  }
}
 .swiper-button-next,
    .swiper-button-prev {
      color: #f97316 !important; /* orange-500 */
      transition: all 0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      transform: scale(1.2);
      color: #ea580c !important; /* darker orange */
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }