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 Image Section */
.hero {
    width: 100%;
    overflow: hidden;
}

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

/* About Us Section with Centered Title and Padded Text */
.about-us {
    padding: 40px 50px; /* Adjusts the padding around the entire section for spacing */
    text-align: left; /* Aligns the text to the left within the section */
    background-color: #f9f9f9;
    margin: 0 auto; /* Centers the section itself */
    max-width: 1200px; /* Maximum width to prevent the section from being too wide */
}

.features {
    background-color: #f8f8f8; /* Change as per your design */
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}

.feature-column {
    width: 50%; /* Divides the container into two columns */
    padding: 0 10px;
}

.feature-column ul {
    list-style: none; /* Removes default list styling */
    padding: 0;
}

.feature-column ul li {
    padding-left: 30px; /* Makes room for the checkmark */
    margin-bottom: 10px;
    background-image: url('checkmark-icon.png'); /* Add your checkmark icon image URL here */
    background-size: 20px 20px; /* Size of the checkmark icon */
    background-repeat: no-repeat;
    background-position: 0 center;
    line-height: 1.5;
    text-align: left;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0;
    }

    .feature-column {
        width: 100%; /* Each column takes full width on small screens */
        padding: 0 0 20px;
    }
}
.features-headline {
  font-size:  2em; /* Adjust the font size as needed */
  color: #333; /* Adjust the color as needed */
  margin-bottom:  20px; /* Adds some space below the headline */
  text-align: center; /* Centers the headline */
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-us p {
        /* Reduce padding on smaller screens for better readability */
        padding: 0 20px;
    }
}
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;
    }
  }
  .feature-column ul li {
    position: relative;
    padding-left: 30px; /* Makes room for the circle sign */
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left;
}

.feature-column ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Size of the circle */
    height: 20px; /* Size of the circle */
    background-color: 36454F; /* Color of the circle */
    border-radius: 50%; /* Makes the shape a circle */
}

@media (max-width: 768px) {
    .feature-column ul li {
        padding-left: 30px; /* Adjust if needed */
    }

    .feature-column ul li::before {
        left: 10px; /* Adjust the position on smaller screens if needed */
    }
}
.features {
  background-color: #f8f8f8; /* Change as per your design */
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}

.feature-column {
  width: 50%; /* Divides the container into two columns */
  padding: 0 10px;
}

.feature-column ul {
  list-style: none; /* Removes default list styling */
  padding: 0;
}

.feature-column ul li {
  padding-left: 30px; /* Makes room for the checkmark */
  margin-bottom: 10px;
  background-image: url('checkmark-icon.png'); /* Add your checkmark icon image URL here */
  background-size: 20px 20px; /* Size of the checkmark icon */
  background-repeat: no-repeat;
  background-position: 0 center;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
      padding: 0;
  }

  .feature-column {
      width: 100%; /* Each column takes full width on small screens */
      padding: 0 0 20px;
  }
}
.features-headline {
  text-align: center;
  font-size: 1.5em; /* Adjust the size as needed */
  margin-bottom: 20px; /* Adds some space below the headline */
  color: #333; /* Adjust the color as needed */
}

/* Continue with the rest of the styles as previously defined */
/* ... */

