/* Admission Section */
.admission-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  font-size: 12px !important;
}
.title-row {
  align-items: center;
  justify-content: end;

  text-align: center;
}

.title-row h3 {
  font-size: 32px !important;
  text-wrap: normal;
  margin-bottom: 0px;
}
.vertical-line {
  width: 2px; 
  height: 80px; 
  background-color: var(--primary-color); 
}

.admission-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
}

.admission-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* opacity: 0.3; */
}

/* Admission Container */
.admission-container {
  max-width: 800px;
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  align-items: center;
  /* margin: 50%; */
  /* z-index: 1; */
}

/* Heading Styles */
.admission-content h2 {
  font-size: 36px;
  color: #1c3b52;
  margin-bottom: 10px;
}

.admission-content h2 .highlight {
  color: #d4a551; /* Gold color */
  font-weight: bold;
}

.admission-content h3 {
  font-size: 60px;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-family: var(--font-playfair-display);
}

/* Admission Box */
.admission-box {
  border: 2px solid #d4a551;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  background: #fff;
  font-size: 12px;
}

.admission-box h4 {
  display: inline-block;
  position: relative;
  bottom: 2.5rem;
  /* left: 0%;
    right: 0%; */
  padding: 0 10px;
  background: linear-gradient(to top, white 52%, transparent 48%);
  font-size: 22px;
  font-weight: bold;
  color: #1c3b52;
}
.admission-box img {
  width: 60px;
  height: 60px;
}

/* Desktop View: Align Admission Box to the Right */
@media (min-width: 992px) {
  .title-row {
    display: flex;
    align-items: center;
    justify-content: end;

    text-align: center;
    margin-bottom: 20px;
  }

  .admission-box {
    width: 70%; /* Adjust width as needed */
    margin-left: auto; /* Push box to the right */
    margin-right: 0;
  }
  .admission-box img {
    width: 60px;
    height: 60px;
  }
  .admission-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.3; */
  }
}

/* Mobile View: Keep Admission Box Centered */
@media (max-width: 991px) {
  .admission-box {
    width: 100%; /* Full width */
    margin: auto; /* Center it */
  }
  .admission-box img {
    width: 90px;
    height: 90px;
  }
  .vertical-line {
    display: none;
  }
  .admission-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.3; */
  }
}
