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

    footer {
  background-color: #121657;
  color: #eee;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  margin-top: 40px;
 }


    /*conatct us*/
      .contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

 

  .contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* Contact form styling */
  .contact-form {
    flex: 1 1 400px;
    min-width: 280px;
  }

  .contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
  }

  .contact-form textarea {
    min-height: 100px;
  }

  .contact-form button {
    background: #121657;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background: #292d77;
  }

  /* Contact info styling */
  .contact-info {
    flex: 1 1 300px;
    min-width: 280px;
    background: #fff7e6;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255,165,0,0.1);
  }

  .contact-info h2 {
    margin-top: 0;
    color:  rgb(29, 117, 56);
    margin-bottom: 20px;
  }

  .contact-info p {
    margin: 10px 0;
    font-size: 16px;
  }

  .contact-info a {
    color:  rgb(29, 117, 56);
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  /* Responsive: stack vertically on small screens */
  @media (max-width: 700px) {
    .contact-grid {
      flex-direction: column;
    }
  }
/*contact us end*/

    /*about us*/
     .about-container {
    display: flex;
    max-width: 900px;
    margin: 40px auto;
    gap: 30px;
    padding: 0 20px;
    align-items: center;
    flex-wrap: wrap; /* stack on small screens */
  }

  .about-us {
    flex: 1 1 400px;
    min-width: 280px;
  }

  .about-us h2 {
    text-align: left;
    border-bottom: 3px solid  rgb(29, 117, 56);
    padding-bottom: 8px;
    width: fit-content;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
  }

  .about-us p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
  }

  .about-image {
    flex: 1 1 400px;
    min-width: 280px;
  }

  .about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: auto;
    margin-top: 20%;
  }
    
   /* Container for all four columns */
  .srvimage-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap; /* single row */
  }

  /* Each column */
  .srvimage-col {
    flex: 1 1 220px;
    max-width: 220px;
    text-align: center;
  }

  /* Wrapper holding image + text together */


  /* The image */
  .image-text-container img {
    width: 100%;
    height: 270px; /* fixed equal height */
    object-fit: cover;
    border-radius: 8px 8px 0 0; /* rounded corners on top */
    border-bottom: none; /* no border bottom to connect to text box */
    transition: transform 0.3s;
    display: block; /* removes inline spacing */
  }


  /* Text below the image */
  .text-box {
    background: #343774; /* transparent black */
    padding: 10px;
    border-radius: 0 0 8px 8px; /* rounded corners on bottom */
    color: white;
    text-align: center;
    height: 300px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .text-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

     /* Four Columns for Images */
    .image-row {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .image-col {
        flex: 1 1 200px;
        max-width: 220px;
        text-align: center;
    }
    .image-col img {
        width: 100%;
        height: 400px; /* Fixed equal height */
        object-fit: cover; /* Crops image to fit without distortion */
        border-radius: 8px;
        border: 2px solid #ddd;
        transition: transform 0.3s;
    }
    .image-col img:hover {
        transform: scale(1.05);
        border-color:  rgb(29, 117, 56);
    }
     h1 {
        text-align: center;
        margin-top: 40px;
        display: inline-block;
        border-bottom: 4px solid rgb(29, 117, 56);
        padding-bottom: 5px;
        font-size: 28px;
    }
    .heading-container {
        text-align: center;
    }
    .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #121657;
        height: 70px; /* Banner height */
        padding: 0 20px;
    }
    .logo img {
        height: 73px; /* Match banner height exactly */
        margin-left: 20px;
    }
    .nav {
        display: flex;
        gap: 15px;
        padding-right: 7%;
        padding-top: 20px;
       }
    .nav a {
        color: white;
        text-decoration: none;
        padding: 8px 15px;
        background-color: #121657;
        border-radius: 5px;
        transition: background-color 0.3s;
        padding-right: 20px;
    }
    .nav a:hover {
        background-color: #ffffff;
        color: 121657;
    }
    .about-us-heading {
  text-align: left;       /* Align text to the left */
  margin-left: 20px;      /* Optional: add some left margin */
  color: #333;            /* Your preferred color */
  font-size: 28px;        /* Adjust size as needed */
  border-bottom: 3px solid rgb(27, 107, 58);  /* Optional underline */
  padding-bottom: 5px;    /* Space between text and underline */
  width: fit-content;     /* Shrink width to text content */
}
/* Hamburger button - hidden on large screens */
.hamburger {
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hide by default */
  padding: 0;
  margin-left: 20px;
  align-self: center;
}

/* On small screens: show hamburger and hide nav */
@media (max-width: 700px) {
  .nav {
    display: none; /* hide nav links by default */
    flex-direction: column;
    background-color: #121657;
    position: absolute;
    top: 70px; /* below the banner */
    right: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
  }

  .nav a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .hamburger {
    display: block; /* show hamburger on small */
  }
}

/* When nav is active (shown) */
.nav.active {
  display: flex !important;
}


    /* Responsive adjustments */
    @media (max-width: 700px) {
        .contact-grid {
            flex-direction: column;
        }
        .about-container {
            flex-direction: column;
            align-items: flex-start;
        }
        .about-text, .about-image {
            min-width: 100%;
        }
        .srvimage-row {
            flex-wrap: wrap;
        }
    }
