/* Animation */
.hidden-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }
  .visible-section {
    opacity: 1;
    transform: translateY(0);
  }
  #contact-section p{
    font-size: medium;
  }
  .icon-image{
    background: #140826;
    border-radius: 2px;
    padding: 20px;
  }
  /* Layout */
  .contact-container {
    padding: 60px 15px;
  }
  .contactImage {
    max-width: 100%;
    border-radius: 8px;
    margin: 0 35%;
    transition: transform 0.3s ease;
  }
  .contactImage:hover {
    transform: scale(1.03);
  }
  
  .contact-form {
    margin-top: 20px;
  }
  .contact-form .form-group {
    margin-bottom: 15px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  .contact-form .btn-submit {
    padding: 10px 25px;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  .contact-form .btn-submit:hover {
    background-color: #0056b3;
  }
  /* Reduce padding to limit height */
.contact-container {
    padding: 40px 20px; /* Was 60px, now reduced */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Adjust spacing between rows and columns */
  .contact-form {
    margin-top: 10px; /* Less vertical space */
  }
  .contact-form .form-group {
    margin-bottom: 12px; /* Slightly reduced */
  }
  
  /* Reduce textarea height */
  .contact-form textarea {
    height: 100px; /* Less than 4 rows */
  }
  
  /* Optional: Adjust image height on large screens */
  .contactImage {
    max-height: 300px;
    object-fit: contain;
  }
  @media (max-width: 768px) {
    .contact-container {
      padding: 30px 10px;
    }
    .contactImage {
      max-height: 200px;
      margin-bottom: 20px;
    }
  }
    