* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style for the navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:#007a7a; /* Background color for the navbar */
  padding: 25px 30px; /* Padding for the navbar */
}
.nav-branding img{
  position: absolute;
  width:16%;
  border-radius: 10px;  
  padding: 0px;
  top: 2px; /* Adjust top position as needed */
  left: 8%; /* Align the logo horizontally */
  transform: translateX(-50%); /* Center the logo horizontally */
  z-index: 2; /* Ensure the logo appears above the image */
  }


/* Style for the branding/logo */
.nav-branding {
  color: white; /* Text color for the branding/logo */
  font-size: 27px; /* Font size for the branding/logo */
  text-decoration: none; /* Remove underline from the branding/logo */
}



/* Style for the navigation menu */
.nav-menu {
  display: flex;
  gap: 20px; /* Spacing between menu items */
  list-style-type: none; /* Remove default list styling */
}

/* Style for each navigation menu item */
.nav-items {
  margin: 0; /* Remove default margin */
}

/* Style for navigation menu links */
.nav-list {
  color: white; /* Text color for menu items */
  text-decoration: none; /* Remove underline from menu items */
  font-size: 18px; /* Font size for menu items */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Style for navigation menu links on hover */
.nav-list:hover {
  color: black; /* Change color on hover */
}

/* Media query for responsive design */
li{
  list-style: none;
}
a{
  color: white;
  text-decoration: none;
}

.nav-link {
  transition: 0.7s ease;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.nav-menu {
  display: flex;
  gap: 20px; /* Spacing between menu items */
  list-style-type: none; /* Remove default list styling */
}

/* Style for each navigation menu item */
.nav-items {
  margin: 0;
  z-index: 1000;/* Remove default margin */
}

/* Style for navigation menu links */
.nav-list {
  color: white; /* Text color for menu items */
  text-decoration: none; /* Remove underline from menu items */
  font-size: 18px; /* Font size for menu items */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Style for navigation menu links on hover */
.nav-list:hover {
  color: #ffd700; /* Change color on hover */
}


@media (max-width: 768px) {
  .hamburger {
      display: block;
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
      position: absolute;
      border-radius: 50px;
      right: 0;
      top: 79px;
      gap: 1px;
      flex-direction: column;
      width: 50%;
      background-color: rgb(122, 122, 122);
      text-align: center;
      transition: 0.3s;
      display: none; /* Hide menu by default */
  }

  .nav-item {
      margin: 20px 0; /* Adjust margin as needed */
  }
  .nav-menu a{
    color: white;
    z-index: 1000; /* Display menu when active */

  }

  .nav-menu.active {
    display: flex; /* Display menu when active */
  }
  .nav-items a:hover{
      color: black;
  }
}


.pic img{
  width:100%;
  opacity: 0.8;

}
.pic {
  position: relative;
}

.overlay-text {
  position: absolute;
  border-radius: 100px;
  z-index: 1;
  top: 40%; 
  left: 25%; 
  background-color: rgb(129, 123, 13);
  transform: translate(-50%, -50%); 
  text-align: center; /* Center text horizontally */
  color: black; /* Text color */
  font-family: Arial, sans-serif; /* Font family */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}


.overlay-text h1 {
  position: fixed;
  position: relative;
  overflow: hidden;
  font-size: 90px; /* Font size */
  font-weight: bold; /* Font weight */
  margin: 20px; /* Remove default margin */
  padding: 10px; /* Add padding for better readability */
}

/* Container for all products */
.products {
  align-content: center;
  padding: 20px;
  margin: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Add this to evenly distribute columns */
}

/* Individual product container */
.product_1,
.product_2 {
  background-color: #ffd700;
  width: 45%; /* Set the width of each product */
  margin-bottom: 30px;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Add this to include padding and border in the width calculation */
}

/* Hover effect */
.product_1:hover,
.product_2:hover {
  transform: translateY(-5px);
}

/* Product image */
/* Individual product container */
.product_1,
.product_2,
.product_3,
.product_4,
.product_5,
.product_6 {
  background-color: #ffd700; /* Set the background color for all products */
  width: 45%; /* Set the width of each product */
  margin-bottom: 30px;
  padding: 40px;
  padding-left: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Add this to include padding and border in the width calculation */
}

/* Hover effect */
.product_1:hover,
.product_2:hover,
.product_3:hover,
.product_4:hover,
.product_5:hover,
.product_6:hover {
  transform: translateY(-5px);
}

/* Product image */
.product_1 img
{
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product_2 img
{
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product_5 img{
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product_3 img{
  width: 100%;
  height: 380px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product_4 img,
.product_6 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Product title */
.product_1 h1,
.product_2 h1,
.product_3 h1,
.product_4 h1,
.product_5 h1,
.product_6 h1 {
  font-size: 1.8em;
  margin: 0;
  color: #333;
}

/* Additional information about the product */
.product_1 p,
.product_2 p,
.product_3 p,
.product_4 p,
.product_5 p,
.product_6 p {
  font-size: 1.1em;
  color: black;
  line-height: 1.5;
}

/* List styling */
.product_1 ul,
.product_2 ul,
.product_3 ul,
.product_4 ul,
.product_5 ul,
.product_6 ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

/* List items */
.product_1 li,
.product_2 li,
.product_3 li,
.product_4 li,
.product_5 li,
.product_6 li {
  font-size: 1.1em;
  color: black;
  line-height: 1.5;
}

/* Add some space between paragraphs */
.product_1 p + p,
.product_2 p + p,
.product_3 p + p,
.product_4 p + p,
.product_5 p + p,
.product_6 p + p {
  margin-top: 25px;
}

.footer {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info h3 {
  color: #666;
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info ul li {
  color: #777;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info ul li i {
  margin-right: 5px;
}


.watsapp_float{
  position: fixed;
  bottom: 40px;
  right: 20px;
  top:90%;
}


@media (max-width: 760px) {
  .nav-branding img{
    top: 0px; /* Adjust top position as needed */
    left: 12.3%;
    width: 25%;
  }
  .overlay-text h1{
    font-size: 30px;
  }

  .products {
    margin: 2px;
    padding: 2px;
    flex-wrap: wrap; /* Allow columns to wrap when viewport width is less than 200px */
  }

  .product_1 {
    flex: 100%; /* Each column takes up full width when wrapped */
  }

  .product_1 p {
    text-align: justify; /* Justify text when wrapped */
  }
  
  .product_2 {
    flex: 100%; /* Each column takes up full width when wrapped */
  }

  .product_2 p {
    text-align: justify; /* Justify text when wrapped */
  }
  .product_3 {
    flex: 100%; /* Each column takes up full width when wrapped */
  }

  .product_3 p {
    text-align: justify; /* Justify text when wrapped */
  }
  .product_4 {
    flex: 100%; /* Each column takes up full width when wrapped */
  }

  .product_4 p {
    text-align: justify; /* Justify text when wrapped */
  }
  .product_5 {
    flex: 100%; /* Each column takes up full width when wrapped */
  }

  .product_5 p {
    text-align: justify; /* Justify text when wrapped */
  }
  .product_6 {
    flex: 100%; /* Each column takes up full width when wrapped */
  }

  .product_6 p {
    text-align: justify; /* Justify text when wrapped */
  }
  .contact-info h2{
     font-size: 15px;
  }
  .contact-info h3{
      font-size: 13px;
  }
  .contact-info p{
      font-size: 10px;
  }
  .watsapp_float img{
    top: 80%;
    opacity: 0.8;
}
}
@media (max-width: 1030px){
  .overlay-text h1{
    font-size: 20px;
  }
}
@media (max-width: 425px){
  .overlay-text h1{
    font-size: 10px;
  }
}
