/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  color: #333;
}

/* ================= CONTACT HERO ================= */
.contact-hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.75)),
    url("https://images.pexels.com/photos/17604601/pexels-photo-17604601/free-photo-of-indian-bharatanatyam-dancer-hands.jpeg");
  background-size: cover;
  background-position: center;
  padding: 120px 20px 60px; /* ↑ top padding increased to push content below navbar */
  color: #fff;
  text-align: center;
}


.contact-hero h1 {
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 30px;
}

.contact-hero p {
  opacity: 0.9;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  margin-top: -60px;
}

/* ================= GLASS CARD ================= */
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.4);
}

/* ================= FORM ================= */
.form-control {
  border-radius: 10px;
  padding: 12px;
}

.form-control:focus {
  border-color: #ffb703;
  box-shadow: 0 0 0 0.15rem rgba(255,183,3,0.3);
}

.btn-gold {
  background: linear-gradient(45deg, #ffb703, #fb8500);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px;
}

.btn-gold:hover {
  background: linear-gradient(45deg, #fb8500, #ffb703);
  transform: translateY(-2px);
}

/* ================= MAP ================= */
.map-frame iframe {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ================= TEACHER CARDS ================= */
.teacher-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.teacher-card:hover {
  transform: translateY(-6px);
}

.teacher-card img {
  height: 160px;
  object-fit: cover;
}

/* ================= TABLE ================= */
.table {
  border-radius: 14px;
  overflow: hidden;
}

.table thead {
  background: linear-gradient(45deg, #ffb703, #fb8500);
  color: #000;
}

/* ================= HEADINGS ================= */
.section-title {
  font-weight: 700;
  color: #222;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #ffb703;
  display: block;
  margin: 8px auto 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 20px;
  }
}
