/* ═══════════════════════════════════════
   HERO STYLES
   ═══════════════════════════════════════ */

/* ── HERO ── */
.main-section {
  background: linear-gradient(135deg, #FDF6EF 0%, #FAEBD7 40%, #FDF0E0 70%, #FFF7F0 100%) !important;
  background-image: none !important;
  padding: 82px 0 0 !important;
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: center;
}

/* ── HERO BG DECOR WRAPPER ── */
.hero-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.hero-bg-decor.hidden {
  opacity: 0;
}

/* ── HERO DECORATIVE BACKGROUNDS ── */
.bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 119, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 119, 34, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 119, 34, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(26, 43, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ambient Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.1) 0%, transparent 70%);
  top: -60px;
  right: 10%;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 162, 75, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(26, 43, 74, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}

.orb-4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.06) 0%, transparent 70%);
  bottom: -40px;
  right: 30%;
  animation: orbFloat 14s ease-in-out infinite 1s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-15px, 20px) scale(0.95);
  }

  75% {
    transform: translate(25px, 15px) scale(1.02);
  }
}

/* Geometric Shapes */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.shape-hex {
  width: 45px;
  height: 45px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 10%;
  left: 15%;
  animation: shapeFloat 6s ease-in-out infinite;
}

.shape-hex2 {
  width: 40px;
  height: 40px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 38%;
  left: 35%;
  animation: shapeFloat 6s ease-in-out infinite;
}

.shape-tri {
  width: 28px;
  height: 28px;
  background: var(--navy-dark);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: 20%;
  right: 12%;
  animation: shapeFloat 8s ease-in-out infinite 1s;
}

.shape-ring {
  width: 45px;
  height: 45px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  top: 35%;
  left: 5%;
  animation: ringWiggle 3s ease-in-out infinite;
}

.shape-ring2 {
  width: 38px;
  height: 38px;
  border: 2px solid var(--navy-dark);
  border-radius: 50%;
  top: 10%;
  right: 3%;
  animation: ringWiggle 3.8s ease-in-out infinite reverse;
}

.shape-diam {
  width: 30px;
  height: 30px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  bottom: 35%;
  left: 20%;
  animation: shapeFloat 7s ease-in-out infinite 2s;
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes ringWiggle {

  0%,
  100% {
    transform: rotate(-8deg) scaleX(1);
  }

  25% {
    transform: rotate(8deg) scaleX(1.06);
  }

  50% {
    transform: rotate(-5deg) scaleX(0.94);
  }

  75% {
    transform: rotate(6deg) scaleX(1.03);
  }
}

/* Cross Marks */
.cross {
  position: absolute;
  color: var(--orange);
  font-size: 14px;
  font-weight: 300;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  animation: crossPulse 3s ease-in-out infinite;
}

@keyframes crossPulse {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}

/* Floating Dots */
.dots-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dot {
  position: absolute;
  bottom: -10px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotRise linear infinite;
}

@keyframes dotRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: var(--dot-opacity, 0.3);
  }

  90% {
    opacity: var(--dot-opacity, 0.3);
  }

  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

/* Hero image background */
.hero-bg-decor::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 25px 25px 25px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.05;
  letter-spacing: -0.3px;
}

.hero-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* Search bar */
.search-box {
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 0;
  max-width: 600px;
  margin-top: 4px;
  border: 1px solid rgba(26, 43, 74, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.search-box:focus-within {
  box-shadow: 0 4px 24px rgba(232, 119, 34, 0.12);
  border-color: rgba(232, 119, 34, 0.2);
}

.search-select {
  display: none;
}

/* niceSelect styling inside search box */
.search-box .nice-select {
  border: none;
  background: #F3F5F8;
  border-radius: 8px;
  padding: 0 12px;
  height: 36px;
  line-height: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-dark);
  min-width: 120px;
  flex-shrink: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s;
}

.search-box .nice-select:hover {
  background: #EDEFF3;
}

.search-box .nice-select:after {
  border-bottom: 1.5px solid var(--text-muted);
  border-right: 1.5px solid var(--text-muted);
  width: 6px;
  height: 6px;
  right: 12px;
  margin-top: -4px;
}

.search-box .nice-select.open:after {
  margin-top: -1px;
}

.search-box .nice-select .current {
  padding-right: 16px;
  display: block;
}

.search-box .nice-select.open {
  background: #EDEFF3;
}

.search-box .nice-select .list {
  left: 0;
  right: auto;
  width: auto;
  min-width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(26, 43, 74, 0.16);
  border: 1px solid #E8EBF0;
  background: var(--bg-white);
  margin-top: 4px;
  padding: 6px;
  z-index: 50;
}

.search-box .nice-select .option {
  min-height: 36px;
  line-height: 36px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  color: var(--text-dark);
  transition: background 0.1s;
}

.search-box .nice-select .option:hover,
.search-box .nice-select .option.focus,
.search-box .nice-select .option.selected.focus {
  background: #FFF3E6;
  color: var(--orange);
}

.search-box .nice-select .option.selected {
  font-weight: 700;
  color: var(--orange);
  background: #FFF8F0;
}

.search-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 4px;
  flex-shrink: 0;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 4px;
}

.search-input {
  border: none;
  outline: none;
  width: 100%;
  height: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-dark);
  background: transparent;
}

.search-input:focus {
  background: transparent;
}

.search-input::placeholder {
  color: #A0ABBF;
  font-size: 13px;
}

.search-btn {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}

.search-btn:hover {
  background: #D4650F;
  transform: scale(1.05);
}

.search-btn:active {
  transform: scale(0.96);
}

.search-btn i {
  color: #fff;
  font-size: 15px;
}

.popular-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11.5px;
}

.popular-tags .tag {
  padding: 3px 11px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 43, 74, 0.12);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.popular-tags .tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #FFF3E6;
}

.popular-label {
  color: var(--text-muted);
  font-weight: 500;
}


/* Right visual */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Shapes behind hero image */
.shape-hex-right {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 5%;
  right: 20%;
  opacity: 0.12;
  animation: shapeFloatR 6s ease-in-out infinite;
}

.shape-tri-right {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--navy-dark);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: 12%;
  left: 2%;
  opacity: 0.1;
  animation: shapeFloatR 8s ease-in-out infinite 1s;
}

.shape-ring-right {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  top: 5%;
  left: 0%;
  opacity: 0.12;
  animation: ringWiggle 3.5s ease-in-out infinite;
}

.shape-ring2-right {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 2px solid var(--navy-dark);
  border-radius: 50%;
  bottom: 18%;
  right: 7%;
  opacity: 0.1;
  animation: ringWiggle 4s ease-in-out infinite reverse;
}

.shape-diam-right {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 85%;
  right: 40%;
  opacity: 0.1;
  animation: shapeFloatR 7s ease-in-out infinite 2s;
}

.cross-right {
  position: absolute;
  color: var(--orange);
  font-size: 16px;
  font-weight: 300;
  opacity: 0.15;
  animation: crossPulseR 3s ease-in-out infinite;
}

@keyframes crossPulseR {

  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }

  50% {
    opacity: 0.25;
    transform: scale(1.15);
  }
}

.orb-right {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.08) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation: orbFloatR 8s ease-in-out infinite;
}

@keyframes orbFloatR {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(15px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-10px, 15px) scale(0.95);
  }

  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

@keyframes shapeFloatR {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(8deg);
  }
}


.hero-img {
  /* max-width: 90%; */
  height: auto;
  /* max-height: 400px; */
  object-fit: contain;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  margin-top: -10px;
}

/* ── STATS CARDS ── */
.stats-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 15px;
  position: relative;
  z-index: 1;
}

.stats-card {
  background: var(--bg-white);
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(26, 43, 74, 0.10);
  padding: 30px 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 16px 2px 0;
}

.stat-item+.stat-item {
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  background: #FFF3E6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap i {
  color: var(--orange);
  font-size: 18px;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 2px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.stat-plus {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-left: 1px;
}

.stat-label .stat-plus {
  font-size: 11px;
  margin-left: 0;
}

.stat-number .stat-k,
.stat-number .stat-m,
.stat-number .stat-plus {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--orange);
  vertical-align: super;
}


/* Why Choose Us */
.why-section {
  padding: 40px 30px 50px;
  position: relative;
  z-index: 1;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.why-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  letter-spacing: -0.3px;
}

/* 5-col feature grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.why-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  gap: 12px;
}

.why-feat:last-child {
  border-right: none;
}

.why-feat-icon {
  width: 56px;
  height: 56px;
  background: #fbe0c3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feat-icon i {
  color: var(--orange);
  font-size: 22px;
}

.why-feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

.why-feat-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}


.hero-wave svg {
  display: block;
}

/* Wrap cards */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E8EBF0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 43, 74, 0.06);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(26, 43, 74, 0.10);
}

.card-head {
  padding: 5px 20px 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-head-blue {
  background: #E6F1FB;
}

.card-head-green {
  background: #EAF3DE;
}

.card-head-purple {
  background: #EEEDFE;
}

.icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrap-blue {
  background: #185FA5;
}

.icon-wrap-green {
  background: #3B6D11;
}

.icon-wrap-purple {
  background: #534AB7;
}

.icon-wrap i {
  font-size: 16px;
  color: #fff;
}

.head-text {
  flex: 1;
  min-width: 0;
}

.head-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A2B4A;
}

.head-subtitle {
  font-size: 12px;
  color: #5A6A82;
}

.view-btn {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border: 1px solid;
  transition: all 0.2s;
}

.view-btn:hover {
  opacity: 0.8;
  gap: 8px;
}

.view-btn-blue {
  color: #185FA5;
  border-color: #85B7EB;
  background: #fff;
}

.view-btn-green {
  color: #3B6D11;
  border-color: #97C459;
  background: #fff;
}

.view-btn-purple {
  color: #534AB7;
  border-color: #AFA9EC;
  background: #fff;
}

.view-btn i {
  font-size: 10px;
}

.card-body {
  padding: 18px 24px 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 0px 10px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #FFF3E6;
}


.tag-blue {
  color: #0C447C;
  background: #E6F1FB;
  border-color: #B5D4F4;
}

.tag-green {
  color: #27500A;
  background: #EAF3DE;
  border-color: #C0DD97;
}



.tag:has(.single-tag) {
  padding: 0;
  overflow: hidden;
  border-radius: .2rem;
}


.tag-purple {
  color: #3C3489;
  background: #EEEDFE;
  border-color: #CECBF6;
}

@media (max-width: 768px) {

  .main-section {
      padding: 70px 0 0 !important;
  }
  
  .wrap {
    padding: 24px 16px;
    gap: 18px;
  }

  .card-head {
    padding: 16px 18px 14px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .head-title {
    font-size: 14px;
  }

  .card-body {
    padding: 14px 18px 18px;
  }

  .tags {
    gap: 6px;
  }

  .tag {
    font-size: 11px;
    padding: 4px 10px;
  }

  .view-btn {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 18px 12px;
    gap: 14px;
  }

  .card-head {
    padding: 14px 14px 12px;
  }

  .icon-wrap {
    width: 38px;
    height: 38px;
  }

  .icon-wrap i {
    font-size: 16px;
  }

  .head-title {
    font-size: 13px;
  }

  .head-subtitle {
    font-size: 11px;
  }

  .card-body {
    padding: 12px 14px 16px;
  }
}

.count-pill {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px
}

.pill-blue {
  background: #B5D4F4;
  color: #0C447C
}

.pill-green {
  background: #C0DD97;
  color: #27500A
}

.pill-purple {
  background: #CECBF6;
  color: #3C3489
}

/* ──Tender PANELS ── */
.tender-panels-wrap {
  background: #F0F3F9;
  padding: 36px 0 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-left {
    text-align: center;
    align-items: center;
  }

  .why-title {
    font-size: 24px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 30px 16px 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-feat {
    padding: 20px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    gap: 8px;
  }

  .why-feat:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .why-feat-icon {
    width: 44px;
    height: 44px;
  }

  .why-feat-icon i {
    font-size: 18px;
  }

  .why-feat-title {
    font-size: 13px;
  }

  .why-feat-desc {
    font-size: 11.5px;
  }

  .why-title {
    font-size: 20px;
  }
}

/* 480px and below: keep 2 columns */
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-feat {
    padding: 16px 10px;
  }

  .why-feat:last-child {
    max-width: 100%;
  }
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container {
    padding: 20px 20px 40px;
    gap: 24px;
  }

  .hero-img {
    max-height: 280px;
    max-width: 85%;
    margin-top: -8px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 16px 16px 32px;
    gap: 16px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 12px;
  }

  .search-box {
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
  }

  .search-box .nice-select {
    min-width: 90px;
    font-size: 11.5px;
    height: 34px;
    line-height: 34px;
  }

  .search-input {
    font-size: 12.5px;
    height: 34px;
  }

  .search-input-wrap {
    flex: 1;
    min-width: 0;
  }

  .search-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .search-divider {
    display: none;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    row-gap: 20px;
  }

  .stat-item+.stat-item {
    border-left: none;
    padding-left: 0;
  }

  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: 20px;
  }

  .stats-section {
    padding: 0 16px 0px;
    margin-top: 0px;
  }

  .hero-img {
    max-height: 200px;
    max-width: 80%;
    margin-top: -6px;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    flex: 1;
    max-width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 12px 10px 24px;
    gap: 12px;
  }

  .hero-title {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 11px;
  }

  .search-box {
    padding: 3px;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
  }

  .search-box .nice-select {
    min-width: 80px;
    font-size: 11px;
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
  }

  .search-box .nice-select:after {
    right: 8px;
  }

  .search-box .nice-select .current {
    padding-right: 14px;
  }

  .search-input {
    font-size: 12px;
    height: 32px;
  }

  .search-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .search-btn i {
    font-size: 13px;
  }

  .search-btn i {
    font-size: 12px;
  }

  .hero-img {
    max-height: 140px;
    max-width: 75%;
    margin-top: -2px;
  }
}

/* 600-700px: hero bg image chota ho */
@media (max-width: 700px) {
  .hero-bg-decor::after {
    background-size: 30% auto;
    opacity: 0.1;
  }

  .orb-1 {
    width: 200px;
    height: 200px;
  }

  .orb-2 {
    width: 140px;
    height: 140px;
  }

  .orb-3 {
    width: 100px;
    height: 100px;
  }

  .orb-4 {
    width: 160px;
    height: 160px;
  }

  .bg-grid {
    background-size: 40px 40px;
  }
}

@media (max-width: 600px) {
  .hero-bg-decor::after {
    background-size: 25% auto;
    opacity: 0.08;
  }

  .shape-hex,
  .shape-hex2,
  .shape-tri,
  .shape-ring,
  .shape-ring2,
  .shape-diam {
    display: none;
  }

  .cross {
    display: none;
  }

  .orb-1 {
    width: 140px;
    height: 140px;
  }

  .orb-2 {
    width: 100px;
    height: 100px;
  }

  .bg-grid {
    opacity: 0.5;
  }

  .dot {
    display: none;
  }

  .hero-img {
    max-height: 170px;
    max-width: 70%;
    margin-top: -4px;
  }
}

@media (max-width: 480px) {
  .hero-bg-decor::after {
    display: none;
  }

  .orb-1,
  .orb-2,
  .orb-3,
  .orb-4 {
    display: none;
  }

  .bg-texture,
  .bg-grid {
    display: none;
  }
}
