/* -------------- Banner Section ----------------- */
.banner-section {
  width: 100%;
  height: 100vh;
  max-height: 875px;
  margin-top: 81px !important;
  overflow: hidden;
  position: relative;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-content-setion {
  position: relative;
  top:-200px;
  left:-50px;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary);
  padding: 0 1rem;
}

.banner-content {
  max-width: 900px;
}

.banner-content h1 {
  font-size: 2.75rem;
  font-weight: 600;
  font-family: var(--ff-primary);
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.banner-content p {
  font-size: 36px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .banner-section {
    height: 90vh;
  }

  .banner-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .banner-content p {
    font-size: 26px;
    line-height: 1.5;
  }
}

/* ---------- Animation styles ---------- */
.banner-content h1,
.banner-content p {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.banner-content.visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.banner-content.visible p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* --------------contact-section--------------- */

.contact-us-section {
  padding: 60px 0;
}

.contact-header {
  font-size: 24px;
  color: #161616;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-subheader {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 40px;
}

.contact-form label {
  font-size: 14px;
  color: #4d4d4d;
  margin-bottom: 5px;
}

.contact-form .form-control {
  height: 42px;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

.contact-form textarea.form-control {
  height: auto;
}

.contact-submit-btn {
  background-color: #161616;
  color: #fff;
  padding: 10px 40px;
  border-radius: 10px;
  border: 1px solid #161616;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background-color: transparent;
  color: #161616;
  border: 1px solid #161616;
}

.contact-info-box {
  background-color: #f2fff6;
  padding: 40px 20px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-item {
  margin-bottom: 40px;
  max-width: 290px;
}

.info-item i {
  font-size: 24px;
  color: #009a4e;
  margin-bottom: 10px;
  display: block;
}

.info-item p {
  margin: 0;
  font-size: 16px;
  color: #000000;
}
