body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.navbar {
  padding: 15px 0;
}

.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  background: linear-gradient(to right, #fff7e6, #ffffff);
}

.hero-section h1 {
  line-height: 1.3;
}

.feature-card,
.module-card,
.price-card,
.testimonial-card {
  border-radius: 15px;
  transition: 0.3s;
}

.feature-card:hover,
.module-card:hover,
.price-card:hover {
  transform: translateY(-10px);
}

.btn-warning {
  background: #d4af37;
  border: none;
  color: #fff;
}

.btn-warning:hover {
  background: #b9972f;
}

/* ===== Footer ===== */
.footer-section {
  background: linear-gradient(90deg, #040b1c, #0b1327);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 193, 7, 0.04);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.footer-logo-box {
  width: 210px;
  height: 70px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
    width: 250px;
  height: 70px;
  object-fit: contain;
}

.text-gold {
  color: #f4b400;
}

.footer-about {
  color: #d6d6d6;
  line-height: 1.9;
  font-size: 15px;
}

.footer-title {
  color: #1d6bff;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 26px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.footer-links li a i {
  margin-right: 10px;
  color: #ffffff;
}

.footer-links li a:hover {
  color: #f4b400;
  padding-left: 5px;
}

.footer-contact li {
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
}

.footer-contact li i {
  color: #17b26a;
  margin-right: 12px;
  margin-top: 5px;
  min-width: 18px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  margin-bottom: 25px;
}

.footer-bottom-text {
  color: #d6d6d6;
  font-size: 15px;
}

.footer-bottom-text a {
  color: #17b26a;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom-text a:hover {
  color: #f4b400;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-title {
    margin-top: 20px;
    font-size: 22px;
  }

  .footer-about,
  .footer-links li a,
  .footer-contact li {
    font-size: 15px;
  }

  .footer-logo-box {
    width: 60px;
    height: 60px;
  }

  .footer-logo {
    width: 42px;
    height: 42px;
  }
}