/* Contact Section */
.contact-us {
    padding: 100px 20px;
    background: linear-gradient(135deg, #dff9fb, #ffffff);
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  /* subtle water drop bg effect */
  .contact-us::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url("images/water-drop.png") no-repeat center/contain;
    opacity: 0.1;
    z-index: 0;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    padding: 30px;
  }
  
  /* Left Info */
  .contact-text {
    flex: 1;
    min-width: 320px;
  }
  
  .contact-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0077b6;
    position: relative;
  }
  
  .contact-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #00b4d8;
    margin-top: 8px;
    border-radius: 5px;
  }
  
  .contact-text p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #333;
  }
  
  .contact-text ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-text ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  
  
  /* Right Form */
  .contact-form {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
  }
  
  .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.15);
  }
  
  .contact-form .form-group {
    margin-bottom: 22px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9f9f9;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #00b4d8;
    background: #fff;
    outline: none;
    box-shadow: 0px 0px 8px rgba(0, 180, 216, 0.4);
  }
  
  .contact-form textarea {
    resize: none;
    min-height: 120px;
  }
  
  .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
  }
  
  .btn-submit:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: scale(1.03);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .contact-container {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-text h2::after {
      margin: 10px auto;
    }
  
    .contact-text ul li {
      justify-content: center;
    }
  
    .contact-form {
      padding: 30px;
    }
  }
  
  @media (max-width: 600px) {
    .contact-text h2 {
      font-size: 28px;
    }
    .btn-submit {
      font-size: 16px;
      padding: 14px;
    }
  }
  