* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #eff6ff;
}

/* Header Navbar */
.navbar-nav .nav-link:hover {
  color: #151d66;
}
select option {
  background-color: #FFF;
  border: 1px solid gray;
}

.btn-enquire {
  background-color: #fda502;
  color: #fff;
  border-radius: 6px;
}
.btn-enquire:hover {
  background-color: #e89600;
}

/* Form container */
.form-container {
  background: white;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin: 2rem auto;
}

/* Form text styles */
.form-title {
  color: #4285f4;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.form-subtitle {
  color: #6c757d;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-label {
  color: #495057;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-label i {
  color: #4285f4;
  width: 16px;
  font-size: 1rem;
}
.required {
  color: #dc3545;
}

/* Inputs & selects */
.form-control,
.form-select {
  border: 1px solid #f9f9fb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #f9f9fb;
}
.form-control:focus,
.form-select:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.15);
  background-color: white;
}
.input-group-text {
  background-color: #f9f9fb;
  border: 1px solid #f9f9fb;
  border-radius: 8px 0 0 8px;
  font-weight: 500;
}

/* Continue button */
.btn-continue {
  background: linear-gradient(135deg, #4f8dfd, #1a54d3);
  border: none;
  border-radius: 10px;
  margin-top: 1.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-continue:hover {
  color: #FFF;
  transform: translateY(-2px);
  opacity: 0.8;
  color: white;
  /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15); */
}
.btn-continue:focus,
.btn-continue:active {
  color: #fff !important;   /* Force white text */
  background: linear-gradient(135deg, #4f8dfd, #1a54d3) !important;
}
/* Image circle wrapper */
.image-circle-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}
.image-circle-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at center, #377dff 0%, #a6c1ee 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 4s infinite;
}
.image-circle-wrapper img {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  min-width: 505px;
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 24px 24px rgba(2, 13, 116, 0.25));
}
.image-circle-wrapper img:hover {
  transform: translateY(-8px) scale(1.03);
}

/* Pulse animation */
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

/* Payment Form Css  */
.payment-methods {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  margin: 20px 0;
}

.payment-option {
  display: flex;
  align-items: center;
  border: 2px solid #f1f2f7;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  width: 100%;
  transition: border 0.3s, box-shadow 0.3s;
}

.selected-payment {
  border: 2px solid #377dff;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.15);
}

.payment-option input[type="radio"] {
  margin-right: 16px;
  accent-color: #377dff;
  width: 20px;
  height: 20px;
}

.payment-option .details {
  flex-grow: 1;
}

.payment-option .name {
  font-weight: 600;
  margin-bottom: 4px;
}

.payment-option .dots {
  color: #999;
  font-size: 0.9rem;
}

.payment-option img {
  width: 60px;
}

.hidden-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.hidden-section.show {
  max-height: 280px;
  opacity: 1;
}

/* Form Error  */
.error-message {
  color: red;
  font-size: 0.85em;
  margin-top: 4px;
}

/* Footer CSS */
.site-footer {
  background-color: #1c1818;
  color: #f8f9fa;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.site-footer .footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-item {
  padding-inline: 20px;
}

.sidebar-item:hover {
  background-color: #eff6ff;
  border-radius: 8px;
}

.footer-email {
  display: inline-block;
  background: #3e3c3c;
  color: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.footer-campuses {
  display: flex;
  overflow: hidden;
  width: 90%;
  margin: auto;
}
.keen-slider__slide {
  min-width: 180px;
  background: #333;
  margin-right: 12px;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.campus-btn {
  background: #3e3c3c;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}
.campus-btn small {
  display: block;
  font-weight: normal;
  font-size: 0.8rem;
  color: #cfcfcf;
}
#footer {
  color: #FFF;
  background-color: #231F20;
}
.footer-batch {
    padding: 2px 40px;
    border-radius: 7px;
    word-break: break-word;
    margin-right: 4px;
    background-color: #4b494a;
}
.footer-batch a {
  color: #FFF;
  font-size: 16px;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .image-circle-wrapper::before {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  /* HIDE girl image on lg screen & below */
  .image-circle-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }
  .navbar-nav {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .form-container {
    padding: 20px;
  }
  .footer-campuses {
    flex-direction: column;
    align-items: center;
  }
  .email-betch a {
    font-size: 16px!important;
  }
}
