/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9fbff;
  color: #333;
}

/* ---------------- HERO ---------------- */
.hero {
  background: url("B1.jpg") center/cover no-repeat;
  padding: 150px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #0066cc;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.hero-btn:hover {
  transform: scale(1.05);
  background: #e6f0ff;
}

/* ---------------- OVERVIEW ---------------- */
.overview {
  padding: 70px 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(40px);
  transition: .4s ease;
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- SHOWCASE ---------------- */
.showcase {
  padding: 60px 20px;
}

.showcase-container img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  display: block;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

/* ---------------- PROCESS ---------------- */
.process {
  text-align: center;
  padding: 80px 20px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.step {
  background: #f1f5ff;
  padding: 25px;
  max-width: 230px;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: .4s ease;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- CTA ---------------- */
.cta {
  background: linear-gradient(135deg,#0066cc,#004c99);
  text-align: center;
  padding: 80px 20px;
  color: white;
}

/* ---------------- FOOTER ---------------- */
/* ---------------- FOOTER ---------------- */
.footer {
  background: #0d47a1;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
}

.footer-about h3,
.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  color: #e6f0ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #cfdfff;
  text-decoration: none;
  transition: .3s;
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.social-icons a {
  color: #cfdfff;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: .3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 15px;
  font-size: .9rem;
  color: #dbe5ff;
}


/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 768px) {

  .hero {
    padding: 120px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature-grid {
    gap: 15px;
  }

  .showcase-container img {
    border-radius: 15px;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 350px;
    width: 100%;
  }

  .footer-container {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .hero {
    padding: 100px 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
