
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0340f9, #11cb81, #25bbfc);
  color: #fff;
  margin: 0;
  padding: 0;
}

.contact-hero {
  text-align: center;
  padding: 40px 20px;
}

.contact-hero h1 {
  font-size: 36px;
  background: linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* color: #FFD700; */ /* golden accent */
}

.contact-highlights {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

.highlight {
  background:linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e );
  color: #000;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.contact-options {
  display: flex;
  justify-content: space-around;
  margin: 40px 20px;
  flex-wrap: wrap;
}

.option {
  flex: 1;
  min-width: 200px;
  margin: 30px;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background:transparent;
   color: #030776;
}

.option h3 {
  margin-bottom: 8px;
}

.option.phone { background:linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e ); }     /* Blue */
.option.email { background: linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e ); }    /* Green */
.option.demo { background:linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e ); } /* Yellow */
.option.whatsapp { background: linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e ); } /* WhatsApp Green */

.option:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}


 .contact-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: 40px auto;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }
    .contact-form, .contact-info {
      flex: 1;
      padding: 30px;
      min-width: 300px;
    }
    .contact-form h2, .contact-info h2 {
      margin-bottom: 20px;
      color: #004080;
    }
    .form-group {
      margin-bottom: 15px;
    }
    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .form-group input, 
    .form-group select, 
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }
    .form-group textarea {
      resize: vertical;
      height: 120px;
    }
    .submit-btn {
      background: #004080;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 15px;
    }
    .submit-btn:hover {
      background: #0066cc;
    }
    .contact-info p {
      margin: 10px 0;
      font-size: 15px;
    }
    .contact-info strong {
      color: #004080;
    }
    .business-hours {
      margin-top: 20px;
      padding: 15px;
      background: #f0f8ff;
      border-radius: 6px;
    }
    .business-hours h3 {
      margin: 0 0 10px;
      color: #004080;
    }
    .business-hours p {
     
      color: #004080;
    }

.online {
  background: #28a745;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
}

.why-choose {
  background: rgba(255,255,255,0.1);
  color: #030776;
  padding: 20px;
  margin: 40px 20px;
  border-radius: 8px;
  text-align: center; /* centers the heading */
}

.why-choose ul {
  display: flex;          /* Arrange items in a row */
  justify-content: center;/* Center items horizontally */
  gap: 20px;              /* Space between items */
  list-style: none;       /* Remove default bullets */
  padding: 0;             /* Remove default padding */
  margin: 0;              /* Remove default margin */
}

.why-choose li {
 
  /* padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold; */
  background:linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e );
  color: #000;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
