body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #c19b5c;
    color: white;
    position: fixed; /* Fix the navbar to the top */
    top: 0;
    left: 0;
    width: 100%;
    height: 115px; /* Set navbar height */
    z-index: 1000; /* Ensure it stays on top of other content */
    transition: top 0.3s; /* Optional: smooth transition for visibility */
}

.logo {
    margin-left: 150px; /* Margin from the left for larger screens */
}

.logo img {
    height: 80px; /* Adjust logo height to fit within navbar */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-right: 150px; /* Margin from the right for larger screens */
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    flex-direction: column; /* Stack icon above text */
    align-items: center;
    padding: 10px 15px; /* Padding for block effect */
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition */
    text-align: center; /* Center align text */
}

.nav-links a i {
    font-size: 24px; /* Larger icon size */
    margin-bottom: 5px; /* Space between icon and text */
}

.nav-links a h4 {
    margin: 0;
    font-size: 14px; /* Adjust font size if needed */
}

.nav-links a:hover {
    background-color: #555; /* Change background color on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

/* Hide the checkbox */
.nav-toggle {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    margin-right: 20px;
    height: 115px; /* Match the height of the navbar */
    justify-content: center;
}

.nav-toggle-label span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 2px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .navbar {
        padding: 0 10px; /* Reduce padding on smaller screens */
        justify-content: space-between;
    }

    .logo {
        margin-left: 20px; /* Reduce margin for smaller screens */
    }

    .nav-links {
        margin-right: 20px; /* Reduce margin for smaller screens */
    }

    .nav-toggle {
        display: block; /* Show the toggle */
    }

    .nav-toggle-label {
        display: flex; /* Ensure toggle is visible */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 115px; /* Adjusted to accommodate the navbar height */
        left: 0;
        background-color: #333;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-toggle:checked + .nav-toggle-label + .nav-links {
        display: flex;
    }

    .nav-links a {
        justify-content: center;
    }
}


      
      
      
      
      
      /* footer */


       @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);

		 * {
		   font-family: Open Sans;
		 }
		 
		  
		 .footer-distributed{
			 background: #c19b5c;
			 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: 25px 50px;
		 }
		 
		 .footer-distributed .footer-left,
		 .footer-distributed .footer-center,
		 .footer-distributed .footer-right{
			 display: inline-block;
			 vertical-align: top;
		 }
		 
		 /* Footer left */
		 
		 .footer-distributed .footer-left{
			 width: 40%;
			 
		 }
		 
		 /* The company logo */
		 
		 .footer-distributed h3{
			 color:  #ffffff;
			 font: normal 36px 'Open Sans', cursive;
			 margin: 0;
		 }
		 
		 .footer-distributed h3 span{
			 color:  lightseagreen;
		 }
		 
		 /* Footer links */
		 
		 .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-company-name{
			 color:  #222;
			 font-size: 14px;
			 font-weight: normal;
			 margin: 0;
		 }
		 
		 /* Footer Center */
		 
		 .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:  rgb(245, 247, 246);
			 text-decoration: none;;
		 }
		 
		 
		 
		 /* Footer Right */
		 
		 .footer-distributed .footer-right{
			 width: 20%;
		 }
		 
		 .footer-distributed .footer-company-about{
			 line-height: 20px;
			 color:  #fff;
			 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;
			 }
		 
		 }

         
  /* General Styling for the Section */
   /* General Styling for the Section */
   #responsive-section {
    padding: 60px 20px;
    box-sizing: border-box; /* Ensure padding is included in width */
    overflow: hidden; /* Prevent overflow issues */
}

.container {
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    display: flex;
    flex-direction: column; /* Stack vertically by default */
    gap: 20px; /* Space between divs */
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

.text-div, .image-div {
    flex: 1;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

.image-div img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .container {
        flex-direction: row; /* Side-by-side on larger screens */
        gap: 20px; /* Space between divs */
    }

    .text-div, .image-div {
        min-width: 300px; /* Minimum width to prevent overly narrow content */
    }
}

@media (max-width: 767px) {
    .container {
        flex-direction: column; /* Stack divs vertically on mobile */
        gap: 20px; /* Space between divs */
    }

    .text-div {
        text-align: center; /* Center text on mobile */
        margin-bottom: 20px; /* Space below text content */
    }

    .image-div {
        margin-top: 0; /* Remove margin-top on mobile */
    }
} 

.whatsapp-section {
    width: 100%;
    padding: 20px; /* Adjust as needed for spacing */
  }
  
  .whatsapp-container {
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .whatsapp-link {
    display: inline-block;
  }
  
  .whatsapp-icon {
    width: 50px; /* Default size */
    height: auto;
  }
  
  /* Adjust size for smaller screens */
  @media (max-width: 768px) {
    .whatsapp-icon {
      width: 40px; /* Smaller size for mobile screens */
    }
  }
  
  /* Increase size for larger screens */
  @media (min-width: 1200px) {
    .whatsapp-icon {
      width: 70px; /* Larger size for big screens */
    }
  }
  

  .nav-link:hover {
    background-color: #555; /* Change background color on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
    color: white !important;
    border-radius: 10px;
  }
  
  /* On larger screens */
  @media (min-width: 992px) {
    .nav-link {
      color: white;
    }
  }
  
  /* Add this custom CSS for mobile screens when toggle is open */
  @media (max-width: 991px) {
    .navbar-nav {
        background-color: #1f1b1b;
    }
    .nav-link {
        color: white !important; /* Ensure the text is visible on black */
    }
  }
  
  