/* index hero section  */
.hero-banner-section {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.hero-banner-slider {
  height: 100%;
  position: relative;
}

.hero-banner-slide {
  display: none;
  background-size: cover;
  background-position: center;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}

.hero-banner-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  font-family: bold;
  justify-content: space-between;
  align-items: center;
  height: 80%;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  gap: 30px;
  flex-wrap: wrap;
}



.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow:
    2px 2px 0 #000,
    4px 4px 0 #333,
    6px 6px 6px rgba(0, 0, 0, 0.6);
}

.hero-text p {
  font-size: 2rem;
  font-weight: bold;
  text-shadow:
    2px 2px 0 #000,
    3px 3px 0 #333,
    5px 5px 6px rgba(0, 0, 0, 0.6);
}




/* Navigation Arrows */
.hero-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.hero-banner-arrow.prev {
  left: 20px;
}

.hero-banner-arrow.next {
  right: 20px;
}

.arrow-circle {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 50%;
}

/* Tablet View */
@media (max-width: 768px) {
  .hero-content {
    position: relative;
    /* flex-direction: column; */
    text-align: center;
      display: flex;
    font-family: bold;
    /* justify-content: space-between; */
    /* align-items: center; */
    /* height: 80%; */
    /* width: 90%; */
    max-width: 1200px;
    padding: 20px;
    top: 25%;
    border-radius: 20px;
    color: #fff;
    gap: 30px;
    flex-wrap: wrap;
  }

  .hero-banner-section {
    height: 60vh;
  }

  .hero-text h2 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-image {
    width: 100%;
    height: 250px;
  }

  .hero-banner-arrow {
    font-size: 1.5rem;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .hero-content {
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    bottom: 25%;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: center;
  }

  .hero-image {
    height: 50vh;
    width: 100%;
  }


  .arrow-circle {
    padding: 8px 12px;
  }
}


/* ======================================================================================== */
        /* ======================================================================================= */

        .elite-section-wrapper {
            background: #fff;
            padding: 10px;
            font-family: 'Segoe UI', sans-serif;
        }

        .elite-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 15px;
            max-width: 1200px;
            margin: auto;
            align-items: flex-start;
        }

        .elite-about {
            flex: 1 1 50%;
            color: #333;
        }

        .elite-about h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #111;
        }

        .elite-about p {
            font-size: 14.5px;
            margin-bottom: 16px;
            line-height: 1.6;
            color: #444;
        }

        .elite-highlight {
            background: #f9f9f9;
            border-left: 4px solid #800080;
            padding: 15px 20px;
            border-radius: 6px;
            margin-top: 20px;
        }

        .elite-highlight h3 {
            margin-bottom: 8px;
            color: #800080;
            font-weight: 600;
        }



        .elite-card {
            background: #fafafa;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px 15px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease;
        }

        .elite-card:hover {
            transform: translateY(-5px);
        }

        .elite-badge {
            position: absolute;
            top: -10px;
            left: 15px;
            background: #800080;
            color: #fff;
            font-size: 11px;
            padding: 2px 10px;
            border-radius: 4px;
            font-weight: bold;
        }

        .elite-card-content h3 {
            font-size: 16px;
            margin: 10px 0;
            color: #222;
        }

        .elite-card-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.4;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .elite-content-wrapper {
                flex-direction: column;
            }

        .elite-cards {
            flex: 1 1 45%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        }
        @media (min-width: 1024px){
                  .elite-cards {
            flex: 1 1 45%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
        }
        }

        @media (max-width: 480px) {

        .elite-cards {
            flex: 1 1 45%;
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 20px;
        }
        }
 /* ========================================================================        */
 /* category trophy  */
  .trophy-section {
            background-color: #fff;
            padding: 10px;
            text-align: center;
        }

        .trophy-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #222;
        }

        .trophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .trophy-card {
            background: #f9f9f9;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .trophy-image-wrapper {
            position: relative;
            overflow: hidden;
            background-color: #dad2d2;
            border-radius: 15px 15px 0 0;
        }

        .trophy-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .trophy-hover-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .trophy-hover-text span {
            font-size: 0.9rem;
            font-weight: 400;
        }

        .trophy-card:hover .trophy-image {
            transform: scale(1.1);
        }

        .trophy-card:hover .trophy-hover-text {
            opacity: 1;
        }
        .trophy-hover-text{
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
        }

        .trophy-details {
            padding: 20px;
            background: #dad2d2;
            text-align: left;
        }

        .trophy-name {
            font-size: 1.3rem;
            color: #222;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .trophy-description {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* ✅ Responsive Tweaks */
        @media (max-width: 768px) {
            .trophy-title {
                font-size: 2rem;
            }

            .trophy-name {
                font-size: 1.1rem;
            }

            .trophy-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .trophy-title {
                font-size: 1.8rem;
            }

            .trophy-details {
                padding: 15px;
                text-align: center;
            }

            .trophy-grid {
                grid-template-columns: 1fr;
            }
        }

/* ======================================================================         */
 /* video section  */
        .video-text-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            justify-content: flex-end;
            padding-right: 5%;
        }

        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin-bottom: 30px;
            object-fit: cover;
            z-index: 0;
        }

        /* Right side text container */
        .text-panel {
            position: relative;
            z-index: 2;
            width: 50%;
            padding: 40px;
            color: #fff;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
            box-sizing: border-box;
        }

        /* Headings */
        .vision-heading-main {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .vision-heading-sub {
            font-size: 20px;
            font-weight: 700;
            color: #ffccff;
            margin-bottom: 30px;
        }

        /* Step List */
        .vision-step-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .vision-step {
            margin-bottom: 20px;
        }

        .vision-step-title {
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            margin-bottom: 5px;
        }

        .vision-step-desc {
            font-size: 14px;
            color: #eaeaea;
            line-height: 1.5;
        }

        /* CTA Box */
        .vision-cta {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 20px;
            border-radius: 8px;
        }

        .vision-cta-message {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .vision-cta-subtext {
            font-size: 14px;
            color: #ddd;
            margin-bottom: 15px;
        }

        .vision-contact-btn {
            background-color: #fff;
            color: #800080;
            font-weight: bold;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .vision-contact-btn:hover {
            background-color: #ffccff;
            color: #000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-text-section {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            .text-panel {
                width: 100%;
                padding: 20px;
            }

            .vision-heading-main {
                font-size: 24px;
            }

            .vision-heading-sub {
                font-size: 18px;
            }
        }


/* ======================================================================================= */
/* New Arrival  */

/* Arrows */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(122, 30, 161, 0.6);
  border: none;
  color: white;
  font-size: 12px;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-arrow:hover {
  background-color: #9d3ad8;
}

.custom-arrow.left {
  left: 15px;
}

.custom-arrow.right {
  right: 15px;
}


.scroll-container {
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}


@media (max-width: 768px) {
  .custom-arrow {
    font-size: 18px;
    padding: 10px 14px;
  }
  

  .product-card {
    min-width: 200px !important;
  }
      .container, .container-md, .container-sm {
        max-width: 600px;
    }
}
@media (min-width: 1024px){
      .container, .container-lg, .container-md, .container-sm {
        max-width: 906px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
/* @media (max-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1227px;
    }
} */




        
/* ====================================================================================== */
/* PREMIUM PRODUCT  */
/* Universal Container Padding */
.scroll-wrapper {
  position: relative;
  padding:30px;
}
.py-5{
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}


.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}
.scroll-container::-webkit-scrollbar {
  display: none; 
}


.product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  min-width: 90vw;
  max-width: 90vw;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
@media (min-width: 576px) {
  .product-card {
    min-width: 270px;
    max-width: 270px;
  }
}
.product-card img {
  height: 150px;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}


.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.scroll-btn.left {
  left: 0;
}
.scroll-btn.right {
  right: 0;
}

@media (max-width: 768px) {
  .scroll-btn {
    font-size: 1.2rem;
    padding: 8px;
  }
}
/* ============================================================= */
/* express delivery  */
/* Scrollable Wrapper */
/* .product-scroll-wrapper {
  position: relative;
  padding: 0 30px;
}


.product-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-scroll-container::-webkit-scrollbar {
  display: none;
}


.product-scroll-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 90vw; 
  max-width: 90vw;
}
@media (min-width: 576px) {
  .product-scroll-card {
    width: 48vw;
    max-width: 48vw;
  }
}
@media (min-width: 768px) {
  .product-scroll-card {
    width: 32vw;
    max-width: 32vw;
  }
}
@media (min-width: 992px) {
  .product-scroll-card {
    width: 270px;
    max-width: 270px;
  }
}

.product-scroll-card img {
  height: 150px;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}


.product-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.product-scroll-btn.left {
  left: 0;
}
.product-scroll-btn.right {
  right: 0;
}
@media (max-width: 768px) {
  .product-scroll-btn {
    font-size: 1.2rem;
    padding: 8px;
  }
} */



  /* ============================================================ */
/* how it work  */
/* Wrapper */
.workflow-wrapper {
    padding:10px;
    text-align: center;
    gap: 10px;
}

/* Heading with purple lines */
.workflow-heading {
    color: #800080;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    display: inline-block;
    /* position: relative; */
}

/* .workflow-heading::before,
.workflow-heading::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #800080;
    position: absolute;
    top: 50%;
} */

.workflow-heading::before {
    left: -80px;
} 

.workflow-heading::after {
    right: -80px;
}

/* Track (container for steps) */
.workflow-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    position: relative;
    flex-wrap: wrap;
    gap: 30px; /* ✅ spacing between cards */
}

/* Line behind steps */
.workflow-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: #aaa;
    z-index: 0;
}

/* Individual card */
.workflow-step {
    position: relative;
    text-align: center;
    width: calc(20% - 24px); /* ✅ Equal size with spacing */
    min-width: 160px;
    height: 200px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hover effect */
.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Badge (step number) */
.workflow-badge {
    width: 40px;
    height: 40px;
    background-color: #555;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Title and Text */
.workflow-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.workflow-text {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    padding: 0 5px;
}

/* ✅ Tablet Responsive */
@media (max-width: 1024px) {
    .workflow-track {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .workflow-step {
        width: calc(45% - 20px);
    }

    .workflow-track::before {
        display: none;
    }
}

/* ✅ Mobile Responsive */
@media (max-width: 600px) {
    .workflow-step {
        width: 100%;
        margin-bottom: 20px;
    }

    .workflow-track {
        gap: 16px;
    }

    .workflow-badge {
        margin-bottom: 8px;
    }

    .workflow-heading {
        font-size: 22px;
    }

    .workflow-heading::before,
    .workflow-heading::after {
        width: 40px;
        left: -55px;
        right: -55px;
    }
}

        /* ======================================================================= */
        /* EXPRESS DELIVERY  */
      .express-section {
      padding: 20px;
      text-align: center;
    }

    .express-section h2 {
      font-size: 28px;
      color: #730f93;
      margin-bottom: 30px;
      position: relative;
    }

    .card-slider {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 20px 0;
    }

    .card-slider::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      flex: 0 0 auto;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 100%;
      padding: 15px;
      text-align: center;
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .product-card h4 {
      margin: 5px 0;
      font-size: 16px;
      font-weight: 600;
    }

    .product-card p {
      font-size: 14px;
      margin-bottom: 10px;
      color: #666;
    }

    .product-card button {
      background-color: #730f93;
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 20px;
      cursor: pointer;
    }

    .scroll-arrow {
      font-size: 24px;
      color: #730f93;
      cursor: pointer;
      margin: 0 10px;
    }

    .scroll-container {
      display: flex;
      align-items: center;
      /* justify-content: center; */
    }

    /* Responsive */
    @media (max-width: 768px) {
      .scroll-arrow {
        display: none;
      }
      /* .product-card {
        width: 100vw;
      } */
    }

   /* ================================================================ */
   /* FEATURES */
  .features-section-container {
  padding: 50px 20px;
  background: #f8f8f8;
}

.features-section-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.features-section-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1024px;
  margin: auto;
}

.features-section-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.features-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.features-section-icon {
  font-size: 40px;
  color: #7c4dff;
  margin-bottom: 20px;
}

.features-section-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.features-section-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}



        /* ===================================================================== */
        /* home map  */
        .contact-map-section {
            width: 100%;
            overflow: hidden;
        }

        .social-icons-bar {
            background-color: #333;
            color: white;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            padding: 12px 20px;
        }

        .social-icons-bar a {
            color: white;
            font-size: 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .social-icons-bar a i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .social-icons-bar a:hover {
            color: #ffe600;
        }

        .social-icons-bar a:hover i {
            transform: scale(1.3) rotate(8deg);
        }

        .map-frame-wrapper iframe {
            width: 100%;
            height: 450px;
            border: 0;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .social-icons-bar {
                gap: 20px;
                padding: 10px 15px;
            }
        }

        @media (max-width: 600px) {
            .social-icons-bar {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .social-icons-bar a {
                font-size: 14px;
            }

            .social-icons-bar a i {
                font-size: 16px;
            }

            .map-frame-wrapper iframe {
                height: 320px;
            }
        }
        