/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

header {
    width: 100%;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 20px;
    background-color: #9f9d93;
    height: 140px; /* Set the navbar height */
    position: relative;
    overflow: visible; /* Allow the logo to overflow */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: auto; 
    background-color: #7373732b;
    z-index: 100;
}

.logo img {
    height: 140px; /* Adjust the logo height */
}

.nav-left,
.nav-right {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-left li,
.nav-right li {
    margin: 0 70px;
}

.nav-left a,
.nav-right a {
    color: #000;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

.nav-right a:hover{
    color: #ffcc00;
}
.nav-left a:hover{
    color: #ffcc00;
}
.nav-left .dropdown {
  position: relative;
  z-index: 10003;
}

.nav-left .dropdown-menu {
  display: none; /* Initially hidden */
  position: absolute;
  top: 100%; /* Below the parent menu item */
  left: 0;
  background-color: #9f9d93;
  list-style: none;
  padding: 0;
  margin: 0;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
}

.nav-left .dropdown-menu li {
  padding: 5px 20px;
}

.nav-left .dropdown-menu li a {
  text-decoration: none;
  color: #000;
  display: block;
}

.nav-left .dropdown-menu li a:hover {
  color: #ffcc00;
}

/* Show dropdown on hover */
.nav-left .dropdown:hover .dropdown-menu {
  display: block;
}
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #000;
}

.mobile-menu {
    display: none;
    background-color: #2f2e2e;
    position: absolute;
    top: 90px; /* Adjust based on navbar height */
    width: 100%;
    left: 50%;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    padding: 15px;
    text-align: center;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #2f2e2e;;
  list-style: none;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}
/* About Us */
.about-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 20px;
    background-color: #fff;
    /* padding-top: 40px; */
  }
  
  .about-us-container {
    display: flex;
    align-items: stretch; /* Stretch to full height */
    max-width: 1200px;
    width: 100%;
    height: 100%; /* Container will take the full height of its parent */
    min-height: 400px; /* Ensure a minimum height for the section */
  }
  
  .about-us-image {
    flex: 1;
    height: auto;
  }
  
  .about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Make sure the image covers the entire height */
    border-radius: 10px;
  }
  
  .about-us-content {
    flex: 1;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; Center content vertically */
  }
  
  .about-us-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .about-us-content p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .aboutbtn {
    padding: 15px; /* Adjust padding for a smaller button */
    background-color: #000;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 120px; /* Set a specific fixed width */
    max-width: 120px; /* Ensure it doesn't exceed the specified width */
    display: inline-block; /* Ensure it only takes up as much space as defined */
    text-align: center; /* Center the text inside the button */
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  }
  
  .aboutbtn:hover {
    background-color: #666666;
  }
  /* USP Section Styling */
.usp-section {
    padding: 60px 0;
    /* background-color: #fff; */
    background-color: #d6d6d6;
    text-align: center;
  }
  
  .usp-section h2 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    color: #000;
  }
  
  /* USP Container */
  .usp-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping into multiple rows */
    justify-content: space-between; /* Space between each item */
    gap: 20px;
  }
  
  /* USP Items */
  .usp-item {
    flex: 0 1 calc(25% - 20px); /* Each USP takes 25% width, adjusted for gaps */
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    /* background-color: #fff; */
    border-radius: 8px;
  }
  
  .usp-item h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin: 10px 0;
    color: #000;
  }
  
  .usp-item p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.2;
    text-align: left;
  }
  
  .usp-icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 10px;
  }
  .usp-item img{
    width: 80px;
    height: 80px;
  }
/** Product Slider **/
.products{
    padding: 70px 0px;
}
.productstitle h2{
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.slider-container {
    width: 1200px;  /* Fixed width to fit 3 cards of 400px each + margins */
    margin: 0 auto; /* Centering the container */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of product cards */
  }
  
  /* Product card fixed at 400px, with gap */
  .product-card {
    width: 360px; /* Reduce the width to 360px to accommodate margin */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 20px;  /* Add 20px margin between the product cards */
    height: 500px;
  }
  
  /* Hover effect */
  .product-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
  }
  
  /* Image will touch left, right, and top */
  .product-image {
    width: 100%; /* Full width of the product card */
    height: 250px; /* Adjust image height */
    object-fit: cover;
    margin: 0;
    padding: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: block;
  }
  
  .product-content-wrapper {
    padding: 20px;
  }
  
  .product-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
  }
  
  .product-content {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
  }
  
  .read-more-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .read-more-btn:hover {
    background-color: #666666;
  }
  
  /* Slick slider dots customization */
  .slick-dots li button:before {
    color: #000;
  }
  
  .slick-prev:before, .slick-next:before {
    color: #000;
  }
  .slick-dots{
    bottom: -30px !important;
  }
  /** WhatsApp Icon Starts**/
.top-icons-fixed {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100; /* Ensure icons are above other content */
  }
  .top-icons-fixed a{
  text-align: none;
  }
  
  /* Circular icon container */
  .topiconcircle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #128C7E;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: background-color 0.3s;
  }
  
  /* Icon styles */
  .topiconcircle i {
  font-size: 25px;
  color: #fff;
  }
  
  /* Hover effect for the circular container */
  .topiconcircle:hover {
  background-color: #25d366;
  }
  .top-icons-fixed a {
  text-decoration: none;
  }    
/** WhatsApp Icon Ends**/
/* Desktop View */
@media (min-width: 1024px) {
    .menu-icon {
        display: none;
    }

    .navbar {
        justify-content: space-evenly;
    }

    .logo {
        position: absolute;
        left: 49%;
        transform: translateX(-49%);
    }
    .nav-left li, .nav-right li {
      margin: 0 40px;
    }
}
@media (max-width: 1024px){
     .usp-item {
        flex: 0 1 calc(50% - 20px);
      }
      .slider-container {
        width: 80%;  /* Full width for mobile */
      }
      .product-card {
        width: 50%;  /* One product card per row */
        margin: 10px 20px;  /* Small margin for mobile cards */
      }
}
/* Mobile View */
@media (max-width: 915px) {
    .navbar {
        justify-content: space-between;
        height: 115px;
        background-color: #fff;
    }

    .nav-left, .nav-right {
        display: none;
    }

    .logo {
        position: relative;
        left: 0;
        transform: none;
        top: 0;
        background-color: transparent !important;
    }

    .logo img {
        height: 140px;
        top: 5px;
        position: relative;
    }

    .menu-icon {
        display: block;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 80px; /* Adjust based on navbar height */
        width: 50%;
        background-color: #2f2e2e;
        z-index: 10002 !important;
    }

    /* Show the mobile menu when 'open' class is added */
    .mobile-menu.open {
        display: block;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu ul li {
        padding: 15px;
        text-align: center;
    }

    .mobile-menu ul li a {
      background-color: #2f2e2e;
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    .mobile-menu .dropdown-menu {
      position: static; /* Positioning for mobile view */
      box-shadow: none; /* No shadow for simpler design */
  }

  .mobile-menu .dropdown > a::after {
      content: "▼"; /* Add an arrow indicator for dropdowns */
      float: right;
      font-size: 12px;
      margin-left: 10px;
  }

  /* Toggle visibility using a "dropdown-active" class */
  .mobile-menu .dropdown.dropdown-active .dropdown-menu {
      display: block;
  }
  .dropdown-menu {
    position: static;
    display: none; /* Initially hidden */
}
.dropdown.active .dropdown-menu {
    display: block; /* Show on toggle */
}
}
@media (max-width: 768px) {
     /* About US */
     .about-us-section{
        padding-top: 30px;
      }
      .about-us-container {
        flex-direction: column;
        height: auto; /* Reset height for mobile */
        text-align: center;
      }
      .about-us-image{
        order: 2;
        margin-top: 20px;
      }
      .about-us-image img {
        height: auto;
        width: 100%; /* Full width for mobile */
        object-fit: cover;
      }
    
      .about-us-content {
        padding-left: 0;
        order: 1;
        text-align: left;
      }
      .about-us-content p{
        font-size: 16px;
      }
      /**USP Section **/
      .usp-item {
        flex: 0 1 100%; /* One item per row on mobile */
      }
      .usp-item p {
        font-size: 16px;
      }
      .slider-container {
        width: 80%;  /* Full width for mobile */
      }
    
      .product-card {
        width: 100%;  /* One product card per row */
        margin: 10px 0;  /* Small margin for mobile cards */
      }
    
      .product-image {
        height: 200px; /* Smaller image height for mobile */
      }
       /** WhatsApp Icons Start **/
    .top-icons-fixed {
      position: fixed;
      bottom: 5px;
      right: 10px;
      display: flex;
      flex-direction: column; /* Display icons in a column on small screens */
      justify-content: flex-end; /* Align icons to the right */
      align-items: center;
      z-index: 1000; /* Ensure icons are above other content */
      margin-bottom: 5px;
      gap: 10px; /* Add a gap between icons */
    }
    
    .topiconcircle {
      width: 35px;
      height: 35px;
    }
    
    .topiconcircle i {
      font-size: 20px; /* Slightly reduce the icon size for smaller screens */
    }
  /** WhatsApp Icons Ends **/

}