/* =============================================
   RESET
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =============================================
   ROOT VARIABLES
============================================= */
:root {
  --teal: #0ea5a4;
  --teal-dark: #0f766e;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg: #f0f4f5;
  --surface: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
}

/* =============================================
   BASE
============================================= */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 25px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5a4;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

/* Desktop: hamburger hidden */
.hamburger {
  display: none;
}

.apply-btn-mobile {
  display: none;
}

.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #0ea5a4;
  color: #ffffff;
  border-color: #0ea5a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
}

/* ═══════════════════════════════════════════
   NAVBAR MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0.2);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 95vh;
  background: linear-gradient(135deg, #99d9d5 0%, #f0fafa 40%, #d4eeec 70%, #79e1da 100%);
  display: flex;
  align-items: center;
  padding: 100px 40px;
  overflow: hidden;
  position: relative;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-glow-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -160px;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.11) 0%, transparent 68%);
  animation: glowPulse 7s ease-in-out infinite;
}

.hero-bg-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -120px;
  right: 8%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.07) 0%, transparent 65%);
  animation: glowPulse 9s ease-in-out infinite reverse;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.10);
    opacity: 0.7;
  }
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  max-width: 600px;
  animation: heroLeftIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroLeftIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-left h1 {
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  white-space: nowrap;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.028em;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand-word {
  font-size: inherit;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  color: #0ea5a4;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-letter {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #0ea5a4;
}

.hero-letter::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.75) 50%, transparent 80%);
  animation: letterShine 2.4s ease-in-out infinite;
}

.hero-letter:nth-child(1)::after {
  animation-delay: 0.00s;
}

.hero-letter:nth-child(2)::after {
  animation-delay: 0.10s;
}

.hero-letter:nth-child(3)::after {
  animation-delay: 0.20s;
}

.hero-letter:nth-child(4)::after {
  animation-delay: 0.30s;
}

.hero-letter:nth-child(5)::after {
  animation-delay: 0.40s;
}

.hero-letter:nth-child(6)::after {
  animation-delay: 0.50s;
}

.hero-letter:nth-child(7)::after {
  animation-delay: 0.60s;
}

.hero-letter:nth-child(8)::after {
  animation-delay: 0.70s;
}

@keyframes letterShine {

  0%,
  100% {
    left: -100%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  60% {
    left: 120%;
    opacity: 1;
  }

  61% {
    opacity: 0;
  }
}

.hero-left p {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: #64748b;
  line-height: 1.80;
  margin-bottom: 38px;
  max-width: 460px;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0ea5a4;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 22px rgba(14, 165, 164, 0.32);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  background: #0f766e;
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(14, 165, 164, 0.42);
}

.hero-btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.hero-btn-primary:hover svg {
  transform: translateX(5px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:hover {
  border-color: #0ea5a4;
  color: #0ea5a4;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 165, 164, 0.14);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: heroRightIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes heroRightIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-img-wrap {
  position: relative;
  width: 520px;
  height: 440px;
  border-radius: 28px;
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.16);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-img-wrap:hover .hero-img {
  transform: scale(1.03) translateY(-4px);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 165, 164, 0.07) 100%);
  pointer-events: none;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  border: 1.5px solid rgba(14, 165, 164, 0.20);
  pointer-events: none;
  animation: ringPulse 3.5s ease-in-out infinite;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 44px;
  border: 1px solid rgba(14, 165, 164, 0.09);
  pointer-events: none;
  animation: ringPulse 3.5s ease-in-out infinite 0.7s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.015);
  }
}

.hero-float-card {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(14, 165, 164, 0.16);
  z-index: 5;
  animation: cardBounceIn 0.9s cubic-bezier(0.34, 1.8, 0.64, 1) 0.7s both,
    cardFloat 4s ease-in-out 1.7s infinite;
}

@keyframes cardBounceIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.75);
  }

  60% {
    opacity: 1;
    transform: translateY(-12px) scale(1.04);
  }

  80% {
    transform: translateY(5px) scale(0.98);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.hero-float-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 2px solid rgba(14, 165, 164, 0.24);
  animation: cardRingPulse 2.8s ease-in-out 1.7s infinite;
}

@keyframes cardRingPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.15), rgba(14, 165, 164, 0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5a4;
  flex-shrink: 0;
  border: 1px solid rgba(14, 165, 164, 0.18);
}

.hero-float-icon svg {
  width: 20px;
  height: 20px;
}

.hero-float-text {
  display: flex;
  flex-direction: column;
}

.hero-float-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.hero-float-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* =============================================
   WHY INTERN
============================================= */
.why-intern {
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}

.wi-header {
  text-align: center;
  padding: 90px 40px 60px;
  background: #eef2f3;
}

.wi-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.wi-header h2 span {
  color: var(--teal);
}

.wi-header p {
  color: #64748b;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.wi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 60px 80px;
  background: #eef2f3;
}

.wi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.wi-card[data-delay="0"] {
  transition-delay: 0s;
}

.wi-card[data-delay="1"] {
  transition-delay: 0.15s;
}

.wi-card[data-delay="2"] {
  transition-delay: 0.3s;
}

.wi-card.wi-visible {
  opacity: 1;
  transform: translateY(0);
}

.wi-card:hover {
  box-shadow: 0 16px 40px rgba(14, 165, 164, 0.12);
  transform: translateY(-6px);
}

.wi-icon {
  width: 52px;
  height: 52px;
  background: #e6f7f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  transition: transform 0.3s;
}

.wi-card:hover .wi-icon {
  transform: scale(1.1) rotate(-5deg);
}

.wi-icon svg {
  width: 24px;
  height: 24px;
}

.wi-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.wi-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   CURRICULUM
============================================= */
.wi-curriculum {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 90px 60px;
  background: #fff;
}

.wi-curr-images {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 340px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wi-curr-images.wi-visible {
  opacity: 1;
  transform: translateX(0);
}

.wi-img-back {
  width: 260px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 0;
  left: 0;
}

.wi-img-front {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
}

.wi-curr-content {
  flex: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.wi-curr-content.wi-visible {
  opacity: 1;
  transform: translateX(0);
}

.wi-curr-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.wi-curr-content h2 span {
  color: var(--teal);
}

.wi-curr-content>p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.wi-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wi-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.wi-checklist li svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.wi-checklist li strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.wi-checklist li span {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* =============================================
   EVAL
============================================= */
.wi-eval {
  background: linear-gradient(160deg, #dff4f3 0%, #eef9f8 35%, #d5eeec 70%, #e4f7f6 100%);
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

/* Background decorative circles */
.wi-eval::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 10% 10%, rgba(14, 165, 164, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 90% 90%, rgba(14, 165, 164, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.wi-eval-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.wi-eval-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #062a2a;
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.wi-eval-header p {
  color: #2d5a5a;
  font-size: 0.98rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps Container */
.wi-eval-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Each Step Card */
.wi-step {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.70);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 164, 0.20);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(14, 165, 164, 0.10);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  max-width: 260px;
}

.wi-step[data-delay="0"] {
  transition-delay: 0s;
}

.wi-step[data-delay="1"] {
  transition-delay: 0.15s;
}

.wi-step[data-delay="2"] {
  transition-delay: 0.30s;
}

.wi-step[data-delay="3"] {
  transition-delay: 0.45s;
}

.wi-step.wi-visible {
  opacity: 1;
  transform: translateY(0);
}

.wi-step:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(14, 165, 164, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(14, 165, 164, 0.18);
}

/* Number */
.wi-step-num {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #065c5c;
  margin-bottom: 14px;
  font-family: monospace;
  background: rgba(14, 165, 164, 0.10);
  border-radius: 12px;
  padding: 6px 18px;
  border: 1px solid rgba(14, 165, 164, 0.20);
}

/* Title */
.wi-step h4 {
  color: #062a2a;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

/* Description */
.wi-step p {
  color: #2d5a5a;
  font-size: 0.84rem;
  line-height: 1.65;
}

/* Divider between cards */
.wi-step-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, rgba(14, 165, 164, 0.25), rgba(14, 165, 164, 0.55), rgba(14, 165, 164, 0.25));
  align-self: center;
  flex-shrink: 0;
  border-radius: 2px;
}

/* =============================================
   VOICES / TESTIMONIALS
============================================= */
.wi-voices {
  padding: 60px 60px 50px;
  background: #f8fafb;
}

.wi-voices-header {
  text-align: center;
  margin-bottom: 36px;
}

.wi-voices-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.wi-voices-header h2 span {
  color: var(--teal);
}

.wi-voices-header p {
  color: #64748b;
  font-size: 0.88rem;
}

.wi-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.wi-tcard {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}

.wi-tcard.wi-visible {
  opacity: 1;
  transform: translateY(0);
}

.wi-tcard:hover {
  box-shadow: 0 8px 28px rgba(14, 165, 164, 0.13);
  transform: translateY(-4px);
}

.wi-tcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.wi-stars {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

.wi-quote {
  font-size: 1.8rem;
  color: #e2e8f0;
  line-height: 1;
  font-family: Georgia, serif;
}

.wi-tcard>p {
  color: #475569;
  font-size: 0.83rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.wi-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wi-profile img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.wi-profile strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.83rem;
  font-weight: 600;
}

.wi-profile span {
  color: #94a3b8;
  font-size: 0.73rem;
}

.wi-more-voices {
  text-align: center;
  margin-top: 36px;
}

.wi-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: #fff;
  color: #0ea5a4;
  border: 2px solid rgba(14, 165, 164, 0.35);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(14, 165, 164, 0.10);
}

.wi-more-btn:hover {
  background: #0ea5a4;
  color: #fff;
  border-color: #0ea5a4;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 165, 164, 0.28);
}

.wi-more-btn svg {
  transition: transform 0.3s ease;
}

.wi-more-btn:hover svg {
  transform: translateX(4px);
}

/* =============================================
   ALUMNI SCROLL
============================================= */
.wi-alumni {
  text-align: center;
  padding: 50px 0;
  background: #f8fafb;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.wi-alumni>span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 28px;
}

.wi-companies-track-outer {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.wi-companies-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: wiScroll 18s linear infinite;
}

.wi-companies-track span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #475569;
  white-space: nowrap;
  cursor: default;
  padding: 10px 24px;
  border: 1.5px solid rgba(14, 165, 164, 0.18);
  transition: all 0.25s;
}

@keyframes wiScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   CTA
============================================= */
.wi-cta {
  background: var(--teal);
  border-radius: 24px;
  margin: 0 60px 80px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wi-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.wi-cta-rocket {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.wi-cta-rocket svg {
  width: 120px;
  height: 120px;
}

.wi-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.wi-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 30px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.wi-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.wi-cta-primary {
  padding: 13px 32px;
  background: #fff;
  color: var(--teal);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.wi-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.wi-cta-secondary {
  padding: 13px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
}

.wi-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* =============================================
   FOOTER
============================================= */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-row:hover a {
  text-decoration: underline;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 30px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

/* =============================================
   RESPONSIVE 
============================================= */
@media (max-width: 1200px) {
  .wi-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 0 40px;
  }

  .hero-img-wrap {
    width: 420px;
    height: 360px;
  }

  .wi-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px 60px;
  }

  .wi-curriculum {
    flex-direction: column;
    gap: 50px;
    padding: 70px 40px;
  }

  .wi-curr-images {
    width: 100%;
    height: 280px;
  }

  .wi-img-back {
    width: 55%;
    height: 200px;
  }

  .wi-img-front {
    width: 42%;
    height: 185px;
  }

  .wi-eval {
    padding: 70px 40px;
  }

  .wi-eval-steps {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .wi-step {
    min-width: 200px;
    max-width: 100%;
  }

  .wi-step-divider {
    display: none;
  }

  .wi-voices {
    padding: 60px 40px 50px;
  }

  .wi-cta {
    margin: 0 40px 70px;
    padding: 60px 40px;
  }

  .wi-alumni {
    padding: 50px 0;
  }

  .wi-companies-track span {
    font-size: 0.82rem;
    padding: 9px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 24px 80px;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    gap: 50px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-brand-word {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .hero-right {
    width: 100%;
    justify-content: center;
  }

  .hero-img-wrap {
    width: 100%;
    height: 300px;
  }

  .hero-float-card {
    right: 10px;
    bottom: -15px;
    padding: 14px 18px;
  }

  .hero-float-num {
    font-size: 1.25rem;
  }

  .wi-header {
    padding: 60px 24px 40px;
  }

  .wi-cards {
    grid-template-columns: 1fr;
    padding: 0 24px 50px;
  }

  .wi-curriculum {
    padding: 60px 24px;
    gap: 40px;
  }

  .wi-curr-images {
    width: 100%;
    height: 220px;
  }

  .wi-img-back {
    width: 58%;
    height: 170px;
  }

  .wi-img-front {
    width: 44%;
    height: 155px;
  }

  .wi-eval {
    padding: 60px 24px;
  }

  .wi-eval-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .wi-step {
    max-width: 100%;
  }

  .wi-voices {
    padding: 50px 24px 40px;
  }

  .wi-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .wi-alumni {
    padding: 40px 0;
  }

  .wi-companies-track span {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  .wi-companies-track {
    gap: 14px;
  }

  .wi-cta {
    margin: 0 20px 60px;
    padding: 50px 24px;
  }

  .wi-cta-rocket {
    display: none;
  }

  .wi-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .wi-cta-primary,
  .wi-cta-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 16px 40px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-img-wrap {
    height: 240px;
  }

  .wi-cards {
    padding: 0 16px 40px;
  }

  .wi-curriculum {
    padding: 50px 16px;
  }

  .wi-eval {
    padding: 50px 16px;
  }

  .wi-voices {
    padding: 40px 16px 36px;
  }

  .wi-alumni {
    padding: 32px 0;
  }

  .wi-companies-track span {
    font-size: 0.72rem;
    padding: 7px 14px;
  }

  .wi-companies-track {
    gap: 10px;
  }

  .wi-cta {
    margin: 0 16px 50px;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 80px;
    min-height: auto;
  }
}


/* Responsive (exactly as original) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 40px;
    padding: 0 40px 60px;
  }
}

@media (max-width: 1200px) {
  .bottom-content {
    padding: 18px 40px 44px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px 40px;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}