/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}

/* Navbar */
.navbar {
  background-color: #4b8584;
  color: #fff;
}

.navbar-nav {
  margin-right: 0 !important;
  padding-right: 30px; /* Adjusted padding for better alignment */
}

.nav-item {
  padding-left: 15px; /* Increased for better spacing */
}

.nav-item a,
.navbar-brand,
#navbar button {
  color: #fff !important;
  transition: color 0.3s; /* Smooth color transition */
}

.nav-item a:hover,
.navbar-brand:hover,
#navbar button:hover {
  color: #e0e0e0 !important; /* Lighter color on hover for better visibility */
}

/* Banner */
#banner-container {
  background-color: #074241;
  color: #fff;
  padding: 60px 20px; /* Adjusted padding for better spacing */
  text-align: center;
}

#banner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Added gap between columns */
}

#banner-col,
#banner-col2 {
  flex: 1;
  max-width: 100%;
  padding: 20px;
}

#banner-col {
  order: 2; /* Default order for larger screens */
}

#banner-col2 {
  order: 1; /* Default order for larger screens */
}

#banner-col h3 {
  font-size: 2rem; /* Adjusted font size for better readability */
  margin-bottom: 20px;
}

#banner-col p {
  font-size: 1rem; /* Adjusted font size for better readability */
  line-height: 1.6; /* Improved line height for readability */
  margin-bottom: 30px;
}

#banner-col2 img {
  max-width: 50%; /* Adjusted image width for better responsiveness */
  height: auto;
  border-radius: 8px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for depth */
}

#banner-row a {
  background-color: #fff;
  color: #074241;
  border: none;
  margin: 10px 0; /* Adjusted margin for better button positioning */
  padding: 12px 24px; /* Increased padding for better button appearance */
  text-decoration: none;
  display: inline-block;
  border-radius: 4px; /* Rounded corners for the button */
  font-size: 1rem; /* Adjusted font size for the button */
  transition: background-color 0.3s, color 0.3s; /* Smooth color transitions */
}

#banner-row a:hover {
  background-color: #074241;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  #banner-row {
    flex-direction: column; /* Stack columns vertically on mobile */
  }

  #banner-col {
    order: 1; /* Place text content below the image */
    text-align: center; /* Center text for better appearance */
  }

  #banner-col2 {
    order: 2; /* Place image on top */
    text-align: center; /* Center image for better appearance */
  }

  #banner-col h3 {
    font-size: 1.5rem; /* Smaller heading size on mobile */
  }

  #banner-col p {
    font-size: 0.875rem; /* Smaller font size on mobile */
  }

  #banner-col2 img {
    max-width: 100%; /* Ensure image fits within column */
    height: auto; /* Maintain aspect ratio */
  }
}

/* Service */
#service {
  padding: 40px 20px; /* Increased padding for better spacing */
  text-align: center; /* Centered content */
}

#service h1 {
  margin-bottom: 40px; /* Adjusted for visual balance */
}

#service img {
  max-width: 50%; /* Adjusted image width for better responsiveness */
  height: auto;
  border-radius: 8px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for depth */
}

/* About Us */
#about {
  padding: 80px 20px;
  text-align: center;
}

#about h1 {
  margin-bottom: 40px;
}

#about-col ul {
  list-style-type: none; /* Removed default list styling */
  padding: 0;
  margin: 0 auto;
  max-width: 600px; /* Centered and limited width for readability */
}

#about-col ul li {
  margin-top: 15px;
  padding: 10px 0; /* Added padding for improved spacing */
  border-bottom: 1px solid #ddd; /* Added divider for list items */
}

/* Products */
#product {
  padding: 80px 20px;
  text-align: center;
}

#product h1 {
  margin-bottom: 40px;
}

#product-col2 ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

#product-col2 ul li {
  margin-top: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

#product img {
  max-width: 50%; /* Adjusted image width for better responsiveness */
  height: auto;
  border-radius: 8px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for depth */
}

/* Responsive Design */
@media (max-width: 768px) {
  #product img {
    max-width: 95%; /* Adjusted image width for better responsiveness */
  }
}

/* Footer */
.mb-3 {
  margin-top: 20px; /* Changed to margin for consistency */
}

/* Responsive Design */
@media (max-width: 960px) {
  .navbar-brand {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  #banner-row img {
    padding-top: 20px;
  }
  .social-col {
    width: 100%; /* Adjusted for better mobile display */
  }
}
