.contact-heading-section{
     width: 100%;
    min-height: 70vh;
    position: relative;
    background-image: url("https://en.idei.club/uploads/posts/2023-06/1685964991_en-idei-club-p-nature-dark-green-dizain-krasivo-1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 200px 200px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Form button */
.btn-primary {
    background-color: #051a00;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%;
    padding: 20px;
}

.btn-primary:hover {
    background-color: #000000;
}

.btn-outline-secondary:hover {
    background-color: #e8f0ef;
    color: #1f661f;
}

/* Modal style */
.modal-content {
    background-color: #fff;
    color: #000;
    border-radius: 12px;
    padding: 20px;
}

.head-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #051a00;
    margin-bottom: 10px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap; /* prevent wrapping between left and right */
  max-width: 1100px;
  margin: 2rem auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-height: 1000px; /* reduce from 1200px unless needed */
}

.left-panel, .right-panel {
  min-width: 0; /* prevent flexbox from forcing wrap due to width constraints */
}


.left-panel {
  flex: 1 1 60%;
  background-image: url("https://media.istockphoto.com/id/1468396766/photo/sustainble-green-building-eco-friendly-building-sustainable-glass-office-building-with-tree.jpg?s=612x612&w=0&k=20&c=fx2SQQxPmKY6oUpR-ZcJEB5K3dYJIpSFwVC0sM2FIW0=");
    background-size: cover;
    background-position: center;
  padding: 2rem;
  flex-direction: column;
  justify-content: space-between;
  min-width: 280px;
}

.right-panel {
  flex: 1 1 40%;
  padding: 0px;
  background-color: #ffffff;
  min-width: 300px;
}

.left-panel h2 {
  color: #0A1931;
  font-weight: bold;
}

.left-panel p {
  color: #555;
}

.left-panel {
  position: relative;
}

.social-icons {
  position: absolute;
  bottom: 20px;
  right: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 5px;
}

.social-icons a i {
  width: 40px;
  height: 40px;
  color: white;
}

.form-label {
    font-weight: bold;
    color: #051a00;
}

h1 {
  margin: 50px 0 30px;
  text-align: center;
}

.faq-container {
  margin: 0 auto;
  max-width: 1000px;
}

.faq {
  background-color: transparent;
  border: 1px solid #9fa4a8;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: 0.3s ease;
  color: white;
}

.faq.active {
  color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq-title{
  font-size: 30px;
  
}

.faq.active::before,
.faq.active::after {
  color: #2ecc71;
  content: "\f075";
  font-family: "Font Awesome 6 Free";
  font-size: 7rem;
  left: 20px;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  z-index: 0;
}

.faq.active::before {
  color: #3498db;
  left: -30px;
  top: -10px;
  transform: rotateY(180deg);
}

.faq-title {
  margin: 0 35px 0 0;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  height: 30px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
}
.faq-toggle .fa-times,
.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: white;
  display: block;
}

.faq-toggle .fa-chevron-down {
  display: block;
}

.faq.active .faq-toggle {
  background-color: #9fa4a8;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    flex: 1 1 100%;
  }
}