/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--itzone-white);
  padding: 72px 0 58px;
  overflow: hidden;
  position: relative;
}

.home-hero-slider {
  min-height: auto;
  padding: 60px 0 45px;
  --active-slide-a: #071b3d;
  --active-slide-b: #0b63ce;
  --active-slide-c: #0fd4ff;
  --active-slide-b-rgb: 11, 99, 206;
  --active-slide-c-rgb: 15, 212, 255;
  background:
    radial-gradient(circle at 76% 18%, rgba(var(--active-slide-c-rgb), 0.24), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(var(--active-slide-b-rgb), 0.3), transparent 28%),
    linear-gradient(125deg, var(--active-slide-a) 0%, var(--active-slide-b) 54%, #20345f 100%);
  isolation: isolate;
  transition: background 1.6s ease;
}

.home-hero-slider::before,
.home-hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero-slider::before {
  z-index: 0;
  display: none;
}

.home-hero-slider::after {
  z-index: 0;
  background:
    radial-gradient(circle at 8% 86%, rgba(93, 91, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 82%, rgba(255, 255, 255, 0.1) 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.04) 35%, transparent 43%),
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.04) 59%, transparent 64%);
  background-size: auto, 180px 180px, auto, auto;
  opacity: 0.5;
}

.home-hero-slider > .container {
  position: relative;
  z-index: 2;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.home-hero-slider > .container::before {
  display: none;
}

.home-hero-slider .hero-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 224px;
  transform: translateY(-50%);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.78) 1.7px, transparent 2.2px);
  background-size: 14px 14px;
  background-repeat: repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

/* Large soft purple-blue gradient orb — fills right half of hero */
.hero-orb {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(124, 58, 237, 0.14) 0%,
    rgba(67, 97, 238, 0.1) 35%,
    rgba(67, 97, 238, 0.04) 60%,
    transparent 72%
  );
  top: -180px;
  right: -140px;
  pointer-events: none;
  z-index: 0;
}

.home-hero-slider .hero-orb {
  width: 860px;
  height: 860px;
  top: -260px;
  right: -220px;
  background: radial-gradient(
    circle at 45% 42%,
    rgba(4, 145, 223, 0.38) 0%,
    rgba(67, 97, 238, 0.22) 34%,
    rgba(124, 58, 237, 0.14) 58%,
    transparent 74%
  );
  filter: blur(2px);
  animation: heroOrbPulse 8s ease-in-out infinite;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-hero-slider .hero-container {
  width: min(1320px, calc(100vw - 120px));
  box-sizing: border-box;
  margin-inline: auto;
}

.home-hero-slider .hero-text {
  padding-left: 47px;
}

.hero-slider-stage {
  position: relative;
  min-height: auto;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  perspective: 1300px;
  overflow: hidden;
}

.hero-slide {
  inset: 0;
  min-height: auto;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  border-radius: 0;
  transform: none;
  transform-origin: right center;
  transform-style: preserve-3d;
  transition: opacity 1.35s ease, visibility 1.35s ease;
  pointer-events: none;
}

.hero-slide::before {
  display: none;
}

.hero-slide::after {
  display: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0) rotateY(0) scale(1);
  pointer-events: auto;
}

.hero-slide.is-active::before {
  animation: none;
}

.hero-slide.is-active::after {
  animation: none;
}

.home-hero-slider.is-prev .hero-slide {
  transform: none;
  transform-origin: left center;
}

.home-hero-slider.is-prev .hero-slide.is-active {
  transform: translateX(0) rotateY(0) scale(1);
}

.home-hero-slider .hero-anim,
.home-hero-slider .hero-visual-anim {
  opacity: 0;
  animation: none;
}

.hero-slide.is-active .hero-anim {
  animation: fadeSlideUp 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s)
    forwards;
}

.hero-slide.is-active .hero-visual-anim {
  animation: softFadeIn 1.15s ease 0.26s forwards;
}

/* ---------- Hero tag pill ---------- */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(67, 97, 238, 0.07);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(67, 97, 238, 0.18);
  margin-bottom: 22px;
}
.tag-dot {
  font-size: 14px;
}

/* ---------- Hero heading ---------- */
.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

.home-hero-slider .hero-text h1 {
  color: #fff;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.32);
}

/* ---------- Hero paragraph ---------- */
.hero-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 550px;
}

.home-hero-slider .hero-text p {
  color: rgba(255, 255, 255, 0.90) !important;
}

.home-hero-slider .cta-subtitle {
    position: relative;
    color: #eaf7ff;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 0 42px;
    letter-spacing: 1.7px;
    font-size: 13px;
    font-weight: 700;
}


.home-hero-slider .cta-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--slide-c), rgba(255, 255, 255, 0.85));
  transform: translateY(-50%);
}

.home-hero-slider .cta-subtitle::after {
  display: none;
}

.home-hero-slider .btn-ghost-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-hero-slider .btn-ghost-dark:hover {
  color: var(--blue);
  background: #fff;
}

/* ---------- Hero buttons ---------- */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ---------- Trust row ---------- */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--itzone-white);
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 0 0 1.5px rgba(67, 97, 238, 0.15);
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.trust-text span {
  font-size: 13px;
  color: var(--muted);
}

.home-hero-slider .trust-text strong {
  color: #fff;
}

.home-hero-slider .trust-text span {
  color: rgba(255, 255, 255, 0.68);
}

/* ---------- Hero visual (right column) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 506px;
  padding: 24px 0;
}

.home-hero-slider .hero-visual::before,
.home-hero-slider .hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.home-hero-slider .hero-visual::before {
  width: 180px;
  height: 180px;
  left: -46px;
  top: 90px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.46) 0 5px,
    transparent 5px 14px
  );
  opacity: 0.54;
}

.home-hero-slider .hero-visual::after {
  width: 104px;
  height: 104px;
  top: 0;
  left: 50%;
  border-radius: 50%;
  background: #fed766;
  transform: translateX(-50%);
  box-shadow:
    300px 105px 0 -28px rgba(255, 255, 255, 0.34),
    -82px 520px 0 -8px rgba(245, 158, 11, 0.42),
    420px 230px 0 -50px rgba(255, 255, 255, 0.22);
}

/* Dot grids inside the right column */
.hero-dot-grid {
  position: absolute;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(
    circle,
    rgba(67, 97, 238, 0.45) 1.5px,
    transparent 1.5px
  );
  background-size: 13px 13px;
  pointer-events: none;
  z-index: 2;
  /* top-right of the visual column */
  top: 0;
  right: 0;
}
.hero-dot-grid-br {
  top: auto;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

/* ---------- Main image ---------- */
.hero-img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(67, 97, 238, 0.08),
    0 20px 60px rgba(67, 97, 238, 0.16);
  position: relative;
  z-index: 1;
}

.home-hero-slider .hero-img-wrap {
  width: clamp(380px, 30vw, 450px);
  height: clamp(380px, 30vw, 450px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.22),
    inset 0 0 0 999px rgba(24, 40, 72, 0.14);
  z-index: 1;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.03);
}

.hero-running-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 42, 78, 0.1), rgba(20, 42, 78, 0.22)),
    radial-gradient(circle at 42% 8%, rgba(255, 255, 255, 0.14), transparent 32%);
  pointer-events: none;
}

.home-hero-slider .hero-running-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,0.08) 42%, transparent 52%);
  transform: translateX(-120%);
  pointer-events: none;
}

.home-hero-slider .hero-dot-grid {
  top: 170px;
  right: -14px;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.52) 1.6px, transparent 1.8px);
  background-size: 13px 13px;
  opacity: 0.62;
}

.home-hero-slider .hero-dot-grid-br {
  display: none;
}

.hero-slide.is-active .hero-running-frame::before {
  animation: heroFrameScan 9s ease-in-out infinite;
}

.hero-slide.is-active .hero-running-frame img {
  animation: heroImageRun 8s ease-in-out infinite;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  padding: 0 28px;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
}

.hero-slider-btn {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-slider-btn:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  transform: scale(1.08);
}

.hero-slider-dots {
  display: none;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  pointer-events: auto;
}

.hero-slider-dot {
  width: 50px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.hero-slider-dot.is-active {
  background: linear-gradient(90deg, #f5b400 0 8px, rgba(255, 255, 255, 0.28) 8px 100%);
}

.home-hero-slider .hbadge {
  display: flex;
  gap: 10px;
  min-width: 148px;
  padding: 12px 14px;
  border-radius: 14px;
  z-index: 4;
}

/* ---------- Floating stat badges ---------- */
.hbadge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--itzone-white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
  z-index: 3;
  white-space: nowrap;
}

/* Top-LEFT — floats above the image on the left side */
.hbadge-tl {
  top: 0;
  left: -10px;
  animation: floatBadgeA 4.2s ease-in-out infinite;
}

/* Bottom-RIGHT — floats near bottom-right corner */
.hbadge-br {
  bottom: 0;
  right: -10px;
  animation: floatBadgeB 5s ease-in-out infinite;
}

.hbadge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.hbadge-icon.blue {
  background: rgba(67, 97, 238, 0.12);
  color: var(--blue);
}
.hbadge-icon.green {
  background: #065f46;
  color: var(--itzone-white);
}

.hbadge-body strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}
.hbadge-body span {
  font-size: 12px;
  color: var(--muted);
}

.home-hero-slider .hbadge-tl {
  top: 118px;
  left: 0;
  background: rgba(10, 18, 42, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.home-hero-slider .hbadge-br {
  right: 6px;
  bottom: 96px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.home-hero-slider .hbadge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 16px;
}

.home-hero-slider .hbadge-icon.blue {
  background: rgba(37, 99, 235, 0.22);
  color: #4f83ff;
}

.home-hero-slider .hbadge-icon.green {
  background: #a84f12;
  color: #fff;
}

.home-hero-slider .hbadge-body strong {
  font-size: 18px;
  color: #0f172a;
}

.home-hero-slider .hbadge-body span {
  max-width: 88px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.home-hero-slider .hbadge-tl .hbadge-body strong,
.home-hero-slider .hbadge-tl .hbadge-body span {
  color: #fff;
}

/* ---------- Keyframes ---------- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes softFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatBadgeA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatBadgeB {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes iconPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroGridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 144px 72px, 72px 144px;
  }
}

@keyframes heroLightSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-6%);
  }
  50% {
    opacity: 0.36;
    transform: translateX(6%);
  }
}

@keyframes heroOrbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.76;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes heroBackdropRun {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.05) translate3d(-8px, -6px, 0);
  }
}

@keyframes heroSlideSweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18%);
  }
  45% {
    opacity: 0.28;
    transform: translateX(8%);
  }
  70% {
    opacity: 0;
    transform: translateX(18%);
  }
}

@keyframes heroFrameScan {
  0%,
  100% {
    transform: translateX(-120%);
  }
  48%,
  62% {
    transform: translateX(120%);
  }
}

@keyframes heroImageRun {
  0%,
  100% {
    transform: scale(0.98) translateY(0);
  }
  45% {
    transform: scale(1.01) translateY(-8px);
  }
  70% {
    transform: scale(0.99) translateY(6px);
  }
}

.hero-anim {
  opacity: 0;
  animation: fadeSlideUp 0.78s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s)
    forwards;
}
.hero-visual-anim {
  opacity: 0;
  animation: slideInRight 0.88s cubic-bezier(0.22, 0.61, 0.36, 1) 0.32s forwards;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {
  background: var(--itzone-extra);
  padding: 40px 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.brands-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s;
  border: 1px solid #e5e7eb;
  padding: 8px 20px;
  border-radius: 5px;
}
.brand-item i {
  font-size: 22px;
}
.brand-item:hover {
  color: var(--blue);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--itzone-white);
  padding: 60px 0;
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.services-title h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.services-title p {
  font-size: 15px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(4, 145, 223, 0.28);
  border-radius: 16px;
  padding: 28px 24px;
  background: var(--itzone-white);
  box-shadow:
    0 0 0 1px rgba(4, 145, 223, 0.08),
    0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.services-grid .service-card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 4px;
  background: linear-gradient(90deg, rgba(4, 145, 223, 0.2), var(--itzone-base));
  opacity: 1;
  transition: opacity 0.3s;
}

.services-grid .service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 145, 223, 0.2), var(--itzone-base));
  opacity: 1;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  border-color: rgba(4, 145, 223, 0.45);
}

.services-grid .service-card:hover::before {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  opacity: 1;
}

.services-grid .service-card:hover::after {
  opacity: 0;
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.service-card:hover .svc-icon {
  background: var(--blue);
  color: var(--itzone-white);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s;
}
.svc-link:hover {
  gap: 10px;
}

.reveal-anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-anim.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(135deg, #0f172a 0%, #180f36 42%, #0f766e 100%);
  font-family: var(--itzone-font);
}
.why-dots-tr {
  display: none;
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.why-section::before {
  width: 520px;
  height: 520px;
  left: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.22);
  filter: blur(4px);
}

.why-section::after {
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.34);
}

.why-section .cta-subtitle {
  /* border-color: rgba(187, 247, 208, 0.22);
  background: rgba(255, 255, 255, 0.12); */
  color: #ffffff;
  /* backdrop-filter: blur(12px); */
}

.why-section h2 {
  font-family: var(--itzone-font-two);
  color: #fff !important;
  font-size: clamp(32px, 3.2vw, 48px);
}

.why-section .row.justify-content-center p {
  font-family: var(--itzone-font);
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.75;
}

.why-section > .container:not(.why-grid) {
  display: none;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

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

.why-intro {
  max-width: 620px;
}

.why-intro .cta-subtitle {
  margin-bottom: 16px;
}

.why-intro p {
  font-family: var(--itzone-font);
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.75;
}

/* Left image */
.why-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(5, 8, 20, 0.32);
}
.why-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  opacity: 0.84;
  transform: scale(1.01);
}

.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 15, 54, 0.04), rgba(15, 118, 110, 0.26));
  pointer-events: none;
}

.play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #180f36;
  font-size: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.play-btn i {
  margin-left: 3px;
}

.why-caption {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.why-cap-avatars {
  display: flex;
}
.why-cap-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--itzone-white);
  object-fit: cover;
  margin-left: -8px;
}
.why-cap-avatars img:first-child {
  margin-left: 0;
}
.why-caption p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
}
.why-caption strong {
  display: block;
}

/* Right content */
.why-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-content > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-content {
  display: flex;
  align-items: stretch;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  align-content: stretch;
}
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(5, 8, 20, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(187, 247, 208, 0.14);
  border: 1px solid rgba(187, 247, 208, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  flex-shrink: 0;
}
.why-feat:hover {
  transform: translateY(-4px);
  border-color: rgba(187, 247, 208, 0.34);
  background: rgba(255, 255, 255, 0.16);
}
.why-feat h4 {
  font-family: var(--itzone-font-two);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.why-feat p {
  font-family: var(--itzone-font);
  color: rgba(255, 255, 255, 0.80) !important;
  font-size: 13.5px;
  line-height: 1.55;
}

.project-one {
  background: var(--bg-2);
  padding: 60px 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background: var(--itzone-white);
  padding: 60px 0;
}
.process-intro {
  text-align: center;
  margin-bottom: 56px;
}
.process-intro h2 {
  font-size: 34px;
  font-weight: 800;
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}
.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 26px;
  margin: 0 auto 18px;
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-icon {
  background: var(--blue);
  color: var(--itzone-white);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.process-connector {
  align-self: center;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}
.process-connector::after {
  content: "";
  display: block;
  width: 80%;
  border-top: 2px dashed rgba(67, 97, 238, 0.3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--light-bg);
  padding: 60px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.testi-left h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.25;
}
.testi-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stars {
  color: #f59e0b;
  font-size: 18px;
  display: flex;
  gap: 3px;
}
.rating-score {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.rating-count {
  font-size: 14px;
  color: var(--muted);
}

.testi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.testi-card {
  background: var(--itzone-white);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 30px;
  line-height: 0.8;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: 0.3;
  margin-bottom: 0px;
}
.testi-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.testi-author span {
  font-size: 14px;
  color: var(--muted);
}

.testi-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  background: var(--itzone-white);
  padding: 60px 0;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog-header h2 {
  margin-top: 8px;
  line-height: 1.25;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--light-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  z-index: 1;
}
.blog-img::after{
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 0;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 0px 10px;
  border-radius: 100px;
  color: var(--itzone-white);
  z-index: 1;
}
.blog-tag.web {
  background: var(--itzone-blue);
}
.blog-tag.mobile {
  background: #10b981;
}
.blog-tag.ux {
  background: #f59e0b;
}
.blog-tag.cloud {
  background: #06b6d4;
}

.blog-date {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--itzone-white);
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 9px;
  border-radius: 100px;
  z-index: 1;
}

.blog-body {
  padding: 18px 16px;
  background: var(--itzone-white);
}
.blog-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.home-cta {
  background: var(--itzone-secondary);
}

.home-why-features{
  grid-template-columns: 1fr;
  gap: 10px 20px;
}

.home-process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0;
  background: #005C90;
}

.home-process-section::before,
.home-process-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.home-process-section::before {
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at 86% 74%, rgba(0, 26, 43, 0.22), transparent 32%);
}

.home-process-section::after {
  width: 210px;
  height: 210px;
  right: clamp(20px, 8vw, 140px);
  top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    -70px 250px 0 -96px rgba(255, 255, 255, 0.18),
    -980px 150px 0 -84px rgba(255, 255, 255, 0.16);
}

.home-process-section .cta-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border-color: transparent;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}

.home-process-section h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  letter-spacing: 0;
}

.home-process-section .row.justify-content-center p {
  color: rgba(255, 255, 255, 0.94) !important;
  line-height: 1.75;
}
.para-box{
  min-height: 92px;
  margin-top: 15px;
}

.tracking-widest {
  letter-spacing: 0.25rem;
}

/* Process Flow Container Grid */
.theme-process-wrapper {
  position: relative;
  z-index: 1;
}

.theme-process-wrapper::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.22), transparent);
  z-index: -1;
}

/* Core Glassmorphic Card Implementation */
.custom-theme-card {
    overflow: hidden;
    background: rgba(110, 84, 243, 0);
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    border-radius: 8px;
    padding: 2rem 1.4rem 0.55rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 18px 42px rgba(0, 32, 52, 0.2);
    backdrop-filter: blur(10px);
}

.custom-theme-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.custom-theme-card::after {
  display: none;
}

/* Structural Step Backing Tags */
.card-step-indicator {
  position: absolute;
  top: 1.3rem;
  right: 1.35rem;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.70;
  color: #fff;
  transition: opacity 0.3s ease;
}

.home-process-section .theme-icon-container {
  display: none !important;
}

/* Theme Dynamic Icon Shell */
.theme-icon-container {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 1.35rem;
  transition: all 0.4s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* Individual Card Palette Modifiers */
.card-phase-1 {
  --phase-color: #22c55e;
}
.card-phase-2 {
  --phase-color: #a78bfa;
}
.card-phase-3 {
  --phase-color: #0f766e;
}
.card-phase-4 {
  --phase-color: #6d28d9;
}
.card-phase-5 {
  --phase-color: #bbf7d0;
}

.theme-icon-container {
  color: var(--phase-color);
}

.custom-theme-card h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
}

.custom-theme-card .card-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  line-height: 1.65 !important;
}

/* Custom Responsive Interactive Hover Effects */
.custom-theme-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.62) !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 32, 52, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.custom-theme-card:hover .card-step-indicator {
  opacity: 0.38;
  color: #fff;
}

.home-page-faq{
  /* padding: 60px; */
  .faq-one__shape-3{
    bottom: 0px;
  }
}

.brand-about-section{
  background: linear-gradient(135deg, #2e2a34 0%, #2563eb 100%);
  padding: 60px 0;
}

.cta-section{
  background: linear-gradient(135deg, #1a2e8a 0%, #2d40d0 45%, #4361ee 100%);
  padding: 0px 0 0px;
  position: relative;
  overflow: hidden;
}
.cta-box {
    position: initial;
    overflow: hidden;
    border-radius: 20px;
    padding: 70px 0px;
    background: none;
    color: #fff;
    box-shadow: none;
}

.home-about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #180f36 0%, #0f766e 100%);
}

.home-about-copy {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 80px clamp(32px, 8vw, 150px);
  color: #fff;
  isolation: isolate;
}

.home-about-copy::before,
.home-about-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.home-about-copy::before {
  background:
    linear-gradient(135deg, rgba(24, 15, 54, 0.9), rgba(15, 118, 110, 0.82)),
    url("../../images/resources/about-us.png") center/cover;
  opacity: 0.96;
}

.home-about-copy::after {
  background:
    radial-gradient(circle at 18% 20%, rgba(34, 197, 94, 0.26), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(109, 40, 217, 0.32), transparent 34%);
}

.home-about-copy-inner {
  max-width: 560px;
}

.home-about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #bbf7d0;
}

.home-about-kicker img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.home-about-copy h2 {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.home-about-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 32px;
}

.home-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 7px;
  background: var(--itzone-base);
  color: var(--itzone-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 rgba(34, 197, 94, 0.35);
}

.home-about-btn:hover {
  color: var(--itzone-white);
  background: var(--itzone-black);
}

.home-about-image {
  min-height: 520px;
  background: linear-gradient(135deg, #22c55e 0%, #6d28d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: -24px 24px 0 rgba(24, 15, 54, 0.32);
}

@media (max-width: 1199px) {
  .hero-slider-stage {
    min-height: auto;
  }
  .home-hero-slider .hero-container {
    width: min(1140px, calc(100vw - 88px));
  }
  .hero-container {
    gap: 35px;
    grid-template-columns: 1fr 0.9fr;
  }
  .hero-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 1091px) {
  .home-about-split {
    grid-template-columns: 1fr;
  }
  .home-about-copy,
  .home-about-image {
    min-height: auto;
  }
  .home-about-copy {
    padding: 64px 28px;
  }
  .home-about-copy-inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
  .home-about-image {
    padding: 0 28px 64px;
    background: linear-gradient(135deg, #180f36 0%, #0f766e 100%);
  }
  .home-about-image img {
    max-width: 760px;
    height: 340px;
    border-radius: 0;
    box-shadow: 14px 14px 0 rgba(34, 197, 94, 0.28);
  }
  .home-hero-slider,
  .hero-slider-stage {
    min-height: auto;
  }
  .hero-slide {
    min-height: auto;
  }
  .home-hero-slider .hero-container {
    width: min(720px, calc(100vw - 48px));
    min-height: auto;
    padding-block: 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .home-hero-slider .hero-text {
    max-width: 720px;
    margin-inline: auto;
    padding-left: 0;
    text-align: center;
  }
  .home-hero-slider .hero-text p {
    max-width: 620px;
    margin-inline: auto;
  }
  .home-hero-slider .hero-btns,
  .home-hero-slider .hero-trust {
    justify-content: center;
  }
  .home-hero-slider .hero-visual {
    display: none;
  }
  .home-hero-slider .hero-img-wrap {
    width: min(420px, 82vw);
    height: min(420px, 82vw);
  }
  .hero-slider-controls {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 100vw;
    padding: 0 18px;
    justify-content: space-between;
  }
  .hero-slider-dots {
    bottom: 20px;
  }
  .home-hero-slider .hero-container::before {
    left: 14px;
    width: 39px;
    height: 168px;
    background-size: 13px 13px;
    opacity: 0.54;
  }
  .services-header {
    gap: 18px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 35px;
  }
  .stat-sep {
    display: none;
  }
  .stat-item h3 {
    font-size: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-image {
    min-height: 320px;
  }
  .why-image img {
    height: 320px;
  }
  .process-connector {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testi-cards {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-cta {
    text-align: center;
  }
  .home-cta .cta-btn-box {
    justify-content: center;
  }
  .theme-process-wrapper::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-hero-slider {
    min-height: auto;
    padding: 64px 0 72px !important;
  }
  .hero-slider-stage {
    min-height: auto;
  }
  .home-hero-slider .hero-container {
    width: min(100%, calc(100vw - 32px));
    padding-block: 0;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text p {
    max-width: none;
  }
  .hero-btns,
  .hero-trust {
    justify-content: center;
  }
  .home-hero-slider .hero-text {
    text-align: center;
  }
  .hero-slider-controls {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 100vw;
    padding: 0 10px;
  }
  .hero-slider-btn {
    width: 46px;
    height: 46px;
  }
  .hero-slider-dots {
    bottom: 14px;
    padding: 8px 12px;
  }
  .home-hero-slider .hero-container::before {
    top: 58%;
    left: 8px;
    width: 30px;
    height: 128px;
    background-size: 10px 10px;
    opacity: 0.36;
  }
  .hero-visual {
    min-height: 310px;
    padding: 12px 0 44px;
  }
  .home-hero-slider .hero-img-wrap {
    width: min(300px, 78vw);
    height: min(300px, 78vw);
  }
  .home-hero-slider .hero-visual::before {
    width: 96px;
    height: 96px;
    left: 8px;
    top: 38px;
  }
  .home-hero-slider .hero-visual::after {
    width: 58px;
    height: 58px;
    top: -4px;
    box-shadow:
      170px 70px 0 -16px rgba(255, 255, 255, 0.34),
      -46px 282px 0 -8px rgba(245, 158, 11, 0.38);
  }
  .home-hero-slider .hero-dot-grid {
    top: 82px;
    right: 2px;
    width: 58px;
    height: 58px;
    background-size: 10px 10px;
  }
  .services-section,
  .brands-section,
  .stats-section,
  .why-section,
  .project-one,
  .process-section,
  .testimonials-section,
  .blog-section,
  .s3-cta-section,
  .hero ,.home-process-section{
    padding: 50px 0;

  }
  .why-section::before {
    width: 280px;
    height: 280px;
    left: -130px;
    top: -90px;
  }
  .why-section::after {
    width: 260px;
    height: 260px;
    right: -130px;
    bottom: -90px;
  }
  .why-image {
    min-height: 260px;
  }
  .why-image img {
    height: 260px;
  }
  .why-feat {
    padding: 16px;
  }

  .home-process-section {
    background-position: center top;
  }
  .home-process-section::after {
    width: 140px;
    height: 140px;
    right: 18px;
    top: 24px;
  }
  .home-process-section .row.justify-content-center {
    margin-bottom: 28px !important;
  }
  .custom-theme-card {
    padding: 1.65rem 1.25rem 1.35rem;
  }
  .card-step-indicator {
    font-size: 1.65rem;
    top: 1.1rem;
    right: 1.1rem;
  }
  .theme-icon-container {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    margin-bottom: 1.5rem !important;
  }
  .home-about-copy {
    padding: 52px 18px;
  }
  .home-about-copy h2 {
    font-size: 30px;
  }
  .home-about-copy p {
    font-size: 15px;
  }
  .home-about-image {
    padding: 0 18px 52px;
  }
  .home-about-image img {
    height: 240px;
    box-shadow: 8px 8px 0 rgba(34, 197, 94, 0.24);
  }
  .home-hero-slider {
    padding: 64px 0 72px !important;
  }
  .services-header {
    text-align: center;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats-card {
    padding: 30px 16px;
  }
  .stat-item h3 {
    font-size: 26px;
  }
  .why-content {
    text-align: center;
  }
  .why-feat {
    text-align: left;
  }
  .why-features {
    grid-template-columns: 1fr;
    gap: 35px 16px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .testi-left {
    text-align: center;
  }
  .testi-rating {
    justify-content: center;
  }
  .testi-cards {
    grid-template-columns: 1fr;
  }
  .blog-header {
    text-align: center;
    justify-content: center;
    gap: 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .s3-cta-box {
    padding: 30px 16px;
  }
  .testi-card{
    padding: 16px;
  }
  .home-process-section .custom-theme-card {
    padding: 1.5rem 1.15rem 1.25rem;
  }
  .testimonials-grid{
    gap: 16px;
  }
  .testi-nav{
    justify-content: center;
  }
  .why-image img{
    height: 260px;
  }
  .why-caption{
    border-radius: 5px;
    padding: 8px 12px;
  }
  .why-caption p{
    font-size: 13px !important;
  }
  .why-cap-avatars img{
    height: 30px;
  }
  .section-title{
    margin-bottom: 24px;
  }
  .project-one__box-content{
    min-height: 400px;
  }
  .cta-section{
      margin-top: 60px;
  }
}
