
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}
/* CSS FOR SUPPORT SECTION */
.contact-section {
  position: relative;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
  background-blend-mode: overlay; /* Blend with the background image */
  margin-top: 120px;
  padding: 2rem 0;
}

.contact-section .icon-box {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-section .contact-icon {
  font-size: 1.8rem;
}

.contact-section h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  color: #ffffff;
}

.for-support {
  color: #ffffff;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.5;
}

.contact-section form .form-control {
  border: 1px solid #000000;
  border-radius: 0.375rem;
  padding: 0.875rem;
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent */
  color: #000000;
}

.contact-section form textarea {
  resize: none;
}

.contact-section form .btn-gradient {
  background: linear-gradient(90deg, #f39c12, #e74c3c);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-section form .btn-gradient:hover {
  opacity: 0.9;
}

.contact-section .form-check-label {
  color: #ffffff;
}

.contact-section h4 {
  color: #ffffff;
}

@media (max-width: 768px) {
  .contact-section {
    margin-top: 96px;
    padding: 1.25rem 0;
  }

  .contact-section h5 {
    font-size: 22px;
  }

  .contact-section .icon-box,
  .contact-section .contact-icon {
    font-size: 1.4rem;
  }

  .contact-section form .form-control,
  .contact-section form .form-select {
    padding: 0.75rem;
    font-size: 15px;
  }

  .contact-section form .btn-gradient {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 1rem 0;
  }

  .contact-section h5 {
    font-size: 20px;
  }

  .contact-section .for-support {
    font-size: 15px;
  }
}

/* Dark mode visibility fixes for contact page */
body.dark-mode .contact-section {
  background-color: rgba(0, 0, 0, 0.72);
  color: #f5f5f5;
}

body.dark-mode .contact-section h4,
body.dark-mode .contact-section h5,
body.dark-mode .contact-section .for-support,
body.dark-mode .contact-section .form-check-label {
  color: #f5f5f5 !important;
}

body.dark-mode .contact-section form .form-control {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border-color: #000000 !important;
  color: #000000 !important;
}

body.dark-mode .contact-section form textarea.form-control,
body.dark-mode .contact-section form select.form-control,
body.dark-mode .contact-section form select.form-select {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border-color: #000000 !important;
  color: #000000 !important;
}

body.dark-mode .contact-section form .form-control::placeholder {
  color: #6f6f6f !important;
}

body.dark-mode .contact-section form .form-control:focus {
  border-color: #ff8405;
  box-shadow: 0 0 0 0.2rem rgba(255, 132, 5, 0.25);
}

