@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --primary-color: #ffffff;
  --Navbar-color: #1B3C53;
  --black-color: #000000;
 --active-color:#d5bb93;
  --boxshadow-color: rgba(149, 157, 165, 1);
 
}
html{
  scroll-behavior: smooth;
}
*{
      font-family: "Poppins", sans-serif;
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
a{
    text-decoration: none;
    color: var(--primary-color);
}
.row {
  --bs-gutter-x: 0 !important;
}
p{
  margin-bottom: 0;
}
h3{
  margin-bottom: .25rem !important;
}

.navbar {
  background-color: var(--Navbar-color);
  color: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
   position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px;
}
.contact-quick{
  border: 2px solid var(--active-color);
  padding: 0.7rem;
  border-radius: 6px;
  color: var(--primary-color);
 
}
.contact-quick img{
  height: 1.3rem;
}
@media(max-width:768px){
.contact-quick{
display: none !important;
}
}
.menu {
  display: flex;
  gap: 1.5rem;
}
.menu a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}
.menu a.active,
.sidebar a.active {
  color: var(--active-color);
  border-radius: 4px;
}
.sidebar a.active{
  text-decoration: underline;
}
.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; 
  width: 100%;
  height: 2px;
  background-color:var(--active-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.sidebar {
  position: fixed;
  top: 5rem;
  right: 0;
  width: 65%;
  background-color: var(--Navbar-color);
  padding: 1rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 1000;
  height: calc(100% - 5rem);
  
}
.sidebar a {
  text-decoration: none;
  font-size: 1.4rem;
   font-weight: 600;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .navbar{
    padding: 0;
  }
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .sidebar.active {
    display: flex;
  }
}

/* scroll to top button */
#myBtn {
  display: none; 
  position: fixed; 
  bottom: 100px; 
  right: 30px; 
  z-index: 99; 
  background-color: var(--Navbar-color); 
  color: var(--black-color); 
  cursor: pointer; 
 text-align: center;
  border-radius: 50%;
  width: 3rem;
  height: 3rem
}
#myBtn i{
  font-size: 1.3rem;
  margin-top: 0.8rem;
  color: var(--primary-color);
}
#myBtn:hover {
  background-color: #d6d1d1; 
}
/* 
Home page Banner start */
.home-image {
  width: 100%;
}
.home-image img,.aboutUs{
    width: 100%;
}
/* about us page */

.about-box{
    width: 50%;
}
.about-box img{
  width: 100%;
}
@media (max-width:1024px){
    .aboutUs{
        flex-direction: column-reverse;
    }
    .about-box{
    width: 100%;
}
}
.box-shadow-slide{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.box-shadow-slide img{
  width: 100%;
}
.box-shadow-slide a p{
  color: var(--main-color);
}
/* footer start */
footer,.copyright{
  width: 100%;
  background-color: var(--Navbar-color);
}
footer .footer-box{
  width: 25%;
  color: var(--primary-color);
}
.copyright{
  border-top:2px solid var(--primary-color);
  p{
    opacity: 0.9;
    color: var(--primary-color);
  }
}
.copyright a{
  color: var(--active-color);
  font-weight: 500;
}
footer .footer-center, .footer-center .footer-sub{
  width: 50%;
  color: var(--primary-color);
}
@media(max-width:768px){
  footer{
    flex-direction: column;
    padding: 1rem;
  }
  footer .footer-box,footer .footer-center{
  width: 100%;
}
.copyright {
flex-direction: column !important;
text-align: center;
}
.copyright p{
  margin: 0.4rem 0;
}
}

/* category start */
#varieties,#varieties1{
 display: flex;
  width: 100%;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}

.category-card img , .category-card1 img{
  width: 100%;
} 
.category-card h2, .category-card1 h2{
  font-size: 1.3rem;
}
.category-card h5, .category-card1 h5{
  padding: 0.8rem;
}
h1#categoryTitle,h1#categoryTitle1{
  font-size: 1.5rem;
}

/* product section  start  */
#brand-container ,#brand-container1{
   display: flex;
  width: 100%;
  justify-content: start;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}
.brand-card ,.brand-card1,.category-card ,.category-card1 {
 width: calc(25% - 1.2rem);
 margin: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 6px;  
 }
 .brand-card img, .brand-card1 img,.category-card img,.category-card1 img{
  width: 100%;
  height: 210px;
}
.brand-card h2, .category-card h2 , .category-card1 h2  ,.brand-card1 h2,.category-card h2,.category-card1 h2{
 padding: 0.8rem;
 height: 65px;
 font-size: 1.2rem;
 font-weight: 500;
 }
.brand-card p, .category-card p ,.category-card1 p , .brand-card1 p,.category-card p,.category-card1 p{
 padding: 0.5rem 0.8rem 0.8rem 0.8rem;
 height: 160px;
 font-size: 0.9rem;
 font-weight: 400;
 }
 
 .brand-card h5.button-more ,.brand-card1 h5.button-more{
  border: none;
  color: var(--Navbar-color);
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: 600;
 }
@media(width:1024px){
   .brand-card p, .category-card p,.category-card1 p,.brand-card1 p{
    height: 210px;
   }
}
 @media (max-width:992px){
  .brand-card , .category-card ,.category-card1,.brand-card1{
     width: calc(50% - 1rem);
   }
   .brand-card p, .brand-card1 p,.category-card p,.category-card1 p{
    height: 165px;
   }
 }
 
 @media (max-width :576px){
    #brand-container ,#varieties ,#varieties1 ,#brand-container1{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
   .brand-card, .distributor-card,.brand-card1,.category-card ,.category-card1 {
  width: 100%;
   } 
     .brand-card p, .brand-card1 p,.category-card p,.category-card1 p{
    height: 130px;
   }
}
/* contact start */
.contact-box{
  background-color: var(--Navbar-color);
}
.contact-form-box{
background-color: white;
}

 form input,
form textarea, button {
  width: 80%;
  height: 3rem;
  border: none;
  border-radius: 4px;
}

 form input,
form textarea{
  /* background-color: #D9D9D9; */
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
 form input.fname-field{
  width: 39%;
 }
form textarea {
  height: 5rem !important;
}
 .error {
    color: red;
  }
  .success {
    color: var(--Navbar-color);
  }
  button.button-color{
    background-color: var(--Navbar-color);
  }
  iframe{
    width: 100%;
  }
  @media(max-width:767px){
 form input,
form textarea, button {
  width: 95%;
}
form input.fname-field{
  width: 46%;
 }
  }
  @media (max-width:769px){
     p.anchor-email{
  font-size: 0.9rem;
}
  }

  

