html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px; 
}

/* Navbar Styles */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
  background-color: #f8f9fa;
}

nav .logo {
  display: flex;
  align-items: center;
  margin: 10px;
}

nav .logo img {
  height: 50px;
  width: auto;
  margin-right: 20px;
}

nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #d76d30; /* Change this to your desired darker orange color */
  font-size: 95%;
  font-weight: bold; /* Make the text bold */
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: transparent;
  text-decoration: underline;
  border-bottom: 2px solid green;
}


/* Active state - Remove background color */
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item a.active {
  background-color: transparent !important; /* Remove background color */
  color: #000 !important; /* Keep text color */
  border-bottom: 2px solid #007bff; /* Optional: Keep the bottom border or adjust as needed */
}


nav ul.navbar-nav li.nav-item a.nav-link {
  text-decoration: none;
  color: #d76d30 !important; /* Light Orange with !important to ensure it applies */
  font-size: 95%;
  font-weight:bolder;
  padding: 4px 8px;
  border-radius: 5px;
}




.navbar-nav .nav-item.active .nav-link {
  background-color: #f5f5f5;
  color: #000;
  border-bottom: 2px solid #007bff;
}

.navbar-nav .nav-item a.active {
  background-color: #f5f5f5;
  color: #000;
  border-bottom: 2px solid #007bff;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
  margin: 10px;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger-active .line:nth-child(2) {
  width: 0;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255);
  transition: max-height 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  z-index: -2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menubar.active {
  max-height: 100vh;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.menubar.active ul {
  opacity: 1;
}

.menubar ul li {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.menubar ul li.show {
  opacity: 1;
  transform: translateY(0);
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li.active a {
  background-color: #f5f5f5;
  color: #000;
}

.menubar ul li a:hover {

  background-color: transparent;

  border-bottom: 2px solid green;

}

@media (max-width: 790px) {
  .navbar-items {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (min-width: 791px) {
  .navbar-items {
    display: flex;
  }

  .menubar {
    display: none;
  }
}





/* Carousel Styles */

.carousel-item {
  transition: transform 1s ease-in-out; /* Adjust the time value here to control the speed */
}


.carousel-item img {
  width: calc(100% - 20px); 
  height: auto;
  object-fit: cover;
  margin-top: 60px;
  padding: 1px; 
  box-sizing: border-box; 
}

@media (max-width: 576px) {
  .carousel-item img {
    max-height: 300px;
    padding: 4px; 
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  .carousel-item img {
    max-height: 350px;
    padding: 5px; 
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-item img {
    max-height: 450px;
    padding: 5px; 
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .carousel-item img {
    max-height: 550px;
    padding: 2px; 
  }
}

@media (min-width: 1200px) {
  .carousel-item img {
    max-height: 700px;
    padding: 3px; 
  }
}

/* CSS for left-to-right sliding */
.carousel-reverse .carousel-item-next.carousel-item-left,
.carousel-reverse .carousel-item-prev.carousel-item-right {
  transform: translateX(100%);
}

.carousel-reverse .active.carousel-item-left,
.carousel-reverse .active.carousel-item-right {
  transform: translateX(-100%);
}











/* Centered Heading Styles */

.centered-heading {
  text-align: center;
  margin: 40px 0;
  font-size: 2rem;
  color: #ff8225;
  background-image: url("./images/heading/Background_Theme_1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0;
  border-radius: 10px;
  margin-top: -5px;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  color: #481e14;
  padding: 20px;
  border: 3px ridge silver; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 10px;
}

.stat-icon i {
  font-size: 24px;
  color: #242323;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  transition: font-size 0.5s ease; 
}


.stat-label {
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}



@media (max-width: 1024px) {
  .stats-section {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr;
  }
}



/* about section */


.about-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}

.about-us-text-container,
.about-us-image-container {
  flex: 1;
  padding: 10px;
}

.about-us-text-container {
  max-width: 100%;
}

.about-us-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-us-paragraph {
  text-align: justify; /* Align the text for cleaner readability */
  font-family: 'Open Sans', Arial, sans-serif; /* Use a modern, readable font */
  font-size: 1.125rem; /* Base font size */
  line-height: 1.8; /* Improved line height for better readability */
  color: #333; /* Slightly dark gray for a softer feel on the eyes */
  margin-bottom: 1.5rem; /* Increased bottom margin for better spacing */
  padding: 0 20px; /* Add padding to create space around the text */
}

.about-us-list {
  list-style-type: disc;
  margin-left: 20px;
}

.about-us-image {
  max-width: 100%;
  height: auto;
  animation: customAni 2s ease 0s infinite normal none;
}

/* Animation Keyframes */
@keyframes customAni {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-45px);
  }
  24% {
    opacity: 1;
  }
  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }
  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }
  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }
  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }
  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }
  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-us-heading {
    font-size: 2rem;
  }

  .about-us-paragraph {
    font-size: 1rem;
  }

  .about-us-list {
    margin-left: 18px;
  }
}

@media (max-width: 992px) {
  .about-us-heading {
    font-size: 1.75rem;
  }

  .about-us-paragraph {
    font-size: 0.95rem; /* Further reduce font size for medium tablets */
    padding: 0 12px; /* Adjust padding accordingly */
  }

  .about-us-list {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  
  .about-us-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-paragraph {
    font-size: 0.875rem; /* Adjust font size for smaller devices */
    padding: 0 10px; /* Adjust padding for mobile */
  }

  .about-us-heading {
    font-size: 1.5rem;
  }

  

  .about-us-list {
    margin-left: 15px;
  }
}

@media (max-width: 576px) {
  .about-us-heading {
    font-size: 1.5rem;
  }

  .about-us-paragraph {
    font-size: 0.8rem; /* Make text smaller for small devices */
    padding: 0 8px; /* Adjust padding for narrow screens */
  }

  .about-us-list {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .about-us-heading {
    font-size: 1.5rem;
  }

  .about-us-paragraph {
    font-size: 0.75rem; /* Minimum font size for mobile phones */
    line-height: 1.6; /* Adjust line height for readability on small screens */
    padding: 0 5px; /* Reduce padding for very small devices */
  }

  .about-us-list {
    margin-left: 10px;
  }
}





/* product css */


.product-section {
  padding: 20px;
  text-align: center;
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

.product-section h2 {
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.product-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; 
  width: 100%;
  height: 3px; 
  background-color: orange; 
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 100%;
  height: 100%; 
  max-height: 250px; 
  object-fit: contain; 
  border-radius: 5px;
  animation: bounce-in 1s ease-in-out;
  background-color: transparent;
}


.product-card p {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: bold;
}

@keyframes bounce-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes move-background {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./images/products/productbackground.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  animation: move-background 10s linear infinite;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}








/* contact us */


.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto; 
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-sizing: border-box;
}



.form-container {
  flex: 1;
  padding-right: 20px;
  box-sizing: border-box;
}

.map-container {
  flex: 1;
  padding-left: 20px;
  box-sizing: border-box;
}

h2 {
  font-size: 2rem;
  font-weight: bold; 
  text-align: center;
  margin-bottom: 1.25rem;
  display: inline-block;
  padding-bottom: 10px; 
  border-bottom: 3px solid orange;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f9fa;
  box-sizing: border-box;
}

button {
  background-color: #007bff;
  color: white;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #0056b3;
}

.heading-container {
  text-align: center;
  margin-bottom: 20px; /* Space between heading and container */
}

/* Responsive */
@media (max-width: 1024px) {

 
  .contact-container {
    flex-direction: column;
  }

  .form-container,
  .map-container {
    width: 100%;
    padding: 0;
  }

  .form-container {
    padding-bottom: 20px;
  }

  .map-container {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: 0.75rem;
  }

  input,
  textarea {
    font-size: 0.875rem;
  }

  button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: 0.5rem;
  }

  input,
  textarea {
    font-size: 0.75rem;
  }

  button {
    font-size: 0.75rem;
    padding: 0.5rem;
  }

  .map-container iframe {
    width: 100%;
    height: auto;
  }
}






/* footer */


.footer-distributed {
  background: #f99447;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
  color: #ffffff;
  position: relative;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

.footer-distributed .footer-left {
  width: 40%;
}

.footer-distributed .footer-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px "Open Sans", cursive;
  margin: 0;
}

.footer-distributed h3 span {
  color: lightseagreen;
}

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-links a {
  color: #ffffff;
}

.footer-distributed .footer-company-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: lightseagreen;
  text-decoration: none;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #ffffff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  width: 20%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

@media (max-width: 880px) {
  .footer-distributed {
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

.footer-bottom {
  background: #ffffff;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  font: bold 14px sans-serif;
  color: #dc5f00;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-bottom p {
  margin: 0;
}

/* what's app and calling  */
.floats {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.floats a {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.floats a img {
  width: 100%;
  height: auto;
}

.floats a:hover {
  transform: scale(1.1);
}





/* footer */

.footer {
  background-color: #1c2331;
  color: #ffffff;
}

.footer__bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  text-align: center;
}



/* gallery css */

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 10px;
  transition: transform 0.2s;
}




/* testimonials */
.testimonial-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default for larger screens */
  gap: 20px;
  padding: 20px;
  margin: 20px;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  overflow: hidden;
}

.card-body {
  padding: 0px;
}

video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

#testimonials-content h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .testimonial-items {
    grid-template-columns: 1fr; /* Single column on mobile */
  }

  .card {
    margin: 0; /* Remove margin for full-width cards */
  }
}



/* founder  */



.founder-section {
  margin: 20px;
  text-align: center;
}

.founder-heading {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center; /* Center the heading */
  display: inline-block; /* Adjusts the width to the text content */
  position: relative; /* Needed for positioning the underline */
}

.founder-heading::after {
  content: "";
  width: 100%; /* Full width of the text */
  height: 3px;
  background-color: orange; /* Orange underline */
  position: absolute;
  left: 0; /* Aligns the underline with the start of the text */
  bottom: -5px; /* Space between text and underline */
}


.founder-cards {
  display: flex;
  justify-content: space-around; /* Distribute space between the cards */
  align-items: flex-start;
  gap: 20px; /* Space between the cards */
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
}

.founder-card {
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #f9f9f9;
}

.founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.founder-info h3 {
  font-size: 1.5rem;
  margin: 0;
}

.founder-info p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .founder-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .founder-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .founder-heading {
    font-size: 1.75rem;
  }

  .founder-card {
    max-width: 300px;
    padding: 15px;
  }

  .founder-info h3 {
    font-size: 1.25rem;
  }

  .founder-info p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .founder-heading {
    font-size: 1.5rem;
  }

  .founder-card {
    max-width: 100%;
    padding: 10px;
  }

  .founder-info h3 {
    font-size: 1rem;
  }

  .founder-info p {
    font-size: 0.75rem;
  }
}
