body {
  font-family: 'Segoe UI', sans-serif;
}

.hero-slider {
  position: relative;
}
.hero-slide {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
  );
}

/* APPLY HERO */
.apply-hero {
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1511379938547-c1f69419868d');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
}

/* APPLY FORM WIDTH */
.apply-form-wrapper {
  max-width: 820px;
  margin: auto;
}

/* FOOTER */
.site-footer {
  background:
    linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.site-footer a {
  color: #ffc107;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
}


.site-footer h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.site-footer a {
  color: #ffc107;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.blog-img {
  width: 100%;
  height: 220px;        /* FIXED HEIGHT */
  object-fit: cover;   /* CROP, NOT STRETCH */
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.blog-detail-img {
  width: 100%;
  max-height: 420px;   /* FIXED HEIGHT */
  object-fit: cover;  /* CROP, NOT STRETCH */
  border-radius: 8px;
}

@media (max-width: 768px) {
  .blog-detail-img {
    max-height: 260px;
  }
}

.btn-warning {
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,193,7,0.4);
}

ol {
  padding-left: 1.2rem;
}

ol li {
  margin-bottom: 10px;
}

/* Requirements */
.requirements-list {
  list-style: none;
  padding-left: 0;
}

.requirements-list li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.requirements-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-size: 14px;
}

/* Apply Button */
.apply-cta-btn {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-cta-btn:hover {
  background: #ffcd39;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,193,7,0.4);
  color: #000;
}

/* Process List */
.process-list {
  padding-left: 20px;
}

.process-list li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.invest-list {
  list-style: none;
  padding-left: 0;
}

.invest-list li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.invest-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffc107;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-box {
  max-width: 900px;
  width: 90%;
  position: relative;
}

.popup-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #000;
  color: #fff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 36px;
}
