/* Main Wrapper */

  
  /* Contact Container */
  .contact-section-c {
    background: linear-gradient(to right, #b4e2c9, #73ec97);

    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
  }
  
  /* Headings and Paragraph */
  .contact-section-c h3 {
    font-weight: 700;
    font-size: 28px;
    color: #0a834b;
  }
  
  .contact-section-c p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  /* Form Inputs */
  .form-control {
    border-radius: 12px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
  }
  
  .form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
    background-color: #fff;
  }
  
  /* Button */
  .btn-send {
    background-color: #6c63ff;
    color: #fff;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
  }
  
  .btn-send:hover {
    background-color: #4a00e0;
  }
  
  /* Success Message */
  .alert-success {
    margin-top: 20px;
    font-size: 15px;
    border-radius: 8px;
  }
  
  /* Contact Info */
  .contact-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  
  .contact-info p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .contact-info i {
    color: #6c63ff;
    margin-right: 10px;
  }
  
  /* Social Icons */
  .social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #6c63ff;
    font-size: 20px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #4a00e0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .contact-section-c {
      padding: 30px 20px;
    }
    .btn-send {
      width: 100%;
    }
  }
  