/* ════════════ Home Service and Hardware Cards  GATEWAY SECTION — QUANTUM DATA VAULT ════════════*/
.gateway-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #ffffff !important;
}

.sections-bg-gradient {
  background-image: var(--sections-bg-gradient) !important;
}

/* background-image: radial-gradient(at 100% 50%, rgb(105 200 248 / 68%) 0%, #0aaff312 50%),
radial-gradient(at 0% 50%, rgb(255 153 51 / 15%) 0%, #0aaff300 50%),
radial-gradient(at 80% 40%, rgb(9 176 243 / 20%) 0%, #00000000 45%),
radial-gradient(at 20% 60%, rgb(255 169 108 / 79%) 0%, transparent 45%),
radial-gradient(at 50% 50%, rgb(255 186 110 / 0%) 0%, transparent 70%);

background-image: var(--sections-bg-gradient);
} */

.gateway-cyber-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cyber-grid {
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle, rgba(1, 114, 245, 0.1) 1.5px, transparent 1.5px),
    linear-gradient(rgba(1, 114, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 114, 245, 0.04) 1px, transparent 1px);
  background-size:
    40px 40px,
    40px 40px,
    40px 40px;
  /* animation: gw-grid-drift 22s linear infinite; */
  opacity: 0.8;
}

.cyber-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  /* animation: gw-orb-float 14s ease-in-out infinite alternate; */
}

.orb-1 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgb(1 187 245 / 42%), transparent 70%);

  background: radial-gradient(circle, rgb(1 187 245 / 78%), transparent 70%);
  top: 45px;
  right: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 537px;
  height: 79%;
  background: radial-gradient(circle, rgb(253 136 51), transparent 70%);
  bottom: 133px;
  left: -80px;
  /* animation-delay: -5s; */
}

@keyframes gw-card-mesh {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 30px) scale(1.1);
  }
}

@keyframes gw-beam-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.gw-card {
  position: relative;
  height: 450px;
  border-radius: 45px;
  background: rgb(250 220 185 / 21%);

  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 40px 30px;
  overflow: visible;
  /* Allow border glow to bleed out */
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 30px 60px rgba(1, 1, 96, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);

  /* Beam & Glow Colors */
  --gw-beam-1: #00106d;
  --gw-beam-2: #0387ca;
  --gw-glow: rgba(3, 135, 202, 0.4);
}

/* Continuous Moving Glowing Border (Border Beam) */
.gw-border-beam {
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 2.5px;
  /* Border thickness */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 8px var(--gw-glow)) drop-shadow(0 0 2px var(--gw-glow));
  transition: all 0.5s ease;
}

.gw-card:hover .gw-border-beam {
  filter: drop-shadow(0 0 15px var(--gw-glow)) drop-shadow(0 0 5px var(--gw-glow)) brightness(1.3);
}

.gw-border-beam::before {
  content: '';
  position: absolute;
  width: 250%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  background: conic-gradient(from 0deg,
      var(--gw-beam-1) 0%,
      var(--gw-beam-2) 25%,
      var(--gw-beam-1) 50%,
      var(--gw-beam-2) 75%,
      var(--gw-beam-1) 100%);
  animation: gw-beam-rotate 3s linear infinite;
}

/* Subtle internal soft edge */
.gw-border-beam::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
  opacity: 0.5;
}

/* Animated Mesh Background (Inside the card) - Slow & Subtle */
.gw-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 30%,
      rgba(1, 187, 245, 0.12) 0%,
      transparent 40%),
    radial-gradient(circle at 70% 70%,
      rgba(245, 161, 51, 0.12) 0%,
      transparent 40%);
  filter: blur(50px);
  animation: gw-card-mesh 15s infinite alternate ease-in-out;
  z-index: 0;
  pointer-events: none;
  border-radius: 45px;
}

/* Remove the masking pseudo-element as we now use mask-composite on .gw-border-beam */
.gw-card::after {
  display: none;
}

/* Mouse Hover Glow */
.gw-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.3),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gw-card:hover .gw-card-glow {
  opacity: 1;
}

.gw-card:hover {
  transform: translateY(-18px) scale(1.02);
  background: rgba(255, 255, 255, 0.65);
  border-color: #fff;
  box-shadow:
    0 60px 100px rgba(1, 1, 96, 0.1),
    0 0 50px rgba(255, 255, 255, 0.4);
}

.gw-card-title {
  position: relative;
  z-index: 3;
  font-family: var(--ff-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--tp-common-black2) !important;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 0;
  transition: all 0.4s ease;
}

.gw-card-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 260px;
  border-radius: 32px;
  overflow: hidden;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.6s ease;
}

.gw-card:hover .gw-card-visual {
  transform: translateY(-8px);
  border-color: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.gw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gw-card:hover .gw-card-img {
  transform: scale(1.12);
}

.gw-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  /* background: rgba(0, 0, 0, 0.1); */
  transition: background 0.5s ease;
}

.gw-card:hover .gw-card-body {
  background: rgba(0, 0, 0, 0.02);
}

.tp-btn-black-radius.gw-card-btn {
  position: absolute;
  bottom: 28px !important;
}

/* 
.gw-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  color: #fff !important;
  font-size: 11.6px;
  font-weight: 800;
  letter-spacing: 1.8px;

  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
  bottom: 28px !important;
} */

/* .gw-card:hover .gw-card-btn {
  background: #fff;
  color: #fff !important;
  transform: scale(1.12);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
} */

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .gw-card {
    height: auto;
    min-height: 500px;
    padding: 40px 30px;
  }

  .gw-card-title {
    font-size: 28px;
  }
}

.gw-card-amber:hover {
  box-shadow:
    0 60px 100px rgba(1, 1, 96, 0.12),
    0 0 50px rgba(245, 161, 51, 0.2);
}

.gw-card-amber {
  /* --gw-beam-1: #f5a133;
  --gw-beam-2: #01bbf5;
  --gw-glow: rgba(245, 161, 51, 0.7); */


  --gw-beam-1: #00106d;
  --gw-beam-2: #1242cd;
  --gw-glow: #1242cd;
}

.btn-itad-asset {
  background-color: #485de3 !important;
}

.btn-amber-gw {
  background-color: #0387ca !important;
  border-color: #0387ca !important;
}

.gw-card:hover .gw-card-title {
  transform: translateY(-5px);
}

/* ════════════ Center CTA CODE ════════════*/
.new-bg-cta {
  /* Background Image setup */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../images/new-images/custom-img-20.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Height and Padding */
  min-height: 600px;
  min-height: 80vh;
  /* Screen size ke hisab se adjust karein */
  display: flex;
  align-items: center;
  /* border-radius: 20px; */
  /* Jaisa image mein rounded corners hain */
  /* margin: 20px; */
  /* Bahar ki spacing */
  overflow: hidden;
  padding: 41px 0 !important;
}

.new-bg-cta h1 {
  line-height: 1.2;
  letter-spacing: -1px;
}

.new-bg-cta p {
  font-size: 1.1rem;
  max-width: 500px;
}

.btn-learn-more {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.btn-learn-more:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

/* Container Wrapper for stats */
.nbc-stats-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Individual Card */
.nbc-stats-card {
  display: flex;
  align-items: center;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon Box */
.nbc-stats-icon-wrap {
  min-width: 65px;
  height: 65px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.8rem;
  color: #3b82f6;
  transition: 0.3s;
}

/* Big Numbers */
.nbc-stats-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1;
  /* background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%); */
  /* 
    background: linear-gradient(90deg, #f5a133, #01bbf5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */

  color: white;
}

/* Small Label Text */
.nbc-stats-text {
  font-size: 0.85rem !important;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Hover Effects */
.nbc-stats-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.nbc-stats-card:hover .nbc-stats-icon-wrap {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* .nbc-stats-card:hover .nbc-stats-number {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
  .nbc-stats-card {
    padding: 30px 20px;
  }

  .nbc-stats-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .nbc-stats-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    text-align: center;
  }

  .nbc-stats-icon-wrap {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .nbc-stats-wrapper {
    background: transparent;
    border: none;
  }
}

/* ════════════ Center CTA CODE ════════════*/

/* ════════════ Hubs Redesign Styles ════════════*/

.network-hubs-area {
  /* background: #f8faff !important; */
  /* Light premium background */
  position: relative;
  z-index: 1;

  background-image:
    /* Right side - Cyan Glow */
    radial-gradient(at 100% 50%, rgb(105 200 248 / 68%) 0%, #f1cf8717 50%),
    /* Left side - Amber/Orange Glow */
    radial-gradient(at 0% 50%, rgb(255 153 51 / 33%) 0%, #00000000 50%),
    /* Middle Right - Soft Indigo */
    radial-gradient(at 80% 40%, rgb(255 186 110) 0%, transparent 45%),
    /* Middle Left - Soft Peach/Pink */
    radial-gradient(at 20% 60%, rgb(255 169 108 / 63%) 0%, transparent 45%),
    /* Center - Base Light Blue */
    radial-gradient(at 50% 50%, rgb(255 255 255 / 0%) 0%, #00000000 65%);
}

.hubs-global-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.hubs-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 114, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 114, 245, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hubs-dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(1, 114, 245, 0.1) 1px,
      transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.hubs-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
      rgba(1, 187, 245, 0.05) 0%,
      transparent 70%);
  filter: blur(60px);
}

/* ── Hub Card Redesign ───────────────────────────────────────────── */
.network-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(1, 1, 96, 0.15);
  background: #04102e;
  margin-right: 60px;
}

@media (max-width: 576px) {
  .network-map-wrap {
    margin-right: 0px;
  }
}

.global-map-abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.hub-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(1, 114, 245, 0.12);
  border-radius: 24px;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 12px 40px rgba(1, 1, 96, 0.06),
    inset 0 0 20px rgba(1, 187, 245, 0.03);
  overflow: hidden;
  cursor: pointer;
}

.hub-animated-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 24px;
  background: linear-gradient(90deg, #00106d, #0387ca, #00106d) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.45;
  /* Default subtle visibility */
  transition: opacity 0.4s ease;
}

.hub-list-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: #fff;
  box-shadow:
    0 30px 60px rgba(1, 114, 245, 0.15),
    inset 0 0 30px rgba(1, 187, 245, 0.08);
}

.hub-list-item:hover .hub-animated-border {
  opacity: 1;
  animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.hub-flag {
  width: 50px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.hub-location {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--tp-common-black2) !important;
}

/* ── Map Markers ────────────────────────────────────────────────── */
.hub-map-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #01bbf5;
  border: 2.5px solid #fff;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(1, 187, 245, 0.6);
  transition: all 0.3s ease;
}

.hub-map-marker:hover {
  transform: scale(1.4);
  background: #f5a133;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(1, 187, 245, 0.4);
  border-radius: 50%;
  animation: marker-pulse 2s ease-out infinite;
}

@keyframes marker-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* ── SVG Connections ────────────────────────────────────────────── */
.hub-connections-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Below the markers but above the grid */
}

.connection-path {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.connection-path.is-active {
  opacity: 0.6;
}

.investor-growth-area {
  /* padding-top: 100px; */
  /* padding-bottom: 100px; */
}

/* ════════════ Hubs Redesign Styles END ════════════*/

/* ════════════ Faws Styles Start ════════════*/

/* --- FAQ GLASSMORPHISM ----------------------------------- */
.app-faq-area {
  position: relative;
  background: #020617;
  /* Darker, more premium navy-black */
  overflow: hidden;
  z-index: 1;

  background: #1b2343;
}

/* Hexagon Pattern at Top */
.app-faq-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: #dfdbe5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.92' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.08;
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.accordion-items {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.accordion-items:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.accordion-buttons {
  background: transparent !important;
  color: #fff !important;
  padding: 32px 35px !important;
  font-family: var(--ff-heading);
  font-size: 19px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-buttons:not(.collapsed) {
  color: #01bbf5 !important;
  padding-bottom: 20px !important;
}

/* Custom Plus/Minus Icon Styling */
.accordion-buttons::after {
  content: '\f067';
  /* FontAwesome Plus */
  font-family: 'Font Awesome 6 Pro';
  background-image: none !important;
  width: 40px;
  height: 40px;
  background: rgb(0 0 0 / 5%);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: all 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.accordion-buttons:not(.collapsed)::after {
  content: '\f068';
  /* FontAwesome Minus */
  transform: rotate(180deg);
  background: #01bbf5;
  border-color: #01bbf5;
  color: #fff;
}

.accordion-body {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 0 35px 35px 35px !important;
  font-size: 16px;
  line-height: 1.7;
}

/* ════════════ Faws Styles ENd ════════════*/

/* --- HARDWARE PARTNERS GRID ------------------------------ */
.brand-partner-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px;
  text-align: left;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-partner-card:hover {
  border-color: #01bbf5;
  background: rgba(1, 187, 245, 0.05);
  transform: translateY(-5px);
}

.brand-partner-info h5 {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px;
}

.brand-partner-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.brand-partner-info .text-muted {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Custom Styling for the New Button Column */
.investor-action-box .quote-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.investor-action-box .btn-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.investor-action-box .btn-content small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.investor-action-box .btn-content span {
  font-size: 16px;
  font-weight: 600;
}

.investor-action-box i {
  font-size: 24px;
  opacity: 0.7;
  transition: 0.3s;
}

/* Hover Effects */
.investor-action-box .quote-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #01bbf5;
  transform: translateX(10px);
}

.investor-action-box .quote-btn:hover i {
  color: #01bbf5;
  opacity: 1;
}

/* Special styling for "Speak to an Expert" to make it pop */
.investor-action-box .expert-btn.highlight {
  background: linear-gradient(90deg,
      rgba(1, 187, 245, 0.1) 0%,
      rgba(1, 187, 245, 0.02) 100%);
  border-color: rgba(1, 187, 245, 0.3);
}

.investor-action-box .expert-btn.highlight:hover {
  background: #01bbf5;
  color: #000 !important;
}

.investor-action-box .expert-btn.highlight:hover .btn-content small,
.investor-action-box .expert-btn.highlight:hover i {
  color: #000;
}

/* .yellow-bg  #f1a334  */
/* .light blur #00c2f1  */
/* dark blur #131c77  */
/* ── Business Model Section ───────────────────────────────────────── */
.business-model-section {
  background: #020617;
  /* Very dark navy/black */
  position: relative;
  z-index: 1;
}

.cyber-bg-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.cyber-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 187, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 187, 245, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

.cyber-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
}

.orb-orange {
  top: -10%;
  left: -10%;
  background: #f5a133;
}

.orb-blue {
  bottom: -10%;
  right: -10%;
  background: #01bbf5;
}

.cyber-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(1, 187, 245, 0.08);
  border: 1px solid rgba(1, 187, 245, 0.2);
  border-radius: 100px;
  color: #01bbf5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* ── BM Card Styling ───────────────────────────────────────────── */
.bm-card {
  position: relative;
  height: 100%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 50px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bm-card-inner {
  position: relative;
  z-index: 2;
}

.product-card-swiper {
  height: 300px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  /* padding: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.bm-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(1, 187, 245, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #01bbf5;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.bm-card-itad .bm-card-icon {
  background: rgba(245, 161, 51, 0.1);
  color: #f5a133;
}

.bm-card-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.bm-card-title {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bm-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 30px;
}

.bm-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.bm-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 12px;
}

.bm-card-list li i {
  font-size: 14px;
  color: #01bbf5;
}

.bm-card-itad .bm-card-list li i {
  color: #f5a133;
}

/* ── BM Card Footer & Buttons ──────────────────────────────────── */
.btn-bm-orange {
  background: linear-gradient(135deg, #f5a133 0%, #f46e33 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(245, 161, 51, 0.3);
}

.btn-bm-blue {
  background: linear-gradient(135deg, #0172f5 0%, #01bbf5 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(1, 187, 245, 0.3);
}

/* ── Decorative & Hover Effects ────────────────────────────────── */
.bm-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.08),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.bm-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.bm-card:hover .bm-card-glow {
  opacity: 1;
}

.bm-card:hover .bm-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.bm-card-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(1, 187, 245, 0.5),
      transparent);
  opacity: 0;
  z-index: 3;
}

.bm-card-itad .bm-card-scanline {
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 161, 51, 0.5),
      transparent);
}

.bm-card:hover .bm-card-scanline {
  animation: bm-scan 2s linear infinite;
  opacity: 1;
}

@keyframes bm-scan {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

/* ── Responsive ────────────────────────────────────────────────── */
.cyber-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.new-preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  /* background: radial-gradient(ellipse at 12% 55%, rgb(255 179 80 / 34%) 0%, transparent 62%), radial-gradient(ellipse at 88% 25%, rgb(1 187 245 / 62%) 0%, transparent 58%), radial-gradient(ellipse at 55% 95%, rgb(255 208 155) 0%, transparent 50%), linear-gradient(145deg, #fef6ee 0%, #f8f9ff 45%, #eef4ff 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--tp-ff-phudu, 'Phudu', sans-serif);

  /* Overlaying gradients to create the soft, blurry look */
  background-image:
    /* The main soft light pink in the top left */
    radial-gradient(at 10% 20%, #fbd8cf 0px, transparent 50%),
    /* The soft sky blue in the center right, behind images */
    radial-gradient(at 80% 30%, #b3e5fc 0px, transparent 50%),
    /* A subtle light orange blend into the bottom */
    linear-gradient(to bottom, #fbd8cf 0%, #ffbb8e 50%, #ff8c42 100%);

  /* Ensure the background covers the whole section */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.preloader-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle,
      rgba(1, 187, 245, 0.03) 1px,
      transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

/* Core Animation */
.preloader-core {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-logo {
  position: relative;
  z-index: 5;
  background: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(1, 187, 245, 0.2);
  animation: core-float 3s infinite alternate ease-in-out;
}

.core-ring {
  position: absolute;
  border: 2px solid rgba(1, 187, 245, 0.2);
  border-radius: 50%;
  animation: ring-pulse 4s infinite linear;
}

.core-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-top-color: #01bbf5;
  animation-duration: 3s;
}

.core-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  border-bottom-color: #f5a133;
  animation-duration: 4s;
}

.bit:nth-child(4n) {
  background: #f5a133;
  animation-delay: 1.1s;
}

@keyframes line-glow {
  from {
    opacity: 0.5;
    transform: translateY(-1px);
  }

  to {
    opacity: 1;
    transform: translateY(1px);
  }
}

@keyframes bit-shred {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }

  51% {
    filter: blur(2px);
  }

  100% {
    transform: translateY(60px);
    opacity: 0;
    filter: blur(4px);
  }
}

@keyframes text-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes progress-load {
  0% {
    width: 0%;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0%;
    left: 100%;
  }
}

@media (max-width: 767px) {
  .data-shredder-area {
    width: 200px;
  }

  .status-text {
    font-size: 12px;
  }
}

/* Service Cards Refined */
.new-services-cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
}

.new-service-card {
  flex: 1;
  min-width: 0;
  height: auto;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(240, 248, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.new-service-card:hover {
  transform: translateY(-15px) scale(1.02);
  z-index: 10;
  box-shadow:
    0px 25px 50px rgba(0, 102, 255, 0.1),
    0 0 30px rgba(252, 160, 72, 0.1);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(240, 248, 255, 1) 100%);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #06021d;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  margin-top: auto;
  padding-top: 20px;
}

.service-card-link span {
  margin-right: 8px;
}

.service-card-link i {
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  color: #0066ff;
}

.service-card-link:hover i {
  transform: translateX(5px);
}

.new-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg,
      rgba(252, 160, 72, 0.1) 0%,
      rgba(74, 199, 248, 0.1) 50%,
      rgba(0, 102, 255, 0.1) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.5s ease;
}

.new-service-card:hover::before {
  background: linear-gradient(135deg, #fca048 0%, #4ac7f8 50%, #0066ff 100%);
}

.new-service-card-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.new-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-service-card:hover .new-service-card-img img {
  transform: scale(1.1);
}

.new-service-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.new-service-card-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: #06021d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.new-service-card-content .separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.05) 50%,
      transparent 50%);
  background-size: 8px 1px;
  margin-bottom: 15px;
}

.new-service-card-content p {
  font-size: 14px;
  color: var(--tp-text-body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Keep CTAs on one row across cards regardless of paragraph length */
.new-service-card-content>.tp-btn-black-radius {
  margin-top: auto;
  align-self: flex-start;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .new-services-cards-wrapper {
    flex-wrap: wrap;
  }

  .new-service-card {
    flex: none;
    width: calc(33.33% - 14px);
  }
}

@media (max-width: 991px) {
  .new-services-cards-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }

  .new-service-card {
    flex: none;
    width: calc(50% - 10px);
    max-width: none;
  }
}

@media (max-width: 576px) {
  .new-service-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Core Benefits Layout (Symmetrical - Why Choose Us Style) */
.benefits-layout-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.benefits-column.left-side {
  grid-column: 1;
}

.benefit-central-image {
  grid-column: 2;
}

.benefits-column.right-side {
  grid-column: 3;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 20px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fca048, #0066ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.15);
  margin-bottom: 10px;
}

.benefit-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #06021d;
  text-align: center;
}

.benefit-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.benefit-central-image {
  position: relative;
  padding: 10px;
  z-index: 1;
}

.benefit-central-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.benefit-central-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L60 30 L90 30 L65 50 L75 80 L50 60 L25 80 L35 50 L10 30 L40 30 Z' fill='rgba(0, 102, 255, 0.03)'/%3E%3C/svg%3E") center center repeat;
  background-size: 200px;
  z-index: -1;
  opacity: 0.5;
}

/* Stats Infographic */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stats-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stats-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-5px);
}

.stats-icon {
  font-size: 28px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fca048, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Product Card Swiper - Airbnb Style */
.product-card-swiper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.product-card-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.product-card-swiper .swiper-button-next,
.product-card-swiper .swiper-button-prev {
  width: 32px !important;
  height: 32px !important;
  background: #fff !important;
  border-radius: 50% !important;
  color: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  z-index: 100 !important;
}

.product-card-swiper .swiper-button-next::after,
.product-card-swiper .swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: bold !important;
}

.product-card:hover .swiper-button-next,
.product-card:hover .swiper-button-prev {
  opacity: 1 !important;
  background: var(--tp-common-secondary);
  color: white;
  visibility: visible !important;
}

.product-card-swiper .swiper-button-next {
  right: 10px;
}

.product-card-swiper .swiper-button-prev {
  left: 10px;
}

.product-card-swiper .swiper-button-disabled {
  display: none;
}

/* Responsiveness */
@media (max-width: 1400px) {
  .new-service-card {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 991px) {
  .new-services-cards-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .new-service-card {
    width: calc(33.33% - 20px);
    max-width: none;
  }

  .benefits-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .benefit-central-image {
    order: -1;
    margin-bottom: 30px;
  }

  .benefit-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .new-service-card {
    width: calc(50% - 20px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .new-service-card {
    width: 100%;
    max-width: 100%;
  }
}

.new-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-service-card:hover .new-service-card-img img {
  transform: scale(1.1);
}

.new-service-card-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #06021d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.new-service-card-content .separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.1) 50%,
      transparent 50%);
  background-size: 8px 1px;
  margin-bottom: 15px;
}

.new-service-card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.ai-dashboard-img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 24px;
}

/* Card Styling from your reference */
.ai-platform-card {
  position: relative;
  height: 100%;
  /* Height content ke hisab se auto rahegi grid me */
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  overflow: visible;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow:
    0 30px 60px rgba(1, 1, 96, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);

  /* Beam Colors */
  --gw-beam-1: #00106d;
  --gw-beam-2: #0387ca;
  --gw-glow: rgba(3, 135, 202, 0.3);
}

.ai-platform-card:hover {
  transform: translateY(-5px);
}

/* Border Beam Animation */
.ai-border-beam {
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 2.5px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 8px var(--gw-glow));
}

.ai-border-beam::before {
  content: '';
  position: absolute;
  width: 250%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  background: conic-gradient(from 0deg,
      var(--gw-beam-1) 0%,
      var(--gw-beam-2) 25%,
      var(--gw-beam-1) 50%,
      var(--gw-beam-2) 75%,
      var(--gw-beam-1) 100%);
  animation: gw-beam-rotate 4s linear infinite;
}

@keyframes gw-beam-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Icon Box */
.ai-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(3, 135, 202, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0387ca;
  margin-bottom: 5px;
  border: 1px solid rgba(3, 135, 202, 0.2);
  transition: all 0.3s ease;
}

.ai-platform-card:hover .ai-icon-box {
  background: var(--grad-text);
  color: #fff;
  transform: scale(1.1);
}

.ai-card-texts {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .ai-dashboard-absolute-wrapper {
    position: relative;
    left: 0;
    width: 100%;
    transform: none;
    margin-bottom: 30px;
  }
}

.explore-card {
  height: 400px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.explore-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

.explore-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
  font-family: 'Lovelo', sans-serif;
  /* As per instructions */
}

.explore-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 25px;
}

.tp-btn-white-radius {
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.tp-btn-white-radius:hover {
  background: var(--tp-common-primary);
  /* Use your gradient color */
  color: #fff;
}

/* why it matter */
.why-it-matters-dark-wrap {
  position: relative;
  z-index: 2;
}

.why-item {
  text-align: center;
  transition: var(--ease-bounce);
}

.why-item:hover {
  transform: translateY(-15px);
}

.icon-box-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  position: absolute;
  top: 0;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  z-index: 3;
  border: 3px solid #1b2343;
  /* Match dark bg */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .step-number {
    top: 12px;
    right: 12px;
  }
}

.icon-circle {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: var(--ease);
}

@media (max-width: 768px) {
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: var(--ease);
  }
}

.icon-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--ease);
}

.why-item:hover .icon-circle::before {
  inset: -18px;
  border-color: rgba(255, 255, 255, 0.3);
}

.why-item .item-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-item .item-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* Color Variants */
.color-1 {
  /* background: #4eb5d9 !important;
  color: #fff; */

  background: linear-gradient(135deg, #ffd092 0%, #12a3f0 100%);
  border: 2px solid #17b5f9;
}

/* .color-2 {
  background: #4e79d9 !important;
  color: #fff;
}

.color-3 {
  background: #9b6bc5 !important;
  color: #fff;
}

.color-4 {
  background: #e96b9b !important;
  color: #fff;
}

.color-5 {
  background: var(--tp-common-primary) !important;
  color: #fff;
}

.color-6 {
  background: #f57c33 !important;
  color: #fff;
} */

.icon-circle.color-1 {
  box-shadow: 0 10px 30px rgba(78, 181, 217, 0.4);
}

.icon-circle.color-2 {
  box-shadow: 0 10px 30px rgba(78, 121, 217, 0.4);
}

.icon-circle.color-3 {
  box-shadow: 0 10px 30px rgba(155, 107, 197, 0.4);
}

.icon-circle.color-4 {
  box-shadow: 0 10px 30px rgba(233, 107, 155, 0.4);
}

.icon-circle.color-5 {
  box-shadow: 0 10px 30px rgba(245, 161, 51, 0.4);
}

.icon-circle.color-6 {
  box-shadow: 0 10px 30px rgba(245, 124, 51, 0.4);
}

.why-item:hover .icon-circle.color-1::before {
  border-color: #4eb5d9;
}

.why-item:hover .icon-circle.color-2::before {
  border-color: #4e79d9;
}

.why-item:hover .icon-circle.color-3::before {
  border-color: #9b6bc5;
}

.why-item:hover .icon-circle.color-4::before {
  border-color: #e96b9b;
}

.why-item:hover .icon-circle.color-5::before {
  border-color: var(--tp-common-primary);
}

.why-item:hover .icon-circle.color-6::before {
  border-color: #f57c33;
}