/* Section background */
.admission-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
}

/* Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #004aad;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #004aad;
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* Content layout */
.admission-content {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Box style */
.admission-box {
  flex: 1 1 300px;
  background: #fff;
  padding: 1.8rem;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}
.admission-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Headings */
.admission-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #004aad;
  position: relative;
}
.admission-box h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #00a8ff;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Paragraphs */
.admission-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

/* Section background */
.registration-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #004aad, #00a8ff);
}

/* Flex container */
.registration-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Columns */
.form-column, .map-column {
  flex: 1 1 50%;
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-column:hover, .map-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Titles */
.form-column h3, .map-column h3 {
  color: #004aad;
  margin-bottom: 1.2rem;
}

/* Form styling */
.reg-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.reg-form input,
.reg-form select,
.reg-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.2s;
}
.reg-form input:focus,
.reg-form select:focus,
.reg-form textarea:focus {
  border-color: #004aad;
  outline: none;
  box-shadow: 0 0 6px rgba(0,74,173,0.3);
}

/* Button */
.btn.primary {
  background: linear-gradient(135deg, #004aad, #0077cc);
  color: #fff;
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
}
.btn.primary:hover {
  background: linear-gradient(135deg, #00347a, #005fa3);
}

/* Map column */
.map-column p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}
.map-column iframe {
  flex-grow: 1;
  margin-top: 1rem;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .registration-container {
    flex-direction: column;
  }
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f9fc;
  color: #333;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #004aad;
  font-weight: 700;
}

/* Admission Info Section */
.admission-section {
  padding: 3rem 1rem;
  background: #fff;
}
.admission-content {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.admission-box {
  flex: 1 1 300px;
  background: #eaf2ff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.admission-box:hover {
  transform: translateY(-5px);
}
.admission-box h3 {
  margin-bottom: 0.8rem;
  color: #004aad;
}

/* Registration Section */
.registration-section {
  padding: 3rem 1rem;
  background: url('img/bg.png');
  color: #fff;
}
.registration-container {
  margin: auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.form-column, .map-column {
  flex: 1 1 500px;
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form-column h3, .map-column h3 {
  color: #004aad;
}
.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  float: right;
  cursor: pointer;
  color: #333;
}
.reg-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}
.reg-form input, 
.reg-form select, 
.reg-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.reg-form input:focus,
.reg-form select:focus,
.reg-form textarea:focus {
  border-color: #004aad;
  outline: none;
}
.btn.primary {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}
.btn.primary:hover {
  background: #00347a;
}
.map-column p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
