/* styles.css */

/* CSS Variables */
:root {
  --primary-color: #F4F1EC;
  --secondary-color: #1e1e1e;
  --font-size-base: 16px;
  --heading-font: "NunitoSans", sans-serif;
  --primary-margin: 0 3em;
  --primary-padding: 1em 3em;
  --sm-primary-padding: 1em 2em;
  --sm-primary-margin: 1.5em;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../assets/fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf') format('woff2'),
    url('../assets/fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.woff') format('woff'),
    url('../assets/fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../assets/fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf') format('woff2'),
    url('../assets/fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.woff') format('woff'),
    url('../assets/fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
  font-weight: 400;
}

body {
  font-family: 'NunitoSans', sans-serif;
  font-weight: normal;
  line-height: 1.3;
  color: #333;
  background-color: var(--primary-color);
  -webkit-user-select: none;
  /* Chrome, Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  overflow-x: hidden;
}

.truncate-multiline {
  display: -webkit-box;
  /* Limit to 3 lines */
  /* Hide the overflowed text */
  text-overflow: ellipsis;
  /* Add ellipsis */
  /* Control height based on line height (1.5em * 3 lines) */
  line-height: 1.5em;
  /* Set line height */
  padding-bottom: 10px;
}

p {
  font-size: 21px;
  font-weight: 400;
  line-height: 38.34px;
  text-align: justify;
}

.about-us h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 61.49px;
}

/* Top header */
.top-header {
  background: #0B661C;

  color: #fff;
  padding: 5px 0;
  height: 3em;
}

.top-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin: var(--primary-margin);
}

.top-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 30.01px;
  text-align: left;
  display: flex;
  align-items: center;

}

.top-links a img {
  margin-right: 1em;
}



.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  color: #ffffff;
}

.category-header h3 {
  margin: 0;
}

.dropdown-icon {
  font-size: 12px;
}

#category-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  transition: max-height 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
}

#category-list.hidden {
  max-height: 0;
}

#category-list:not(.hidden) {
  max-height: 1000px;
}

#category-list li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}

.menu-categories {
  margin: 1em 0 0;
}

.menu-item {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

.menu-footer {
  margin: 20px;
  border-top: 1px solid #FFFFFF;
  padding-top: 2em;
}

.menu-footer a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}

.menu-footer img {
  margin-right: 10px;
  vertical-align: middle;
}

/* Header and Navigation */
header {
  padding: var(--primary-padding);
  position: relative;
  display: block;
  z-index: 1001;
  background: #ffffff;

  border-bottom: 1px solid #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}

.mob-header {
  display: none;
}

.logo-image a {
  width: 125px;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav-icons a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
}

.hamburger {
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #0b661c;
  margin: 5px 0;
  transition: 0.3s;
}

.menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  background-color: #8c5225;
  padding: 20px;
  border-radius: 5px;
  z-index: 2000;
}

.menu.open {
  display: none;
}

.menu .menu-footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  width: 15%;
}

.logo-image img {
  width: 100%;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.contact-info {
  padding-left: 0px !important;
}

nav ul li {
  margin-left: 3rem;
  padding: 34px 0px;
}

nav ul li a {
  text-decoration: none;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 36.83px;
  text-align: left;
  text-transform: uppercase;
}

.search-icon {
  font-size: 1.2rem;
  cursor: pointer;
  vertical-align: middle;
}

.dropdown {
  position: static;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  background-color: var(--primary-color);
  padding: 3em 2em;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-content.show {
  display: block;
  margin-top: 1.7em;
  /* box-shadow: inset 0px 0px 5px 0px #484343; */
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1em;
  max-width: 1400px;
  margin: 0 auto;
}

.category-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.category-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  line-height: 17px;
}


.dropdown:hover::before {
  opacity: 1;
  visibility: visible;
}


/* About Us Section */
.about-us {
  display: flex;
  padding: var(--sm-primary-padding);
  background-color: var(--primary-color);
}

.about-us-content {
  flex: 1;
  padding-right: 4rem;
}

.about-us h2 {
  font-size: 17px;
  font-weight: 500;
  line-height: 30.01px;
  letter-spacing: 0.30em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #1E1E1E;
}

.about-us h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 61.49px;
  text-align: left;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  width: 80%;
}

.about-us p {
  margin-bottom: 2rem;
  font-size: 21px;
  font-weight: 400;
  line-height: 38.34px;
  text-align: justify;
}

.our-story-btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 400;
  line-height: 21.98px;
  text-align: center;
  background-color: #0B661C;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
}

.our-story-btn:hover {
  background-color: #8b5224;
}

.about-us-image {
  flex: 1;
}

.about-us-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Features Section */
.features {
  display: flex;
  background-color: #e9e2d8;
}

.feature-image {
  flex: 0.9;
  background-color: var(--primary-color);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 1.5em;
  border-bottom-left-radius: 1.5em;
}

.feature-list {
  flex: 1;
  padding: 5px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #8b5224;
  border-radius: 0 1.5em 1.5em 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2rem 0;
  margin: 0 2rem;
}

.feature-item:nth-child(-n + 2) {
  border-bottom: 1px solid #FFFFFF;
}

.feature-item img {
  width: 60px;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 27px;
  font-weight: 700;
  line-height: 35.32px;
  text-align: left;
  color: #FFFFFF;
  text-align: justify;
  text-align: left;
  margin-bottom: 0.5rem;
}

.text-sec a {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  background-color: #FFFFFF;
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-family: 'NunitoSans';
  font-size: 20px;
  font-weight: 700;
  line-height: 21.98px;
  text-align: center;
  margin-top: 0px;
}

.text-sec a:hover {
  background-color: #8b5224;
  color: #FFFFFF;
  transform: translateY(-3px);
}

a {
  text-decoration: none;
}

.text-sec .text-heading {
  font-size: 4em;
  text-shadow: 1px 3px 6px #00000059;
  ;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}



.clear {
  clear: both;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* categories carousel styles */

.our-categories-sec {
  margin: 4em 3em 0 3em;
}

.our-categories-sec h2 {
  font-size: 17px;
  font-weight: 500;
  line-height: 30.01px;
  letter-spacing: 0.30em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.our-categories-sec h3 {
  color: var(--secondary-color);
  text-transform: capitalize;
}

.our-categories-sec h3 span {
  display: block;
  color: #0B661C;
}

.wrapper {
  width: 100%;
  padding: 1.5em 0;
  overflow: hidden;
}

.about-us-content h3 span {
  color: #0B661C;
  display: block;
}

.carousel-container {
  display: flex;
  gap: 0.5em;
  width: 100vw;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.carousel-card {
  flex: 0 0 10%;
  height: 500px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.card-content h4 {
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 700;
  line-height: 70px;
  text-align: left;
  text-transform: capitalize;
}

.card-content p {
  margin: 0 0 30px;
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
}

.icon {
  display: inline-block;
  padding: 15px 40px;
  background-color: white;
  vertical-align: middle;
  color: black;
  border-radius: 30px;
  font-family: 'NunitoSans';
  font-size: 20px;
  font-weight: 700;
  line-height: 21.98px;
  text-align: center;
}

/* input[type="radio"] {
    display: none;
  }
  input[type="radio"]:checked+.carousel-card {
    flex: 0 0 50%; 
  }
  .carousel-card:hover .card-image {
    transform: scale(1.1);
  }
  
  
  input[type="radio"]:checked+.carousel-card .card-content {
    transform: translateY(0);
  }
  
  input:not(:checked)+.carousel-card:hover .card-content :is(p, .icon) {
    display: none;
  }
  
  input[type="radio"]:not(:checked)+.carousel-card:hover .card-content h4 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1em;
    transform: translateY(0);
  } */

/* Container styling */
/* Container styling */
.carousel-container {
  display: flex;
  overflow: hidden;
  /* Prevent overflow */
  position: relative;
  gap: 10px;
  /* Add space between cards */
}

/* Default card sizes - the first card is fully visible */
.carousel-card {
  flex: 1 1 10%;
  /* All non-expanded cards start small */
  transition: flex 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

/* The first card is fully visible by default */
.carousel-card:first-child {
  /*flex: 1 1 60%; */
  z-index: 2;
  /* Bring first card to front by default */
}

/* Hover effect: when any card is hovered, it expands */
.carousel-card:hover {
  flex: 1 1 60%;
  /* Hovered card expands */
  z-index: 3;
  /* Bring hovered card to front */
}

/* Ensure non-hovered cards shrink proportionally */
.carousel-card:not(:hover):not(:first-child) {
  flex: 1 1 10%;
  /* Shrink non-hovered cards */
}

/* Image scaling effect on hover */
.carousel-card:hover .card-image {
  transition: transform 0.3s ease-in-out;
}

/* Content starts hidden, becomes visible on hover */
.carousel-card .card-content {
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
}

.carousel-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

/* Hide text content (p and icon) on non-hovered cards */
.carousel-card:not(:hover) .card-content p,
.carousel-card:not(:hover) .card-content .icon {
  display: none;
}

/* Adjust the heading on non-hovered cards to be vertical */
.carousel-card:not(:hover) .card-content h4 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1em;
}

/* Adjust content when hovered */
.carousel-card:hover .card-content h4 {
  writing-mode: horizontal-tb;
  font-size: 1.5em;
}

/* Prevent the first card from being cut off */
.carousel-card:first-child {
  margin-left: 0;
  transform-origin: left;
}

/* end */
.reach-us-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  /* margin: 2em 0 4em 0; */
  width: 95%;
  padding-bottom: 35px;
  padding-top: 10px;
}

.reach-us-container .reach-us-card {
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(161, 213, 127, 0.85) 0%, rgb(11 102 28 / 69%) 100%),
    url('../images/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 47%;
  height: 26em;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'NunitoSans';
  font-weight: 700;
}

.reach-us-container .reach-us-icon {
  font-size: 36px;
  margin-bottom: 20px;

}

.reach-us-container h2 {
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 600;
  line-height: 60.49px;
  text-align: center;
  color: #fff;
}

.reach-us-container p {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
}

.reach-us-container .reach-us-btn {
  background: #FFFFFF;
  color: #1E1E1E;
  border: none;
  padding: 15px 50px;
  border-radius: 30px;
  width: 12em;
  cursor: pointer;
  text-transform: capitalize;
  font-family: 'NunitoSans';
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  margin: auto;
  transition: background-color 0.3s;
}

.reach-us-container .reach-us-btn:hover {
  background-color: #8b5224;
  color: #ffffff;
}

/* footer styles */

.footer {
  background: #0A3512;

  color: #fff;
  padding: 2rem 3rem 1rem 3rem;
  font-size: 0.8rem;
  /* letter-spacing: 0.2px;
  line-height: 1.5em; */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ffffff;
}

.social-icons a {
  margin-right: 1rem;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.social-icons img {
  width: 28px !important;
  height: 29px;
  padding: 0 !important;
}

li.social-icons a {
  display: flex;
  gap: 12px;
  padding-top: 10px;
}

.footer-btn {
  background-color: #fff;
  color: #222;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 40px;
  font-family: 'NunitoSans';
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3em 0 0;
  padding: 1em 0 0;
  font-family: 'NunitoSans';
  font-weight: 400;
}

.footer-brand {
  flex-basis: 30%;
  flex-basis: 20%;
}

.footer-logo {
  max-width: 170px;
  margin-bottom: 2rem;
  width: 45%;
  width: 100%;
}

.footer-tagline {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 18px;
  line-height: 28px;
}

.footer-links {
  display: flex;
  flex-basis: 65%;
  flex-basis: 80%;
  justify-content: space-between;
  gap: 2em;
}

.footer-column {
  width: 40%;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 0rem;
  font-size: 23px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-column p {
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 10px;
  border-top: 1px solid #FFFFFF;
}

/* Responsive adjustments for drop down header */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mob-header {
    background-color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .top-header {
    display: none;
  }

  .menu.open {
    display: block;
  }

  .top-links {
    justify-content: center;
    margin: 0;
  }

  header {
    padding: 0px;
  }

  nav ul,
  nav ul {
    display: none;
  }

  header nav {
    display: none;
  }

  .about-us,
  .features {
    flex-direction: column;
  }

  .about-us-content,
  .feature-list {
    padding-right: 0;
    padding-left: 0;
  }

  .about-us h3,
  .our-categories-sec h3,
  .text-sec .text-heading {
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
  }

  .about-us-content h3 {
    font-size: 1.8rem;

  }

  .about-us h2 {
    text-align: center;
    font-size: 0.8rem;
  }

  .about-us img {
    max-width: 100%;
    margin-top: 3rem;
  }

  .our-story-btn {
    width: 100%;
  }

  .feature-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    flex-direction: column;
    padding: 2rem;
    margin: 0;
  }

  .feature-item img {
    width: 60px;
    height: 60px;
  }

  .our-categories-sec h2 {
    /* font-size: 0.8rem; */
    text-align: center;
  }

  .feature-image img {
    height: 22em;
    border-radius: 0;
  }

  .text-sec button {
    font-size: 1.5em;
  }

  /* footer Resp */
  .footer-top {
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2em;
    padding-bottom: 3rem;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
  }

  .footer-download-button {
    margin-top: 1rem;
  }

  .footer-content {
    flex-direction: column;
    padding: 1.5rem 0 0;
  }

  .footer-brand,
  .footer-links {
    flex-basis: 100%;
  }

  .footer-links {
    /* flex-direction: column; */
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-column {
    margin-bottom: 2rem;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }

  .footer-bottom p:last-child {
    margin-top: 0.5rem;
  }

  .footer-btn {
    padding: 1rem 2rem;
  }

  .footer {
    padding: 2rem;
  }

  /* carousel resp */
  .carousel-container {
    flex-direction: column;
  }

  .carousel-card {
    flex: 0 0 auto;
    height: 100px;
  }

  input[type="radio"]:checked+.carousel-card {
    flex: 0 0 auto;
    height: 400px;
  }

  .our-categories-sec {
    margin: 2rem 1.5rem;
  }

  .wrapper {
    padding: 0;
  }

  .card-content {
    padding: 2rem;
  }


}



/* reach us rep */
@media (max-width: 600px) {
  .reach-us-container {
    flex-direction: column;
    align-items: center;
    margin-top: 3.5em;
  }

  .reach-us-container .reach-us-card {
    width: 100%;
    max-width: 350px;
  }
}


/* Mobile - small devices (up to 480px) */
@media (max-width: 480px) {
  .container-section {
    padding: 0rem 1.5rem;
  }

  .feature-image img {
    height: 15em;
  }

  .feature-list {
    padding: 0;
    display: block;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* Tablet - small tablets (641px to 768px) */
@media (min-width: 641px) and (max-width: 768px) {
  .container-section {
    padding: 3rem 4rem;
  }
}

/* Laptops - medium devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container-section {
    padding: 3rem 4rem;
  }

  .about-us h3 {
    width: 100%;
  }
}

/* Desktops - large devices (1025px and above) */
@media (min-width: 1025px) {
  .container-section {
    padding: 4rem 3rem;
  }


}

/* .card[for="c1"] {
  background-image: url('../assets/images/carousel1.jpg');
} */
/* .card[for="c2"] {
  background-image: url('../assets/images/slider1.jpg');
}
.card[for="c3"] {
  background-image: url('../assets/images/slider2.jpg');
}
.card[for="c4"] {
  background-image: url('../assets/images/card2.png');
} */
h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 61.49px;
}

.img-overlay {
  position: relative;
  width: 100%;
}

.img-overlay img {
  width: 100%;
  display: block;
}

.img-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 45%);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.carousel-container-slider .text-sec .text-heading {
  font-size: 72px;
  font-weight: 700;
  line-height: 92.64px;
  text-align: center;
  margin-bottom: 40px;
}

.feature-item p {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: justify;
  color: #FFFFFF;
}

.card-content p.truncate-multiline {
  overflow: auto;
  max-height: 130px;
  padding-right: 20px;
}

/* For Chrome, Safari and Edge */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #636161;
}

/*--home---*/
/* carousel ui */
.carousel-container-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-container-slider .carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.carousel-container-slider .carousel-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center;
}

.carousel-container-slider .text-sec {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 50%;
  z-index: 20;
}



.carousel-container-slider .prev,
.carousel-container-slider .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 10;
}

.carousel-container-slider .prev {
  left: 1%;
}

.carousel-container-slider .next {
  right: 1%;
  border-radius: 3px 0 0 3px;
}

.carousel-container-slider .prev img,
.carousel-container-slider .next img {
  vertical-align: middle;
  width: 19px;
}

.carousel-container-slider .prev:hover,
.carousel-container-slider .next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-container-slider .active,
.carousel-container-slider .dot:hover {
  background-color: #717171;
}

.carousel-container-slider .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.8;
  }

  to {
    opacity: 1
  }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .carousel-container-slider {
    height: 300px;
  }

  .carousel-container-slider .text-sec .text-heading {
    font-size: 1.8em;
  }

  .carousel-container-slider .text-sec button {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 300px) {

  .carousel-container-slider .prev,
  .carousel-container-slider .next,
  .carousel-container-slider .text-sec {
    font-size: 11px;
  }
}

.carousel-slide .video-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000000bd;
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-container-slider .text-sec .text-heading {

  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .9s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--about--*/
.about-container {
  margin: 0 auto;
}

.about-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-text {
  position: absolute;
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 5em;
  margin: 4em 3em;
}

.about-text-content {
  width: 50%;
}

.about-h2 {
  color: #333;
  margin-bottom: 1em;
}

.about-p {
  color: #666;
  line-height: 1.6;
  text-align: justify;
  margin-top: 2em;
}

.about-image-content {
  width: 50%;
  border-radius: 25px 0 0 0;
}

.about-image-content img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-section {
  display: flex;
  margin: 50px 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5em;
  padding: 0 3em;
}

.about-section-image {
  width: 50%;
  border-radius: 0 0 25px 0;
}

.about-section-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0px 0px 15px;
}

.about-section-content {
  flex: 1;
}

.sub-head {
  font-size: 17px;
  font-weight: 500;
  line-height: 30.01px;
  letter-spacing: 0.30em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #1E1E1E;
}

.about-section-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 30.01px;
  letter-spacing: 0.30em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #1E1E1E;
}

.about-container~.wrapper {
  padding-bottom: 0;
}

main.about-container p {
  color: #1E1E1E;
}

.about-text-content h3 {
  width: 70%;
  margin-bottom: 20px;
}

/*--product--*/
.faucet-banner {
  background-image: url(../assets/images/faucetImg/banner1.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}

.faucet-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 34%);
  z-index: 1;
}

.faucet-banner h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 2.5rem;
  text-align: center;
}

.filter-options {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
  gap: 2em;
  flex-wrap: wrap;
}

.filter-option {
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 10px;
  height: 20px;
  border-radius: 50%;
  padding: 10px;
  border: 1px solid #ddd;
}

.filter-option:hover {
  opacity: 0.8;
}

.filter-options-sec {
  display: flex;
  flex-direction: row;
  background: white;
  padding: 5px;
  border-radius: 20px;
  gap: 10px;
  cursor: pointer;
  width: 7em;
  transition: 100ms ease-in-out;
}

.filter-options-sec:hover {
  background: #e0dada;
}

.filter-options-sec:active {
  background: var(--active-color);
  box-shadow: 0px 1px 5px rgba(128, 128, 128, 0.6);

}

.filter-options-sec:active .filter-option {
  border: 1px solid rgb(179, 161, 161) !important;
}

.filter-options-sec:active[data-color="black"] {
  color: white !important;
}

.filter-option.black {
  background-color: #333;
  color: white;
}

.filter-option.copper {
  background: linear-gradient(180deg, #ED9292 0%, #8D533A 100%);
  color: white;
}

.filter-option.golden {
  background: linear-gradient(180deg, #FFD809 0%, #AA8400 100%);
  color: black;
}

.filter-option.satin {
  background: #D7D6D6;
  color: black;
}

.filter-option.white {
  background-color: #ffffff;
  color: black;
}

.product-count {
  text-align: right;
  margin-bottom: 20px;
  color: #666;
  line-height: 30px;
}

.filter-sec-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 1.5em 3em;
  justify-content: space-between;
  padding-top: 15px;

}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3em 2em;
  /* max-width: 1200px;  */
  margin: 3em;
  /* padding: 20px; */
}

.product-card {
  /* background-color: white; */
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.product-image {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.product-info {
  padding: 15px 0;
}

.product-title {
  font-size: 18px;
  margin: 0 1px 10px 0;
  line-height: 30px;
  color: #1E1E1E;
  font-weight: 700;
}

.color-options {
  display: flex;
  margin-bottom: 5px;
}

.color-option {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.color-option.black {
  background-color: #333;
}

.color-option.copper {
  background: linear-gradient(180deg, #ED9292 0%, #985944 100%);
}

.color-option.golden {
  background: linear-gradient(180deg, #FBD40A 0%, #B59002 100%);
}

.color-option.satin {
  background: #D9D9D9;
}

.color-option.white {
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.product-code {
  font-size: 14px;
  color: #1E1E1E;
  margin-bottom: 10px;
}

.download-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #1E1E1E;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
}

/*--detail--*/
ul.location-ftr li {
  display: flex;
  align-items: flex-start;
}

ul.location-ftr li img {
  padding-top: 11px;
  padding-right: 20px;
  width: 40px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 17px;
  font-weight: 400;
  line-height: 38.34px;
  text-align: justify;
  color: #fff;
}

.product-card .download-button {
  background: #0B661C;

}

.filter-options-sec {
  font-size: 18px;
  font-weight: 600;
}

.product-title {
  font-size: 18px !important;
  font-weight: 600 !important;
}

.product-info h3.product-title {
  min-height: 40px;
}

.ftr a {
  text-decoration: underline;
}

.reach-us span {
  font-size: 20px;
  line-height: 30px;
}

.reach-us-icon.pb img {
  padding-bottom: 15px;
  width: 27px !important;
}

.span-icon {
  display: flex;
  gap: 6px;
  align-items: center;
  padding-left: 10px;
}

.span-icon a {
  margin: 0;
  text-decoration: underline;
}

.dropdown-content.show {
  border-top: solid 1px #000;
}

.category-item img {
  border-radius: 15px;
}

.about-image-content.lg-none {
  display: none;
}

nav ul li a:hover {
  color: #8c5325;
}

.contact-form h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 61.49px;
}

.footer-content p {
  line-height: 29px;
}

.lg-none {
  display: none;
}

li.dropdown:hover .dropdown-content {
  display: block;
  border-top: solid 1px #acacac;
}

div#details ul {
  padding-bottom: 20px;
}

.filter-options-sec {
  padding: 5px 10px !important;
  min-width: max-content !important;
}

.card-content a {
  color: #000000fa;
}

.product-slider h3 {
  color: var(--secondary-color);
  text-align: center;
  padding-bottom: 20px;
}

.product-slider {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0px 50px 0px;
}

.product-slider .product-info h3.product-title {
  text-align: left;
}

.ftr br {
  display: none;
}

a.download-button:hover {
  background: #8a5122;

}

.owl-nav {
  display: none !important;
}

.owl-dots {
  display: none !important;
}

.icon:hover {
  background-color: #8a5122;
  color: #ffffff;
}

.icon :hover a {
  color: #ffffff;
}

.filter-options {
  display: none !important;
}

.color-options {
  display: none !important;
}

.top-links a img {
  margin-right: 1em;
  width: 17px;
  margin-left: 1rem;
}

.top-links a {
  text-decoration: none;
}

a.download-button {
  display: none;
}

.text-sec a {
  display: none;
}

h1.about-hero-text {
  display: none;
}

.carousel-card .icon {
  display: none;
}

.map {
  display: none;
}

.carousel-container-slider .prev,
.carousel-container-slider .next {

  display: none;
}

.footer-column.tp {
  padding-top: 4rem;
}

.ftr p {
  text-align: left;
}

.footer-top {
  display: none;
}

.tel-num.ct p {
  text-align: left;
  margin-bottom: 5px !important;
}
.product-info h3.product-title {
        display: none;
}