* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", Arial, sans-serif !important;
  background-color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

/* home page hero section start */
.homepage-slider-container-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 76vh;
}

.homepage-slider-image-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.homepage-slider-single-slide {
  min-width: 100%;

  object-fit: contain;
  display: none;
  object-position: center center;
  height: 554px;
  width: 100%;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

@media (max-width: 767px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }
  .homepage-slider-navigation-arrow {
    display: none;
  }
  .homepage-slider-container-wrapper {
    height: 200px; /* 👈 Mobile height as per your requirement */
    background: #d5d5d5;
  }

  .homepage-slider-single-slide {
    height: 200px; /* 👈 Ensure slides match the wrapper height */
  }
}
.bottom-product-carousel-card a {
  text-decoration: none;
}
.bottom-product-carousel-card a:hover .product-name {
  color: red; /* Change to your desired color */
  transition: color 0.3s ease;
}

.homepage-slider-navigation-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.homepage-slider-arrow-left {
  left: 20px;
}

.homepage-slider-arrow-right {
  right: 20px;
}

.homepage-slider-dot-indicators-wrapper {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.homepage-slider-dot-indicator {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.homepage-slider-dot-indicator.active {
  background: #ff2727;
}

/* home page hero section end */

/* slidder section end */

/* home about section start */
.home-about-section {
  padding: 2rem 1rem;
  max-width: 1300px;
  margin: auto;
  background-color: #ffffff;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

.home-about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.home-about-image-wrapper {
  flex: 1 1 400px;
  position: relative;
}

.home-about-image-wrapper img {
  width: 100%;
  height: 500px;
  display: block;
}

.home-about-price-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 10px;
}

.home-about-text-content {
  flex: 1 1 500px;
}

.home-about-welcome {
  font-size: 1rem;
  color: rgb(255, 27, 27);
}

.home-about-title {
  font-size: 2rem;
  color: rgb(46 66 119);
  font-weight: 800;
}

.home-about-line {
  width: 30px;
  height: 3px;
  background-color: rgb(255, 27, 27);
  margin: 10px 0;
}

.home-about-paragraph {
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 17px;
}

.home-about-button {
  display: inline-block;
  background: rgb(46 66 119);
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.home-about-button span {
  margin-left: 5px;
  color: #db0e0e;
}

@media (max-width: 768px) {
  .home-about-section {
    padding: 0px 10px;
  }

  .home-about-container {
    gap: 0px;
  }
  .home-about-container {
    flex-direction: column;
  }

  .home-about-image-wrapper img {
    display: none;
  }
  .home-about-image-wrapper,
  .home-about-text-content {
    flex: 1 1 100%;
  }

  .home-about-title {
    font-size: 1.5rem;
  }

  .home-about-price-tag {
    font-size: 1.5rem;
  }
  .product-name {
    font-size: 1rem;
  }
  .homepage-slider-dot-indicators-wrapper {
    position: absolute;
    top: 180px;
  }
}
/* 
  home about section end  */
/* <!-- about carosel section start --> */
.bottom-product-carousel-container {
  position: relative;
  padding: 0 30px; /* ✅ Margin on both sides */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-product-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.bottom-product-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.bottom-product-carousel-card {
  flex: 0 0 25%;
  padding: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .bottom-product-carousel-card {
    flex: 0 0 100%;
  }
}

.bottom-product-carousel-card img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  padding: 5px;
  display: block;
}

.bottom-product-carousel-arrow {
  font-size: 30px;
  cursor: pointer;
  user-select: none;
  padding: 10px; /* ✅ Add spacing inside arrows */
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.1); /* optional for visibility */
  border-radius: 50%;
  transition: background 0.3s;
}

.bottom-product-carousel-left {
  position: absolute;
  left: 0;
}

.bottom-product-carousel-right {
  position: absolute;
  right: 0;
}

.bottom-product-carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.2); /* optional hover effect */
}
.bottom-product-carousel-left {
  margin-right: 10px; /* ✅ Space after left arrow */
}

.bottom-product-carousel-right {
  margin-left: 10px; /* ✅ Space before right arrow */
}
.bottom-product-carousel-section {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;

  margin: 0 auto; /* ✅ Center on large screens */
}
.bottom-product-carousel-section {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.bottom-product-carousel-heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}

.product-name {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(5, 5, 105);
  overflow: hidden;
  text-overflow: ellipsis;
}
/* <!-- about carosel section end --> */

/* top categoriess section start */
.top-categories-wrapper {
  padding: 40px 20px;
  text-align: center;

  background: #f6f6f6;
}

.top-categories-title {
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.top-categories-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;

  margin: auto;
}

.top-categories-card {
  position: relative;
  width: 32%;
  min-width: 300px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.top-categories-card img {
  width: 100%;
  display: block;
}

.top-categories-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(231, 46, 36, 0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: left 0.4s ease;
  z-index: 2;
  text-align: center;
}

.top-categories-card:hover .top-categories-overlay {
  left: 0;
}

.top-categories-overlay h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.top-categories-overlay button {
  background: #fff;
  color: #e72e24;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.top-categories-overlay button:hover {
  background: #ddd;
}

@media (max-width: 900px) {
  .top-categories-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .top-categories-card {
    width: 100%;
  }
}

/* top categoris section end */

/* features categories start */
.home-features-wrapper {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.home-features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
}

.home-features-box {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #d3d3d3;
}

.home-features-box:last-child {
  border-right: none;
}

.home-features-icon {
  width: 80px;
  margin-bottom: 15px;
}

.home-features-title {
  color: rgb(5, 5, 105);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.home-features-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .home-features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .home-features-container {
    grid-template-columns: 1fr;
  }

  .home-features-box {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .home-features-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

/* features categories end */

/* multiple banner section start */
.grid-wrapper {
  width: 98%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.8rem;
}

.grid-items-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid-items-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.bgOverlay {
  overflow: hidden;
  top: 0;
  left: -100%;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: 0.5s;
}

.grid-items-wrapper:hover .bgOverlay {
  left: 0;
  transition: 0.5s;
  background-color: rgba(226, 0, 0, 0.7);
}

.bgOverlay-text {
  position: absolute;
  top: 50px;
  left: 40px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
}
.arrow-overlay {
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.arrow-overlay img {
  width: 50px;
}

.grid-items-wrapper:hover .arrow-overlay {
  left: 50%;
  transition: 0.5s;
}

.spread-col {
  grid-area: 4 / 1 / 6 / -1;
}

.spread-col-two {
  grid-area: 6/1/8/-1;
}
@media (min-width: 820px) {
  .grid-wrapper {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 1rem;
  }

  .spread-col {
    grid-area: 2 / 3 / 4/ -1;
  }

  .spread-col-two {
    grid-area: 3 / 1/ 5/ 3;
  }
}

/* multiple banner section end */

/* icons */
.floating-contact-icon-wrapper-section {
  position: fixed;
  right: 20px;
  top: 85%;
  transform: translateY(-80%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-contact-icon-unit {
  background-color: #ffffff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #000;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-contact-icon-unit:hover {
  transform: scale(1.15);
}

.floating-contact-icon-style {
  font-size: 22px;
  color: #25d366; /* WhatsApp green by default */
}

.floating-contact-icon-unit:first-child .floating-contact-icon-style {
  color: #007bff; /* Phone icon blue */
}

@media screen and (max-width: 768px) {
  .floating-contact-icon-wrapper-section {
    right: 15px;
    top: 80%;
  }

  .floating-contact-icon-style {
    font-size: 20px;
  }

  .floating-contact-icon-unit {
    padding: 10px;
  }
  .bgOverlay-text {
    font-size: 1.2rem;
    top: 20px;
    left: 20px;
  }
}
