.text-center {
  text-align: center;
}

/* .btn-primary {
  background: #0c7c3d;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #095c2d;
} */

/* HERO */
.hero {
  height: 220px;
  background: var(--primary-color) url('../../assets/images/logo-3.png') top/90% 170% no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: #fff;
  letter-spacing: 5px;
}

/* INTRO */
.admission-intro {
  padding: 60px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-image {
  width: 100%;
  height: 100%;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.intro-content h3 {
  margin: 20px 0;
}

.intro-content h4 {
  font-size: 24px;
  font-family: var(--theme-font-family);
  font-weight: 400;
}

.intro-content p {
  margin-bottom: 25px;
}

.intro-content ul {
  margin: 20px 0;
}

.intro-content li {
  margin-bottom: 10px;
}

/* DETAILS SECTION */
.admission-section {
  background: url("../../assets/images/admission-details.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

.overlay {
  display: flex;
  justify-content: center;
}

.admission-section .admission-card {
  background: #ffffff;
  max-width: 850px;
  width: 100%;
  padding: 70px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.admission-section .content-block {
  margin-bottom: 50px;
}

.admission-section .content-block:last-child {
  margin-bottom: 0;
}

.intro-content h3, .admission-section h6, .admission-section strong {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e53935;
  margin-bottom: 20px;
  font-weight: 700;
}

.admission-section strong {
  font-size: 16px;
}

.admission-section .sub-heading {
  margin-top: 20px;
}

.admission-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.admission-section ol {
  padding-left: 18px;
  margin-bottom: 20px;
}

.admission-section ol li {
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.admission-section a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 600;
}

.admission-section a:hover {
  text-decoration: underline;
}

.admission-section .note {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

/* PORTAL */
.portal-section {
  background: #f4f4f4;
  padding: 60px 0;
}

/* FAQ */
.faq {
  padding: 60px 0;
    background: #f4f4f4;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-item h4 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 400;
  font-family: var(--theme-font-family);
}

/* CONTACT */
.contact-section {
  padding: 60px 0;
      background: #f4f4f4;
}

.contact-section .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-card {
  background: #fff;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 200px;
}

.contact-card h3 {
  color: #c80000;
}

.contact-card h2 {
  margin-bottom: 25px;
  color: #006633;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #006633;
}

.btn {
  background: #008f3a;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.btn:hover {
  background: #006633;
}

/* INFO CARD */
.info-block {
  margin-bottom: 25px;
}

.info-block h4,
.info-row h4 {
  color: #c80000;
  margin-bottom: 8px;
  font-size: 14px;
}

.info-row {
  display: flex;
  gap: 40px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .details-card {
    width: 90%;
  }
}