
.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--edu-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
}
.featured-service-main img {
  border-radius: 22px;
}

.service-badge {
  background: var(--edu-secondary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}
#study-abroad-cta {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.abroad-list li {
  list-style: none;
  margin-bottom: 14px;
  font-weight: 600;
}

.flag-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  font-size: 34px;
  font-weight: 700;
  transition: .3s;
}

.flag-card:hover {
  transform: scale(1.08);
}

/* Consultation Modal Styles */
.consultation-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.consultation-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: #1a1a1a;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #1a1a1a;
}

.consultation-form .form-group {
  margin-bottom: 20px;
}

.consultation-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--edu-primary);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .modal-content {
    padding: 25px;
    width: 95%;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
}
