@charset "ISO-8859-1";
/* Contact Info Section */
.contact-us-section {
  background-color: #fff;
}

.contact-main-heading {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2b6f2b; /* HRS Exim Green */
}

.contact-sub-heading {
  font-size: 2rem;
  font-weight: 600;
}

.contact-sub-heading span {
  color: #2b6f2b;
}

.contact-desc {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 1.1rem;
  color: #555;
}

.contact-row {
  margin-top: 40px;
}

.contact-box {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.contact-icon {
  width: 60px;
  margin-bottom: 20px;
}

.contact-box h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b6f2b;
}

.contact-box a {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: #2b6f2b;
}

.contact-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #ddd;
}

@media (max-width: 991px) {
  .contact-box::after {
    display: none;
  }
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f0fff0;
}

.contact-form-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2b6f2b;
  margin-bottom: 10px;
}

.form-control {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-control:focus {
  border-color: #2b6f2b;
  box-shadow: none;
}

.send-btn {
  background-color: #2b6f2b;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #1f4f1f;
  transform: translateY(-2px);
}

.error-text {
  color: red;
  font-size: 0.85rem;
}

/* Scroll Animations */
.reveal, .fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.fade-up {
  transform: translateY(60px);
}

.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Map Section */
.map-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(43, 111, 43, 0.95);
  color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.map-overlay h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.map-overlay p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.map-overlay a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }

  .map-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: 100%;
  }
}
