* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(180deg, #0b1020, #020617);
  color: white;
}
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 40px;
}

.nav-logo {
  font-size: 28px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  cursor: pointer;
}

.nav-links li:hover {
  color: #60a5fa;
}

.signup {
  background: #2563eb;
  padding: 8px 16px;
  border-radius: 20px;
}
.hero {
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  font-size: 48px;
  color: #c084fc;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
  color: #cbd5f5;
}
.hr-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #cbd5f5;
  margin: 40px 0;
}

.hr-text::before,
.hr-text::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hr-text span {
  padding: 8px 16px;
  background: #020617;
  border-radius: 999px;
  font-size: 14px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 60px 40px;
}

.card,
.card1 {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.card1 {
  border: 2px dashed #475569;
}

.card:hover,
.card1:hover {
  background: #1e293b;
  transform: translateY(-5px);
}

.card i {
  float: right;
  opacity: 0.6;
}

/* ===============================
   GUIDE SECTION
   =============================== */
.guide-section {
  width: 80%;
  margin: 0 auto;
  background: white;
  color: #020617;
  padding: 20px;
}

.guide-heading h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.guide-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.left-block p {
  font-weight: 500;
}

.badge {
  background: #22c55e;
  color: white;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 6px;
  margin-left: 8px;
}

.right-block p {
  color: #64748b;
}

hr {
  border: none;
  border-bottom: 1px solid #e5e7eb;
}

/* ===============================
   TIMELINE
   =============================== */
.timeline-section {
  margin-top: 100px;
  text-align: center;
}

.timeline-section h1 {
  font-size: 56px;
  color: #000;
}

.timeline-section p {
  max-width: 750px;
  margin: 20px auto;
  color: rgba(0, 0, 0, 0.6);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
}

.item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.date {
  width: 100px;
  font-size: 14px;
  color: #9ca3af;
}

.dot {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  margin: 0 20px;
}

.item p {
  color: #000;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
  margin-top: 80px;
}

button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.primary {
  background: #000;
  color: white;
}

.secondary {
  background: white;
  border: 1px solid #d1d5db;
}

.secondary:hover {
  background: #000;
  color: white;
}

/* ===============================
   STATS
   =============================== */
.stats {
  background: #f8fafc;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 20px;
  text-align: center;
  color: #000;
}

.stat h2 {
  font-size: 42px;
}

.stat p {
  color: #475569;
}

.small.blue {
  background: #2563eb;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  background: #0b1220;
  color: #cbd5f5;
  padding: 60px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-logo {
  background: white;
  color: black;
  padding: 5px 9px;
  border-radius: 6px;
  font-weight: bold;
}

.footer-right h3 {
  color: #22d3ee;
}
/* =================================================
   RESPONSIVE MEDIA QUERIES – ALL DEVICES
   ================================================= */

/* 📱 Very Small Phones (≤360px) */
@media (max-width: 360px) {
  .hero h1 { font-size: 26px; }
  .cards { padding: 20px 10px; }
}

/* 📱 Small Phones (≤480px) */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 8px;
  }

  .hero h1 { font-size: 30px; }
  .hero p { font-size: 13px; padding: 0 12px; }

  .cards {
    grid-template-columns: 1fr;
    padding: 30px 15px;
  }

  .stats {
    flex-direction: column;
    gap: 30px;
  }
}

/* 📱 Large Phones (≤576px) */
@media (max-width: 576px) {
  .hero h1 { font-size: 32px; }

  .guide-section {
    width: 95%;
    padding: 12px;
  }

  .guide-li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .timeline::before { left: 20px; }
  .date { width: auto; font-size: 12px; }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}

/* 📲 Small Tablets (≤640px) */
@media (max-width: 640px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 📲 Tablets Portrait (≤768px) */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-section p {
    width: 90%;
    font-size: 16px;
  }

  .footer-inner {
    gap: 40px;
  }
}

/* 📲 Tablets Landscape (≤900px) */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 💻 Small Laptops (≤1024px) */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-section {
    width: 90%;
  }

  .stats {
    gap: 50px;
  }
}

/* 💻 Medium Laptops (≤1280px) */
@media (max-width: 1280px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 🖥️ Large Screens / Desktop (≥1281px) */
@media (min-width: 1281px) {
  .cards {
    grid-template-columns: repeat(5, 1fr);
  }
}
