.enroll-container {
  position: relative;
  background: linear-gradient(to right, #221e5c, #00a8ff);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enroll-content {
  padding: 10rem 1rem 5rem;
}

.enroll-contact-form {
  background: #ffffff;
  width: 100%;
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  animation: fadeUp 0.8s ease;
}

/* Form Title */
.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #003d82;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* Subtitle */
.subtitle {
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Form Grid */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 16px;
  margin-bottom: 20px;
}

.enroll-form-group {
  width: 100%;
}

.full-width {
  grid-column: 1 / -1;
}

/* Inputs, Select, Textarea */
input,
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #dcdfe8;
  background: #fafbff;
  transition: all 0.25s ease;
}

textarea {
  resize: none;
}

/* Focus Effect */
input:focus,
select:focus,
textarea:focus {
  border-color: #3c55ea;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(60, 85, 234, 0.12);
}

/* Radio Button CSS Starts Here (Abreeq) */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #dcdfe8;
  background: #fafbff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

/* Hide default radio */
.radio-card input {
  display: none;
}

/* Custom circle */
.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #aaa;
  border-radius: 50%;
  position: relative;
}

/* Inner dot */
.radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}

/* Checked state */
.radio-card input:checked+.radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Active card highlight */
.radio-card input:checked+.radio-custom {
  border-color: #007bff;
}

.radio-card:has(input:checked) {
  border-color: #007bff;
  background: #f0f6ff;
}

/* Hover effect */
.radio-card:hover {
  border-color: #007bff;
}

/* Submit Button */
.send-btn {
  margin-top: 22px;
  width: 100%;
  padding: 14px;
  background: #3c55ea;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn i {
  margin-right: 6px;
}

.send-btn:hover {
  background: #2f45c9;
}

/* ===== FEATURES & TESTIMONIALS ===== */
.features-section,
.testimonial-section {
  padding: 4rem 0;
  background: #f5f7fa;
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  background: #fff;
  padding: 30px 25px;
  width: 250px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card i {
  font-size: 34px;
  color: #3c55ea;
  margin-bottom: 14px;
}

.feature-card h4 {
  margin-bottom: 8px;
  color: #221e5c;
}

.testimonial-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  max-width: 420px;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #3c55ea;
}

.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #221e5c;
}

#contact-icon {
  font-weight: 700;
  font-size: clamp(1.6rem, 6vw, 2.5rem);
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .enroll-content {
    padding: 10rem 2rem 5rem;
  }

  .enroll-contact-form {
    padding: 1.4rem 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .form-title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .enroll-content {
    padding: 9rem 1.5rem 4rem;
  }

  .enroll-contact-form {
    padding: 1.4rem 1.2rem;
  }

  input,
  select,
  textarea {
    padding: 8px 12px;
  }
}