/* =========================================================
   ST WILLS ACADEMY
   ACADEMIC PROFILE HERO
========================================================= */

.profile-hero {
  position: relative;
  overflow: hidden;

  padding: 120px 20px 110px;

  text-align: center;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(11, 110, 253, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 102, 0, 0.15),
      transparent 30%
    ),
    linear-gradient(135deg, #001f4d 0%, #081120 60%, #061a36 100%);

  color: #ffffff;
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.profile-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 31, 77, 0.95),
    rgba(8, 17, 32, 0.82)
  );

  pointer-events: none;
}

/* =========================================================
   DECORATIVE GLOW
========================================================= */

.profile-hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(2px);

  pointer-events: none;
}

.profile-glow-one {
  width: 300px;
  height: 300px;

  top: -150px;
  right: -80px;

  background: rgba(11, 110, 253, 0.12);
}

.profile-glow-two {
  width: 260px;
  height: 260px;

  bottom: -140px;
  left: -80px;

  background: rgba(255, 102, 0, 0.08);
}

/* =========================================================
   HERO CONTENT
========================================================= */

.profile-hero-content {
  position: relative;

  z-index: 2;

  max-width: 850px;

  margin: 0 auto;
}

/* =========================================================
   HERO TAG
========================================================= */

.profile-hero-tag {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 8px 16px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  font-size: 0.82rem;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  backdrop-filter: blur(10px);
}

.profile-hero-tag i {
  color: #ff6600;
}

/* =========================================================
   HERO HEADING
========================================================= */

.profile-hero h1 {
  margin: 25px 0 20px;

  color: #ffffff;

  font-size: clamp(2.7rem, 6vw, 5rem);

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -2px;
}

.profile-hero h1 span {
  display: block;

  color: #4da3ff;
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.profile-hero p {
  max-width: 720px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.78);

  font-size: 1.08rem;

  line-height: 1.8;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.profile-hero-actions {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 14px;

  margin-top: 35px;

  flex-wrap: wrap;
}

.profile-btn-primary,
.profile-btn-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 14px 24px;

  border-radius: 9px;

  text-decoration: none;

  font-size: 0.95rem;

  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.profile-btn-primary {
  background: #0b6efd;

  color: #ffffff !important;

  box-shadow: 0 10px 28px rgba(11, 110, 253, 0.25);
}

.profile-btn-primary:hover {
  background: #075ac8;

  color: #ffffff !important;

  transform: translateY(-3px);
}

.profile-btn-secondary {
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #ffffff !important;

  backdrop-filter: blur(8px);
}

.profile-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);

  color: #ffffff !important;

  transform: translateY(-3px);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .profile-hero {
    padding: 90px 20px 85px;
  }

  .profile-hero h1 {
    font-size: 2.5rem;

    letter-spacing: -1.2px;
  }

  .profile-hero p {
    font-size: 0.96rem;

    line-height: 1.7;
  }

  .profile-hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .profile-btn-primary,
  .profile-btn-secondary {
    width: 100%;

    max-width: 280px;
  }
}
/* =========================================================
   ACADEMIC PROFILE
   PREMIUM INSTRUCTOR CONTENT
========================================================= */

.instructor-content {
  position: relative;
}

/* Small academic label */
.instructor-content > span:first-child {
  display: inline-block;

  margin-bottom: 14px;

  color: #ff6600;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

/* Main heading */
.instructor-content h2 {
  margin: 0 0 22px;

  color: #081120;

  font-size: clamp(2.2rem, 4vw, 3.3rem);

  line-height: 1.08;

  letter-spacing: -1.5px;

  font-weight: 800;
}

/* Main introduction */
.instructor-content .instructor-intro {
  max-width: 680px;

  margin: 0 0 22px;

  color: #172033;

  font-size: 1.05rem;

  line-height: 1.8;

  font-weight: 500;
}

/* Secondary description */
.instructor-content .instructor-description {
  max-width: 700px;

  margin: 0 0 30px;

  color: #667085;

  font-size: 0.96rem;

  line-height: 1.85;
}

/* =========================================================
   HIGHLIGHT CARDS
========================================================= */

.instructor-highlights {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin-top: 25px;
}

.highlight-card {
  position: relative;

  padding: 23px;

  border: 1px solid #e8edf4;

  border-radius: 16px;

  background: #ffffff;

  box-shadow: 0 10px 30px rgba(0, 31, 77, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.highlight-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  border-radius: 16px 0 0 16px;

  background: #0b6efd;
}

.highlight-card:hover {
  transform: translateY(-4px);

  border-color: #d9e7f8;

  box-shadow: 0 16px 38px rgba(0, 31, 77, 0.1);
}

.highlight-card h3 {
  margin: 0 0 10px;

  color: #081120;

  font-size: 1rem;

  line-height: 1.35;

  font-weight: 800;
}

.highlight-card p {
  margin: 0;

  color: #667085;

  font-size: 0.88rem;

  line-height: 1.7;
}

/* =========================================================
   ACADEMIC DETAILS
========================================================= */

.instructor-details {
  margin-top: 28px;

  padding: 22px 24px;

  border-left: 3px solid #ff6600;

  border-radius: 0 14px 14px 0;

  background: #f6f8fb;
}

.instructor-details p {
  margin: 0 0 8px;

  color: #667085;

  font-size: 0.9rem;

  line-height: 1.6;
}

.instructor-details p:last-child {
  margin-bottom: 0;
}

.instructor-details strong {
  color: #081120;

  font-weight: 800;
}

/* =========================================================
   CTA
========================================================= */

.instructor-cta {
  margin-top: 30px;

  padding-top: 28px;

  border-top: 1px solid #e8edf4;
}

.instructor-cta h3 {
  margin: 0 0 8px;

  color: #081120;

  font-size: 1.25rem;

  font-weight: 800;
}

.instructor-cta p {
  max-width: 650px;

  margin: 0 0 20px;

  color: #667085;

  font-size: 0.92rem;

  line-height: 1.7;
}

/* Premium CV button */
.instructor-cta .profile-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border-radius: 10px;

  background: #081120;

  color: #ffffff;

  text-decoration: none;

  font-size: 0.9rem;

  font-weight: 700;

  box-shadow: 0 10px 25px rgba(8, 17, 32, 0.15);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.instructor-cta .profile-btn:hover {
  transform: translateY(-3px);

  background: #0b6efd;

  color: #ffffff;

  box-shadow: 0 14px 30px rgba(11, 110, 253, 0.2);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .instructor-highlights {
    gap: 14px;
  }

  .highlight-card {
    padding: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 699px) {
  .instructor-content > span:first-child {
    margin-bottom: 10px;

    font-size: 0.74rem;

    letter-spacing: 1.2px;
  }

  .instructor-content h2 {
    margin-bottom: 18px;

    font-size: 2.25rem;

    line-height: 1.1;

    letter-spacing: -1px;
  }

  .instructor-content .instructor-intro {
    font-size: 0.96rem;

    line-height: 1.75;
  }

  .instructor-content .instructor-description {
    font-size: 0.9rem;

    line-height: 1.75;
  }

  .instructor-highlights {
    grid-template-columns: 1fr;

    gap: 14px;

    margin-top: 22px;
  }

  .highlight-card {
    padding: 20px;
  }

  .instructor-details {
    margin-top: 22px;

    padding: 18px 20px;
  }

  .instructor-cta {
    margin-top: 25px;

    padding-top: 24px;
  }

  .instructor-cta .profile-btn {
    width: 100%;
  }
}
