* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  
}

/* ====== Header ====== */
.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);
      }
    }

.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;
  }
}

    .cart-container {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    /* Cart Table */
    .cart-table {
      flex: 2;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    }

    .cart-table table {
      width: 100%;
      border-collapse: collapse;
    }

    .cart-table th, .cart-table td {
      text-align: left;
      padding: 12px;
      border-bottom: 1px solid #eee;
    }

    .cart-table th {
      color: #777;
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
    }

    .cart-table td img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 8px;
    }

    .product-name {
      font-weight: 600;
      color: #333;
    }

    .product-sub {
      font-size: 13px;
      color: #777;
    }

    .price {
      color: #333;
      font-weight: 500;
    }

    .qty-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .qty-controls button {
      background: #f1f3f6;
      border: none;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 16px;
      color: #333;
      transition: all 0.3s ease;
    }

    .qty-controls button:hover {
      background: #33b2ff;
      color: #fff;
    }

    .remove-btn {
      background: none;
      border: none;
      color: #f44336;
      font-size: 18px;
      cursor: pointer;
    }

    /* Coupon + Buttons */
    .cart-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 25px;
      align-items: center;
    }

    .continue-btn {
      padding: 10px 25px;
      background: #e8f4ff;
      color: #33b2ff;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .continue-btn:hover {
      background: #d4ecff;
    }

    /* Cart Summary */
    .cart-summary {
      flex: 1;
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
      height: fit-content;
    }

    .cart-summary h3 {
      font-size: 18px;
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
      color: #555;
      font-size: 14px;
    }

    .summary-total {
      font-weight: 600;
      font-size: 16px;
      color: #000;
      margin-top: 15px;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }

    .checkout-btn {
      display: block;
      text-align: center;
      width: 100%;
      background: #33b2ff;
      color: #fff;
      border: none;
      padding: 12px 0;
      border-radius: 30px;
      font-weight: 500;
      margin-top: 20px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .checkout-btn:hover {
      background: #0094e0;
    }


    /* 🌙 Dark Mode for Cart Page */
body.dark-mode .cart-container {
  color: #f0f0f0;
}

body.dark-mode .cart-table,
body.dark-mode .cart-summary {
  background: #1e1e1e;
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .cart-table th {
  color: #aaa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .cart-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .product-name {
  color: #fff;
}

body.dark-mode .product-sub {
  color: #bbb;
}

body.dark-mode .price {
  color: #33b2ff;
}

body.dark-mode .qty-controls button {
  background: #2c2c2c;
  color: #fff;
}

body.dark-mode .qty-controls button:hover {
  background: #33b2ff;
  color: #fff;
}

body.dark-mode .remove-btn {
  color: #ff5c5c;
}

body.dark-mode .continue-btn {
  background: #222;
  color: #33b2ff;
  border: 1px solid #33b2ff;
}

body.dark-mode .continue-btn:hover {
  background: #33b2ff;
  color: #fff;
}

body.dark-mode .cart-summary h3 {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

body.dark-mode .summary-row {
  color: #ccc;
}

body.dark-mode .summary-total {
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.dark-mode .checkout-btn {
  background: #33b2ff;
  color: #fff;
}

body.dark-mode .checkout-btn:hover {
  background: #0094e0;
}


    /* 📱 Tablet and Mobile Responsive */
@media (max-width: 992px) {
  .cart-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .cart-table,
  .cart-summary {
    width: 100%;
  }

  .cart-table table {
    font-size: 14px;
  }

  .cart-summary {
    margin-top: 10px;
  }

  .cart-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .continue-btn {
    width: 100%;
    text-align: center;
  }

  .checkout-btn {
    font-size: 15px;
    padding: 10px 0;
  }
}

/* 📱 Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
  .cart-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .cart-table th, .cart-table td {
    font-size: 13px;
    padding: 8px;
  }

  .cart-table td img {
    width: 60px;
    height: 60px;
  }

  .product-name {
    font-size: 14px;
  }

  .product-sub {
    font-size: 12px;
  }

  .qty-controls button {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .cart-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
  }

  .continue-btn {
    width: 100%;
    font-size: 14px;
  }

  .cart-summary {
    padding: 20px;
  }

  .summary-row {
    font-size: 13px;
  }

  .summary-total {
    font-size: 15px;
  }

  .checkout-btn {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* 📱 Extra Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .cart-table td img {
    width: 50px;
    height: 50px;
  }

  .cart-table th, .cart-table td {
    font-size: 12px;
  }

  .product-name {
    font-size: 13px;
  }

  .cart-summary h3 {
    font-size: 16px;
  }

  .checkout-btn {
    font-size: 13px;
    padding: 9px 0;
  }
}

    .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;
  }
}

