body {
  background-color: #000;
  color: #fff;
  font-family: "Syne", sans-serif;
  margin: 0;
  padding: 0;
}

.section-1 {
  width: 100%;
  background-image: url("../images/navbar/waves.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 38vh !important;

  position: relative;
  margin: 0;
  margin-top: 80px;
  opacity: 1;
  padding: 0px 20px;
}

.contact-section {
  background: rgba(26, 26, 26, 1);
  border-radius: 50px;
  /* max-width: 1240px; */
  margin: 0px 10%;
  /* margin-top: auto; */
  padding: 4%;
}

.contact-section h2 {
  font-weight: 700;
  font-size: 50px;
}

/* Contact Info */
.contact-info {
  margin-top: 3rem;
}

.contact-info h5 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: #bbb;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

/* Form Box */
.form-box {
  background-color: #f3f3f3;
  border-radius: 25px;
  padding: 2rem;
  color: #000;
  max-width: 100%;
  margin-left: 0;
}

.form-box h4 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.form-box p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  margin-bottom: 1rem;
  background: transparent;
  padding: 4px 0px;
}

.formMessage {
  margin-bottom: 15px;
}

.btn-send {
  background: linear-gradient(84.82deg, #0147FF 15.74%, rgba(1, 71, 255, 0) 204.53%);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.6rem 1.5rem;
  border: none;
  transition: 0.3s ease;
}

.btn-send:hover {
  background: linear-gradient(84.82deg, #003edb 15.74%, rgba(1, 71, 255, 0.4) 204.53%);
  transform: translateY(-2px);
}

/* Responsive Map Container */
.map-section {
  margin-top: 5rem;
}

.map-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 30px;
}

@media (max-width:1024px) {
  .contact-section {
    margin: 0 5%;
    margin-bottom: 10%;
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .section-1 {
    height: 25vh !important;
  }
}

@media (max-width: 767px) {
  .section-1 {
    height: 20vh !important;
  }

  #box {
    display: none;
  }

  .contact-section {
    padding: 4%;
    margin: 0 5%;
    /* 0 for top/bottom, 5% for left/right */
    border-radius: 25px;
  }

  .main-heading {
    text-align: center;
  }

  .sub-heading2 .sub-heading3 .small-p {
    text-align: center;
  }

  .contact-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .map-container,
  .map-container iframe {
    border-radius: 15px;
  }
}

/* Adjust border radius and spacing for smaller devices */
@media (max-width: 575px) {
  .map-container,
  .map-container iframe {
    border-radius: 10px;
  }
}

@media (max-width:375px) {
  .section-1 {
    height: 33vh !important;
  }
}