body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #e6e1ff, #f7f4ff);
}
/* navbar  */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-custom {
  border-bottom: 3px solid #007bff;
}

/* footer  */
.follow-us a {
  text-decoration: none;
}

footer {
  border-top: 2px #ccc solid;
}

/* FAQ section  */
.faq-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  color: #ddd;
  background: linear-gradient(70deg, #4f74f6, #240b3a);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-headline {
  color: #fff;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  color: #bbb;
  transform: translateY(-5px);
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
}

.plus-icon {
  font-size: 22px;
}

/* feedback and Discussion starts */
hr{
  color: white;
}

.container1 {
  max-width: 1200px;
  margin: 20px auto;
  background-color: #fff;
  background: linear-gradient(150deg, #4f74f6, #240b3a);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

h3 {
  /* font-size: 18px; */
  margin-bottom: 10px;
  color: #fff;
}

.section {
  margin-bottom: 20px;
}

textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
  margin-bottom: 10px;
}

.star {
  color: white;
  cursor: pointer;
}

.star.gold {
  color: gold;
}

.button-container {
  text-align: right;
}

button {
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background-color: #0056b3;
}
/* discuss and Feedback ends */

/* Contact us Form and Map start  */
.main-container {
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
  background: linear-gradient(70deg, #4f74f6, #240b3a);
  padding: 30px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px #007bff;
  animation: slideIn 1.2s ease-in-out;
}

.contact-form h2 {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.contact-form h2 span {
  color: #fff;
}

.contact-form p {
  margin: 10px 0 20px;
  color: #fff;
  font-size: 15px;
}

.contact-form input, .contact-form select, .contact-form button {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-sizing: border-box; 
  height: 40px;
}

.contact-form input::placeholder,
.contact-form select {
  font-family: 'Roboto', sans-serif;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  background-color: #3c93f1;
}

.contact-details {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
}

.contact-details div i {
  margin-right: 5px;
  color: #fff;
}

.map-container {
  flex: 1 ;
  height: auto;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
}

/* Keyframe animations */
@keyframes slideIn {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.95);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
      flex-direction: column;
  }

  .contact-form {
      width: 100%;
  }

  .map-container {
      width: 100%;
  }
}
