* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

/* Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.logo img {
  height: 80px;
  margin-left: 150px;
}

.header-buttons {
  margin-right: 200px;
  display: flex;
  gap: 10px;
}
.btn-orange {
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
  color: #fff !important;
}



/* Gradient color for the second button */
.btn-secondary {
  background: linear-gradient(135deg, #426BB3, #72BECD);
  border: none;
}
.header-buttons button {
  padding: 8px 16px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-buttons button:hover {
  background-color: #0056b3;
}

/* Banner Slider */
.banner-slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
 .top-header {
  display: flex;
  justify-content: space-between; /* default for larger screens */
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  height: 60px;
  margin-left: 0;
}

.header-buttons {
  display: flex;
  gap: 8px;
}

/* Mobile view */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .header-buttons {
    justify-content: center;
    margin-right: 0;
  }

  .header-buttons button {
    padding: 6px 12px;
    font-size: 14px;
  }
}

}


.custom-section {
  background: linear-gradient(135deg, rgba(207, 231, 250, 0.4), rgba(230, 213, 250, 0.4));
  padding: 40px 20px;
  border-radius: 12px;
}

.custom-image {
  width: 100%;
  max-width: 550px;
  height: auto;
}

.secondImg {
  text-align: center;
}

.heading-text {
  font-weight: 700;
  font-size: 2.4rem;
  color: #1f1f1f;
  /* max-width: 550px; */
  margin: 0 auto;
}

.description-text {
  font-size: 1.4rem;
  color: #555;
  margin-top: 10px;
  max-width: 550px;
  /* margin-left: auto; */
  margin-right: auto;
}

.icon-group img {
  width: 65px;
  height: 65px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.secondRight {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .heading-text {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .description-text {
    font-size: 1rem;
  }

  .icon-group {
    justify-content: center !important;
  }

  .custom-image {
    max-width: 100%;
  }
}

 .product-scroll-wrapper {
      position: relative;
      overflow: hidden;
    }

    .product-scroll-container {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 1rem;
      /* padding: 1rem 2rem; */
    }

    .product-card {
      flex: 0 0 auto;
      width: 250px;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .product-card img {
      max-width: 220px;
      height: 250px;
      border-radius: 8px;
    }

  .product-carousel {
      position: relative;
      overflow: hidden;
    }
    .scroll-container {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 1rem;
      padding: 1rem 2rem;
    }
    .product-card {
      min-width: 280px;
      flex: 0 0 auto;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .scroll-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff;
      border: none;
      font-size: 1.5rem;
      z-index: 1;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }
    .scroll-left {
      left: 10px;
    }
    .scroll-right {
      right: 10px;
    }
    @media (max-width: 576px) {
      .product-card {
        min-width: 250px;
      }
    }

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 150px; /* You can adjust width */
  background-color: #F56301;
  border-radius: 2px;
}
    



.gallery-wrapper {
  position: relative;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
  background: white;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.left-arrow {
  left: -20px;
}

.right-arrow {
  right: -20px;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}
.gallery-image {
  width: 200px;
  max-width: 200px;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}




.custom-footer {
  background: linear-gradient(to bottom, #6aa8cb, #3856b3);
  color: white;
  position: relative;
  width: 100%;
  height: 220px;
}

.footer-logo-img {
  max-width: 220px;
  height: auto;
}

.social-icons {
  z-index: 10;
}

.social-icon img {
   
  width: 80px;
  height: 80px;
  border-radius: 10px;
  padding: 6px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.footer-links a {
  color: white;
  margin: 0 6px;
  text-decoration: none;
  font-size: 24px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
  .social-icons {
    flex-direction: column;
    top: 10px;
    right: 10px;
  }

  .footer-logo-img {
    max-width: 180px;
  }

  .footer-links {
    font-size: 13px;
    padding: 0 10px;
    padding-bottom: 80px;
  }
}
.mobile-footer {
  display: none;
  background: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  position: fixed;
}

.mobile-footer a img {
  width: 40px;
  height: 40px;
}

/* Show only on mobile (below 768px) */
@media screen and (max-width: 768px) {
  .mobile-footer {
    display: flex;
  }
  .social-icons {
   display: none;
}

.social-icon img {
 display: none;
}
.small a {
 margin-bottom: 60px;
}

}
.brand-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.brand-img:hover, .brand-img.selected {
  border-color: #0d6efd;
  background-color: #f0f8ff;
}


/* Apply these styles in your CSS or <style> tag */
.submit-btn {
  background: linear-gradient(to right, #3b5998, #5e9cd8);
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #2d4373, #4b8ad0);
}

.popupFirst{
      background: linear-gradient(to bottom, #fff, #d2e5fa);
      max-height: 450px;


}
.submit-btn {
  width: 150px;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right, #3b5998, #5e9cd8);
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s ease;
  display: block;
  margin: 0 auto;
}
.normalText{
    font-size: 20px;
    color: #446EB3;
}
.icon-btn {
  padding: 8px 16px;
  font-weight: 500;
  border: none;
  transition: 0.3s ease-in-out;
  border-radius: 6px;
}

.icon-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .modal-content.popupFirst {
    height: auto !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px 16px;
    margin: 10px;
  }

  .brand-img {
    max-width: 80px;
    height: auto;
  }
}
