body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #333;
}
header, footer {
  background-color: #1F3A93;
  color: white;
  padding: .5em;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 10%; 
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1em;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
.nav-links li:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
}

.logo img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s;
  background-color: white;
}

.logo img:hover {
  transform: scale(1.1);
}

















/* Main container grid for desktop */





 .container {
  gap: 16px;
  padding: 20px;
  margin: 0 5%;
  max-width: 100%;
  /* background-color: #262c3f; */
}

.container:first-of-type {
  position: relative;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
  box-shadow: none;
  background: none;
  padding: 0;
}


.hero-image img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  display: block;
}

.top-left {
  position: absolute;
  top: 30px;
  left: 40px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 24px 32px;
  border-radius: 8px;
  max-width: 90%;
  margin: 150px 200px;
}

.top-left h3 {
  margin: 0 0 8px 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.top-left p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}


.container > div {
  background: #f8f8f8;
  /* padding: 24px 20px; */
  border-radius: 8px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* 
// This will list divs horizontally.
.container2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 20px;
  margin: 0 auto;
  max-width: 100%;
} */

.container2 .serving {
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 100%;
  background-color: #1F3A93;
  color: white;
  text-align: center; 
  font-size: 1.5rem;
}

.container2 .serving br {
  display: none;
}

.container2 .serving button {
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.container2 .serving button:hover {
  background: #ffffff;
}

.container2 .serving button a {
  color: #fff;
  text-decoration: none;
}


.container2 .services {
  padding: 20px 20px;
  margin: 5% auto;
  max-width: 80%;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.container2 .services h3 {
  font-size: 1.5rem;
  margin-bottom: 45px;
  color: #1a2a3a;
  text-align: center;
  /* margin-left: 7%; */
  width: 100%;
  border-bottom: 2px solid #ff0000;
  border-bottom-right-radius: 50px;
}




.container2 .services-list {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
}

.container2 .services-list div {
  flex: 1 1 calc(5% - 16px);
  margin: 8px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.container2 .services-list div img {
  width: 100%;
  height: 100%;
}

.container2 .services-list div p {
  padding: 12px;
  font-size: 1rem;
  color: #333;
}

.services-list-items {
  padding-left: 16px;
  margin-left: 20px;
}

.container2 section {
  display: flex;
  padding: 2% 35%;
  max-width: 100%;
  height: auto;
  text-align: center;
  background-color: #1F3A93;
  color: #fff;
}

.container2 section p {
  font-size: 1.5rem;
  line-height: 1.4;
  float: left;
  margin-right: 50px;   
  font-weight: 800;
} 




.container2 .mission {
  padding: 80px 120px;
  margin: 0 auto;
  max-width: 100%;
  background-color: #b5c7f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.container2 .mission h3 {
  font-size: 1.5rem;
  margin-bottom: 45px;
  color: #1a2a3a;
  text-align: center;
  /* margin-left: 7%; */
  width: 100%;
  border-bottom: 2px solid #ff0000;
  border-bottom-right-radius: 50px;
}

.container2 .mission p {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 12px;
}

.container2 .mission ul {
  padding-left: 20px;
  margin: 12px 0 0 0;
}

.container2 .mission ul li {
  margin-bottom: 6px;
  font-size: 1.7rem;
  line-height: 1.5;
}







.container2 .about {
  padding: 20px 20px;
  /* margin: 0 auto; */
  max-width: 100%;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
}

.container2 .about h3 {
  font-size: 1.5rem;
  margin-bottom: 45px;
  color: #1a2a3a;
  text-align: center;
  /* margin-left: 7%; */
  width: 100%;
  border-bottom: 2px solid #ff0000;
  border-bottom-right-radius: 50px;
}

.container2 .about img {
  width: 70%;
  height: 10%;   
  border-radius: 8px;
  margin-top: 12px;
}

.container2 .about p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 12px;
}














/* Footer Styles */
footer {
  background: #1F3A93;
  color: #fff;
  padding: 48px 0 24px 0;
  font-size: 1rem;
  margin-top: 40px;
}

.container-footer {
  max-width: 100%;
  padding: 20px;
  margin: 0 5%;
}

.footer {
  display: flex;
}

.footer-logo {
  width: 250px;
  height: 250px;
  margin: 0 35px 18px auto;
  display: block;
  border-radius: 20px;
}

footer .contact {
  width: 650px;
  margin: 0 35px 18px auto;
}

footer .contact-info {
  margin: 0 2px;
  
}

footer .contact-info p {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

footer .social-media {
  margin: 18px 0 10px 0;
} 


footer .about-us {
  /* width: 650px; */
  margin: 0 35px 18px 50px;
  width: 100%;
  /* background-color: #b5c7f8; */
}

footer .about-us p {
  /* margin: 0 40px; */
  width: 100%;
  line-height: 30px;
}

footer > div {
  margin-bottom: 24px;
}

footer h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #ff0000;
}

footer p{
  color: #eaeaea;
  margin: 0 0 8px 0;
  font-size: 1rem;
  text-decoration: none;
}

footer .social-media {
  margin: 18px 0 10px 0;
}

footer .social-media img {
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: #1F3A93;
  margin-right: 5px;
  vertical-align: middle;
}


footer .footer-links {
  display: flex;
  flex-direction: column; /* Makes the links stack vertically */
  align-items: flex-start; /* Aligns links to the left */
  padding-left: 50px;
  /* background-color: #ff0000; */
}
  

footer .footer-links a {
  /* margin-left: 30px; */
  font-size: 1rem;
  display: inline-block;
  transition: color 0.2s;
  color: white;
  width: 250px;
  /* background-color: #333; */
  padding: 5px;
}

footer .footer-links a:last-child {
  margin-right: 0;
}

footer > p {
  margin-top: 24px;
  font-size: 0.95rem;
  color: #bdbdbd;
  text-align: center;
}

footer > p a {
  color: #ff0000;
  font-weight: 500;
}

.footer-links-all {
  margin: 18px 0 10px 0;
  width: 100%;
  border-top: #f8f8f8 1px solid;  
}

.footer-links-all p {
  /* margin: 0; */
  font-size: 1rem;
  color: #eaeaea;
  /* text-align: center; */
  width: 100%;

}

.footer-links-all p a {
  color: #ffffff;
  font-weight: 500;
  /* margin: 20% 0; */
}













/*************** Responsive Styles *****************/
/*************** Responsive Styles *****************/
/*************** Responsive Styles *****************/
/*************** Responsive Styles *****************/


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }
  .menu-toggle {
    display: block;
    padding: 1em;
  }

  /* Container holding the image and the text */
  .container {
    position: relative;
    /* text-align: left; */
    /* color: black; */
  }

  /* Top left text */
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }

  header a.logo img {
    width: 60px;
    margin: 1em;
    height: auto;
    background-color: white;
    padding: 0.3em;
    border-radius: 5px;
  }




  



  /* Container holding the image and the text */

.hero-image img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: block;
}

.top-left {
  position: absolute;
  top: 10%;
  left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 10px 10px;
  border-radius: 8px;
  max-width: 90%;
  margin: 130px 15px;
}

.top-left h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.top-left p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.container {
  gap: 16px;
  /* padding: 1px; */
  margin: 1px 1px;
  max-width: 100%;
  /* background-color: #262c3f; */
}




  /*********** Serving Section **********/



  .container2 .serving {
    padding: 30px 5px;
    /* margin: 0 auto; */
    max-width: 100%;
    background-color: #1F3A93;
    color: white;
    text-align: center; 
  }

  .container2 .serving h3 {
    font-size: 1.3rem;
    color: #fff;
  }

  .container2 .serving br {
    display: none;
  }

  .container2 .serving button {
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 1rem;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .container2 .serving button a {
    color: #fff;
    text-decoration: none;
  }


  /* Services Section */

  .container2 .services {
    padding: 20px 10px;
    margin: 0 auto;
    max-width: 100%;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }

  .container2 .services h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a2a3a;
    text-align: center;
    margin-left: 15%;
    width: 70%;
    border-bottom: 2px solid #ff0000;
    border-bottom-right-radius: 50px;
  }

  .container2 .services-list {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
    flex-wrap: wrap;
  } 

  .container2 .services-list div img {
    width: 100%;
    height: 100%;
  }

  .container2 .services-list div p {
    padding: 12px;
    font-size: 1.1rem;
    color: #333;
  }

  .services-list-items {
    padding-left: 1px;
    margin-left: 2px;
  }


.container2 section {
  display: flex;
  padding: 2% 7.5%;
  max-width: 100%;
  height: auto;
  text-align: center;
  background-color: #1F3A93;
  color: #fff;
}

.container2 section p {
  font-size: 1rem;
  line-height: 1.4;
  float: left;
  margin-right: 20px;   
  font-weight: 600;
} 



/* Services Section */
  .services section {
    padding: 0 50px;
    /* margin-left: 50%; */
    /* margin: 0 auto; */
    max-width: 100%;
    height: 50px;
    text-align: center;
    /* color: white; */
    background-color: #1F3A93;
  }

  .services section p {
    font-size: 0.9rem;
    line-height: 1.4;
    /* color: #000000; */
    float: left;
    margin-right: 20px;   
    font-weight: 800;

  }



  /* Mission Section */
  
.container2 .mission {
  padding: 8px 12px;
  margin: 0 auto;
  max-width: 100%;
  background-color: #b5c7f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.container2 .mission h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #1a2a3a;
  text-align: center;
  /* margin-left: 7%; */
  width: 100%;
  border-bottom: 2px solid #ff0000;
  border-bottom-right-radius: 50px;
}

.container2 .mission p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 12px;
}

.container2 .mission ul {
  padding-left: 20px;
  margin: 12px 0 0 0;
}

.container2 .mission ul li {
  margin-bottom: 6px;
  font-size: 1.1rem;
  line-height: 1.6;
}





  /* About Section */


.container2 .about {
  padding: 10px 10px;
  /* margin: 0 auto; */
  max-width: 100%;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  box-sizing: border-box;
  border: 1px solid #ddd;
}

.container2 .about h3 {
  font-size: 1.5rem;
  margin-bottom: 35px;
  color: #1a2a3a;
  text-align: center;
  /* margin-left: 7%; */
  width: 100%;
  border-bottom: 2px solid #ff0000;
  border-bottom-right-radius: 50px;
}

.container2 .about img {
  width: 100%;
  height: auto;   
  border-radius: 8px;
  margin-top: 12px;
}

.container2 .about p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 12px;
}





  /* Footer Styles */

  footer a, .footer-links a {
    color: white;
    text-decoration: none;
  }

  footer {
    display: block;
    padding: 32px 8px 18px 8px;
    border-radius: 0;
  }

  .footer {
    display: block;
  }


  .container-footer {
    max-width: 100%;
    padding: 2px;
    margin: 5px;
  }

  .footer-logo {
    width: 250px;
    height: 250px;
    margin-left: 18%;
    margin-bottom: 50px;
    display: block;
    border-radius: 20px;
  }


  footer .contact {
    width: 100%;
  }

  footer .contact-info {
    margin: 0 2px;
    
  }

  footer .contact-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
  }

  footer h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #ff0000;
    width: 70%;
    border-bottom: 2px solid #ff0000;
    border-bottom-right-radius: 50px;
  } 



  footer > div {
    margin-bottom: 18px;
    text-align: center;
  }


  footer .social-media {
    margin: 18px 0 10px 0;
  }
  
  footer .social-media img {
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: #1F3A93;
    margin-right: 5px;
    margin-bottom: 50px;
    vertical-align: middle;
    /* color: white; */
  }


  footer .contact-info p {
    margin-bottom: 25px;
    font-size: 1.05rem;
  }


  
  footer .social-media {
    margin: 18px 0 10px 0;
  }
  
  footer .about-us {
    margin: 0 35px 18px 0;
    width: 100%;
  }

  footer .about-us p {
    margin-bottom: 50px;
    width: 100%;
    line-height: 30px;
  }


  
  footer .footer-links {
    display: flex;
    flex-direction: column; /* Makes the links stack vertically */
    align-items: flex-start; /* Aligns links to the left */
    padding-left: 0;
    margin-left: 0;
  }
    

  footer .footer-links a {
    font-size: 1rem;
    display: inline-block;
    transition: color 0.2s;
    color: white;
    width: 100%;
  }




  footer > div,
  footer .footer-links {
    margin-bottom: 50px;
    text-align: left;
  }

  footer .footer-links,
  footer .social-media {
    margin-top: 8px;
  }

}