 @keyframes scrollNames {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .animate-scroll {
      display: flex;
      width: max-content;
      animation: scrollNames 20s linear infinite;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
    }
  /* Admission Popup Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
}

.admission-box {
  background: #fff;
  border-radius: 18px;
  padding: 35px 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.admission-box h2 {
  color: #1b0063;
  font-size: 22px;
  margin-bottom: 10px;
}

.admission-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.admission-box .close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 22px;
  color: #ff007f;
  cursor: pointer;
  transition: 0.3s;
}
.admission-box .close:hover {
  transform: rotate(90deg);
}

.input-group {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
   position: relative;
}

.input-group i {
  color:#ff007f;     
  margin-right: 8px;
  font-size: 15px;
}

.input-group .country-code {
  font-weight: 600;
 color: #ff007f;  
  font-size: 14px;
  margin-right: 8px;
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #222;
  appearance: none;
}
.input-group select {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #222;
  appearance: none;              
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  appearance: none;
}
.select-group {
  position: relative;
}
.select-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px; 
  padding-left: 5px;  
  background-color: transparent;
  cursor: pointer;
}
.select-group .dropdown-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff007f;
  font-size: 14px;
  pointer-events: none;
}

select::-ms-expand {
  display: none; 
}
select option {
  padding: 8px 12px;
  color: #222;
}

.submit-btn {
  width: 100%;
  background: #ff007f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e10073;
  transform: scale(1.03);
}

.success-message {
  display: none;
  color: green;
  font-weight: 600;
  margin-top: 20px;
  font-size: 15px;
}

