.fluid-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}

.container-fluid.main-container {
  /* padding-bottom: 10px; */
}

.main-container {
  border-radius: 15px;
  overflow: hidden;
  max-width: 1280px;
  width: 100%;
}

.row {
  margin: 0;
}

.image-col {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
}

.image-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #ffffff;
  padding-bottom: 50px;
}

.form-col {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
  box-shadow: -1px 3px 16px rgba(0, 0, 0, 0.08);
  direction: rtl;
  text-align: right;
  font-size: 18px !important;
  color: #000 !important;
  border: 1px solid #e0e0e0;
  font-weight: 400;
}
[dir="ltr"] .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
  box-shadow: -1px 3px 16px rgba(0, 0, 0, 0.08);
  direction: ltr;
  text-align: left;
  font-size: 18px !important;
  color: #000 !important;
  border: 1px solid #e0e0e0;
  font-weight: 400;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
  font-size: 18px !important;
}

.form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  background-color: #4a69bd;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: 40%;
}

.btn-submit:hover {
  background-color: #3b5299;
  color: #ffffff;
}
@media (max-width: 992px) {
  .image-col {
    order: 2;
    height: 300px;
  }
  .form-col {
    order: 1;
    padding: 50px;
  }
  .main-container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .form-col {
    padding: 20px 20px 60px 10px;
  }

  p.display-1.d-flex.display-md-3.fs-2.pb-4.sub.justify-content-start.clr-secondary {
    color: #304998;
  }

  .main-container {
    border-radius: 10px;
  }
  .form-control {
    padding: 10px 12px;
    font-size: 16px !important;
    color: #000 !important;
  }
  .form-control::placeholder {
    font-size: 16px !important;
  }
  .btn-submit {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

.contact-section {
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

.contact-card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 0;
}

.contact-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 0 0 calc(33.33% - 13.33px);
  max-width: 350px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #343a40;
}

.contact-card .icon-wrapper {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact-card .icon-wrapper i {
  font-size: 3rem;
  color: #4a69bd;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}

.contact-card p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0;
  direction: rtl;
  text-align: center;
}
@media (max-width: 992px) {
  .contact-card {
    flex: 0 0 calc(50% - 10px);
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
  }
  .image-col img {
    display: none;
  }

  .contact-card {
    flex: 0 0 100%;
    max-width: 400px;
  }
  .contact-card .icon-wrapper {
    width: 100%;
    height: 100%;
  }
  .contact-card .icon-wrapper i {
    font-size: 2.5rem;
  }
  .contact-card h3 {
    font-size: 1.1rem;
  }
  .contact-card p {
    font-size: 0.9rem;
  }
}
