* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  
}

.header {
  background: url('Images/background.webp') center/cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 40px;
  position: relative;
  color: #fff;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 160px;
  height: 50px;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  color: #007bff;
}

/* ===== Animated Zoom Text ===== */
.animated-banner {
  position: relative;
  width: 400px;
  text-align: center;
  overflow: hidden;
}

.zoom-text {
  font-size: 18px;
  font-weight: 600;
  color: #007bff;
  display: inline-block;
  animation: zoomInOut 2.5s ease-in-out infinite;
  white-space: nowrap;
}

.zoom-text i {
  margin-right: 8px;
  color: #007bff;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* ===== Right Icons ===== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

.icon-link {
  text-decoration: none;
  color:#333;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.icon-link:hover {
  color: #33b2ff;
}

.icon-link i {
  font-size: 20px;
  color: #33b2ff;
}

.count-badge {
  background: #33b2ff;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 3px 6px;
  margin-left: 4px;
}

.icon-wrapper {
  position: relative;
}

/* ===== Cart Dropdown ===== */
.dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 10px;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -10px;
  width: calc(100% + 20px);
  height: 25px;
  background: transparent;
  z-index: 5;
}

/* Dropdown items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
}

.dropdown-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.dropdown-info {
  flex: 1;
  min-width: 0;
  text-align: left;
  overflow: hidden;
}

.dropdown-info .name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-info .price {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-size: 14px;
  flex: 0 0 auto;
  margin-left: 8px;
  opacity: 0.95;
}

.dropdown-item:hover .remove-btn {
  opacity: 1;
}

.dark-mode-toggle {
  position: absolute;
  right:400px;
  top: 25px;
  cursor: pointer;
}

.dark-mode-toggle i {
  font-size: 22px;
  color: #33b2ff;
  transition: transform 0.3s ease, color 0.3s;
}

.dark-mode-toggle i:hover {
  transform: rotate(20deg);
  color: #ffce00;
}


/* ===== DARK MODE ===== */
body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark-mode .header {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .icon-link {
  color: #f1f1f1;
}

body.dark-mode .icon-link i {
  color: #66b3ff;
}

body.dark-mode .zoom-text,
body.dark-mode .zoom-text i,
body.dark-mode .brand {
  color: #66b3ff;
}

body.dark-mode .dropdown {
  background: #1f1f1f;
  border-color: #333;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

body.dark-mode .dropdown-info .name {
  color: #e5e5e5;
}

body.dark-mode .dropdown-info .price {
  color: #aaa;
}

body.dark-mode .remove-btn {
  color: #ff6b6b;
}

body.dark-mode .count-badge {
  background: #66b3ff;
  color: #fff;
}

body.dark-mode .dark-mode-toggle i {
  color: #08c8fd;
}


@media (max-width: 420px) {
  .dark-mode-toggle {
    position: absolute;
    top: 60px;
    right: 25px;
    z-index: 9999;
  }

  .dark-mode-toggle i {
    font-size: 20px;
  }
}

/* ✅ 2. Medium Devices (421px–600px) */
@media (min-width: 421px) and (max-width: 600px) {
  .dark-mode-toggle {
    position: absolute;
    top: 12px;       /* slightly higher */
    right: 100px;     /* more centered for medium phones */
    z-index: 999;
  }

  .dark-mode-toggle i {
    font-size: 21px;
  }
}

/* ✅ 3. Tablets (601px–768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .dark-mode-toggle {
    position: absolute;
    top: 20px;       /* closer to header */
    right: 120px;    /* pushed a bit left */
    z-index: 999;
  }

  .dark-mode-toggle i {
    font-size: 22px;
  }
}



/* ==========================
   📱 Mobile Responsive Styles (No Toggle)
   ========================== */
@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }


  /* 🔹 Logo adjustments */
  .logo img {
    width: 160px;
    height: auto;
  }

  /* 🔹 Animated banner (zoom text smaller and centered) */
  .animated-banner {
    display: block;
    width: 100%;
    text-align: center;
  }

  .zoom-text {
    font-size: 8px;
    font-weight: 600;
    color: #33b2ff;
    animation: zoomInOut 2.5s ease-in-out infinite;
    white-space: nowrap;
  }

  .zoom-text i {
    font-size: 15px;
    margin-right: 5px;
  }

  /* 🔹 Right side icons */
  .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .icon-link span {
    display: none; /* hide text under icons */
  }

  .icon-link i {
    font-size: 18px;
  }

  .count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 10px;
    padding: 2px 5px;
  }

  .icon-wrapper {
    position: relative;
  }

  /* 🔹 Dropdown repositioning */
  .dropdown {
    top: 40px;
    right: 0;
    width: 220px;
  }
}

/* Extra small devices (under 480px) */
@media (max-width: 480px) {
  .logo img {
    width: 140px;
  }

  .zoom-text {
    font-size: 12px;
    animation: none;
  }

  .icon-link i {
    font-size: 16px;
  }

  .header {
    padding: 8px 15px;
  }
}


/* ===== Navbar ===== */
.navbar {
      background: #002b5c;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      list-style: none;
      padding: 0 40px;
      margin: 0;
      width: 100%;
      max-width: 1200px;
      height: 55px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
    }

    .nav-container li {
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: center;
      position: relative;
    }

    .nav-container li a {
      color: #fff;
      text-decoration: none;
      padding: 0 8px;
      transition: 0.3s;
    }

    .nav-container li a:hover {
      color: #33b2ff;
    }

    /* 📞 Contact Info */
    .contact-info {
      font-weight: 600;
      background: linear-gradient(90deg, #33b2ff, #33b2ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: 50px;
      white-space: nowrap;
    }

    .contact-info i {
      color: #33b2ff;
      font-size: 16px;
    }

    .nav-container li.right {
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .nav-container li.right i {
      color: #33b2ff;
    }

    /* ===== Home Dropdown ===== */
    .home-dropdown .home-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #1a90d8;
      list-style: none;
      margin: 0;
      min-width: 83px;
      z-index: 999;
    }

    .home-dropdown .home-dropdown-menu li a {
      display: block;
      color: #fff;
      padding: 8px 15px;
      font-weight: 500;
    }

    .home-dropdown .home-dropdown-menu li a:hover {
      background: #33b2ff;
    }

    .home-dropdown:hover .home-dropdown-menu {
      display: block;
    }

    .home-dropdown .arrow {
      margin-left: 5px;
      cursor: pointer;
      font-size: 18px;
      color: #33b2ff;
    }

    /* ===== Hamburger ===== */
    .menu-toggle {
      display: none;
      position: absolute;
      left: 20px;
      color: #33b2ff;
      font-size: 26px;
      cursor: pointer;
      z-index: 1001;
    }

    /* ============================
       📱 Mobile Responsive Design
       ============================ */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-container {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #002b5c;
        width: 100%;
        position: absolute;
        top: 55px;
        left: 0;
        padding: 10px 0;
      }

      .nav-container.show {
        display: flex;
      }

      .nav-container li {
        width: 100%;
        padding: 12px 20px;
        background: #002b5c;
        color: white;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .nav-container li a {
        width: 100%;
        display: block;
      }

      /* Home dropdown for mobile */
           .home-dropdown .home-dropdown-menu {
        display: none;
        position: relative;
        background: #004b8d;
        width: 100%;
      margin-top: -48px;
      margin-left: -200px;
      }

      .home-dropdown .home-dropdown-menu li a {
        background-color: #33b2ff;
      }

      .home-dropdown.active .home-dropdown-menu {
        display: block;
      }

      /* Hide phone number duplicate */
      .contact-info {
        display: flex;
        color: white;
        justify-content: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Track My Order should be last */
      .nav-container li.right {
        width: 100%;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
          /* Move Dark Mode to LEFT on mobile */
.dark-mode-toggle {
  left: 20px;
  right: auto;
  position: absolute;
  z-index: 1002;
}

/* Move Hamburger to RIGHT on mobile */
.menu-toggle {
  right: 20px;
  left: auto;
  position: absolute;
  font-size: 26px;
  display: block;
  z-index: 1003;
}

    }

@media (max-width: 768px) {

  /* Center all nav links */
  .nav-container li {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .nav-container li a {
    width: 100%;
    justify-content: center;
    display: flex;
    text-align: center;
  }

  /* Home dropdown stays centered */
  .home-dropdown {
    width: 100%;
    text-align: center;
    position: relative;
  }

  /* Correct dropdown container */
  .home-dropdown .home-dropdown-menu {
    display: none;                   /* hidden by default */
    position: relative !important;   /* remove desktop absolute */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    background: #33b2ff;
    text-align: center;
  }

  /* Show dropdown on .active */
  .home-dropdown.active .home-dropdown-menu {
    display: block !important;
  }

  /* Dropdown items */
  .home-dropdown .home-dropdown-menu li {
    width: 100%;
    padding: 10px 0;
    justify-content: center;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .home-dropdown .home-dropdown-menu li:last-child {
    border-bottom: none;
  }

  /* Dropdown link alignment */
  .home-dropdown .home-dropdown-menu li a {
    width: 100%;
    justify-content: center;
    display: flex;
    color: #fff;
  }

  /* Fix arrow spacing */
  .home-dropdown .arrow {
    margin-left: 6px;
  }
}

@media (max-width: 768px) {

  /* CENTER ALL NAV LINKS */
  .nav-container li {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .nav-container li a {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  /* HOME DROPDOWN – CENTER FIX */
  .home-dropdown {
    width: 100%;
    text-align: center;
    position: relative;
  }

  /* DROPDOWN BOX MUST BE FULL WIDTH */
  .home-dropdown .home-dropdown-menu {
    display: none;
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #33b2ff;
    text-align: center;
  }

  /* SHOW DROPDOWN WHEN ACTIVE */
  .home-dropdown.active .home-dropdown-menu {
    display: block !important;
  }

  /* CENTER DROPDOWN ITEMS */
  .home-dropdown .home-dropdown-menu li {
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: center;
  }

  .home-dropdown .home-dropdown-menu li a {
    width: 100%;
    display: flex;
    justify-content: center;
    color: white;
  }

  /* FIX ARROW */
  .home-dropdown .arrow {
    margin-left: 6px;
  }
}

@media (max-width: 768px) {

  /* Center all nav links */
  .nav-container li {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .nav-container li a {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  /* Home dropdown wrapper */
  .home-dropdown {
    width: 100%;
    text-align: center;
    position: relative;
  }

  /* Dropdown menu centered and full width */
  .home-dropdown .home-dropdown-menu {
    display: none;
    position: relative;  
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #33b2ff;
    text-align: center;
  }

  /* Show dropdown ONLY when .active */
  .home-dropdown.active .home-dropdown-menu {
    display: block !important;
  }

  /* Dropdown items centered */
  .home-dropdown .home-dropdown-menu li {
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: center;
  }

  .home-dropdown .home-dropdown-menu li a {
    width: 100%;
    display: flex;
    justify-content: center;
    color: white;
  }

  /* Fix arrow */
  .home-dropdown .arrow {
    margin-left: 6px;
  }
}

/* ===============================
   MOBILE NAV FIX – FULLY CENTERED
=============================== */
@media (max-width: 768px) {

    /* Full width center for ALL nav items */
    #navMenu li,
    #navMenu li a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* HOME DROPDOWN WRAPPER (must be full width) */
    .home-dropdown {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
    }

    /* CENTER HOME TEXT + ARROW */
    .home-dropdown > a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 14px 0 !important;
        text-align: center !important;
    }

    /* FIX ARROW */
    .home-dropdown .arrow {
        margin-left: 6px !important;
        font-size: 18px;
    }

    /* DROPDOWN MENU BOX — FULL WIDTH CENTER */
    .home-dropdown .home-dropdown-menu {
        display: none;
        width: 100% !important;
        position: relative !important;
        left: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #33b2ff;
        text-align: center !important;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* SHOW WHEN ACTIVE */
    .home-dropdown.active .home-dropdown-menu {
        display: block !important;
    }

    /* CENTER EACH DROPDOWN ITEM */
    .home-dropdown .home-dropdown-menu li {
        width: 100% !important;
        padding: 20px 0 !important;
        display: flex !important;
        justify-content: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .home-dropdown .home-dropdown-menu li:last-child {
        border-bottom: none;
    }

    .home-dropdown .home-dropdown-menu li a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        color: #fff !important;
    }
}


@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }
}

@media (max-width: 768px) {

    /* FIX HOME BUTTON SHIFT */
    .home-dropdown {
        width: 100% !important;
        padding: 0 0 0 15px !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Ensure the anchor itself is centered */
    .home-dropdown > a {
        display: flex !important;
        width: auto !important;        /* IMPORTANT FIX */
        margin: 0 auto !important;     /* IMPORTANT FIX */
        padding: 12px 0 !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .home-dropdown .arrow {
        margin-left: 6px !important;
    }
}




.about-header {
  background: url('Images/about_back.webp') no-repeat center right/cover;
  background-color: #dff6ff; /* fallback color */
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 100px;
  font-family: 'Poppins', sans-serif;
  color: #003366;
  position: relative;
}

.about-content {
  z-index: 2;
}

.about-header h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-header p {
  font-size: 18px;
  font-weight: 500;
}

.about-header i {
  margin-right: 6px;
}

.about-header span {
  margin: 0 6px;
}

/* Optional overlay to make text readable */
.about-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

body.dark-mode .about-header {
  background: url('Images/about_back.webp') no-repeat center right/cover;
  background-color: #0d1b2a; /* darker fallback */
  color: #e6f1ff;
}

body.dark-mode .about-header::before {
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
}

body.dark-mode .about-header h1 {
  color: #33b2ff;
}

body.dark-mode .about-header p {
  color: #d0e3ff;
}


/* Responsive */
@media (max-width: 768px) {
  .about-header {
    padding: 0 30px;
    height: 200px;
    text-align: center;
    justify-content: center;
  }

  .about-header h1 {
    font-size: 28px;
  }

  .about-header p {
    font-size: 16px;
  }
}



.retail-loyalty {
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}

.retail-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.image-box {
  position: relative;
}

.image-box img {
  width: 600px;
  height: 350px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.slant-bg {
  position: absolute;
  margin-top:-50px;
  width: 300px;
  height: 300px;
  margin-left: 80px;
  background: #1ea1f2;
  border-radius: 20px;
  transform: rotate(3deg);
  z-index: 1;
}

.text-box {
  max-width: 600px;
}

.sub-title {
  color: #1ea1f2;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.text-box h2 {
  font-size: 36px;
  color: #001b48;
  margin-bottom: 15px;
  font-weight: 700;
}

.text-box h2 span {
  color: #1ea1f2;
}

.desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.levels {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.level {
  background: #ff6b6b;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255,107,107,0.3);
}

.level span {
  font-size: 22px;
}

.level p {
  margin: 0;
  font-size: 13px;
}

.join-btn {
  background-color: #1ea1f2;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.join-btn:hover {
  background-color: #0072e3;
}


/* 🌙 Dark Mode for Retail Loyalty Section */
body.dark-mode .retail-loyalty {
  background-color: #0d1b2a; /* deep navy background */
  color: #e6f1ff;
}

body.dark-mode .text-box h2 {
  color: #ffffff;
}

body.dark-mode .text-box h2 span {
  color: #33b2ff; /* glowing blue accent */
}

body.dark-mode .sub-title {
  color: #33b2ff;
}

body.dark-mode .desc {
  color: #cfd8e3;
}

/* Slanted background */
body.dark-mode .slant-bg {
  background: #133a5c; /* darker blue background */
}

/* Levels */
body.dark-mode .level {
  background: #ff6b6b;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Button */
body.dark-mode .join-btn {
  background-color: #33b2ff;
  color: #fff;
}

body.dark-mode .join-btn:hover {
  background-color: #0090ff;
}

/* Image overlay effect for better contrast */
body.dark-mode .image-box img {
  filter: brightness(0.85) contrast(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Smooth Transition for Dark Mode */
body, body.dark-mode * {
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}


/* ✅ Mobile Responsive (Tablets & Phones) */
@media (max-width: 768px) {
  .retail-loyalty {
    padding: 50px 20px;
    flex-direction: column;
  }

  .retail-container {
    flex-direction: column; /* Stack image and text vertically */
    gap: 40px;
  }

  .image-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .slant-bg {
    width: 200px;
    height: 200px;
    margin-left: 40px;
    margin-top: -30px;
  }

  .text-box {
    max-width: 100%;
    text-align: center;
  }

  .sub-title {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .text-box h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .levels {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .level {
    width: 80px;
    height: 80px;
  }

  .level span {
    font-size: 18px;
  }

  .level p {
    font-size: 12px;
  }

  .join-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* ✅ For very small devices (mobile < 480px) */
@media (max-width: 480px) {
  .text-box h2 {
    font-size: 22px;
  }

  .levels {
    gap: 10px;
  }

  .level {
    width: 70px;
    height: 70px;
  }

  .join-btn {
    width: 100%;
    padding: 12px;
  }
}


.why-choose-section {
      margin: 0 auto;
      padding: 80px 40px;
      background-color:#dff6ff;
      overflow: hidden;
    }

    /* Top Section */
    .why-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .why-text {
      flex: 1;
      min-width: 340px;
    }

    .why-text h5 {
      color: #33b2ff;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .why-text h2 {
      font-size: 34px;
      color: #03254c;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 15px;
    }

    .why-text p {
      color: #555;
      line-height: 1.7;
      max-width: 600px;
    }

    /* Image Area */
    .why-image {
      flex: 1;
      position: relative;
      min-width: 300px;
    }

    .why-image::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #33b2ff;
      border-radius: 180px 0 0 180px;
      top: 15px;
      left: 20px;
      transform: rotate(-2deg);
      z-index: 1;
    }

    .why-image img {
      position: relative;
      z-index: 2;
      border-radius: 180px 0 0 180px;
      width: 100%;
      height: 300px;
    }

    /* Features Section */
    .features {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 40px;
      gap: 25px;
    }

    .feature-box {
      background: #fff;
      border-radius: 40px;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 25px 30px;
      width: 31%;
      min-width: 280px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      background: #33b2ff;
      color: #fff;
      font-size: 30px;
      padding: 20px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .feature-text h4 {
      color: #03254c;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .feature-text p {
      color: #666;
      font-size: 14px;
      line-height: 1.6;
    }


    /* 🌙 Dark Mode for Why Choose Section */
body.dark-mode .why-choose-section {
  background-color: #0d1b2a; /* deep navy background */
  color: #e6f1ff;
}

/* Text Area */
body.dark-mode .why-text h5 {
  color: #33b2ff;
}

body.dark-mode .why-text h2 {
  color: #ffffff;
}

body.dark-mode .why-text p {
  color: #cfd8e3;
}

/* Image Area */
body.dark-mode .why-image::before {
  background-color: #133a5c; /* darker accent background */
}

body.dark-mode .why-image img {
  filter: brightness(0.85) contrast(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Features Section */
body.dark-mode .feature-box {
  background: #12263f; /* soft dark card background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

body.dark-mode .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(51, 178, 255, 0.2);
}

body.dark-mode .feature-icon {
  background: #33b2ff;
  color: #fff;
}

body.dark-mode .feature-text h4 {
  color: #ffffff;
}

body.dark-mode .feature-text p {
  color: #cfd8e3;
}

/* Smooth transition between themes */
body, body.dark-mode * {
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}


    
    /* ✅ Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
  .why-choose-section {
    padding: 60px 20px;
  }

  .why-top {
    flex-direction: column; /* Stack image and text vertically */
    text-align: center;
    gap: 40px;
  }

  .why-text h2 {
    font-size: 28px;
  }

  .why-text p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto;
  }

  .why-image img {
    width: 100%;
    height: auto;
    border-radius: 40px;
  }

  .why-image::before {
    display: none; /* Remove background shape for cleaner mobile layout */
  }

  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-box {
    width: 100%;
    max-width: 380px;
  }

  .feature-icon {
    font-size: 26px;
    padding: 15px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
  }
}

/* ✅ Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 15px;
  }

  .why-text h2 {
    font-size: 22px;
  }

  .why-text p {
    font-size: 14px;
  }

  .feature-box {
    padding: 20px;
    border-radius: 25px;
  }

  .feature-icon {
    font-size: 22px;
    padding: 12px;
  }
}


    .referral-section {
  position: relative;
  background-color: #033568;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.referral-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.referral-content h5 {
  color: #54b3ff;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.referral-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.referral-content h2 span {
  color: #49b2ff;
}

.referral-content p {
  font-size: 1rem;
  color: #dbe6f2;
  margin-bottom: 30px;
}

.referral-btn {
  display: inline-block;
  background-color: #49b2ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.referral-btn:hover {
  background-color: #1a8be6;
  transform: translateY(-3px);
}

.referral-btn i {
  margin-left: 6px;
}

/* Decorative Circles */
.circle {
  position: absolute;
  border: 20px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.circle-left {
  width: 250px;
  height: 250px;
  left: 80px;
  bottom: -60px;
}

.circle-right {
  width: 300px;
  height: 300px;
  right: 100px;
  top: -80px;
}


/* 🌙 Dark Mode for Referral Section */
body.dark-mode .referral-section {
  background-color: #001b33; /* deeper navy tone */
  color: #e6f1ff;
}

body.dark-mode .referral-content h5 {
  color: #33b2ff; /* bright blue accent */
}

body.dark-mode .referral-content h2 {
  color: #ffffff;
}

body.dark-mode .referral-content h2 span {
  color: #33b2ff;
}

body.dark-mode .referral-content p {
  color: #cfd8e3;
}

/* Button Styling */
body.dark-mode .referral-btn {
  background-color: #33b2ff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(51, 178, 255, 0.3);
}

body.dark-mode .referral-btn:hover {
  background-color: #1a8be6;
  transform: translateY(-3px);
}

/* Decorative Circles */
body.dark-mode .circle {
  border-color: rgba(255, 255, 255, 0.05);
  filter: brightness(0.8);
}

/* Smooth transitions for better UX */
body, body.dark-mode * {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, filter 0.4s ease;
}


/* ✅ Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
  .referral-section {
    padding: 60px 15px;
  }

  .referral-content h2 {
    font-size: 1.8rem;
  }

  .referral-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .referral-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .circle-left,
  .circle-right {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* ✅ For Small Phones (max-width: 600px) */
@media (max-width: 600px) {
  .referral-section {
    padding: 50px 10px;
  }

  .referral-content {
    max-width: 90%;
  }

  .referral-content h5 {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .referral-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .referral-content p {
    font-size: 0.9rem;
  }

  .referral-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  /* Hide large background circles for clean mobile look */
  .circle-left,
  .circle-right {
    display: none;
  }
}

/* ✅ For Extra Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .referral-section {
    padding: 40px 8px;
  }

  .referral-content h2 {
    font-size: 1.3rem;
  }

  .referral-content p {
    font-size: 0.85rem;
  }

  .referral-btn {
    width: 100%;
    max-width: 250px;
    display: inline-block;
  }
}


.affiliate-steps {
  text-align: center;
  padding: 80px 20px;
  background: #f9fcff;
}

.affiliate-header h5 {
  color: #2d8cff;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.affiliate-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a244d;
  margin-bottom: 15px;
}

.affiliate-header h2 span {
  color: #2d8cff;
}

.affiliate-header p {
  color: #6c7b8a;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 25px;
  text-align: left;
  flex: 1 1 250px;
  max-width: 270px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: #002c61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.step-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 28px;
  font-weight: 700;
  color: #a7d1ff;
  opacity: 0.6;
}

.step-card h3 {
  font-size: 1.1rem;
  color: #0a244d;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: #6c7b8a;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* 🌙 Dark Mode for Affiliate Steps Section */
body.dark-mode .affiliate-steps {
  background: #0b1a2b; /* Deep navy background */
  color: #e6f1ff;
}

body.dark-mode .affiliate-header h5 {
  color: #33b2ff; /* Bright accent blue */
}

body.dark-mode .affiliate-header h2 {
  color: #ffffff;
}

body.dark-mode .affiliate-header h2 span {
  color: #33b2ff;
}

body.dark-mode .affiliate-header p {
  color: #b0c4de; /* Soft gray-blue for readability */
}

/* Step Cards */
body.dark-mode .step-card {
  background: #102540; /* Slightly lighter navy for card contrast */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(51, 178, 255, 0.25);
}

/* Step Icon */
body.dark-mode .step-icon {
  background-color: #33b2ff;
  color: #fff;
}

/* Step Number */
body.dark-mode .step-number {
  color: #1e90ff;
  opacity: 0.8;
}

/* Text inside card */
body.dark-mode .step-card h3 {
  color: #ffffff;
}

body.dark-mode .step-card p {
  color: #b8c8d9;
}

/* Smooth transition for all */
body, body.dark-mode * {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}



.footer {
  position: relative;
  background: url('Images/footer.webp') no-repeat center/cover;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 80px 25px;
  overflow: hidden;
}

/* Blue overlay on top of image */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 28, 72, 0.7); /* Dark blue overlay (adjust opacity if needed) */
  z-index: 1;
}

/* Ensure footer content stays above overlay */
.footer * {
  position: relative;
  z-index: 2;
}


    .footer-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 40px;
    }

    /* ===== Column 1 ===== */
    .footer-logo {
      width: 150px;
      margin-bottom: 15px;
    }

    .footer p {
      font-size: 14px;
      color: #d7d7d7;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #d7d7d7;
    }

    .footer-contact i {
      background: #00aaff;
      color: #fff;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
      font-size: 14px;
    }

    /* ===== Headings ===== */
    .footer-col h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #fff;
      position: relative;
    }

    .footer-col h3::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #00aaff;
      margin-top: 5px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin: 8px 0;
    }

    .footer-col ul li a {
      color: #dcdcdc;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-col ul li a:hover {
      color: #00aaff;
    }

    /* ===== App Section ===== */
    .app-section p {
      font-size: 14px;
      color: #d7d7d7;
      margin-bottom: 15px;
    }

    .app-buttons {
      display: flex;
      gap: 5px;
      margin-bottom: 15px;
    }

    .app-buttons img {
      width: 120px;
      border-radius: 6px;
    }

    .payment-icons img {
      width: 150px;
      margin-right: 8px;
    }

    /* ===== Footer Bottom ===== */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      font-size: 14px;
    }

    .footer-bottom span {
      color: #00aaff;
      font-weight: 500;
    }

    .footer-social {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      transition: 0.3s;
    }

    .footer-social a:hover {
      background: #00aaff;
    }

    .footer-social p {
      margin: 0;
      color: #dcdcdc;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
      }

      .footer {
        padding: 40px 20px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }


.footer-truck {
  position: absolute;
  bottom: 70px;
  margin-left: 300px;
  width: 100%;
  height: 60px;
  overflow: visible;
  z-index: 3;
}

/* Truck icon */
.footer-truck i {
  position: absolute;
  font-size: 38px; /* slightly smaller */
  color: #33b2ff;
  animation: moveTruck 6s linear infinite;
  filter: drop-shadow(0 0 8px #33b2ff);
}

/* Text that follows truck */
.truck-text {
  position: absolute;
  font-size: 18px;
  font-weight: 600;
  color: #33b2ff;
  text-transform: uppercase;
  white-space: nowrap;
  left: -120px; /* moved closer to truck */
  top: 8px;
  filter: drop-shadow(0 0 8px #33b2ff);
  animation: moveTruck 6s linear infinite;
}

/* Glowing trail behind truck */
.footer-truck::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(51, 178, 255, 0.1) 0%,
    rgba(51, 178, 255, 0.6) 50%,
    rgba(51, 178, 255, 0.1) 100%
  );
  filter: blur(2px);
  animation: glowTrail 6s linear infinite;
}

/* Truck movement */
@keyframes moveTruck {
  0% {
    left: -100px;
    opacity: 1;
    transform: scaleX(1);
  }
  80% {
    left: calc(100% + 50px);
    opacity: 1;
    transform: scaleX(1);
  }
  81% {
    opacity: 0;
  }
  99% {
    left: -100px;
    opacity: 0;
  }
  100% {
    left: -100px;
    opacity: 1;
  }
}

/* Glowing trail movement */
@keyframes glowTrail {
  0% {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  20% {
    opacity: 1;
    transform: scaleX(1);
  }
  80% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
  }
}

/* ===== Responsive Footer - Mobile Devices ===== */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* ===== Footer Contact Section ===== */
  .footer-contact {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
  }

  .footer-contact li {
    font-size: 13px;
    margin-bottom: 8px;
    justify-content: center;
  }

  .footer-contact i {
    width: 26px;
    height: 26px;
    font-size: 12px;
    margin-right: 8px;
  }

  .footer-logo {
    margin: 0 auto 15px;
    width: 130px;
  }

  .footer p {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-col h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .app-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .app-buttons img {
    width: 100px;
  }

  .payment-icons img {
    width: 120px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-social {
    justify-content: center;
  }

  /* ===== Truck Animation Adjustments ===== */
  .footer-truck {
    bottom: 45px;
    margin-left: 0;
    width: 100%;
    height: 45px;
  }

  .footer-truck i {
    font-size: 28px;
    animation-duration: 7s;
  }

  .truck-text {
    font-size: 13px;
    top: 6px;
    left: -70px;
    animation-duration: 7s;
  }

  .footer-truck::before {
    top: 20px;
    height: 2px;
  }
}

/* ===== Extra Small Devices (under 480px) ===== */
@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-container {
    gap: 25px;
  }

  /* Smaller Contact Details */
  .footer-contact li {
    font-size: 12px;
  }

  .footer-contact i {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .footer p {
    font-size: 12px;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-truck i {
    font-size: 24px;
  }

  .truck-text {
    font-size: 12px;
    top: 3px;
  }
}

/* Default hidden before scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* When visible */
[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* 🔹 Bounce Animations */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes bounceInUp {
  0% { opacity: 0; transform: translateY(100px); }
  60% { opacity: 1; transform: translateY(-20px); }
  80% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}
@keyframes bounceInDown {
  0% { opacity: 0; transform: translateY(-100px); }
  60% { opacity: 1; transform: translateY(20px); }
  80% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes bounceInLeft {
  0% { opacity: 0; transform: translateX(-120px); }
  60% { opacity: 1; transform: translateX(25px); }
  80% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}
@keyframes bounceInRight {
  0% { opacity: 0; transform: translateX(120px); }
  60% { opacity: 1; transform: translateX(-25px); }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

/* Animation class applied dynamically */
.animate.bounceIn     { animation: bounceIn 1.5s ease both; }
.animate.bounceInUp   { animation: bounceInUp 1.5s ease both; }
.animate.bounceInDown { animation: bounceInDown 1.5s ease both; }
.animate.bounceInLeft { animation: bounceInLeft 1.5s ease both; }
.animate.bounceInRight{ animation: bounceInRight 1.5s ease both; }

