

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  color: white;
  animation: heroFade 2s ease forwards;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  animation: textGlow 3s infinite alternate;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards 1s;
}
@keyframes textGlow {
  from { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
  to { text-shadow: 0 0 20px rgba(255,255,255,0.9); }
}
@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes heroFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Contact Layout */
.contact-horizontal {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.contact-form h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #1abc9c;
  padding-bottom: 10px;
}

/* Input Group */
.input-group {
  position: relative;
  margin-bottom: 20px;
}
.input-group i {
  position: absolute;
  top: 50%; left: 14px;
  transform: translateY(-50%);
  color: #1abc9c;
  font-size: 1.1rem;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
  outline: none;
  background: #f9f9f9;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: #1abc9c;
  background: #fff;
  box-shadow: 0 0 8px rgba(26,188,156,0.4);
}

/* Textarea */
textarea {
  resize: none;
  height: 130px;
}

/* Submit Button */
.submit-btn {
  padding: 15px;
  width: 100%;
  background: linear-gradient(90deg, #1abc9c, #16a085);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}
.submit-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(90deg, #16a085, #1abc9c);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Contact Info */
.contact-info {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.contact-info h2 { margin-bottom: 15px; color: #2980b9; }
.contact-info p { margin: 6px 0; font-size: 1rem; }
.contact-info iframe {
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Directions Button */
.directions-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #1abc9c, #16a085);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  text-align: center;
}
.directions-btn:hover {
  background: linear-gradient(90deg, #16a085, #1abc9c);
  transform: scale(1.05);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  background: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
}
.whatsapp-float img { width: 45px; height: 45px; }


/* Responsive */
@media(max-width: 900px) {
  .contact-horizontal { grid-template-columns: 1fr; }
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  color: #2c3e50;
  animation: popIn 0.4s ease;
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* Preloader Background */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 100000; /* सबके ऊपर */
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

/* Loader Circle */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #1abc9c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide after load */
body.loaded #preloader {
  display: none;
}
