body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between; /* Adjusted for better spacing */
  align-items: center;
  padding: 10px 20px;
  background-color: #f3f3f3;
  flex-wrap: wrap; /* Allows items to wrap in smaller screens */
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Allows items within to wrap */
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-left select {
  margin-right: 30px; /* Increased space between select and contact number */
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.header-left .contact-number {
  font-size: 20px; /* Larger font size for contact number */
  font-weight: bold;
  color: #2F4F4F;
}

.company-logo {
  max-height: 100px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allows navigation items to wrap */
}

nav ul li {
  margin-left: 25px;
  white-space: nowrap;
}

nav ul li a {
  text-decoration: none;
  color: #2F4F4F;
}

nav ul li a:hover {
  text-decoration: underline;
}

.social-icon {
  margin-left: 15px;
  font-size: 24px; /* Icon size */
}

.social-icon:hover {
  opacity: 0.8; /* Slightly reduce opacity on hover for a subtle effect */
}
/* Facebook icon color */
.social-icon.facebook i {
  color: #4267B2; /* Facebook's brand blue */
}
/* Instagram icon color */
.social-icon.instagram i {
  color: #C13584; /* Instagram's brand pinkish color */
}
/* Media query for smaller screens */
@media (max-width: 768px) {
  .header-left, .header-right {
    justify-content: center;
    padding: 10px 0; /* Adds padding on top and bottom for spacing */
  }

  nav ul {
    justify-content: center; /* Centers nav items on smaller screens */
  }

  .header-left select, .header-left .contact-number, .social-icon {
    margin: 5px; /* Reduces margin for smaller screens */
  }
}

  /* Hero Section Styles */

/* Hero Image Section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* About Us Section with Updated Styles */
.about-us {
  padding: 40px; /* Adjust padding as needed */
  max-width: 850px; /* Adjust the width of the about-us section */
  margin: 0 auto; /* Center the about-us section and remove left auto margin */
  background-color: #f9f9f9; /* Background color */
  /* Removed position: absolute, right: 0, and top: 0 */
}

.about-us h1, .about-us p {
  padding: 0;
  margin: 0 0 30px; /* Add bottom margin for spacing between paragraphs */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-us {
    padding: 30px; /* Adjust padding for smaller screens */
  }

  .about-us p {
    padding: 0; /* Reset padding for paragraphs on smaller screens */
  }
}
footer {
  background-color: #0d4414;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section p a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-section p a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    padding: 10px 0;
    font-size: 0.8em;
  }
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
  }
  .hero {
    position: relative;
    /* Other styles for your hero section */
}

.hero-text {
    position: absolute;
    top:  0;
    right:  0;
    padding:  20px;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent background for better text visibility */
}

.hero-text h1 {
    color: #000000; /* White color for the headline */
    font-size:  1.09em; /* Adjust the font size as needed */
    margin-bottom:  10px; /* Space between the headline and the text */
}

.hero-text p {
    color: #000000; /* White color for the text */
    font-size:  1.46em; /* Adjust the font size as needed */
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero-text {
    position: relative; /* Changes positioning to flow naturally within the document */
    max-width: 100%; /* Allows .hero-text to expand to full container width */
    padding: 10px; /* Adjust padding for smaller screens */
    top: auto;
    right: auto;
  }
}