body {
    font-family: "Poppins" !important;
    font-weight: 400;
    font-size: 1.125rem;
    font-style: normal;
    letter-spacing: 0px;
    text-transform: none;
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px !important;
    letter-spacing: 1px !important;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
/* Ensures navbar styling */
.navbar-nav .nav-item .nav-link {
    margin-right: 15px;
    font-size: 16px;
    color: black;
    text-transform: uppercase;
}

.navbar-nav .nav-item .contact-link {
    border: 2px solid black;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 16px !important;
}

.nav-item .nav-link {
  position: relative; /* To position the ::after pseudo-element */
}

.nav-item .nav-link:hover {
  color: #32AA27; /* Change color on hover */
  cursor: pointer;
  transition: font-size 0.3s ease-in, color 0.3s ease ; /* Smooth transitions */
}

.nav-item .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px; /* Adjust this value to control the space between text and underline */
  height: 2px; /* Thickness of the underline */
  background-color: #32AA27; /* Color of the underline */
  transform: scaleX(0); /* Initially hidden */
  transform-origin: left center; /* Animate from left to right */
  transition: transform 0.3s ease; /* Smooth animation */
}

.nav-item .nav-link:hover::after {
  transform: scaleX(1); /* Fully show the underline on hover */
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Adjust to ensure the dropdown shows in the right position */
}

/* Optional: Adjust hover behavior for the dropdown toggle button */

.dropdown-item:hover {
  background-color: #32AA27 !important; /* Your desired hover background color */
  color: white !important; /* Optional: Change text color */
}

.animated-button {
  background-color: #32AA27; /* Initial background color */
  color: black; /* Initial text color */
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
}

.animated-button:hover {
  background-color: #32AA27; /* New background color on hover */
  color: #ffffff !important; /* New text color on hover */
  border: none !important;
  
}

.navbar-custom {
    width: 100%;
    height: 10vh;
    margin: 0 auto; /* Center the navbar horizontally */
  }
/* Ensures background section styling */

/* Ensure the carousel images fill the viewport width */
.carousel-item img {
  width: 100vw; /* Full width of the viewport */
  min-height: 100vh; /* Full height of the viewport */
  object-fit: cover; /* Ensure images cover the area properly */
}

/* Make the carousel relative for control positioning */
.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin: 0;
  padding: 0;
}

/* Make the controls (Next, Prev) align in the center vertically */
.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 50%;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
}

/* Custom styling for the text position in the carousel */
.type-text-position {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: white;
  float: left ;
}

/* Remove the default container padding/margin */
body {
  margin: 0;
  padding: 0;
}


/* Ensures about us section styling */
.about-us {
    min-height: 100vh; /* Ensures the section takes up the full height of the viewport */
    display: flex;
    align-items: center;
}
.about-us h5 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-us h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.img-fluid {
    border-radius: 10px;
}

/* Ensures product section styling */

.product-range {
    background-color: #eef2f3;
    min-height: 100vh;
}

.product-div {
    background-color: #eef2f3;
}

.product-range h5 {
    font-weight: bold;
}

.product-range h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.card-title {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title span {
    font-size: 1.2rem;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.05); /* Slightly enlarge the card on hover */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.contact-section-height{
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-section {
    margin-top: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensures product section styling */
.btn-success{
    margin: 0  !important;
    min-height: 50px  !important;
    background-color: #32AA27  !important;
    border-color: #32AA27  !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 700 !important;;
    font-style: normal !important;;
}

.style_inputs {
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
    letter-spacing: 0px !important;
    text-transform: none !important;
    border-radius: 0px !important; 
    border-style: solid !important;
    border-width: 1px !important;
    cursor: text !important;
    display: block !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    width: 100% !important;
    outline: 0 !important;
    transition: all .15s ease-in-out !important;
}

.contact-section h3 {
    color: #32AA27;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-section p {
    color: #212529;  
}

.contact-section label {
    font-weight: bold;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.contact-info h5 {
    color: #595959;
    font-weight: bold;
}

.btn-success {
    width: 100%;
    font-weight: bold;
}

.form-check-label {
    font-size: 14px;
}

/* Ensures product section styling */

.footer-section {
    height: 20vh;
}

.footer {
    color: #fff;
    padding: 20px 0;
}

.footer a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    font-size: 20px;
    margin-right: 15px;
    display: inline-block;
}

.footer .social-icons a:hover {
    color: #ddd;
}

.footer .copyright {
    color: #ddd;
    font-size: 14px;
}
.bg-success {
    background-color: #32AA27  !important;
    border-color: #32AA27  !important;
}
/* Ensures product section styling */
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.navbar-logo {
  max-width: 90px; /* Adjust this size according to your navbar */
  min-height: auto; /* Keeps the aspect ratio intact */
}

.card-image {
    aspect-ratio: 1 / 1 !important; /* Adjust the ratio as needed (4:3 is common) */
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

