  body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      color: #000;
  }

  /* Header */
  .contact-header {
      padding: 60px 0 30px;
  }

  .contact-header h1 {
      font-weight: 600;
  }

  .contact-header p {
      max-width: 500px;
      font-size: 15px;
      color: #555;
  }

  .custom-heading {
      font-size: 21px !important;
      line-height: 1.3;
  }
  /* Hero Image */
  .hero-img img {
      width: 100%;
      border-radius: 15px;
  }

  /* Contact Form */
  .contact-section {
      padding: 60px 0;
  }

  .form-control {
      border-radius: 8px;
      border: 1px solid #ddd;
      padding: 10px 15px;
  }

  .form-control:focus {
      box-shadow: none;
      border-color: #ff5c00;
  }

 .form-label {
  color: #000000;
  font-weight: 500;
  margin-bottom: 5px;
 }

  .submit-btn {
      background: linear-gradient(to right, #ff5c00, #ff7b00);
      border: none;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      transition: 0.3s;
  }

  .submit-btn:hover {
      background: linear-gradient(to right, #ff7b00, #ff5c00);
  }

  /* Info Cards */
  .info-card {
      background: #f9f9f9;
      border-radius: 12px;
      height: 180px;
      padding: 50px;
      text-align: center;
      margin-bottom: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  .info-card i {
      font-size: 30px;
      color: #ff5c00;
      margin-bottom: 10px;
  }

  .info-card h5 {
      font-weight: 600;
      margin-bottom: 5px;
  }

  .info-card p {
      font-size: 15px;
      color: #555;
      margin: 0;
  }

  
  /* Map */
  .map iframe {
      width: 100%;
      height: 350px;
      border: 0;
      border-radius: 12px;
  }

  @media (max-width: 768px) {
      .info-card {
          margin-top: 20px;
      }
  }



