
    /* Banner Section */
    .banner {
        position: relative;
        background-image: url('../img/bg1.avif'); /* Add your image URL here */
        background-size: cover;
        background-position: center;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      .banner h1 {
        font-size: 3rem;
        font-weight: 700;
         text-transform: uppercase;
    letter-spacing: 2px;
        color: #fff;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
      }
  
   

      .enquiry-section {
        padding: 50px 0;
        background: linear-gradient(to bottom, #000000 , #f2f2f2); /* Black to off-white gradient */
      }
      .enquiry-container {
        max-width: 800px;
        margin: 0 auto;
        background-color: #ffffffae;
        color: #000;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }
  
      .enquiry-container h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: #000;
      }
  
      .form-control {
        border-radius: 5px;
        border: 1px solid #ccc;
        margin-bottom: 15px;
        padding: 10px;
      }
  
      .form-control:focus {
        border-color: #333;
      }
  
      .btn {
        display: inline-block;
        padding: 10px 20px;
        border: 1px solid #000000;
        color: #000000;
        background-color: transparent;
        border-radius: 0;
        text-transform: uppercase;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.214);
        transition: background-color 0.3s ease, transform 0.3s ease;
      }
  
      .btn:hover {
        background-color: #000000;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.562);
      }
  
      .btn:focus {
        outline: none;
      }
  
      /* Responsive Text and Form */
      @media (max-width: 768px) {
        .banner h1 {
          font-size: 2rem;
        }
  
        .enquiry-container {
          padding: 20px;
        }
  
        .enquiry-container h2 {
          font-size: 1.5rem;
        }
  
        .form-control {
          font-size: 0.9rem;
        }
      }