* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  color: #1a1a2e;
  background: #f5f7ff;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(67, 56, 202, 0.08);
}

.header-container {
  width: 100%;
  max-width: 1420px;
  padding: 20px 20px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4338ca, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav a {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.93rem;
  font-weight: 500;
  margin-left: 30px;
  transition: color 0.2s;
}
nav a:hover {
  color: #4338ca;
}
.header-tfn {
  background: linear-gradient(135deg, #4338ca, #7c3aed);
  color: #fff;
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
  transition: opacity 0.2s;
}
.header-tfn:hover {
  opacity: 0.88;
}

/* HERO */
.hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 50px 10px 60px;
  background-color: #0f0c29;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgb(34 26 49 / 81%) 0%, #000000a1 60%),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(67, 56, 202, 0.3) 0%,
      transparent 55%
    ),
    radial-gradient(ellipse at 60% 80%, rgb(72 85 80 / 35%) 0%, #00000029 50%),
    url(../images/hero-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
/* floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: #7c3aed;
  top: -100px;
  left: -120px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: #4338ca;
  bottom: -80px;
  right: -80px;
}
.blob-3 {
  width: 300px;
  height: 300px;
  background: #10b981;
  bottom: 80px;
  left: 30%;
}

/* dot grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1e7ff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 span {
  background: linear-gradient(135deg, #a78bfa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem;
  color: #ffffff;
  max-width: 560px;
  margin: 0 auto 25px;
  line-height: 1.7;
}
.hero-sub2 {
  font-size: 0.95rem;
  color: #ffffff;
  max-width: 480px;
  margin: 0 auto 42px;
}
.tfn-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 14px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.tfn-icon {
  font-size: 2rem;
}
.tfn-label {
  font-size: 0.75rem;
  color: #a78bfa;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.tfn-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.tfn-number a {
  text-decoration: none;
  color: #fff;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #4338ca);
  color: #fff;
  padding: 15px 38px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.4);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 15px 36px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* SERVICES */
.services {
  padding: 60px 24px;
  background: #f5f7ff;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  background: #ede9fe;
  color: #7c3aed;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.section-header p {
  color: #6b7280;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: 22px;
  padding: 20px 20px;
  padding-bottom: 10px;
  box-shadow: 0 2px 20px rgba(67, 56, 202, 0.06);
  border: 1px solid #ede9fe;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.13);
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: #7c3aed;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.card-link:hover {
  text-decoration: underline;
}

/* STATS */
.stats {
  padding: 72px 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.stats h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
.stats p {
  color: #a78bfa;
  font-size: 0.95rem;
  margin-bottom: 44px;
  position: relative;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.stat-item {
  flex: 1 1 160px;
  max-width: 180px;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-desc {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-top: 5px;
}

/* FOOTER */
footer {
  background: #0f0c29;
  color: #9ca3af;
  padding: 56px 56px 28px;
}
.footer-top {
  width: 100%;
  max-width: 1420px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  background: linear-gradient(135deg, #a78bfa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.35rem;
  font-weight: 900;
}
.footer-brand p {
  font-size: 0.87rem;
  color: #bebebe;
  margin-top: 10px;
  max-width: 220px;
  line-height: 1.65;
}
.footer-col h4 {
  color: #e5e7eb;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #bebebe;
  font-size: 0.87rem;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #dddddd;
}
.footer-tfn {
  background: linear-gradient(135deg, #7c3aed, #4338ca);
  color: #fff;
  padding: 13px 22px;
  padding: 13px 22px 6px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.footer-tfn a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #1e1b3a;
  padding-top: 22px;
  text-align: center;
  font-size: 0.81rem;
  color: #a0a0a0;
}

.content-section {
  width: 100%;
  padding: 40px 0px;
}

.content-section h2,
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 21px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

/*======== Responsve Css ==========  */

@media (max-width: 640px) {
  header {
    padding: 0 18px;
  }
  nav {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .tfn-number {
    font-size: 1.35rem;
  }
  footer {
    padding: 40px 20px 22px;
  }
  .tfn-box {
    padding: 10px 14px;
  }
  .tfn-icon {
    font-size: 1.4rem;
  }
  .tfn-label {
    display: none;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .stats h2 {
    font-size: 1.4rem;
  }
  .stats-grid {
    gap: 16px;
  }
  .stat-item {
    flex: none;
  }
  .content-section h2,
  h3 {
    font-size: 18px;
    line-height: 25px;
  }
}
