body {
  padding-top: 80px;
  /* prevent content hiding under navbar */
  font-family: 'Poppins', sans-serif;
}

.logo-slider img {
    object-fit: contain !important;
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* Transparent background for navbar */
.custom-navbar {
  background-color: white; /* Transparent black */
  backdrop-filter: blur(10px);         /* Optional: frosted glass effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}


/* Nav link styles */
.navbar-dark .navbar-nav .nav-link {
  color: black;
  position: relative;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #facc15;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #facc15;
  bottom: -4px;
  left: 0;
  transition: 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 100%;
}




.btn-warning {
  background-color: #facc15 !important;
  border: none;
}

.btn-warning:hover {
  background-color: #facc15 !important;
  color: #000;
}


/* slider start  */
/* Hero Slider Base */
#heroCarousel {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-1 {
  background-image: url('../img/Modern\ Cart\ –\ Modern\ India.png');
}

.slide-2 {
  background-image: url('../img/Buy\ Your\ Own\ Custom\ Cart\ –\ Designed\ Just\ for\ You!.png');
}

.slide-3 {
  background-image: url('../img/Visit\ &\ Experience\ Your\ Custom\ Cart\ Layout.jpg');
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 73, 73, 0.6);
  z-index: 1;
}

/* Text */
.hero-text {
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #facc15;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #eee;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

.hero-buttons .btn {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: scale(1.05);
}

/* about  */


.big-img {
  height: 290px;
  object-fit: cover;
  border-radius: 16px;
}

.about-section {
  background-color: #fef9f4;
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column;
  }

  .about-section .col-lg-6.d-flex {
    flex-direction: column;
  }

  .about-section .w-50 {
    width: 100% !important;
  }

  .big-img {
    height: auto;
  }
}



.about-section h2,
.about-section h4,
.about-section h5 {
  color: #111;
}

.about-section .highlight-box {
  background: linear-gradient(135deg, #facc15 0%, #fff8dc 100%);
  border: none;
  transition: transform 0.4s ease;
}

.about-section .highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-section img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-section .catalog-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.about-section .founder-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* counter  */
.cm-stats-section {
  font-family: 'Poppins', sans-serif;
  background: #fef9f4;
}

.stats-box {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}



/* feature-section    */
.feature-section {
  background: url('../img/enjoying-street-food-fest.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
}

.feature-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
}

.feature-section h2,
.feature-section p,
.feature-section li {
  font-family: 'Poppins', sans-serif;
}

.feature-section .btn-warning {
  background-color: #dc3545;
  border: none;
  color: #fff;
}

.feature-section .btn-warning:hover {
  background-color: #b82c3c;
}

@media (max-width: 768px) {
  .feature-section {
    background-attachment: scroll;
    background-size: cover;
    text-align: center;
  }

  .feature-section img {
    margin-top: 2rem;
  }
}

/* cartsmaker-services  */

.buy-btn {
      background-color: #facc15 !important;
      color: #000 !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
    }

    .buy-btn:hover {
      background-color: #e5b815 !important;
      color: #000 !important;
    }

/* Card Content */
.card-body {
  padding-top: 40px;
  /* space for icon */
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.card-text {
  font-size: 0.95rem;
  color: #666;
}



/* hero   */
.hero-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url('../img/homebg4.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 0;
  background-attachment: fixed;
  position: relative;
}

.hero-section .small-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #eee;
  position: relative;
}

.hero-section .small-text::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #dc3545;
  margin-left: 10px;
  vertical-align: middle;
  border-radius: 4px;
}

.hero-section h1 {
  line-height: 1.2;
}

.hero-section .btn-warning {
  background-color: #facc15 !important;
  color: #000;
  border: none;
  transition: 0.3s ease-in-out;
}

.hero-section .btn-warning:hover {
  background-color: #facc15 !important;
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* how it work  */
.how-it-works {
  background-color: #fef9f4;
  font-family: 'Poppins', sans-serif;
}

.step-box {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 2rem;
  color: #facc15;
  background: #f9e7d4;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.step-box:hover .step-icon {
  background: #facc15;
  color: #fff;
}


/* price  */
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border-color: #facc15;
  background-color: #fffdf7;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #fff5d7 0%, #fffef3 100%);
  border: 2px solid #facc15;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.pricing-card:hover ul li {
  color: #111827;
}

.pricing-card .btn {
  transition: all 0.3s ease-in-out;
}

.pricing-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


/* f&q  */


.cartsmaker-faq {
  background: url('../img/hometwo.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
}

.cartsmaker-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: -1;
}

.cartsmaker-faq .text-white,
.cartsmaker-faq .text-muted {
  color: #fff !important;
}

.accordion-button {
  background-color: #ffffff;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  /* transition: background 0.3s ease; */
}

.accordion-button:not(.collapsed) {
  background-color: #facc15 !important;
  color: #fff !important;
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}


/* contact us  */
.cm-contact-section {
  background: url('../img/homebg5.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

.cm-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: none;
  padding: 12px 16px;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 173, 78, 0.3);
}

.contact-box h5 {
  color: #facc15;
}

.contact-box a.btn {
  font-weight: 500;
}



/* footer  */
.cm-footer {
  background-color: #111;
  font-family: 'Poppins', sans-serif;
}

.cm-footer a.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.cm-footer a.footer-link:hover {
  color: #facc15;
  text-decoration: underline;
}

.cm-footer .social-icon {
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.cm-footer .social-icon:hover {
  color: #facc15;
  transform: scale(1.2);
}


.logo-slider img {
  width: 160px;
  margin: 0 auto;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: all 0.3s ease;
   object-fit: contain !important;
    /* width: 100%; */
    aspect-ratio: 1 / 1;
}



.logo-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}



/* youtube video  */
.video-hover-wrap {
  width: 100%;
  height: 500px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  position: relative;
}

.video-hover-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 576px) {
  .video-hover-wrap {
    height: 300px;
  }
}

/* service  */







.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #fff;
  max-width: 400px;
  width: 90%;
  padding: 30px 20px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeIn 0.4s ease;
  border: 2px solid #facc15;
}

.popup-close {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #999;
  font-weight: bold;
}

.popup-close:hover {
  color: #000;
}

.popup-box h3 {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.popup-box p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 0 10px;
  font-weight: 500;
}

.popup-actions a {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.call-btn {
  background-color: #facc15;
  /* Deep Blue */
}

.whatsapp-btn {
  background-color: #25D366;
}

.popup-actions a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 500px) {
  .popup-box h3 {
    font-size: 20px;
  }

  .popup-box p {
    font-size: 14.5px;
  }

  .popup-actions a {
    padding: 8px 18px;
    font-size: 14px;
  }
}



/* catelog  */
 .catalog-card {
            background:  #fef9f4;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin: 50px auto;
            max-width: 1140px;
            transition: all 0.3s ease-in-out;
        }

        .catalog-image-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .catalog-details {
            padding: 40px 30px;
        }

        .catalog-title {
            font-size: 30px;
            font-weight: 700;
        }

        .catalog-price {
            font-size: 22px;
            color: #ffc107;
            margin: 15px 0;
            font-weight: bold;
        }

        .catalog-table td {
            padding: 8px;
            font-size: 15px;
            border-bottom: 1px solid #eee;
        }

        .catalog-description {
            font-size: 16px;
            color: #333;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .read-more-content {
            display: none;
            margin-top: 10px;
        }

        .read-more-btn {
            background-color: transparent;
            border: 1px solid #ffc107;
            color: #000;
            /* padding: 6px; */
            border-radius: 10px;
            font-weight: 500;
            /* margin-top: 10px; */
            transition: 0.3s;
        }

        .read-more-btn:hover {
            background-color: #ffc107;
            color: #000;
        }

        .whatsapp-btn {
            background-color: #ffc107;
            color: #000;
            padding: 12px 28px;
            border: 2px solid #ffc107;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: 0.3s;
        }

        .whatsapp-btn:hover {
            background-color: #000;
            color: #ffc107;
            border-color: #000;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #000;
            border-radius: 50%;
            padding: 10px;
        }

        @media (max-width: 768px) {
            .catalog-details {
                padding: 25px 20px;
            }
        }







.gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 30px 15px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .gallery-item:hover {
      transform: scale(1.03);
    }

    .gallery-item img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .modal-content {
      background: transparent;
      border: none;
    }

    .modal-content img {
      width: 100%;
      max-height: 90vh;
      object-fit: contain;
    }

    .btn-close {
      background-color: white !important;
    }

    @media (max-width: 576px) {
      .gallery-item img {
        height: 200px;
      }
    }



/* Terms & Conditions  */

 .terms {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(90deg, #fffcee, #ffffff);
      color: #222;
      padding: 60px 20px;
    }

    .terms-container {
      max-width: 1000px;
      margin: auto;
      background: #fff;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
      border-top: 6px solid #facc15;
      animation: fadeIn 1s ease;
    }

    h1.terms-title {
      text-align: center;
      color: #facc15;
      font-size: 40px;
      margin-bottom: 15px;
    }

    .terms-description {
      text-align: center;
      font-size: 18px;
      color: #666;
      margin-bottom: 40px;
    }

    .terms-list {
      counter-reset: section;
      display: grid;
      gap: 25px;
    }

    .terms-item {
      counter-increment: section;
      background: #fff9e6;
      border-left: 6px solid #facc15;
      border-radius: 10px;
      padding: 25px;
      position: relative;
      font-size: 16px;
      line-height: 1.7;
      color: #444;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .terms-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .terms-item::before {
      content: counter(section) ".";
      position: absolute;
      top: 20px;
      left: -35px;
      font-size: 22px;
      font-weight: 600;
      color: #facc15;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 768px) {
      .terms-container {
        padding: 25px;
      }

      h1.terms-title {
        font-size: 28px;
      }
    }