* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
  
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f2933;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2dd4bf;
}

.nav {
  display: none;
  gap: 24px;
}

.nav a:hover {
  color: #2dd4bf;
}

/* Buttons */
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
}

.btn.primary {
  background: #14b8a6;
  color: white;
   padding: 10px 18px;
  font-weight: 600;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .header .btn.primary {
    padding: 8px 16px;
  }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .header .btn.primary {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .header .btn.primary {
    padding: 4px 10px;
    font-size: 0.85rem;
  }
.btn.primary:hover {
  background: #2dd4bf;
}
}
.btn.outline {
  border: 2px solid #14b8a6;
  color: #2dd4bf;
}

.btn.light {
  background: white;
  color: #14b8a6;
}

.btn.large {
  padding: 14px 28px;
}

/* Hero */
.hero {
  padding: 100px 0;
   scroll-margin-top: 64px;
}

.hero-grid {
  display: grid;
  gap: 48px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero p {
  color: #9ca3af;
  font-size: 1.2rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
}

/* Sections */
.section {
  padding: 80px 0;
  scroll-margin-top: 64px;
}

.section.dark {
  background: #111827;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}


.grid-5 {
  display: flex;
  gap: 16px;
}

/* Cards */
.card {
  background: #1f2933;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #374151;
    height: 100%;
}

.card i {
  width: 30px;
  height: 50px;
  color: #2dd4bf;
  margin-bottom: 16px;
}

.step {
  width: 64px;
  height: 64px;
  background: #14b8a6;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.mini-card {
  background: #1f2933;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 0;
  scroll-margin-top: 64px;
  background: linear-gradient(
    180deg,
    #0b1220 0%,
    #0f172a 100%
  );
}

/* Header */
.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.how-header p {
  font-size: 1.1rem;
  color: #94a3b8;
}

/* Steps layout */
.steps-grid {
  display: grid;
  grid-template-columns: auto 60px auto 60px auto;
  align-items: center;
  text-align: center;
}


/* Step card */
.step-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-card p {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Number circle */
.step-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;

  border-radius: 50%;
  background: #14b8a6;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.8rem;
  font-weight: 700;

  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.35);
}
/* Arrow between steps */
.step-arrow {
  width: 48px;
  height: 2px;
  background: #14b8a6;
  position: relative;
  margin: 0 auto;
}

/* Arrow head (→) */
.step-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  border-left: 10px solid #14b8a6;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .step-arrow {
    width: 2px;
    height: 40px;
  }

  .step-arrow::after {
    right: auto;
    left: -4px;
    top: auto;
    bottom: -6px;
    border-left: none;
    border-top: 6px solid #475569;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
}

/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b1220, #0f172a);
  scroll-margin-top: 64px;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.services-header p {
  font-size: 1.1rem;
  color: #94a3b8;
}

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

/* Card */
.service-card {
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.9),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  padding: 36px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* Icon */
.service-card .icon {
  width: 36px;
  height: 36px;
}

/* Text */
.service-card span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* Icon colors */
.icon.teal { color: #2dd4bf; }
.icon.blue { color: #60a5fa; }
.icon.purple { color: #c084fc; }
.icon.orange { color: #fb923c; }
.icon.red { color: #fb7185; }
.icon.green{ color: #00d5be;}
.icon.yellow{ color: #50a2ff;}
.icon.aqua { color: #05df72}
/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .how-header h2 {
    font-size: 2.2rem;
  }
}

/* CTA */
.cta {
  padding: 100px 20px;
  text-align: center;
  background: #111a2e;
  scroll-margin-top: 64px;
}

/* Footer */
footer {
  background: #020617;
  padding: 60px 0 30px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.socials {
  display: flex;
  gap: 16px;
}
.copyright{
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

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

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

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