/*---------------------------------- Hero Section --------------------------------------*/
.page-top-section {
  padding: 50px 0 50px 0;
}
/* Full width container */
.project-banner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.project-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000; /* black bars on top/bottom if needed */
}


/* Clickable video wrapper */
.video-link {
  display: block;
  text-decoration: none;
}

/* Desktop height control (optional) */
@media (min-width: 992px) {
  .project-video {
    height: 550px;
    object-fit: cover;
  }
}


.page-top-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.page-top-left h2 {
  font-size: 80px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  word-break: break-word;
}

.page-top-right {
  max-width: 550px;
}

.page-top-right p {
  font-size: 22px;
  line-height: 30px;
  color: #555;
  margin: 0;
}

/* ---------- Tablet (991px ↓) ---------- */
@media (max-width: 991px) {
  .page-top-section {
    padding: 50px 0 50px;
  }

  .page-top-content {
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 30px;
  }

  .page-top-left h2 {
    font-size: 60px;
  }

  .page-top-right {
    max-width: 90%;
  }

  .page-top-right p {
    font-size: 15px;
  }
}

/* ---------- Mobile (576px ↓) ---------- */
@media (max-width: 576px) {
  .page-top-section {
    padding: 50px 0 50px;
  }

  .page-top-left h2 {
    font-size: 40px;
  }

  .page-top-right p {
    font-size: 22px;
  }
}

/* ---------- Small Mobile (375px ↓) ---------- */
@media (max-width: 375px) {
  .page-top-section {
    padding: 60px 0 35px;
  }

  .page-top-left h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .page-top-right p {
    font-size: 13px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

/*---------------------------------- Contact Section --------------------------------------*/
.contact-section {
  padding: 4rem 2rem;
  background: #fff;
}

.contact-heading {
  display: flex;
  font-size: 44px;
  font-weight: 700;
  align-items: center;
  color: #1b1b1b;
  gap: 1.5rem;
  margin-left: 4rem;
}

.contact-heading .square {
  width: 25px;
  height: 25px;
  background-color: #1b1b1b;
  display: inline-block;
}

.divider {
  border: none;
  border-top: 2px solid #999;
  margin: 1.5rem 0 2.5rem 3rem;
  width: 90%;
}

.contact-info1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-left: 3rem;
}

.info-box {
/*   flex: 1 1 250px; */
  min-width: 250px;
  margin-right: 3rem;
}

.info-box h3 {
  font-size: 2rem;
  color: #242424;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-box p {
  color: #858D9D;
  font-size: 20px;
  line-height: 1.6;
}

.info-box a {
  text-decoration: none;
  color: #767d92;
  transition: color 0.3s ease;
}

.info-box a:hover {
  color: #1b1b1b;
}

/* ---------- Tablet (991px ↓) ---------- */
@media (max-width: 991px) {
  .contact-heading {
    font-size: 36px;
    margin-left: 2rem;
  }

  .divider {
    margin-left: 2rem;
    width: 100%;
  }

  .contact-info1 {
    margin-left: 2rem;
    gap: 1.5rem;
  }

  .info-box {
    margin-right: 0;
  }
}

/* ---------- Mobile (576px ↓) ---------- */
@media (max-width: 576px) {
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-heading {
    font-size: 28px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .divider {
    margin: 1rem 0 2rem 0;
  }

  .contact-info1 {
    margin-left: 0;
    flex-direction: column;
  }

  .info-box h3 {
    font-size: 1.5rem;
  }

  .info-box p {
    font-size: 16px;
  }
}

/* ---------- Small Mobile (375px ↓) ---------- */
@media (max-width: 375px) {
  .contact-section {
    padding: 2.5rem 1rem;
  }

  .contact-heading {
    font-size: 24px;
    gap: 1rem;
  }

  .contact-heading .square {
    width: 18px;
    height: 18px;
  }

  .divider {
    margin: 1rem 0 1.5rem 0;
  }

  .info-box h3 {
    font-size: 1.3rem;
  }

  .info-box p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*---------------------------------- Map Section --------------------------------------*/
.map-section {
  margin-top: 3rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  width: 100%;
  border-radius: 10px;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ---------- Tablet (991px ↓) ---------- */
@media (max-width: 991px) {
  .map-section {
    margin-top: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }

  .map-section iframe {
    height: 350px;
  }
}

/* ---------- Mobile (576px ↓) ---------- */
@media (max-width: 576px) {
  .map-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
  }

  .map-section iframe {
    height: 300px;
  }
}

/* ---------- Small Mobile (375px ↓) ---------- */
@media (max-width: 375px) {
  .map-section {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 6px;
  }

  .map-section iframe {
    height: 250px;
  }
}
