/* =============== HERO =============== */
.wallet-hero {
  position: relative;
  height: 420px;
  margin-top: 62px;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(135deg, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text1 {
  background: linear-gradient(135deg, #405b1f, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* IMAGE */
.wallet-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); 
}

/* OVERLAY */
.wallet-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(34, 197, 94, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.65), rgba(2, 6, 23, 0.9));
  z-index: 1;
}

/* CONTENT */
.wallet-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.wallet-hero h1 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #eaffc7, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wallet-hero p {
  margin-top: 14px;
  max-width: 620px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .wallet-hero {
    height: 340px;
  }

  .wallet-hero h1 {
    font-size: 38px;
  }
}

/* ================= OVERVIEW ================= */
.wallet-overview {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 20px 20px 40px;
}

.wallet-overview-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wallet-overview-content {
  margin-bottom: 50px;
}

.wallet-overview-content h2 {
  font-size: 32px;
  font-weight: 700;
  display: inline-block;

  background: linear-gradient(90deg, #0f172a, #198754);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.wallet-overview-content p {
  margin-top: 14px;
  color: #64748b;
  line-height: 1.7;
}

.wallet-overview-image img {
  width: 100%;
  max-width: 420px;
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ================= WALLET SERVICES SECTION ================= */
.wallet-services {
  padding: 80px 20px;
  text-align: center;

  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.18),
      transparent 100%
    ),
    linear-gradient(135deg, #15452c, #154432, #1d4c3d);
}

.wallet-services h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

/* ================= GRID ================= */
.services-grid {
  max-width: 1150px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

/* ================= SERVICE CARD ================= */
.service-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(6, 32, 22, 0.95),
    rgba(1, 48, 34, 0.95)
  );

  border: 1px solid rgba(34, 197, 94, 0.25);

  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transform-style: preserve-3d;
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}

/* ================= COOL 3D HOVER (DIFFERENT STYLE) ================= */
.service-card:hover {
  background: linear-gradient(135deg, #020617, #042f2e);

  color: #ecfeff;

  transform: translateY(-14px) rotateX(6deg) rotateY(-4deg);

  box-shadow: 0 45px 100px rgba(2, 6, 23, 0.45);
}

/* ================= SOFT EDGE GLOW ================= */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(56, 189, 248, 0.35),
    transparent
  );

  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .wallet-services {
    padding: 90px 20px;
  }

  .wallet-services h2 {
    font-size: 26px;
  }

  .service-card {
    padding: 30px 26px;
    transform: none;
  }

  .service-card:hover {
    transform: translateY(-8px);
  }
}

/* ================= WALLET BENEFITS ================= */
.wallet-benefits {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  text-align: center;
}

.wallet-benefits h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

/* GRID */
.benefits-grid {
  max-width: 1100px;
  margin: 70px auto 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* BENEFIT CARD */
.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;

  display: flex;
  align-items: center;
  gap: 16px;

  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


/* SOFT MOTION OVERLAY */
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(34, 197, 94, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
} 


.benefit-card:hover {
  background: linear-gradient(40deg, rgb(4, 25, 18), rgb(0, 60, 42));

  cursor: pointer;

  transform: translateY(-10px); 
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

/* text color only on hover */
.benefit-card:hover h4 {
  color: #ecfdf5;
}

.benefit-card:hover p {
  color: #bbf7d0;
}

.benefit-card:hover::after {
  opacity: 1;
}

/* ICON – PROFESSIONAL BADGE */
.benefit-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  border-radius: 12px;

  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
  color: #0f172a;

  flex-shrink: 0;
}

/* TEXT */
.benefit-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  text-align: left;
}

/* HOVER – SUBTLE & PREMIUM */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wallet-benefits {
    padding: 80px 16px;
  }

  .wallet-benefits h2 {
    font-size: 28px;
  }

  .benefit-card {
    padding: 28px 22px;
  }

  .benefit-card p {
    font-size: 14px;
  }
}

/* ================= HOW IT WORKS ================= */
.wallet-flow {
  padding: 80px 20px;
  text-align: center;

  background: radial-gradient(
      circle at top,
      rgba(56, 189, 248, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #020617, #020617);
}

.wallet-flow h2 {
  color: #ffffff;
}

/* TRACK */
.wallet-flow-track {
  position: relative;
  max-width: 900px;
  height: 3px;
  margin: 46px auto 70px;

  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  border-radius: 3px;
}

/* MOVING SIGNAL */
.wallet-flow-track::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 25%;

  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #7c3aed,
    transparent
  );

  animation: walletFlow 3.2s linear infinite;
}

@keyframes walletFlow {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(420%);
  }
}

/* GRID */
.wallet-flow-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 34px;
}

/* FLOW CARD */
.flow-step {
  position: relative;
  padding: 26px 22px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);

  opacity: 0.45;
  transform: translateY(0);

  animation: walletStep 6s infinite;
}

/* SEQUENCE */
.flow-step:nth-child(1) { animation-delay: 0s; }
.flow-step:nth-child(2) { animation-delay: 1s; }
.flow-step:nth-child(3) { animation-delay: 2s; }
.flow-step:nth-child(4) { animation-delay: 3s; }
.flow-step:nth-child(5) { animation-delay: 4s; }
.flow-step:nth-child(6) { animation-delay: 5s; } 

/* FLOW FEEL */
@keyframes walletStep {
  0% {
    opacity: 0.4;
    transform: translateY(0) scale(1);
  }
  15% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 28px 70px rgba(56, 189, 248, 0.45);
  }
  30% {
    opacity: 0.65;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.4;
  }
}

/* SPECIAL STATES */
.flow-step.highlight {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #065f46;
}

.flow-step.success {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #047857;
}

/* MOBILE */
@media (max-width: 768px) {
  .wallet-flow {
    padding: 90px 18px;
  }

  .wallet-flow-track {
    display: none;
  }
}

/* ================= ONE ACCOUNT MULTI USE ================= */
.wallet-multiuse {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.wallet-multiuse-wrap {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.multiuse-left h2 {
  margin-bottom: 36px;
}

.multiuse-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

/* CARD */
.multiuse-card {
  position: relative;
  padding: 26px 28px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);

  font-size: 15px;
  font-weight: 600;
  color: #020617;

  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* ICON */
.multiuse-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* ACCENT LINE */
.multiuse-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 3px;

  background: linear-gradient(90deg, #22c55e, #38bdf8);
  border-radius: 2px;
}

/* HOVER */
.multiuse-card:hover {
  transform: translateY(-12px) rotateX(4deg);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.22);
}

/* RIGHT IMAGE */
.multiuse-right {
  display: flex;
  justify-content: center;
}

.multiuse-right img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;

  animation: floatWallet 6s ease-in-out infinite;
}

/* FLOATING IMAGE */
@keyframes floatWallet {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .wallet-multiuse-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .multiuse-left h2 {
    text-align: center;
  }

  .multiuse-card {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wallet-multiuse {
    padding: 90px 18px;
  }

  .wallet-overview-grid{
   grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }  
}
