body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

.header {
  background: #f7f7f7;
  padding: 30px 10px 20px;
  text-align: center;
  border-bottom: 2px solid #ccc;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
}

.digi {
  color: #FF6F00;
}
.indian {
  color: #003366;
}

.tagline, .location {
  font-size: 1rem;
  margin: 6px 0;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.highlights .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}
.card {
  background: #f0f0f0;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.95rem;
}

.form-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
form {
  background: #f9f9f9;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeIn 0.7s ease-in;
}
input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
button {
  padding: 12px;
  background: #FF6F00;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}
button:hover {
  background: #e65c00;
}
.footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  margin-top: 30px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 600px) {
  .form-container {
    padding: 0 15px;
  }
}
