body {
    font-family: "Poppins", sans-serif;
    font-size: large;
    background-color: #ffffff;
    color: #ffffff;
    text-align: left;
    margin: 0;
    padding: 0;
  }

main {
  flex: 1;
}
  
.banner1 {
    background-image: url("Images/Banner_image.jpg");
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: visible;
}

.banner2 {
    background-image: url("Images/Banner_image.jpg");
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: visible;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  background-color: #f2f2f2;
  color: #333;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
  text-align: center;
}

  h1 {
    color: #ffffff;
    text-align: left;
  }

 .homecontainer {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
  height: auto;
}

.cta-button .button {
  display: inline-block;
  margin-top: 20px;
  padding: 0.85rem 1.75rem;
  background-color: #2e7d32; /* natural green */
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

  .container {
    margin-top: 0;
    padding-top: 0;
    display: flex;
    gap: 0px;         /* Space between boxes */
    flex-wrap: wrap;    /* Stack on small screens */
  }
  
  .box1 {
    background-color: #fefefe;
    padding: 20px;
    flex: 1;            /* Equal width */
    min-width: 250px;   /* Prevents boxes from shrinking too much */
    height: auto;
    text-align: center;
    color: #000000
  }

  /* Reduce the gap coming from the text */
.box1 p {
  margin-bottom: 0.5rem; 
}

 .box2 {
  background-color: #fefefe;
  padding: 20px;
  flex: 1;            /* Equal width */
  min-width: 250px;   /* Prevents boxes from shrinking too much */
  height auto;
  text-align: center;
  color:#1E2A38
  }

.servicesimage {
  max-width: 100%;
  height: auto;
}
  
  ul {
    padding-left: 20px;          /* Adjust bullet indentation */
    margin: 0;                   /* Remove extra spacing if needed */
    list-style-position: outside; /* Bullet appears right next to text */
  }

.top-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .top-menu ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
}

.top-menu ul li a:hover {
  background-color: #0d48a175;
}

.menu {
  display: none;
  flex-direction:column;
}

.menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .menu {
    display: flex;
    flex-direction: column;
  }

  .menu-toggle {
    display: none;
  }
}
  
  .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 7%;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    align-items: stretch;
  }
}

.header-text h1 {
  margin-right: 20px;
  font-size: 2rem;
}

.header-text p {
  margin-right: 20px;
  font-size: 1rem;
}

.header-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-body {
  display: flex;
  text-align: left;
  flex-wrap: wrap;
  padding-top: 200px;
  width: 33%;
  padding-left: 5%
}

.button {
  background-color: #ffffff;
  color: #0D47A1;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}


.header-actions {
  display: flex;
  flex-direction: column;
  align-items: right;
  gap: 10px;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  color:#1E2A38;
  height: 100%;
}

.column {
  background-color: #ffffff; /* light background for each column */
  text-align: left;
  padding: 5%;
  display: flex;
  flex-direction: column;
}

#forms

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

/* Inputs and textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}