/* ====== General Reset ====== */
* {
  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-color: #33b2ff;
        color: #33b2ff;
        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;
    }
}


/* =============================
   HERO SECTION (Updated Scoped)
============================= */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Video */
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content Wrapper */
.hero .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  max-width: 1300px;
  color: #fff;
}

/* Individual Slide */
.hero .slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff;
}

.hero .slide.active {
  display: flex;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left Text Content */
.hero .content {
  flex: 1.1;
  padding-right: 60px;
}

/* Right Image Section */
.hero .image {
  position: relative;
  flex: 0.9;
  text-align: center;
}

.hero .image img {
  width: 700px;
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Price Tag */
.hero .price-tag {
  position: absolute;
  top: 10%;
  right: 60px;
  background: #33b2ff;
  color: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.hero .price-tag span {
  font-size: 22px;
  font-weight: 700;
}

/* Text Styling */
.hero .badge {
  background: #33b2ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Headings */
.hero h2, 
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.hero h1 span,
.hero h2 span {
  color: #33b2ff;
}

/* Paragraphs */
.hero p {
  color: #eaeaea;
  margin: 15px 0 25px;
  line-height: 1.6;
  max-width: 520px;
}

/* Buttons */
.hero .buttons {
  display: flex;
  gap: 15px;
}

.hero .btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}

.hero .btn-blue { background: #33b2ff; }
.hero .btn-blue:hover { background: #1e90ff; }

.hero .btn-red { background: #f04b4b; }
.hero .btn-red:hover { background: #c73b3b; }

/* Navigation Arrows */
.hero .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 18px;
  transition: all 0.3s;
}

.hero .nav-btn:hover {
  background: #33b2ff;
  color: #fff;
}

.hero .prev { left: 30px; }
.hero .next { right: 30px; }


body.dark-mode .hero .hero-video {
  filter: brightness(60%);
}


/* 🔹 Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 15px;
  }

  .hero .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero .slide.active {
    flex-direction: column;
  }

  .hero .content {
    flex: none;
    padding: 0;
  }

  .hero .image {
    flex: none;
    margin-top: 25px;
  }

  .hero .image img {
    width: 350px;
    max-width: 90%;
  }

  .hero h1, .hero h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
    margin: 10px auto 25px;
    max-width: 95%;
  }

  /* ✅ Center buttons on mobile */
  .hero .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
  }

  .hero .btn {
    width: 180px;
    text-align: center;
    margin: 0; /* remove side margins */
  }

  .hero .price-tag {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 20px;
    font-size: 12px;
  }

  .hero .price-tag span {
    font-size: 16px;
  }

  .hero .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .hero .prev { left: 10px; }
  .hero .next { right: 10px; }
}

/* 🔹 Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero {
    height: auto;
    padding: 50px 10px;
  }

  .hero .content {
    padding: 0;
  }

  .hero h1, .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 13px;
  }

  /* ✅ Center buttons on very small screens */
  .hero .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
  }

  .hero .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 170px;
    margin: 0;
    text-align: center;
  }

  .hero .image img {
    width: 280px;
  }

  .hero .price-tag {
    width: 60px;
    height: 60px;
    top: 8%;
    right: 10px;
    font-size: 11px;
  }

  .hero .price-tag span {
    font-size: 14px;
  }

  .hero .nav-btn {
    display: none; /* Hide navigation arrows on very small screens */
  }
}

    /* Title with underline */
 .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  margin-left: 10px; /* small offset from left edge */
}

    .section-title::after {
      content: "";
      display: block;
      width: 70px;
      height: 3px;
      background: #33b2ff;
      border-radius: 2px;
    }

    /* Grid layout */
    .categories {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
    }

    /* Category Card */
    .category-card {
      position: relative;
      background: linear-gradient(135deg, #eaf6ff 0%, #baf0ff 100%);
      border-radius: 45% 55% 55% 45% / 55% 55% 55% 55%;
      padding: 22px 10px;
      border: 2px solid transparent;
      transition: all 0.4s ease;
      overflow: hidden;
      cursor: pointer;
    }

    /* White arc (inner half-circle) */
    .category-card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      background: #fff;
      border-radius: 100% 0 0 100% / 60% 0 0 60%;
      transition: all 0.4s ease;
    }

    /* Icon */
    .icon {
      font-size: 1.6rem;
      color: #33b2ff;
      position: relative;
      z-index: 2;
      margin-bottom: 8px;
    }

    /* Text */
    .category-card h3 {
      font-size: 0.9rem;
      font-weight: 600;
      color: #333;
      position: relative;
      z-index: 2;
      margin-bottom: 5px;
    }

    .category-card p {
      font-size: 0.75rem;
      color: #33b2ff;
      position: relative;
      z-index: 2;
    }

    /* Hover Effects */
    .category-card:hover {
      border-color: #33b2ff;
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(51, 178, 255, 0.25);
    }

    .category-card:hover::before {
      transform: translateX(6px);
    }


    /* ===== DARK MODE FOR CATEGORY SECTION ===== */
body.dark-mode .section-title {
  color: #f1f1f1;
}

body.dark-mode .section-title::after {
  background: #66b3ff;
}

body.dark-mode .categories {
  background: transparent;
}

body.dark-mode .category-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-color: #333;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
}

body.dark-mode .category-card::before {
  background: #2d2d2d;
}

body.dark-mode .icon {
  color: #66b3ff;
}

body.dark-mode .category-card h3 {
  color: #e5e5e5;
}

body.dark-mode .category-card p {
  color: #99d6ff;
}

body.dark-mode .category-card:hover {
  border-color: #66b3ff;
  box-shadow: 0 6px 14px rgba(102, 179, 255, 0.25);
}

body.dark-mode .category-card:hover::before {
  background: #333;
}


    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .categories {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    @media (max-width: 992px) {
      .categories {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 768px) {
      .categories {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 480px) {
      .categories {
        grid-template-columns: repeat(2, 1fr);
      }

      
  .section-title {
    font-size: 1.3rem;
    text-align: center;
    margin: 0 auto 25px;
    display: block;
  }

  .section-title::after {
    margin: 6px auto 0;
  }
    }


     .sale-section {
      padding: 60px 80px;
    }

    .sale-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    /* Each Card */
    .sale-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      color: #000;
      height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 30px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .sale-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Label */
    .sale-label {
      display: inline-block;
      background: #33b2ff;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    /* Title */
    .sale-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    /* Text Link */
    .sale-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: #0056b3;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      text-decoration: none;
    }

    .sale-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 100%;
      height: 2px;
      background: #0056b3;
      transition: 0.3s;
    }

    .sale-link:hover::after {
      width: 0%;
      left: 50%;
    }

    /* Card Backgrounds */
    .sale1 {
      background-image: url("Images/travel.webp");
    }

    .sale2 {
      background-image: url("Images/headphone.webp");
    }

    .sale3 {
      background-image: url("Images/shoe1.webp");
    }

    /* Optional Gradient Overlay */
    .sale-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.85) 40%, transparent);
    }

    /* Keep Text Above Overlay */
    .sale-content {
      position: relative;
      z-index: 2;
    }


    /* ===== DARK MODE FOR SALE SECTION ===== */
body.dark-mode .sale-section {
  background: #121212;
  color: #f5f5f5;
}

body.dark-mode .section-title {
  color: #eaeaea;
}

body.dark-mode .sale-card {
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.08);
}

body.dark-mode .sale-card::before {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 50%, transparent);
}

body.dark-mode .sale-label {
  background: #66b3ff;
  color: #000;
}

body.dark-mode .sale-card h3 {
  color: #f1f1f1;
}

body.dark-mode .sale-link {
  color: #66b3ff;
}

body.dark-mode .sale-link::after {
  background: #66b3ff;
}

body.dark-mode .sale-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(102, 179, 255, 0.25);
}


    /* Responsive */
    @media (max-width: 992px) {
      .sale-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .sale-cards {
        grid-template-columns: 1fr;
      }
    }

    .trending-section {
  padding: 40px;
  background: #fff;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  margin-left: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #33b2ff;
  border-radius: 3px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.product-card {
  position: relative;
  background: linear-gradient(to bottom, #d4fcffec, #a3cee8ea);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  box-shadow: 0 8px 18px rgba(0, 123, 255, 0.2);
  border: 1px solid #33b2ff;
}

.product-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
}

.product-card h3 {
  font-size: 1rem;
  margin: 10px 0;
  color: #333;
}

.stars {
  color: #ffb400;
  font-size: 0.9rem;
}

.badge1 {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #33b2ff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
}

.badge1.hot {
  background: #007bff;
}

.badge1.sale {
  background: #ffb400;
}

.badge1.stock {
  background: #ff4d4d;
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -8px; /* moves upward */
}

.price {
  font-size: 1rem;
  font-weight: 700;
  color: #ff4d4d;
}

.old-price {
  text-decoration: line-through;
  font-size: 0.9rem;
  color: #888;
  margin-right: 5px;
}

.cart-btn {
  background: #33b2ff;
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-btn:hover {
  background: #0099ff;
}

.cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ===== DARK MODE FOR TRENDING SECTION ===== */
body.dark-mode .trending-section {
  background: #121212;
  color: #f5f5f5;
}

body.dark-mode .section-title {
  color: #eaeaea;
}

body.dark-mode .section-title::after {
  background: #66b3ff;
}

body.dark-mode .product-card {
  background: linear-gradient(to bottom, #1e1e1e, #2b2b2b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

body.dark-mode .product-card:hover {
  box-shadow: 0 8px 18px rgba(102, 179, 255, 0.25);
  border-color: #66b3ff;
}

body.dark-mode .product-card h3 {
  color: #f1f1f1;
}

body.dark-mode .stars {
  color: #ffd700;
}

body.dark-mode .badge1 {
  color: #000;
}

body.dark-mode .badge1.hot {
  background: #66b3ff;
}

body.dark-mode .badge1.sale {
  background: #ffd966;
}

body.dark-mode .badge1.stock {
  background: #ff6666;
}

body.dark-mode .price {
  color: #ff6666;
}

body.dark-mode .old-price {
  color: #aaa;
}

body.dark-mode .cart-btn {
  background: #66b3ff;
  color: #000;
}

body.dark-mode .cart-btn:hover {
  background: #3399ff;
}

body.dark-mode .cart-btn:disabled {
  background: #555;
  color: #999;
}


.service-banner {
  background: linear-gradient(135deg, #0d3a69, #133b68);
  border-radius: 20px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  color: #fff;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 220px;
  flex: 1;
}

.icon-box {
  background: #33b2ff;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #33b2ff;
  clip-path: path("M0,0 Q60,20 60,60 Q20,60 0,40 Z");
  border-radius: 50% 50% 0 50%;
  z-index: -1;
}

.service-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.service-item p {
  font-size: 0.9rem;
  color: #d9e6f7;
  margin: 0;
}

.divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

.popular-items {
  padding: 70px 80px;
  background: #f8f9fc;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.popular-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.popular-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #33b2ff;
  border-radius: 2px;
}

.view-all {
  color: #33b2ff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.view-all:hover {
  color: #0078c9;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-tabs button {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tabs button.active,
.category-tabs button:hover {
  background: #33b2ff;
  color: #fff;
  border-color: #33b2ff;
}

/* Layout */
.popular-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.promo-image {
  flex: 1;
}

.promo-image img {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Product Grid */
.products-grid {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-section {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.product-section.active {
  display: grid;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  border: 1px solid #33b2ff;
}



/* Product Image */
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Title */
.product-card h4 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Stars */
.stars {
  color: #ffc107;
  margin-bottom: 10px;
}

/* Price + Cart Button */
.price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.price {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.price strong {
  color: #33b2ff;
}

.price del {
  color: #999;
  font-size: 0.9rem;
  margin-right: 5px;
}

.price-cart button {
  background: #33b2ff;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.price-cart button:hover {
  background: #0078c9;
}

/* ===== DARK MODE FOR POPULAR ITEMS SECTION ===== */
body.dark-mode .popular-items {
  background: #121212;
  color: #eaeaea;
}

body.dark-mode .popular-header h2 {
  color: #f5f5f5;
}

body.dark-mode .popular-header h2::after {
  background: #66b3ff;
}

body.dark-mode .view-all {
  color: #66b3ff;
}

body.dark-mode .view-all:hover {
  color: #3399ff;
}

body.dark-mode .category-tabs button {
  background: #1e1e1e;
  border: 1px solid #333;
  color: #ccc;
}

body.dark-mode .category-tabs button.active,
body.dark-mode .category-tabs button:hover {
  background: #66b3ff;
  color: #000;
  border-color: #66b3ff;
}

body.dark-mode .promo-image img {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
  filter: brightness(0.9);
}

body.dark-mode .product-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f1f1;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

body.dark-mode .product-card:hover {
  transform: translateY(-5px);
  border-color: #66b3ff;
  box-shadow: 0 8px 16px rgba(102, 179, 255, 0.25);
}

body.dark-mode .product-card h4 {
  color: #f5f5f5;
}

body.dark-mode .stars {
  color: #ffd700;
}

body.dark-mode .price {
  color: #f1f1f1;
}

body.dark-mode .price strong {
  color: #66b3ff;
}

body.dark-mode .price del {
  color: #aaa;
}

body.dark-mode .price-cart button {
  background: #66b3ff;
  color: #000;
}

body.dark-mode .price-cart button:hover {
  background: #3399ff;
}


/* Responsive */
@media (max-width: 992px) {
  .popular-content {
    flex-direction: column;
  }

  .promo-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .product-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .popular-items {
    padding: 50px 30px;
  }

  .category-tabs {
    justify-content: center;
  }
}


.popular-brands {
  padding: 70px 80px;
  background-color: #fff;
  overflow: hidden;
}

.brands-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.brands-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0d2a4a;
  position: relative;
}

.brands-header h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 3px;
  background-color: #33b2ff;
  border-radius: 3px;
}

.brands-header .view-all {
  color: #33b2ff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.brands-header .view-all i {
  margin-left: 5px;
}

/* Continuous scroll animation */
.brand-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: calc(200px * 12);
  animation: scrollBrands 25s linear infinite;
}

.brand-card {
  flex: 0 0 200px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.brand-card:hover {
  background-color: #f0f8ff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.brand-card img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
}

/* Keyframes for continuous scrolling */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ===== DARK MODE FOR POPULAR BRANDS SECTION ===== */
body.dark-mode .popular-brands {
  background-color: #121212;
  color: #eaeaea;
}

body.dark-mode .brands-header h2 {
  color: #f5f5f5;
}

body.dark-mode .brands-header h2::after {
  background-color: #66b3ff;
}

body.dark-mode .brands-header .view-all {
  color: #66b3ff;
}

body.dark-mode .brands-header .view-all:hover {
  color: #3399ff;
}





/* 📱 Responsive Media Queries */
@media (max-width: 1024px) {
  .popular-brands {
    padding: 60px 60px;
  }

  .brands-header h2 {
    font-size: 26px;
  }

  .brand-card {
    flex: 0 0 180px;
    height: 90px;
  }

  .brand-track {
    width: calc(180px * 12);
    animation-duration: 28s; /* slightly slower */
  }
}

@media (max-width: 768px) {
  .popular-brands {
    padding: 50px 40px;
  }

  .brands-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brands-header h2 {
    font-size: 22px;
  }

  .brands-header .view-all {
    font-size: 14px;
  }

  .brand-card {
    flex: 0 0 150px;
    height: 80px;
    margin-right: 15px;
  }

  .brand-track {
    width: calc(150px * 12);
    animation-duration: 30s;
  }
}

@media (max-width: 576px) {
  .popular-brands {
    padding: 40px 25px;
  }

  .brands-header {
    text-align: center;
    align-items: center;
  }

  .brands-header h2 {
    font-size: 20px;
  }

  .brands-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .brands-header .view-all {
    font-size: 13px;
  }

  .brand-card {
    flex: 0 0 120px;
    height: 70px;
    margin-right: 12px;
  }

  .brand-card img {
    max-width: 75%;
    max-height: 65%;
  }

  .brand-track {
    width: calc(120px * 12);
    animation-duration: 32s;
  }
}

@media (max-width: 400px) {
  .popular-brands {
    padding: 35px 15px;
  }

  .brands-header h2 {
    font-size: 18px;
  }

  .brand-card {
    flex: 0 0 100px;
    height: 65px;
    margin-right: 10px;
  }

  .brand-track {
    width: calc(100px * 12);
    animation-duration: 34s;
  }
}



.mega-collections {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: url('Images/collection.webp')
              no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Overlay (optional light tint for clarity) */
.mega-collections::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  z-index: 1;
}

.sale-content h4 {
  color: #0d2a4a;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sale-content h1 {
  color: #002e63;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
}

.outlet-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: fit-content;
}

.outlet-text::before,
.outlet-text::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000;
  margin: 0 10px;
}

.outlet-text span {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.shop-btn {
  background-color: #33b2ff;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.shop-btn:hover {
  background-color: #0d8ae5;
}

/* === Dark Mode Styles === */

body.dark-mode .mega-collections::before {
  background: rgba(0, 0, 0, 0.6);
}

/* Text Colors */
body.dark-mode .sale-content h4 {
  color: #ffffff;
}

body.dark-mode .sale-content h1 {
  color: #15bdff;
}

body.dark-mode .outlet-text::before,
body.dark-mode .outlet-text::after {
  background-color: #ffffff;
}

body.dark-mode .outlet-text span {
  color: #ffffff;
}


/* 📱 Responsive Media Queries */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .mega-collections {
    height: 260px;
    border-radius: 14px;
  }

  .sale-content h4 {
    font-size: 18px;
  }

  .sale-content h1 {
    font-size: 32px;
  }

  .outlet-text span {
    font-size: 16px;
  }

  .outlet-text::before,
  .outlet-text::after {
    width: 50px;
  }

  .shop-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .mega-collections {
    height: 240px;
    border-radius: 12px;
    padding: 0 20px;
  }

  .sale-content h4 {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .sale-content h1 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .outlet-text {
    margin-bottom: 15px;
  }

  .outlet-text::before,
  .outlet-text::after {
    width: 40px;
  }

  .outlet-text span {
    font-size: 15px;
  }

  .shop-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  .mega-collections {
    height: 220px;
    border-radius: 10px;
    padding: 0 15px;
    background-position: center;
  }

  .sale-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .sale-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .outlet-text {
    flex-direction: row;
    margin-bottom: 12px;
  }

  .outlet-text::before,
  .outlet-text::after {
    width: 30px;
    height: 1.5px;
  }

  .outlet-text span {
    font-size: 14px;
  }

  .shop-btn {
    padding: 9px 20px;
    font-size: 13px;
  }
}

/* Very Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .mega-collections {
    height: 200px;
    border-radius: 8px;
  }

  .sale-content h4 {
    font-size: 14px;
  }

  .sale-content h1 {
    font-size: 20px;
  }

  .outlet-text span {
    font-size: 13px;
  }

  .outlet-text::before,
  .outlet-text::after {
    width: 25px;
  }

  .shop-btn {
    padding: 8px 18px;
    font-size: 12.5px;
  }
}


.three-column-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 60px 80px;
  background: #f9fbff;
  font-family: 'Poppins', sans-serif;
}

.product-box {
  background: #fff;
  border: 1px solid #e0e6f1;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  position: relative;
}

.underline {
  width: 60px;
  height: 3px;
  background: #33b2ff;
  border-radius: 2px;
  margin-bottom: 25px;
}

.product-item {
  background: #eef7ff;
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.product-item:hover {
  background: #e0f3ff;
  border: 1px solid #33b2ff;
}

.product-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-right: 15px;
}

.details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.stars {
  color: #ffb400;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.details p {
  font-size: 0.9rem;
  margin: 0;
}

.details del {
  color: #888;
  margin-right: 5px;
}

.price {
  color: #e63946;
  font-weight: 600;
}

.cart-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #33b2ff;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.cart-icon:hover {
  background: #0078c9;
}

/* === Dark Mode for Product Section === */
body.dark-mode .three-column-products {
  background: #0d1b2a;
}

body.dark-mode .product-box {
  background: #1b263b;
  border: 1px solid #2e3b52;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

body.dark-mode .product-box h3 {
  color: #e0e6f1;
}


body.dark-mode .product-item {
  background: #24344d;
  border: 1px solid #2e3b52;
}



body.dark-mode .details h4 {
  color: #ffffff;
}

body.dark-mode .details p {
  color: #cfd8e3;
}

body.dark-mode .details del {
  color: #999;
}

body.dark-mode .price {
  color: #ff7675;
}




@media (max-width: 992px) {
  .three-column-products {
    grid-template-columns: 1fr 1fr;
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .three-column-products {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}


.weekly-deal {
  background-color: #eaf7fd;
  padding: 60px 8%;
  position: relative;
  overflow: hidden;
}

.deal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.deal-content {
  flex: 1;
  max-width: 45%;
}

.deal-subtitle {
  color: #ff5e63;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.deal-title {
  font-size: 36px;
  color: #0d2a4a;
  font-weight: 700;
  margin-bottom: 15px;
}

.deal-desc {
  color: #455a64;
  line-height: 1.6;
  margin-bottom: 25px;
}

.deal-timer {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.time-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px 25px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.time-box h3 {
  color: #ff5e63;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.time-box span {
  font-size: 13px;
  color: #0d2a4a;
  letter-spacing: 1px;
}

.shop-btn {
  background-color: #ff5e63;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.shop-btn:hover {
  background-color: #ff4248;
}

.deal-image {
  position: relative;
  flex: 1;
  max-width: 45%;
  text-align: right;
}

.deal-image img {
  max-width: 80%;
  position: relative;
  z-index: 2;
}

.discount-badge {
  position: absolute;
  top: 15%;
  left: -15%;
  background: #ff5e63;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  z-index: 3;
}

.deal-watermark {
  position: absolute;
  margin-top: -370px;
  margin-left: 180px;
  font-size: 180px;
  color: rgba(0, 0, 0, 0.05);
  transform: rotate(-90deg);
  font-weight: 800;
  letter-spacing: 10px;
  z-index: 1;
}


/* === Dark Mode for Weekly Deal Section === */
body.dark-mode .weekly-deal {
  background-color: #0d1b2a;
  color: #e0e6f1;
}


body.dark-mode .deal-title {
  color: #ffffff;
}

body.dark-mode .deal-desc {
  color: #cfd8e3;
}

body.dark-mode .deal-timer {
  gap: 15px;
}

body.dark-mode .time-box {
  background: #1b263b;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  border: 1px solid #2e3b52;
}


body.dark-mode .time-box span {
  color: #e0e6f1;
}

body.dark-mode .discount-badge {
  color: #002b5c;
  box-shadow: 0 0 15px rgba(255,183,3,0.4);
}

body.dark-mode .deal-image img {
  filter: brightness(0.9);
}

body.dark-mode .deal-watermark {
  color: rgba(255,255,255,0.05);
}

/* 📱 Responsive Media Queries */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .weekly-deal {
    padding: 50px 6%;
  }

  .deal-title {
    font-size: 30px;
  }

  .deal-desc {
    font-size: 15px;
  }

  .time-box {
    padding: 12px 20px;
  }

  .time-box h3 {
    font-size: 28px;
  }

  .deal-image img {
    max-width: 85%;
  }

  .discount-badge {
    width: 90px;
    height: 90px;
    font-size: 20px;
    left: -10%;
  }

  .deal-watermark {
    font-size: 140px;
    margin-left: 140px;
    margin-top: -310px;
  }
}

/* Small Tablets & Large Phones (max-width: 768px) */
/* Tablets and below (max-width: 768px) */
@media (max-width: 768px) {
  .deal-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .deal-content, 
  .deal-image {
    max-width: 100%;
  }

  .deal-content {
    order: 2;
  }

  /* ✅ Center image properly */
  .deal-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
  }

  .deal-image img {
    max-width: 70%;
    height: auto;
  }

  .deal-title {
    font-size: 26px;
  }

  .deal-subtitle {
    font-size: 14px;
  }

  .deal-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .deal-timer {
    justify-content: center;
    gap: 10px;
  }

  .time-box {
    padding: 10px 18px;
  }

  .time-box h3 {
    font-size: 24px;
  }

  .time-box span {
    font-size: 12px;
  }

  .shop-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .discount-badge {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    font-size: 18px;
  }

  .deal-watermark {
    display: none; /* hide on smaller screens for clarity */
  }
}

/* Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  .weekly-deal {
    padding: 40px 20px;
  }

  .deal-title {
    font-size: 22px;
  }

  .deal-subtitle {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .deal-desc {
    font-size: 13px;
  }

  .deal-timer {
    gap: 8px;
  }

  .time-box {
    padding: 8px 14px;
    border-radius: 10px;
  }

  .time-box h3 {
    font-size: 20px;
  }

  .time-box span {
    font-size: 11px;
  }

  .shop-btn {
    padding: 9px 18px;
    font-size: 13px;
  }

  /* ✅ Keep image centered */
  .deal-image {
    justify-content: center;
    margin-bottom: 20px;
  }

  .deal-image img {
    max-width: 75%;
  }

  .discount-badge {
    width: 70px;
    height: 70px;
    font-size: 16px;
    top: 5%;
    left: 15%;
  }
}

/* Very Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .deal-title {
    font-size: 20px;
  }

  .deal-desc {
    font-size: 12.5px;
  }

  .time-box {
    padding: 7px 12px;
  }

  .time-box h3 {
    font-size: 18px;
  }

  .shop-btn {
    font-size: 12.5px;
    padding: 8px 16px;
  }

  .discount-badge {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
}


/* ===== Photo Gallery Section ===== */
.gallery-section {
  text-align: center;
  padding: 60px 5%;
  background: #fff;
}

 .gallery-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  margin-left: 10px; /* small offset from left edge */
}

    .gallery-section h2::after {
      content: "";
      display: block;
      width: 70px;
      height: 3px;
      background: #33b2ff;
      border-radius: 2px;
    }


.gallery-section h2 span {
  color: #33b2ff;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* === Dark Mode for Gallery Section === */
body.dark-mode .gallery-section {
  background: #0d1b2a;
  color: #e0e6f1;
}

body.dark-mode .gallery-section h2 {
  color: #ffffff;
}

body.dark-mode .gallery-section h2::after {
  background: #33b2ff;
}

body.dark-mode .gallery-section h2 span {
  color: #33b2ff;
}

body.dark-mode .gallery-grid img {
  border-radius: 20px;
  filter: brightness(0.85);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

body.dark-mode .gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(51, 178, 255, 0.3);
  filter: brightness(1);
}


/* Responsive Design */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }
}


.feedback-section {
  background: url('Images/testmonial.webp') no-repeat center center / cover;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.feedback-subtitle {
  color: #33b2ff;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feedback-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.feedback-title span {
  color: #33b2ff;
}

.feedback-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.feedback-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.feedback-card {
  background: #00245c;
  border-radius: 25px;
  margin: 0 15px;
  padding: 25px;
  width: 280px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: left;
  position: relative;
  color: #fff;
}

.feedback-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feedback-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #33b2ff;
  margin-right: 12px;
}

.feedback-header h4 {
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.feedback-header p {
  color: #33b2ff;
  font-size: 0.85rem;
  margin: 3px 0 0 0;
}

.feedback-text {
  font-size: 0.9rem;
  color: #d4d9f1;
  line-height: 1.5;
  min-height: 90px;
  margin-bottom: 40px;
}

.feedback-stars {
  color: #33b2ff;
  font-size: 1.2rem;
  position: absolute;
  bottom: 20px;
  left: 25px;
}

.feedback-quote {
  position: absolute;
  bottom: 15px;
  right: 25px;
  font-size: 4rem;
  color: rgba(26, 166, 241, 0.906);
  font-weight: bold;
  line-height: 0.5;
}

.feedback-dots {
  margin-top: 25px;
}

.feedback-dots .dot {
  height: 10px;
  width: 10px;
  background-color: #33b2ff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.feedback-dots .dot.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .feedback-card {
    width: 240px;
  }
}


.instagram-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.instagram-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b4c;
  margin-bottom: 30px;
}

.instagram-section h2 span {
  color: #33b2ff;
}

.instagram-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.insta-item {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.insta-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.insta-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  font-size: 40px;
  color: #33b2ff;
}


/* === Dark Mode for Instagram Section === */
body.dark-mode .instagram-section {
  background: #0d1b2a;
  color: #e0e6f1;
}

body.dark-mode .instagram-section h2 {
  color: #ffffff;
}

body.dark-mode .instagram-section h2 span {
  color: #33b2ff;
}

body.dark-mode .insta-item {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

body.dark-mode .insta-item img {
  filter: brightness(0.85);
  border-radius: 20px;
}

body.dark-mode .insta-item:hover img {
  filter: brightness(1);
}

body.dark-mode .overlay {
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .overlay i {
  color: #33b2ff;
}



/* Discount Section */
.discount-section {
  background: url('Images/discount_shopping.webp') center/cover no-repeat;
  border-radius: 20px;
  padding: 80px 20px;
  margin: 60px auto;
  max-width: 1000px;
  color: #fff;
  text-align: center;
  position: relative;
}

.discount-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

.discount-content {
  position: relative;
  z-index: 1;
}

.discount-section h2 {
  font-size: 28px;
  font-weight: 700;
}

.discount-section h2 span {
  color: #33b2ff;
}

.discount-section p {
  margin: 10px 0 20px;
  font-size: 16px;
  opacity: 0.9;
}

.subscribe-box {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 450px;
  width: 100%;
}

.subscribe-box input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 15px;
  outline: none;
  color: #333;
}

.subscribe-box button {
  background: #33b2ff;
  border: none;
  color: #fff;
  padding: 0 20px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #0d1b4c;
}

@media (max-width: 768px) {
  .discount-section {
    padding: 50px 15px;
    margin: 40px 10px;
    border-radius: 15px;
    background-position: center;
  }

  .discount-section h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .discount-section p {
    font-size: 14px;
    margin: 8px 0 18px;
  }

  .subscribe-box {
    flex-direction: column;
    border-radius: 12px;
    max-width: 100%;
    overflow: visible;
    background: transparent;
  }

  .subscribe-box input {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 10px;
    padding: 12px 15px;
    font-size: 14px;
  }

  .subscribe-box button {
    width: 100%;
    justify-content: center;
    border-radius: 30px;
    padding: 12px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .discount-section {
    padding: 40px 10px;
  }

  .discount-section h2 {
    font-size: 20px;
  }

  .discount-section p {
    font-size: 13px;
  }

  .subscribe-box input,
  .subscribe-box button {
    font-size: 13px;
    padding: 10px 12px;
  }
}


/* Instagram Section */
.instagram-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.instagram-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b4c;
  margin-bottom: 30px;
}

.instagram-section h2 span {
  color: #33b2ff;
}

.instagram-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.insta-item {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.insta-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.insta-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  font-size: 40px;
  color: #33b2ff;
}

/* Responsive */
@media (max-width: 768px) {
  .insta-item {
    width: 150px;
    height: 150px;
  }
  .discount-section {
    padding: 50px 15px;
  }
}

.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;
    }

.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;
  }
}


.chatbot-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* Floating Button */
.chatbot-icon {
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: floatUpDown 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.chatbot-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.chatbot-icon:hover {
  transform: scale(1.1);
}

/* ✨ Floating Animation Keyframes */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.chatbot-icon::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(51, 178, 255, 0.4);
  animation: pulse 2.5s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Chatbot Box */
.chatbot-box {
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 90px;
  right: 25px;
  overflow: hidden;
}

.chatbot-header {
  background: #33b2ff;
  color: white;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 16px;
}

.chatbot-header button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f8f9fb;
  font-size: 14px;
}

.chatbot-footer {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
}

.chatbot-footer input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
}

.chatbot-footer button {
  margin-left: 10px;
  padding: 8px 14px;
  background: #33b2ff;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
}

.bot-message, .user-message {
  margin: 8px 0;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  max-width: 80%;
}

.bot-message {
  background: #e8f4ff;
  color: #003366;
  align-self: flex-start;
}

.user-message {
  background: #33b2ff;
  color: white;
  align-self: flex-end;
}


/* 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; }
