 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", "Montserrat", sans-serif;
      background-color: #ffffff;
      color: #000;
      display: block;
      
    }
    
    /* ========== NAVBAR ========== */
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 50px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text img {
  height: 85px;
}

.checkmark {
  color: #004b91;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #004b91;
}

.contact-btn {
  background-color: #0056b3;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #004b91;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #004b91;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: all 0.3s;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

    /* ========== HERO TITLE ========== */
    .hero-title {
      text-align: center;
      margin: 50px 0 30px;
    }

    .hero-title h1 {
      color: #004b91;
      font-size: 50px;
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .hero-title h1 {
        font-size: 32px;
      }
    }

    /* ========== REPORT FORM SECTION ========== */
    .report-section {
      background-color: #024f97;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
    }

    .container {
      text-align: center;
      max-width: 600px;
      width: 100%;
    }

    .container h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .container p {
      font-size: 0.95rem;
      color: #d6e4e0;
      margin-bottom: 30px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .input-group {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      align-items: center;
    }

    input, select {
      padding: 12px 15px;
      border: none;
      border-radius: 4px;
      font-size: 0.95rem;
      width: 100%;
      max-width: 400px;
      outline: none;
    }

    select {
      max-width: 150px;
      background-color: #fff;
    }

    .btn {
      background-color: #e85b4f;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
      max-width: 400px;
      transition: background 0.3s;
    }

    .btn:hover {
      background-color: #d84c41;
    }

    /* ========== VIN DETAILS ========== */
   #vinDetails {
 
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  text-align: left;
  line-height: 1.6;
  transition: all 0.3s ease;
}
    /* ========== PRICING BUTTONS ========== */
    .pricing-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .pricing-buttons button {
      background-color: #e85b4f;
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .pricing-buttons button:hover {
      background-color: #d84c41;
    }


/* ===== MODAL OVERLAY ===== */

/* ===== PAYPAL CONTAINER ===== */
#paypal-button-container {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 25px;
}

/* Make embedded PayPal frame (buttons + card form) scale properly */
#paypal-button-container iframe {
  width: 100% !important;
  min-height: 420px !important; /* larger form area */
  transform: scale(1.05);       /* slight upscale for medium size */
  transform-origin: top center;
}

/* For Debit/Credit Card expanded fields (inside iframe) */
.paypal-buttons,
.paypal-button,
.paypal-button-container {
  width: 100% !important;
  max-width: 100% !important;
}

/* Optional — gives the PayPal area a subtle background like a card */
#paypal-button-container {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 40px;
}

/* ===== MODAL CONTENT ===== */
.modal-content {
  background: #fff;
  border-radius: 5px;
  padding: 50px 60px;
  width: 750px;                 /* Wider, more professional */
  max-width: 95%;
  position: relative;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Smooth scrolling */
.modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 5px;
}

/* ===== CLOSE BUTTON ===== */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
  color: #777;
}
.close-modal:hover {
  color: #000;
}

/* ===== FORM LABELS ===== */
.checkout-box label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 17px;
  color: #333;
}

/* ===== INPUTS & SELECTS ===== */
.checkout-box input,
.checkout-box select {
  width: 100%;
  padding: 16px 18px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1.5px solid #ccc;
  font-size: 16px;
  background-color: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-box input:focus,
.checkout-box select:focus {
  border-color: #0070ba;
  box-shadow: 0 0 6px rgba(0,112,186,0.3);
  outline: none;
}

/* ===== SUMMARY BOX ===== */
.summary {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.6;
}

/* ===== BUTTON STYLES ===== */
.pay-btn {
  width: 100%;
  background: #0070ba;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  margin-top: 25px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pay-btn:hover {
  background: #005c96;
  transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 35px 25px;
  }

  .checkout-box label {
    font-size: 15px;
  }

  .checkout-box input,
  .checkout-box select {
    padding: 14px;
    font-size: 15px;
  }

  .pay-btn {
    font-size: 16px;
    padding: 14px;
  }
}


/* ===== SUMMARY BOX ===== */
.summary {
  background: #f7f7f7;
  padding: 14px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 15px;
}

/* ===== PAY BUTTON ===== */
.pay-btn {
  width: 100%;
  background: #0070ba;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.pay-btn:hover {
  background: #005c96;
}

/* ===== CLOSE BUTTON ===== */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

.close-modal:hover {
  color: #000;
}

.pay-btn:hover {
  background: #005c99;
}

    .modal-content h3 {
      color: #004b91;
      margin-bottom: 15px;
      text-align: center;
    }

    .modal-content input, 
    .modal-content select {
      width: 100%;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .pay-btn {
      background-color: #e85b4f;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 5px;
      width: 100%;
      font-weight: 600;
      cursor: pointer;
    }

    .pay-btn:hover {
      background-color: #d84c41;
    }

    @media (max-width: 600px) {
      input, select {
        max-width: 100%;
      }

      .btn {
        max-width: 100%;
      }
    }
    /* ===== ABOUT US ===== */
.about-us {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.about-us h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #000;
  letter-spacing: 1px;
}

.about-us p {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
  font-weight: 400;
}

/* ===== OUR PRICES ===== */
.our-prices {
  text-align: center;
  padding: 60px 20px 0px;
  max-width: 900px;
  margin: 0 auto;
}

.our-prices h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #000;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.our-prices h1::after {
  content: "";
  display: block;
  width: 140px;
  height: 8px;
  background-color: #004b91;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 4px;
}

.our-prices p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: #004b91;
  background: #e8f0fa;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 15px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: #f9fbfd;
  padding: 80px 20px;
  text-align: center;
}

.priceContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: #012e47;
  color: #fff;
  width: 30%;
  border-radius: 10px;
  padding: 25px 20px 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.price-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.price-card p {
  font-size: 0.9rem;
  color: #d8e2ea;
  margin-bottom: 20px;
}

.price-box {
  background: #fff;
  color: #004b91;
  border-radius: 6px;
  padding: 10px 15px;
  text-align: center;
  margin-bottom: 20px;
  width: 80%;
}

.price-box .price {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.price-box .time {
  font-size: 0.8rem;
  color: #555;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  padding-left: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.price-card ul li {
  margin: 4px 0;
}

.buy-btn {
  background: #e85b4f;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #d84c41;
}

.premium {
  background: #01334f;
}

/* ===== SPECIAL SECTION ===== */
#carImageText{
  font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    position: relative;
}
.special-section {
  background: #fff;
  padding: 80px 40px;
  font-family: "Poppins", sans-serif;
}

.special-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

/* Left Image Section */
.left-images {
  flex: 1 1 40%;
  text-align: center;
}

.left-images h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 40px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.image-stack img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.image-stack img:hover {
  transform: scale(1.05);
}

.middle-img {
  position: relative;
  left: 60px;
  top: -40px;
  z-index: 2;
}

/* Right Cards Section */
.right-cards {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.cardBox {
  background: #f9fbfd;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cardBox:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cardBox .icon {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.cardBox h3 {
  color: #002b5b;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cardBox p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .special-container {
    flex-direction: column;
    align-items: center;
  }

  .left-images {
    order: 1;
  }

  .right-cards {
    order: 2;
  }

  .middle-img {
    position: static;
  }
}

/* ===== CLIENT SECTION ===== */
  .testimonial-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: "Poppins", sans-serif;
  }

  .testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }

  .testimonial-left {
    flex: 1;
    position: relative;
  }

  .testimonial-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    position: relative;
  }

  .testimonial-title::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 160px;
    height: 60px;
    background: #dbe7f5;
    border-radius: 50%;
    z-index: -1;
  }

  .testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 220px;
  }

  .testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-in-out;
  }

  .testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
  }

  .stars {
    color: #f4c430;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .testimonial-card p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .testimonial-card h3 {
    color: #004b91;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
  }

  .testimonial-card .role {
    color: #777;
    font-size: 0.9rem;
  }

  .testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .dot.active {
    background: #004b91;
  }

  .testimonial-right {
   
    display: flex;
    justify-content: center;
  }

  .testimonial-right img {
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 900px) {
    .testimonial-container {
      flex-direction: column;
      text-align: center;
    }
    .testimonial-right {
      order: -1;
    }
  }
   .country-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 80px auto;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
  }

  .flags {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .flags img {
    width: 280px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .flags img:hover {
    transform: scale(1.05);
  }

  /* Logo Slider Styles */
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .slide-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
  }

  .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
  }

  .slide img:hover {
    transform: scale(1.1);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 6));
    }
  }

  @media (max-width: 768px) {
    .flags img {
      width: 200px;
    }

    .slide img {
      height: 50px;
    }

    .section-title {
      font-size: 1.6rem;
    }
  }
/* ===== Contact Section ===== */
.contact-section {
  background-color: #cfe0ed;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* ===== Container ===== */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  width: 90%;
  max-width: 1000px;
}

/* ===== Left: Form ===== */
.contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0070ba;
}

/* ===== Submit Button ===== */
.contact-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #222;
}

/* ===== Right: Info ===== */
.contact-info {
  flex: 0.9;
  min-width: 280px;
}

.contact-info h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1rem;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-info h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #000;
}

.contact-info a {
  color: #0070ba;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .contact-info h1 {
    font-size: 1.8rem;
  }

  .contact-form button {
    width: 100%;
  }
}


    /* ===== FOOTER BASE ===== */
  .footer {
    background-color: #0056b3;
    color: #fff;
    padding: 60px 10%;
    font-family: "Poppins", sans-serif;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-col {
    flex: 1;
    min-width: 230px;
  }

  /* ===== COMPANY SECTION ===== */
  .footer h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-socials a {
    color: #fff;
    background: transparent;
    margin-right: 10px;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
  }

  .footer-socials a:hover {
    color: #ffd700;
  }

  .registered {
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.9rem;
  }

  .footer-logos img {
    height: 45px;
    margin: 10px 15px 0 0;
    object-fit: contain;
    vertical-align: middle;
  }

  /* ===== LINKS SECTION ===== */
  .footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
  }

  .footer-col ul li a:hover {
    color: #ffd700;
  }

  /* ===== CONTACT INFO ===== */
  .contact p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact i {
    margin-right: 8px;
  }

  .whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
  }

  .whatsapp-btn:hover {
    background-color: #20b858;
  }

  /* ===== FOOTER BOTTOM ===== */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
  }

  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
  }

  .footer-links a:hover {
    color: #ffd700;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }

    .footer-logos img {
      height: 35px;
    }
  }
 .supportEmail{
  color: white;
 }
