
      body {
        margin: 0;
        font-family: "Segoe UI", sans-serif;
        color: #1e1e1e;
        background-color: #ffffff;
      }

      a{
        text-decoration: none;
      }

      header.hero {
        background: whitesmoke;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
      }

      header.hero h1 {
        font-size: 3rem;
        background: rgba(0, 0, 50, 0.6);
        padding: 20px 40px;
        border-radius: 8px;
      }
        /* Navigation Bar */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f; /* Navy Blue */
  padding: 20px 10%;
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
   transition: color 0.3s ease;
}
.logo:hover {
  color: gold;
}
/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: goldenrod; /* Highlight color on hover or active */
}
.burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }

      .burger .line {
        width: 25px;
        height: 3px;
        background: white;
      }

.aboutus-heading{
    margin-top: 2.5%;
    text-align: center;
    font-weight: bold;
    font-size: 90%;
    color: #001F3F;
    letter-spacing: 3px
}
.first-section-title{
    text-align: center;
    font-weight:bolder;
    font-size: 300%;
}
      .container {
        max-width: 1200px;
        margin: auto;
        padding: 60px 20px;
      }

      .about-section {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 60px;
      }

      .about-text {
        flex: 1;
        padding-right: 30px;
      }

      h2 {
        color: #0b1a36;
        margin-bottom: 20px;
      }

      .why-choose {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
      }

      .why-img {
        flex: 1;
      }

      .why-img img {
        width: 100%;
        border-radius: 8px;
      }

      .why-list {
        flex: 1;
      }

      .why-list ul {
        list-style: none;
        padding: 0;
      }

      .why-list li {
        margin-bottom: 16px;
        font-weight: bold;
        color: #0b1a36;
      }

      .why-list li span {
        display: block;
        font-weight: normal;
        color: #333;
      }
      /* FOOTER */

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001F3F;
    color: white;
    font-size: 1.2w;
}

.footer-links-section{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-left: 5%;
    font-size: 90%;
    gap: 15%;
}

.link-texts, .phone,.contact-info{
    white-space: nowrap; 
    font-weight: lighter;
    font-size: 1.2vw;
    font-family: DMSans, sans-serif;

}

.footer-links{
    color: white;
    text-decoration: none;
}

#footer-logo{
    font-size: 2vw;
}

.footer-email{
    color: white;
}

.phone-numbers{
    display: flex;
    flex-direction: column;
    margin-top: -5%;
}

.contact-info{
    margin-right: 10%;
}

.phone{
    margin-left: 10%;
    color: white;
}

     
  
.menu-toggle {
  display: none;
}

@media (max-width: 800px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    flex-direction: column;
    background-color:navy;
    padding: 1rem;
    border-radius: 8px;
    z-index: 999;
  }

header.hero h1 {
    font-size: 2rem;
    padding: 15px 20px;
  }

  .container {
    flex-direction: column;
    padding: 1rem;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    width: 100%;
  }
  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }
  .why-choose {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .why-list {
    order: 2;
  }

  .why-img {
    order: 1;
  }

  footer{
        padding: 5%;
    }

  #footer-logo{
        align-items: start;
        order: 1;
        font-size: 4vw;
    }
    a{
      text-decoration: none;
    }

    .footer-links-section{
        flex-direction: column;
        align-items: center;
        order: 2;
        font-size: 10vw;
    }

    .link-texts,.contact-info,.phone{
        font-size: 2vw;
    }

    .contact-info,.phone{
        order: 3;
        font-size: 2.5vw;
        margin-right: 0;
    }
}

/* ANIMATION */
.footer-email:hover,.phone:hover,#footer-logo:hover,.footer-links:hover{
    color: gold;
    transition: color 0.3s ease;
}