body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section {
  padding: 30px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #1a237e;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
 padding: 15px 0; /* 15px top and bottom, 0 left and right */

}

.contact-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1 1 300px;
  max-width: 450px;
}

.contact-card h3 {
  margin-top: 0;
  color: #1a237e;
}

.contact-card p {
  margin: 5px 0;
  line-height: 1.5;
}

.contact-card form {
  display: flex;
  flex-direction: column;
}

.contact-card form label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-card form input,
.contact-card form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-card form button {
  margin-top: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #1a237e;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-card form button:hover {
  background-color: #3949ab;
}
form select {
  width: 100%; /* input सारखे full width */
  padding: clamp(5px, 1vw, 8px); /* थोडे कमी padding */
  font-size: 0.9rem; /* font size कमी */
  font-family: 'Arial', 'Helvetica', sans-serif; /* clean/professional font */
  border-radius: 6px;
  border: 1px solid #6793f0;
  box-sizing: border-box;
  margin-bottom: 1rem;
  appearance: none; /* browser default arrow hide */
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

form select:focus {
  outline: none;
  border-color: #007bff; /* focus color */
  box-shadow: 0 0 4px rgba(0,123,255,0.3);
}


/* optional: arrow icon for dropdown */
form select::-ms-expand {
  display: none; /* IE fix */
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background-color: #e9470c;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 15px;
}

.btn:hover {
  background-color: #FF9A00;
  transform: translateY(-2px);
}