/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins,Plus Jakarta Sans", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* ===== Section Spacing ===== */
section {
  padding: 60px 20px;
}

/* ===== Admission Process Layout ===== */
.row.how {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.row.how .col-md-7 {
  flex: 1 1 60%;
}

.row.how .col-md-7 h2,
.row.how .col-md-7 h3 {
  color: #007bff;
  margin-bottom: 20px;
  font-weight: 600;
}

.row.how .col-md-7 p {
  font-size: 16px;
  margin-bottom: 30px;
}

.row.how .col-md-7 ul {
  padding-left: 20px;
}

.row.how .col-md-7 li {
  font-size: 15px;
  margin-bottom: 15px;
}

.row.how .col-md-7 li b {
  color: #343a40;
}

.how_img {
  flex: 1 1 35%;
}

.how_img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ===== Enquiry Section ===== */
.container {
  width: 80%;
  margin: 0 auto;
}

.container h1 {
  color: #106939;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.container p {
  color: #106939;
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-box {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container-left {
  flex: 1 1 60%;
  padding: 40px 60px;
}

.container-right {
  flex: 1 1 40%;
  padding: 40px 60px;
  background: #007bff;
  color: #fff;
}

.container-left h3,
.container-right h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
}

/* ===== Form Elements ===== */
label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #353535;
}
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background-color: #fff;
  outline: none;
  appearance: none; /* removes default arrow styling */
  cursor: pointer;
}


input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Button ===== */
button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  background: #000;
  color: #fff;
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

button:hover {
  background: #0056b3;
  box-shadow: 0px 5px 12px rgba(0,0,0,0.25);
}

/* ===== Table Styling ===== */
tr td:first-child {
  font-size: 16px;
  font-weight: 600;
  padding-right: 15px;
}

tr td {
  padding-top: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .contact-box {
    flex-direction: column;
  }

  .container {
    width: 90%;
  }

  .container h1 {
    font-size: 34px;
  }

  .container p {
    font-size: 16px;
  }

  .container-left,
  .container-right {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .row.how {
    flex-direction: column;
  }

  .how_img {
    order: -1;
    margin-bottom: 20px;
  }

  section {
    padding: 40px 15px;
  }

  button {
    width: 100%;
  }
}
