body{
  width: 100%;
  height: auto;
  display: flex;
  overflow-y: visible;
  align-items: center;
  justify-content: center;
  background-color: white;

}

.admission-heading{
  color: white;
}

.description-text{
  color: white;
  text-transform: uppercase;
  line-height: 2rem;
  font-weight: bold;
}

.course-text{
  font-size: 1.4rem;
}

.heading-text{
  color: rgb(187, 6, 6);
  font-weight: bold;
  font-size: 1.1rem;
}
.heading-place{
  color: #001f4d;
  font-weight: bold;
}

.contact-section{
  width: 100%;
  height: 100vh;
  /* background-color: #001f4d; */
  background-image: url(../images/blue-wheel/background-bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.form-container{
  background-color: white;
}


.form-card {
  background-color: white;
  border-radius: 10px;
  transition: transform 0.7s ease-in-out;
  animation: fadeInUp 0.6s ease-in-out;
  box-shadow: none;

}

   @keyframes fadeInUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .form-card h6{
      color: black;
      font-weight: 700;
      text-transform: uppercase;
      animation: fadeInDown 0.6s ease-in-out;
    }


        @keyframes fadeInDown {
      from {
        transform: translateY(-30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }



.btn{
  border-radius: 5px;
  background-color: rgb(187, 6, 6);
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.btn:hover{
    background-color:#001f4d;
    color: white;
}

.input-group {
  position: relative;
}



.input-group .input-lhss {
  background: transparent;
  outline: 1.2px solid black;
  border: none;
  border-radius: 5px;
  color: black;
  /* height: 3rem; */
}

.input-group input:focus{
  background: transparent;
  outline: 2px solid #e61355;
  border: none;

}

.input-group select:focus{
  background: transparent;
  outline: 2px solid #e61355;
  border: none;

}

.input-group textarea:focus{
  background: transparent;
  outline: 2px solid #e61355;
  border: none;

}

.input-group .select-lhss {
  border: 1.2px solid black;
  /* height: 3.5rem; */
  border-radius: 5px;
}

.input-group textarea {
  background: transparent;
  outline: none;
  border: 1.2px solid black;
  border-radius: 5px;
}

.input-group label {
  position: absolute;
  top: 31%;
  left: 17%;
  transform: translate(-50%);
  padding: 0 5px;
  pointer-events: none;
  background-color: white;
  transition: 0.5s;
}

/* .input-group label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  padding: 0 5px;
  pointer-events: none;
  background-color: white;
  transition: 0.3s ease-in-out;
  font-size: 15px;
} */

.select-lhss ~ label{
  top: 31%;
  left: 22%;
  transform: translate(-50%);
}

textarea.input-lhss ~ label{
  top: 35%;
  left: 14%;
  transform: translate(-50%);
}

.input-lhss:focus ~ label,
.input-lhss:not(:placeholder-shown) ~ label {
  top: -20%;
  color: #e61355;
  font-size: 12px;
}

.select-lhss:focus ~ label,
.select-lhss:valid ~ label {
  top: -20%;
  color: #e61355;
  font-size: 12px;
}

textarea.input-lhss:focus ~ label,
textarea.input-lhss:not(:placeholder-shown) ~ label {
  top: -12%;
  color: #e61355;
  font-size: 12px;
}


.admission-team-section{
  /* border: 2px solid yellow; */
  margin-top: -20rem;
}
.admission-team-all-container{
  background-color:whitesmoke;
  border-radius: 12px;
}
.admission-team-container{
  outline: 2px dotted #f39c12;
  border-radius: 10px;
  background-color: white;
}


.admission-team-container img{
  width: 50%;
}

.admission-team-name{
  color:#001f4d;
  font-weight: 600;
}

.admission-team-position{
  color:#001f4d;
  font-weight:500;
}

.admission-team-number a{
  color: #e61355;
}

.admission-text{
  color: #001f4d;
  font-size: 1.1rem;
  margin-top: 5rem;
}

.admission-text span{
  color: #001f4d;
  color: #f39c12;
  font-weight: bold;
}

.overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      z-index: 998;
    }

    .overlay.active {
      display: block;
      animation: fadeIn 0.4s ease forwards;
    }

    /* Popup */

    .success{
      color: #f39c12;
    }

    .popup {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 40%;
      height: 40%;
      transform: translate(-50%, -50%) scale(0.7);
      background: white;
      padding: 30px 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
      z-index: 999;
      display: none;
      opacity: 0;
      animation: popIn 0.5s ease forwards;
    }

    .popup.active {
      /* display: block; */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
    }

    .popup h3 {
      margin-top: 0;
      font-size: 24px;
      color: #001f4d;
    }

    .popup p {
      font-size: 16px;
      color: #333;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes popIn {
      0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
    }

/* ==================Media query===================== */

/* Extra small devices (phones) */
@media (max-width: 576px) {
  .contact-section{
  width: 100%;
  height: auto;
  background-color: #001f4d;

}

    .popup {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 80%;
      height: 40%;
      transform: translate(-50%, -50%) scale(0.7);
      background: white;
      padding: 30px 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
      z-index: 999;
      display: none;
      opacity: 0;
      animation: popIn 0.5s ease forwards;
    }

}

/* Small devices (portrait tablets) */
@media (min-width: 577px) and (max-width: 768px) {
  /* Styles for tablets */
}

/* Medium devices (landscape tablets/small desktops) */
@media (min-width: 769px) and (max-width: 992px) {
  /* Styles for small desktops */
}

/* Large devices (desktops) */
@media (min-width: 993px) and (max-width: 1200px) {
  /* Styles for medium desktops */
}

/* Extra large devices (large desktops and TVs) */
@media (min-width: 1201px) {
  /* Styles for large screens */
}


