@import url("https://fonts.cdnfonts.com/css/poppins");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
}

html,
body {
  height: 100%;
  width: 100%;
}

.main {
  background-color: rgba(127, 255, 212, 0.11);
}

.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; /* slightly more spacing from edge */
  }

  .whatsapp-icon a {
    width: 13vw; /* larger touch-friendly button */
    height: 13vw;
    font-size: 5vw;
    box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.3);
  }

  .whatsapp-icon i {
    font-size: 7vw; /* bigger icon inside */
  }
}

.page1-wrapper {
  width: 100%;
  padding: 1vw 2vw;
}
.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;
} */
.nav-number a:hover {
  color: yellow;
}
@media (max-width: 480px) {
  .main {
    overflow-x: hidden;
  }

  .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;
  }
}

.page1-wrapper h1 {
  font-size: 3vw;
  font-weight: 600;
}
.page1-image{
    height: 92vh;
    width: 100%;
    margin: .6vw 0vw;
    border-radius: 1vw;
    overflow: hidden;
}
.page1-image img{
    height: 100%;
    width: 100%;
}

.card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2vw;
  padding: 3vw 5vw;
  flex-wrap: wrap;
}
.card {
  height: 40vh;
  width: 20vw;
  border-radius: 0.5vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}
.card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: blur(0.1px) brightness(60%);
  transform: scale(1.1);
}
.card-content {
  position: absolute;
  bottom: 0.5vw;
  left: 1vw;
  color: antiquewhite;
}
.card-content h3 {
  font-weight: 600;
  font-size: 1vw;
}
.card-content p {
  font-size: 1vw;
}
.card:hover {
  transform: scale(1.04);
  box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.55);
}
.heading2{
  text-align: center;
  padding-top: 2vw;
  padding-left: 4vw;
  font-size: 2.5vw;
  font-weight: 700;
}

.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;
}
h1 {
  text-align: left;
  padding-top: 2vw;
  padding-left: 3vw;
}
.description {
  text-align: justify;
  padding: 0.2vw 3.3vw;
  color: rgba(0, 0, 0, 0.548);
  font-size: 0.95vw;
}
@media (max-width: 480px) {
    .page1-image{
        height: auto;
    }
    h1{
        font-size: 4vw;
    }
    .heading2{
        font-size: 4vw;
    }
    .description{
        font-size: 2vw;
    }
    .card-wrapper{
        flex-direction: column;
        gap: 6vw;
    }
    .card {
  height: 25vh;
  width: 80vw;

}
.card-content h3 {
  font-weight: 700;
  font-size: 3vw;
}
.card-content p {
  font-size: 2vw;
}
}
@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;
  }
}