/* Reset default margin and padding */
* {
    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;
    z-index:  1000; /* 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: 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; /* 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 {
        border-radius: 50px;
        position: absolute;
        right: 0;
        top: 79px;
        gap: 1px;
        flex-direction: column;
        width: 50%;
        background-color: white;
        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: black;
      z-index: 1000; /* Display menu when active */
  
    }
  
    .nav-menu.active {
      display: flex; /* Display menu when active */
    }
    .nav-items a:hover{
        color: red;
    }
  }
  

.pic img{
    width:100%;
    height: 670px;
    opacity: 0.9;

}
.pic {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 40%; 
    left: 35%; 
    transform: translate(-50%, -50%); 
    text-align: center; /* Center text horizontally */
    font-family: Arial, sans-serif; /* Font family */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}


.overlay-text h1 {
    color: #213502;
    flex-wrap: wrap; 
    font-weight: bolder;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: fixed;
    position: relative;
    overflow: hidden;
    font-size: 60px; /* Font size */
    font-weight: bold; /* Font weight */
    line-height: 1.4; /* Line height */
    margin: 10px; /* Remove default margin */
    padding: 10px; /* Add padding for better readability */
}
.overlay-text p{
    font-size: 25px;
    color: black;
    font-family: 'Times New Roman', Times, serif;
}

.logo img{
    height: 140px;
    width:20%;
    margin: 1px;
    position: fixed;
}

/* Add your CSS styles here */
.Our_Services{
    text-align: center;
    padding: 60px;
    background-color: #292929;
}

.Our_Services h1{
background-size: 0cqi;
    color: #FFFF;
    font-size: 60px;
    font-family: inherit;
}

.products {
    background-color: #483C32;
    margin: 4px;
    padding: 30px;
    display: flex;
    justify-content: space-between; /* Distribute items evenly with space between them */
    flex-wrap: wrap; /* Allow items to wrap to the next line if necessary */
}

.product {
    width: 45%; /* Adjust the width of each product card */
    background-color: #FFECD1;
    padding: 20px;
    margin-bottom: 20px; /* Add margin bottom between each product card */
    padding: 50px;
    border: 1px solid black;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: 350px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product h1 {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}
.product p {
    color: black;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: justify;
}
.product:hover {
    transform: translateY(-10px);
  }

  .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: 13.5%;
      width: 27%;
    }
    .overlay-text h1{
        font-size: 30px;
        left: -10px;
    }
    .overlay-text p{
        font-size: 20px;
        text-wrap: wrap;
    }
    .name h1{
        font-size: 25px;
    }
  
    .product {
      flex-wrap: wrap; /* Allow columns to wrap when viewport width is less than 200px */
    }
   
    .product {
      flex: 100%; /* Each column takes up full width when wrapped */
    }
    .products img{
        width: 110%;
    }
  
    p {
      text-align: justify; /* Justify text when wrapped */
    }
    
    .nav-item a{
        display: grid;
        background-color: black;
    }
    .watsapp_float img{
        top: 88%;
        opacity: 0.8;
    }
  }
  @media (max-width: 400px){
    .watsapp_float img{
        height: 50px;
        top: 85%;
        opacity: 0.8;
    }
  }
 