    .hero {
      padding: 80px 0;
    }

    .hero-title {
      font-size: 2.4rem;
      font-weight: 600;
      color: #0B1E39;
    }

    .hero-text {
      color: #6c757d;
      margin: 15px 0 25px;
      line-height: 1.5;
      
    }

    .cta-btn {
      background-color: #1E4D2B

;
      color: #FFFFFF
;
      padding: 12px 32px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-bottom: 25px;
    }

    .cta-btn:hover {
      background-color: #2F6F3E


;
      color: #fff;
    }

    /* Trust badges */
    .trust-box {
      display: flex;
      gap: 15px;
      align-items: center;
      margin-top: 10px;
    }

    .trust-icon {
      width: 45px !important;
      height: 45px !important;
      background-color: #E6B31E;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 20px;
      font-weight: 600;
    }

    .trust-text {
      font-size: 0.95rem;
      font-weight: 500;
      color: #0B1E39;
    }

    .hero-img {
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
/* ============================= */
/*      RESPONSIVE DESIGN        */
/* ============================= */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {

 .hero {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700 !important;
  }

  .hero-text {
    font-size: 0.98rem;
    margin: 12px 0 20px;
  }
 .trust-icon {
      width: 40px !important;
      height: 40px !important;
      background-color: #E6B31E;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50% !important;
      font-size: 20px;
      font-weight: 600;
    }

 
  /* Trust badges stack vertically */


}

/* Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .trust-text {
    font-size: 0.85rem;
  }

  .hero-img {
    height: 260px;
  }
}

    .about-section {
  background-color: #ffffff;
}

.about-img {
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

/* Title */
.about-title {
  color: #0B1E39;
  font-size: 2rem;
  font-weight: 700;
}

.about-title .highlight {
  color: #E6B31E;
}

/* Description */
.about-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-top: 12px;
}

/* Trust Items */
.trust-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-iconabout {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}

.trust-iconabout.dark {
  background: #E6B31E;
  color: #fff;
}

.trust-iconabout.gold {
  background: #E6B31E;
  color: #0B1E39;
}

.trust-text {
  color: black;
  font-weight: 600;
}

/* Contact Button */
.about-btn {
  background: #1E4D2B;
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-btn:hover {
  background: #c49c14;
  color: #fff;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.7rem;
  }
  .about-desc{
    font-size: 15px;
  }

  .trust-text {
    font-size: 0.95rem;
  }
  .trust-iconabout {
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
}

}


.dispute-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0B1E39 !important;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
}

/* Cards */
.dispute-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.dispute-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.dispute-card .card-img-top {
  border-radius: 10px;
  margin-bottom: 15px;
  height: 200px;
}

.dispute-title {
  color: #0B1E39;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

/* Buttons */
.btn-box {
  gap: 20px;
  text-align: center;
}

.dispute-btn {
  background: #003242;
  color: white;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
}

.dispute-btn:hover {
  background: #c49c14;
  color: #fff;
}

.dispute-btn-outline {
  border: 2px solid #0B1E39;
  color: #0B1E39;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 18px;
  text-decoration: none;
}

.dispute-btn-outline:hover {
  background: #0B1E39;
  color: #fff;
}
.cta-section {
  background: linear-gradient(135deg, #1E4D2B, #084219);
  color: #fff;
  padding: 70px 0;
  border-radius: 0px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  color: #e6e6e6;
  line-height: 1.6;
}

/* Buttons Container */
.cta-btn-box {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Main CTA Button */
.cta-main-btn {
  background: white;
  color: #0B1E39 !important;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}

.cta-main-btn:hover {
  background: white;
  color: #0B1E39 !important;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}


/* Outline Button */
.cta-outline-btn {
  border: 2px solid white;
  color: white !important;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-outline-btn:hover{
  border: 2px solid white;
  color: white !important;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-btn-box {
    flex-direction: column;
  }

  .cta-main-btn,
  .cta-outline-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}



/* Section Background */
.why-section {
  background: #f3f5f9;
}

/* Title */
.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0B1E39;
}

.why-title .highlight {
  color: #E6B31E;
}

/* Subtitle */
.why-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
}

/* Cards */
.why-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

/* Icons */
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
}

.why-icon.dark {
  background: #0B1E39;
  color: #fff;
}

.why-icon.gold {
  background: #E6B31E;
  color: #0B1E39;
}

/* Texts */
.why-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1E39;
  margin-bottom: 8px;
}

.why-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 1.7rem;
  }

  .why-card {
    padding: 20px 18px;
  }
}

@media (max-width: 480px) {
  .why-title {
    font-size: 1.5rem;
  }

  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}




.footer-section {
  background: #0B1E39;
  color: #fff;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.footer-about {
  color: #e4e4e4;
  margin-top: 10px;
  line-height: 1.7;
}

/* Headings */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #E6B31E;
}

/* Contact Info */
.footer-contact {
  color: #dcdcdc;
  margin-bottom: 6px;
}

/* Social Icons */
.social-icons a {
  font-size: 1.3rem;
  color: #E6B31E;
  margin-right: 12px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Divider */
.footer-line {
  border-top: 1px solid #2b3e57;
  margin-top: 25px;
}

/* Bottom Text */
.footer-bottom {
  color: #cdd2d8;
  margin-top: 15px;
  font-size: 0.95rem;
}


/* CALL BUTTON */
.sticky-call {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #2a78df;
  color: #fff;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
}

/* WHATSAPP BUTTON */
.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
}

.sticky-call:hover,
.sticky-whatsapp:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
}


.cardform {
  border-radius: 12px !important;
}

.card-header {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}


/* HERO SECTION */
.section-hero {
  background: #ffffff;
}

/* STATS CARD */
.stats-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
  height: 230px;
}

.stats-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-card h2 {
  font-size: 50px !important;
  font-weight: 700;
  margin: 8px 0;
  color: black !important;
}

.stats-card p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.icon-yellow {
  color:  #E6B31E;
}

/* FORM CARD */
.form-card {
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid  #1E4D2B;
}

.form-card input {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.form-card input:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 6px rgba(30, 60, 114, 0.3);
}

.form-card label {
  font-size: 20px;
}

.form-card h3 {
  color: white;
  background-color: #1E4D2B;
  padding: 10px;
  border-radius: 10px;
}

/* =====================================================
   📱 MOBILE RESPONSIVE MEDIA QUERIES  
   Perfect for: 767px, 600px, 480px, 360px
===================================================== */

/* Tablets & large mobiles (max-width: 991px) */
@media (max-width: 991px) {

  .section-hero {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .form-card {
    padding: 25px !important;
    margin-top: 20px;
  }

  .stats-card {
    padding: 25px 15px !important;
  }

  .stats-card h2 {
    font-size: 34px !important;
  }

  .stats-card p {
    font-size: 14px;
  }
}

/* Normal Mobile (max-width: 767px) */
@media (max-width: 767px) {

  .section-hero {
    padding-top: 10px !important;
    padding-bottom: 0px !important;
  }

  .stats-card {
    padding: 22px 12px !important;
    height: 150px;

  }

  .stats-card h2 {
    font-size: 30px !important;
  }

  .stats-card i {
    font-size: 40px !important;
    margin-bottom: 10px;
  }

  .form-card {
    padding: 20px !important;
    margin-bottom: 20px !important;
  }

  .form-card label {
    font-size: 20px;
  }

  .form-card input {
    height: 46px !important;
    font-size: 16px !important;
  }
   
  .form-card button {
    font-size: 17px !important;
    padding: 11px !important;
  }
}

/* Small mobile (max-width: 576px) */
@media (max-width: 576px) {

  .stats-card {
    padding: 20px 10px !important;
  }

  .stats-card h2 {
    font-size: 26px !important;
  }

  .stats-card p {
    font-size: 13px;
  }

  .stats-card i {
    font-size: 36px !important;
  }

  .form-card {
    padding: 18px !important;
  }

  .form-card input {
    height: 44px !important;
    font-size: 14px;
  }

  .form-card button {
    font-size: 16px !important;
  }
}

/* Extra small phones (max-width: 420px) */
@media (max-width: 420px) {

  .stats-card {
    padding: 18px 10px !important;
  }

  .stats-card h2 {
    font-size: 26px !important;
  }

  .stats-card i {
    font-size: 30px !important;
  }

  .stats-card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px !important;
  }

  .form-card input {
    height: 42px !important;
    font-size: 13px;
  }

  .form-card button {
    padding: 10px !important;
    font-size: 18px !important;
  }
}

.bordersta {
  border: 2px solid #E6B31E;
}

/* One-line Fee Strip */
.fees-strip {
    background-color: #1E4D2B;

    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    max-width: 650px;
    margin: 10px auto;
    box-shadow: 0 5px 15px rgba(255,0,80,0.4);
    animation: pulse 2s infinite ease-in-out;
    display: inline-block;
}

/* Amount highlight */
.fees-strip strong {
    color: #ffff00;
}

/* text small tone */
.fees-strip span {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.9;
}

/* Glow pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 6px rgba(5, 67, 138, 0.4); }
    50% { box-shadow: 0 0 18px rgba(50, 22, 179, 0.8); }
    100% { box-shadow: 0 0 6px rgba(1, 4, 19, 0.4); }
}

/* Responsiveness */
@media(max-width: 480px){
    .fees-strip { font-size: 15px; padding: 8px 12px; border-radius: 10px; }
    .fees-strip span { font-size: 12px; }
}
