/* Contact Page css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcf2e8 !important; 
    /* text-align: center; */
  }

  /* 1. HERO SECTION- BANNER  */

  @media (max-width: 768px) {
    .hero-section {
      height: 70vh; /* Reduce height on smaller screens */
    }

    .hero-text {
      font-size: 4.5vw;
      line-height: 1.2;
      max-width: 80%;
      text-align: center;
      white-space: normal;
    }
  }


  /* SECTION 2 */
  .contact-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: -300px;
    padding: 20px;
    margin-left: 70px;
    margin-right: 70px;
  }
  .contact-box {
    padding: 12px;
    border: 1.5px solid #ccc;
    width: 250px;
    text-align: center;
  }
  .contact-box h3 {
    margin: 10px 0;
    font-size: 18px;
  }
  .contact-box i {
    font-size: 21px;
    background: linear-gradient(90deg, #de0e0e, #fc8823);
    -webkit-background-clip: text;
background-clip: text;
color: transparent;
  }
  .contact-box p {
    margin: 5px 0;
    font-size: 13px;
    color: #6b6363;
  }

  /* RESPONSIVE DESIGN */
 
  @media (max-width: 480px) {
    .hero-text {
      font-size: 6vw;
    }
  }
  @media (max-width: 992px) {
    .contact-section {
      flex-direction: column;
      align-items: center;
  
      margin-right: 0;
    }
  
    .contact-box {
      width: 90%;
      margin-bottom: 20px;
      margin-left: -50px;
    }
  
    .contact-box h3 {
      font-size: 16px;
    }
  
    .contact-box p {
      font-size: 13px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 60vh;
    }
  
    .hero-text {
      font-size: 6vw;
      max-width: 90%;
      text-align: center;
    }
  
    .contact-section {
      gap: 20px;
      padding: 10px;
    }
  
    .contact-box {
      width: 100%;
      padding: 10px;
    }
  
    .contact-form {
      width: 90%;
      padding: 15px;
    }
  
    .contact-form input,
    .contact-form textarea {
      margin-left: 0;
    }
  
    .contact-form button {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text {
      font-size: 7vw;
    }
  
    .contact-box i {
      font-size: 20px;
    }
  
    .contact-box h3 {
      font-size: 14px;
    }
  
    .contact-box p {
      font-size: 12px;
    }
  
   
  }