/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= MAIN BANNER ================= */
.main-banner {
  width: 100%;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  margin-top: -10px;
  
}

.main-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= BANNER CONTENT ================= */
.banner-content {
  position: absolute;
  inset: 0;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.banner-content h1 {
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-content p {
  width: 65%;
  font-size: 18px;
  line-height: 26px;
}

/* ================= BANNER RESPONSIVE ================= */
@media (max-width: 1100px) {
  .banner-content h1 {
    font-size: 1.6rem;
  }
  .banner-content p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .banner-content p {
    width: 80%;
    font-size: 15px;
  }
}

@media (max-width: 580px) {
  .main-banner {
    min-height:10rem;
  }

  .banner-content {
    gap: 0.5rem;
  }

  .banner-content h1 {
    font-size: 1.1rem;
  }

  .banner-content p {
    width: 100%;
    font-size: 13px;
    line-height: 20px;
  }
}

/* ================= CONTENT CONTAINER ================= */
.content-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem;
}

@media (max-width: 1280px) {
  .content-container {
    padding: 2rem;
    gap: 2rem;
  }
}

@media (max-width: 960px) {
  .content-container {
    padding: 1rem;
  }
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= MODAL CONTENT ================= */
.modal-content {
  width: 50%;
  padding: 3rem;
  background-color: rgba(0, 144, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* ================= MODAL RESPONSIVE ================= */
@media (max-width: 1280px) {
  .modal-content {
    width: 70%;
  }
}

@media (max-width: 1024px) {
  .modal-content {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 2rem;
  }
}

@media (max-width: 560px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .enquiry-gap {
    gap: 2rem !important;
  }
}

/* ================= SUB BANNER ================= */
.subbanner-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.subbanner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= SUB BANNER RESPONSIVE ================= */
@media (max-width: 1600px) {
  .subbanner-container {
    height: 35rem;
  }
}

@media (max-width: 1400px) {
  .subbanner-container {
    height: 30rem;
  }
}

@media (max-width: 1024px) {
  .subbanner-container {
    height: 25rem;
  }
}

@media (max-width: 960px) {
  .subbanner-container {
    height: 23rem;
  }
}

@media (max-width: 600px) {
  .subbanner-container {
    height: 20rem;
  }
}

@media (max-width: 500px) {
  .subbanner-container {
    height: 15rem;
  }
}
