@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.hero-section {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 162, 218, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-section .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.hero-section .hero-container .hero-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-content {
    order: 2;
  }
}
.hero-section .hero-container .hero-content .hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #46A2DA;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(70, 162, 218, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-section .hero-container .hero-content .hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-title {
    font-size: 1.6rem;
  }
}
.hero-section .hero-container .hero-content .hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #767a7c;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-description {
    font-size: 1rem;
  }
}
.hero-section .hero-container .hero-content .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-content .hero-features {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item:hover {
  border-color: #46A2DA;
  background: rgba(70, 162, 218, 0.05);
  transform: translateY(-2px);
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item i {
  color: #46A2DA;
  font-size: 1.2rem;
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #043F6D;
}
.hero-section .hero-container .hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-image {
    order: 1;
  }
}
.hero-section .hero-container .hero-image img {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(4, 63, 109, 0.1));
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(-20px);
  }
}
.mobile-break {
  display: none;
}
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

.introduction-section {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.introduction-container {
  max-width: 800px;
  margin: 0 auto;
}

.introduction-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-align: start;
}
@media (max-width: 768px) {
  .introduction-text {
    font-size: 1rem;
  }
}

.alert-box {
  border: 2px dotted #ccc;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fdfdfd;
  color: #065b9e;
}
.alert-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.alert-box ul li {
  font-size: 1.1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .alert-box ul li {
    text-align: start;
  }
}
.alert-box ul li:last-child {
  border-bottom: none;
}
.alert-box ul li i {
  color: #043F6D;
  margin-right: 0.6rem;
}

.time-slot h6 {
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 20px;
  background: #E8F4FD;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.application-step {
  margin-top: 2rem;
}
.application-step .radio-group-horizontal,
.application-step .checkbox-group-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .application-step .radio-group-horizontal,
  .application-step .checkbox-group-horizontal {
    gap: 1rem;
  }
}
.application-step .form-check {
  display: flex;
  align-items: center;
  margin: 0;
}
.application-step .form-check-input {
  cursor: pointer;
  margin: 0;
}
.application-step .form-check-label {
  cursor: pointer;
  margin: 0;
  white-space: nowrap;
}

/* Form Section Labels - New Style */
.form-section-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(70, 162, 218, 0.2);
}
.form-section-label i {
  color: #46A2DA;
  font-size: 1.2rem;
}

/* Readonly Input Style */
.form-control-readonly {
  background: #f8f9f9 !important;
  color: #909395 !important;
  cursor: not-allowed;
  border-color: #dedfe0 !important;
}

/* Benefits Section - Compact Version */
.counselling-benefits-section-new {
  padding: 3rem 2rem;
  background: #F9F9F9;
}

.counselling-benefits-container-new {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.counselling-benefits-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .counselling-benefits-compact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.benefit-item-compact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.benefit-item-compact i {
  color: #46A2DA;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-item-compact span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #043F6D;
  text-align: left;
}
.benefit-item-compact:hover {
  border-color: #46A2DA;
  background: rgba(70, 162, 218, 0.05);
  transform: translateX(5px);
}

/* Progress Bar Flow - Compact Top Version */
.progress-flow-bar {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(70, 162, 218, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.progress-flow-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 768px) {
  .progress-flow-container {
    gap: 0;
  }
}

.progress-flow-step {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.progress-flow-step:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(70, 162, 218, 0.2);
  z-index: -1;
}
.progress-flow-step:not(:first-child):not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(70, 162, 218, 0.2);
  z-index: -1;
}
.progress-flow-step:last-child::before {
  content: "";
  position: absolute;
  right: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(70, 162, 218, 0.2);
  z-index: -1;
}
.progress-flow-step.active .progress-flow-content {
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  color: #F9F9F9;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.4);
}
.progress-flow-step.completed .progress-flow-content {
  background: #dedfe0;
  border-color: #c4c6c7;
  color: #909395;
}
.progress-flow-step.completed::after {
  background: #c4c6c7 !important;
}
.progress-flow-step.completed:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #c4c6c7;
  z-index: -1;
}

.progress-flow-content {
  background: #ffffff;
  border: 2px solid rgba(70, 162, 218, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #043F6D;
  width: 200px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
.progress-flow-content i {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .progress-flow-content {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    width: 50px;
  }
  .progress-flow-content .progress-flow-label {
    display: none;
  }
}

.progress-flow-dots {
  display: none;
}
@media (max-width: 768px) {
  .progress-flow-dots {
    display: block;
    margin: 0 0.25rem;
    color: #46A2DA;
  }
}

/* Custom Alert Messages */
.custom-alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.custom-alert i {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.custom-alert.alert-info-custom {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.15) 0%, rgba(70, 162, 218, 0.05) 100%);
  border-color: #46A2DA;
  color: #043F6D;
}
.custom-alert.alert-info-custom i {
  color: #46A2DA;
}
.custom-alert.alert-success-custom {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.15) 0%, rgba(70, 162, 218, 0.05) 100%);
  border-color: #46A2DA;
  color: #043F6D;
}
.custom-alert.alert-success-custom i {
  color: #46A2DA;
}

/* Button Unified Blue Theme */
.btn-blue-unified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(70, 162, 218, 0.35);
  border: none;
  cursor: pointer;
  min-width: 280px;
}
.btn-blue-unified:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(70, 162, 218, 0.45);
  color: #F9F9F9 !important;
  text-decoration: none;
}
.btn-blue-unified:hover i {
  transform: translateX(5px);
}
.btn-blue-unified i {
  transition: transform 0.3s ease;
}
.btn-blue-unified:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
@media (max-width: 768px) {
  .btn-blue-unified {
    min-width: auto;
    width: 100%;
  }
}

/* Button Unified Pink Theme (for cancel) */
.btn-pink-unified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #EB4878 0%, #EF6C93 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(235, 72, 120, 0.35);
  border: none;
  cursor: pointer;
  min-width: 280px;
}
.btn-pink-unified:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(235, 72, 120, 0.45);
  color: #F9F9F9 !important;
  text-decoration: none;
}
.btn-pink-unified:hover i {
  transform: translateX(5px);
}
.btn-pink-unified i {
  transition: transform 0.3s ease;
}
.btn-pink-unified:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
@media (max-width: 768px) {
  .btn-pink-unified {
    min-width: auto;
    width: 100%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Form Section */
.counselling-form-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #F9F9F9 0%, #F9F9F9 100%);
}

.counselling-form-container-new {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.counselling-form-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5D6062;
  margin: 2rem 0 3rem;
  padding: 2rem;
  border-radius: 10px;
  background: #f0f7fc;
  color: #46A2DA;
}
.counselling-form-description li {
  list-style: none;
}

.form-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  border: 1px solid rgba(4, 63, 109, 0.08);
}
@media (max-width: 768px) {
  .form-container {
    padding: 2rem 1.5rem;
  }
}

.form-group-new {
  margin-bottom: 2rem;
  text-align: left;
}

.form-label-new {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #043F6D;
  margin-bottom: 0.75rem;
}

.form-control-new {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid #B8CDD9;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #F9F9F9;
}
.form-control-new:focus {
  outline: none;
  border-color: #46A2DA;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(70, 162, 218, 0.1);
}
.form-control-new::-moz-placeholder {
  color: #767a7c;
}
.form-control-new::placeholder {
  color: #767a7c;
}

.error-message {
  display: none;
  color: #EB4878;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-help-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #767a7c;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.form-submit-container {
  margin-top: 2rem;
}

.counselling-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.75rem;
  background: linear-gradient(135deg, #EB4878 0%, #f07197 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(235, 72, 120, 0.35);
  border: none;
  cursor: pointer;
}
.counselling-button-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(235, 72, 120, 0.45);
  color: #F9F9F9 !important;
  text-decoration: none;
}
.counselling-button-primary:hover i {
  transform: translateX(5px);
}
.counselling-button-primary i {
  transition: transform 0.3s ease;
}
.counselling-button-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Alert Styles */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border: 2px solid rgba(76, 175, 80, 0.3);
  color: #2E7D32;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(235, 72, 120, 0.1) 0%, rgba(235, 72, 120, 0.05) 100%);
  border: 2px solid rgba(235, 72, 120, 0.3);
  color: #C62828;
}

.alert-info {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.1) 0%, rgba(70, 162, 218, 0.05) 100%);
  border: 2px solid rgba(70, 162, 218, 0.3);
  color: #043F6D;
}

/* Compact Date Time Selection */
.date-selection-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .date-selection-compact {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

.date-card-compact {
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}
.date-card-compact:hover {
  border-color: #46A2DA;
  background: rgba(70, 162, 218, 0.05);
  transform: translateY(-2px);
}
.date-card-compact.selected {
  border-color: #46A2DA;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.15) 0%, rgba(70, 162, 218, 0.05) 100%);
}
.date-card-compact .date-label {
  font-size: 0.85rem;
  color: #5D6062;
  margin-bottom: 0.5rem;
}
.date-card-compact .date-value {
  font-size: 1rem;
  font-weight: 700;
  color: #043F6D;
}

.time-slots-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Booking Buttons */
.booking-button {
  padding: 0.6rem 1.2rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.booking-button:hover:not(:disabled) {
  background: #043F6D;
  color: #F9F9F9 !important;
  transform: translateY(-2px);
}
.booking-button.selected {
  background: #46A2DA;
  color: #F9F9F9 !important;
  border-color: #46A2DA;
}
.booking-button.booked-button {
  background: #E0E0E0;
  border-color: #B0B0B0;
  color: #757575 !important;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Scroll to Next Section */
.scroll-hint {
  text-align: center;
  margin-top: 1.5rem;
  color: #5D6062;
  font-size: 0.9rem;
  animation: fadeIn 0.5s ease;
}
.scroll-hint i {
  color: #46A2DA;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Coupon Button */
.btn-coupon {
  padding: 1rem 1.5rem;
  background: #ffffff;
  color: #46A2DA;
  border: 2px solid #46A2DA !important;
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  height: 100%;
  border-left: none;
}
.btn-coupon:hover {
  background: rgba(70, 162, 218, 0.1);
  border-color: #043F6D;
  box-shadow: 0 4px 12px rgba(70, 162, 218, 0.2);
}
.btn-coupon:active {
  transform: none;
}

/* Input Group for Coupon */
.input-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
}
.input-group .form-control-new {
  flex: 1;
  margin-bottom: 0 !important;
  border-radius: 12px 0 0 12px !important;
}
.input-group .btn-coupon {
  flex-shrink: 0;
}

/* Terms Container */
.terms-container {
  max-height: 300px;
  overflow-y: auto;
  padding: 1.5rem;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 12px;
  background: #f8f9fa;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5D6062;
}
.terms-container::-webkit-scrollbar {
  width: 8px;
}
.terms-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.terms-container::-webkit-scrollbar-thumb {
  background: #46A2DA;
  border-radius: 10px;
}
.terms-container::-webkit-scrollbar-thumb:hover {
  background: #043F6D;
}

/* Modal Styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 2rem;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.custom-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.custom-modal-close:hover, .custom-modal-close:focus {
  color: #000;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Load More Dates Button */
.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #ffffff;
  color: #043F6D !important;
  text-decoration: none;
  border: 2px solid #46A2DA;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-load-more:hover {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.1) 0%, rgba(70, 162, 218, 0.05) 100%);
  border-color: #043F6D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 162, 218, 0.2);
  color: #043F6D !important;
}
.btn-load-more i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.btn-load-more:hover i {
  transform: scale(1.1);
}

/* Confirmation Page Styles */
.confirmation-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid rgba(70, 162, 218, 0.15);
}

.confirmation-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(70, 162, 218, 0.1);
}
.confirmation-item:last-child {
  border-bottom: none;
}

.confirmation-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #043F6D;
  margin-bottom: 0.75rem;
}
.confirmation-label i {
  color: #46A2DA;
  font-size: 1rem;
}

.confirmation-value {
  font-size: 1rem;
  color: #5D6062;
  line-height: 1.6;
  padding-left: 1.5rem;
}

.confirmation-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .confirmation-buttons {
    flex-direction: column;
  }
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #5D6062 !important;
  text-decoration: none;
  border: 2px solid #c4c6c7;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
}
.btn-back:hover {
  background: #f8f9f9;
  border-color: #aaacae;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn-back {
    min-width: auto;
    width: 100%;
  }
}

/* Completion Page Styles */
.completion-icon-container {
  text-align: center;
  margin: 2rem 0;
}

.completion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.15) 0%, rgba(70, 162, 218, 0.05) 100%);
  border-radius: 50%;
  animation: scaleIn 0.6s ease;
}
.completion-icon i {
  font-size: 4rem;
  color: #ffffff;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.completion-message-box {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid rgba(70, 162, 218, 0.15);
}

.completion-message-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.completion-message-title i {
  color: #46A2DA;
  font-size: 1.3rem;
}

.completion-message-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.completion-message-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #5D6062;
  line-height: 1.6;
}
.completion-message-list li i {
  color: #46A2DA;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.completion-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .completion-buttons {
    flex-direction: column;
  }
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #043F6D !important;
  text-decoration: none;
  border: 2px solid #46A2DA;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  min-width: 200px;
}
.btn-outline-blue:hover {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.1) 0%, rgba(70, 162, 218, 0.05) 100%);
  border-color: #043F6D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 162, 218, 0.2);
  text-decoration: none;
  color: #043F6D !important;
}
@media (max-width: 768px) {
  .btn-outline-blue {
    min-width: auto;
    width: 100%;
  }
}

/* Header Menu Right Alignment */
.header-menu-grid {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .counselling-hero-section-new {
    padding: 4rem 1.5rem 3rem;
  }
  .counselling-benefits-section-new {
    padding: 4rem 1.5rem;
  }
  .counselling-form-section-new {
    padding: 4rem 1.5rem;
  }
  .header-menu-grid {
    justify-content: center !important;
  }
}
.terms-container .btn-blue-border {
  border: 1px solid #aaacae;
  font-size: 14px;
  padding: 3px 10px;
  color: #aaacae;
}/*# sourceMappingURL=local.css.map */