@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
}

html,
body {
    height: 100%;
    width: 100%;
}


 .whatsapp-icon {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 1000;
}
.whatsapp-icon i {
  font-size: 2.8vw;
}
.whatsapp-icon a {
  width: 3.8vw;
  height: 3.8vw;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-icon a:hover {
  transform: scale(1.1);
  background-color: #20b958;
}

@media (max-width: 480px) {
  .whatsapp-icon {
    bottom: 2.5vh;
    right: 4vw;
  }

  .whatsapp-icon a {
    width: 13vw;
    height: 13vw;
    font-size: 5vw;
    box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.3);
  }

  .whatsapp-icon i {
    font-size: 7vw;
  }
}
nav{
    padding: 0.5vw;
}

.navbar {
  height: 12vh;
  width: 100%;
  background: linear-gradient(45deg, #1e90ff, #094480);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  border-radius: 15px;
}

.navbar img {
  width: 12vw;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4vw;
}

.navlinks a {
  text-decoration: none;
  font-size: 1.4vw;
  color: white;
  transition: 0.3s;
}

.navlinks a:hover {
  color: yellow;
}

.nav-number a {
  color: white;
  text-decoration: none;
  font-size: 1.4vw;
  transition: 0.3s;
}

.nav-number a:hover {
  color: yellow;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1rem;
    margin-top: 6vw;
}

h1 {
    text-align: center;
    color:  #094480;
    margin-bottom: 2rem;
    font-size: 1.7rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color:#094480;
    border-bottom: 2px solid #ffe2b3;
    padding-bottom: 0.5rem;
}

p,
li {
    font-size: 1rem;
    margin: 0.8rem 0;
}

ul {
    padding-left: 1.5rem;
}

.highlight {
    background-color: #fff3e6;
    border-left: 4px solid #094480;
    padding: 1rem;
    margin: 1.5rem 0;
}

.contact-info {
    margin-top: 2rem;
    background: #fffaef;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ad00f1;
}

.contact-info p {
    margin: 0.5rem 0;
}


.page7 {
    min-height: 55vh;
    width: 100%;
    padding: 1vw 2vw;
    background-color: #F8F8F8;
}
.footer {
  background: #0f172a;
  color: #ccc;
  font-family: "Poppins", sans-serif;
  padding: 50px 5vw;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3vw;
}

.footer-column h4 {
  color: #ffcc00;
  margin-bottom: 1vw;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ffcc00;
}

.footer-column.address p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1vw;
}

.footer-bottom {
  text-align: center;
  margin-top: 2vw;
  border-top: 1px solid #333;
  padding-top: 1vw;
}

.footer-bottom .social-links a {
  color: #ccc;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: 0.3s;
}

.footer-bottom .social-links a:hover {
  color: #ffcc00;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-top: 10px;
}

.form-container {
  display: flex;
  width: 70%;
  margin-left: 10vw;
  height: 75vh;
  z-index: 9999;
  padding: 1.5vw;
  scale: 0;
  position: fixed;
  left: 10%;
  top: 20%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}



@media (max-width: 480px) {


  .navbar {
    height: 10vh;
    width: 100%;
  }

  .navbar img {
    width: 20vw;
  }

  .navlinks a {
    text-decoration: none;
    font-size: 3.7vw;
    color: white;
  }

  .nav-number a {
    display: none;
  }
}
/* page7 responsive  */
@media screen and (max-width: 480px) {
    .page7 {
        padding: 4vw 5vw;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .footer-logo,
    .footer-menu,
    .footer-social {
        width: 100%;
        margin-bottom: 2vw;
    }

    .footer-logo img {
        width: 30vw;
    }

    .footer-logo p {
        font-size: 3.5vw;
    }

    .footer-menu h3 {
        font-size: 4.5vw;
        margin-left: 0;
    }

    .footer-anchor {
        margin-left: 0;
        gap: 2vw;
    }

    .footer-anchor a {
        font-size: 3.8vw;
    }

    .footer-social h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .icons {
        gap: 4vw;
        margin-top: 2vw;
    }

    .icons i {
        height: 12vw;
        width: 12vw;
        font-size: 6vw;
        padding: 2vw;
    }

    .footer-bottom p {
        font-size: 3.5vw;
        padding-bottom: 4vw;
    }

  .navbar {
    height: 10vh;
    width: 100%;
  }

  .navbar img {
    width: 20vw;
  }

  .navlinks a {
    text-decoration: none;
    font-size: 3.7vw;
    color: white;
  }

  .nav-number a {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 0 2vw;
    text-align: left;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h4 {
    font-size: 4.5vw;
    margin-bottom: 2vw;
    color: #fff;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin-bottom: 1.5vw;
  }

  .footer-column ul li a {
    color: #ccc;
    font-size: 3.5vw;
    text-decoration: none;
  }

  .footer-column ul li a:hover {
    color: #fff;
  }

  .footer-column p {
    font-size: 3.4vw;
    line-height: 5vw;
    color: #bbb;
  }

  .footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5vw;
    margin-top: 4vw;
  }

  .footer-social i {
    font-size: 5vw;
  }

  .footer-column iframe {
    width: 90%;
    height: 150px;
    border-radius: 8px;
    margin-top: 3vw;
  }

  .footer-bottom {
    padding-left: 2vw;
    margin-top: 6vw;
    text-align: left;
  }

  .footer-bottom p {
    font-size: 3.2vw;
    color: #ccc;
  }

  #second-column {
    display: none;

  }

  #third-column {
    display: none;
  }


}