/* ==========================================================================
   GO ALIVE — ERASMUS INTERN PAGE
   Aligned with the GO Alive design system (style.css)
   ========================================================================== */

:root {
    --color-primary: #E8392A;
    --color-orange: #F2703C;
    --color-golden: #F5A623;
    --color-pink: #D95090;
    --color-violet: #8B5BB5;
    --color-accent: #F5A623;
    --color-secondary: #D95090;
    --color-highlight: #F2703C;
    --color-neutral: #1E1E1E;
    --color-white: #ffffff;
    --gradient-brand: linear-gradient(135deg, #E8392A 0%, #F2703C 30%, #F5A623 55%, #D95090 80%, #8B5BB5 100%);
    --gradient-brand-alt: linear-gradient(135deg, #8B5BB5 0%, #D95090 35%, #E8392A 65%, #F2703C 100%);
    --gradient-warm: linear-gradient(135deg, #E8392A 0%, #F2703C 50%, #F5A623 100%);
    --color-bg-body: #ffffff;
    --color-bg-alt: #fafafa;
    --color-bg-soft: #fff7f5;
    --color-text-primary: #1E1E1E;
    --color-text-secondary: #5a5a5a;
    --color-text-muted: #909090;
    --color-border: #ede9ed;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 12px rgba(30, 30, 30, 0.05);
    --shadow-md: 0 12px 30px rgba(30, 30, 30, 0.07);
    --shadow-lg: 0 22px 50px rgba(30, 30, 30, 0.10);
    --shadow-hover: 0 28px 56px rgba(232, 57, 42, 0.14);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 50%;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text-primary);
  background: var(--color-bg-body);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}
main {
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ========================================
   SHARED LAYOUT
======================================== */

.content-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 85px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.prose {
  max-width: 900px;
  display: grid;
  gap: 19px;
}

.prose p {
  margin: 0;
  color: #444a53;
  font-size: 17px;
}

/* ========================================
   ERASMUS BRAND + HERO
======================================== */

/* .erasmus-brand {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0 14px;
} */


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

  display: grid;
  place-items: center;

  padding: 80px 0;
  text-align: center;

  background:
    radial-gradient(
      ellipse at 90% 10%,
      rgba(232, 57, 42, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(139, 91, 181, 0.07) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #fffcfc 0%,
      #ffffff 100%
    );
}

/* Dot pattern */
.erasmus-hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(
      rgba(232, 57, 42, 0.18) 1px,
      transparent 1px
    );

  background-size: 34px 34px;
  pointer-events: none;
}

/* Decorative gradient bar */
.erasmus-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: var(--gradient-brand);
}

.erasmus-logo {
  display: block;
  width: min(300px, 100%);
  height: auto;
  margin: 0;

  /* Keep logo above ::before */
  position: relative;
  z-index: 1;
}

.erasmus-title-wrapper {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;
    text-align: center;
}

.erasmus-title-wrapper h1 {
    font-size: clamp(20px, 10.5vw, 30px);
    font-weight: 800;
    color: var(--color-neutral);

    line-height: 1.5;
    letter-spacing: -1.2px;

    margin: 0 0 6px;
}


.hero-title .accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.hero-title .accent::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -4px;

    width: 100%;
    height: 4px;

    background: var(--gradient-brand);
    border-radius: 999px;
}

.erasmus-subtitle {
 
    font-size: clamp(16px, 2.5vw, 20px);
    color:#5a5a5a;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;

}
/* ========================================
   ABOUT
======================================== */

.erasmus-info {
  max-width: 900px;
  width: calc(100% - 48px);
  margin: 60px auto;
  background-color: #ffffff;
}

.erasmus-info h2 {
  text-align: center;
  color:#e8392a;
  margin-bottom: 35px;
}

.erasmus-info p {
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  margin: 0 0 24px;
}


/* ========================================
   ERASMUS UNIVERSITIES
======================================== */

.erasmus-universities {
  background: #ffffff;
  padding: 60px 24px 80px;
}

.universities-title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  color:#ea4335;
  text-align: center;
}

.universities-title-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Grid */
.university-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.university-card {
  background: #ffffff;

  border: 2px solid #c8dcff;
  border-radius: 20px;
  padding: 28px 30px;
  min-height: 420px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* University logos */
.university-logo {
  display: block;

  width: 100%;
  height: 150px;

  object-fit: contain;

  margin: 0 auto 24px;
}

/* University title */
.university-card h3 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;

  color: #111;
}

.university-card h3 a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.university-card h3 a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.university-card h3 a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.university-card h3 a:hover {
  color:#ea4335;
  transform: translateY(-2px);
}

/* Intern list */
.university-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.university-card li {
  margin-bottom: 16px;

  font-size: 18px;
  line-height: 1.45;

  color: #222;
}

/* Intern names */
.university-card li span {
  color: #0050c8;
  font-weight: 600;
}

/* LinkedIn */
.linkedin {
  display: inline-block;
  margin-top: 4px;

  color: #001eff;
  text-decoration: none;
}

.linkedin:hover {
  text-decoration: underline;
}

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

@media (max-width: 1000px) {

  .university-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .universities-title {
    font-size: 34px;
  }

}

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

@media (max-width: 650px) {

  .erasmus-universities {
    padding: 45px 18px 60px;
  }

  .universities-title {
    gap: 10px;
    margin-bottom: 30px;

    font-size: 27px;
    line-height: 1.25;
  }

  .universities-title-icon {
    width: 36px;
    height: 36px;
  }

  .university-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .university-card {
    padding: 24px;
    min-height: auto;
  }

  .university-logo {
    height: 130px;
  }

  .university-card h3 {
    font-size: 21px;
  }

  .university-card li {
    font-size: 16px;
  }
}
/* =========================
   CAROUSEL CONTAINER
========================= */
.gallery-section {
  background-color: #87CEEB;
  width: 100%;
  max-width: none;
}

#intern-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  overflow: hidden;
}

/* Keep everything in ONE LINE */
#intern-carousel .carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
}

/* =========================
   DESKTOP - 3 IMAGES
========================= */
#intern-carousel .carousel-slide {
  flex: 0 0 33.333333%;
  min-width: 33.333333%;
  height: 280px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ALL IMAGES SAME SIZE */
#intern-carousel .carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================
   TABLET - 2 IMAGES
========================= */
@media (max-width: 991px) {
  #intern-carousel .carousel-slide {
    flex: 0 0 50%;
    min-width: 50%;
    height: 320px;
  }
}

/* =========================
   MOBILE - 1 IMAGE
========================= */
@media (max-width: 600px) {
  #intern-carousel .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 280px;
  }
}
/* ========================================
   How to apply section
======================================== */
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em
20.8px
 !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}
.container1 {
  width: 100%;
   background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.4), transparent 35%),
    linear-gradient(135deg, #5eb5e9 0%, #84d5f7 48%, #6cc4ef 100%);
  
}

.erasmus-join-us {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
  box-sizing: border-box;
}

/* MAIN TITLE */
.erasmus-join-us h2 {
  text-align: center;
  margin: 0 0 50px;
}

/* ALL STEPS */
.internship-steps .step {
  width: 100%;
  text-align: center;
  margin: 0 auto 60px;
}

/* STEP TITLES */
.internship-steps .step h3 {
  text-align: center;
  margin-bottom: 25px;
}

/* PARAGRAPHS */
.internship-steps .step p {
  text-align: center;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* ROLES LIST */
.internship-steps .step ul {
  width: fit-content;
  margin: 25px auto;
  padding-left: 25px;
  text-align: left;
}

.internship-steps .step li {
  text-align: left;
  margin-bottom: 8px;
}

/* CANVA + GOOGLE FORM */
.pif-class {
  width: 100%;
  max-width: 1000px;
  height: 650px;
  margin: 30px auto;
}

.pif-class iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  padding: 0;
  margin: 0 auto;
}

/* EMAIL LINK */
.internship-steps .step a {
  color: inherit;
  font-weight: 600;
}

/* TABLET */
@media (max-width: 991px) {

  .erasmus-join-us {
    padding: 40px 25px;
  }

  .pif-class {
    max-width: 100%;
    height: 600px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .erasmus-join-us {
    padding: 30px 15px;
  }

  .erasmus-join-us h2 {
    font-size: 26px;
  }

  .internship-steps .step h3 {
    font-size: 21px;
  }

  .internship-steps .step ul {
    width: fit-content;
    max-width: 100%;
  }

  .pif-class {
    width: 100%;
    height: 600px;
  }
}

/* ========================================
   FOOTER
======================================== */

.old-site-footer {
  background: #111118;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  border-top: 3px solid transparent;
  border-image: var(--gradient-brand) 1;
  font-family: var(--font-main);
  line-height: 1.6;
}

.old-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 50px;
  padding: 80px 24px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  max-width: 1240px;
  margin: 0 auto;
}



/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .btn-upcoming {
    padding-inline: 14px;
  }

  .university-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 76px;
  }

  .site-logo img {
    height: 52px;
    width: 140px;
  }

  .desktop-nav,
  .btn-upcoming {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .erasmus-hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .content-section {
    width: min(100% - 28px, var(--max));
    padding: 65px 0;
  }

  .universities-section {
    width: 100%;
    padding: 65px 14px;
  }

  .university-grid,
  .internship-steps {
    grid-template-columns: 1fr;
  }

  .step.full-width {
    grid-column: auto;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .form-frame {
    min-height: 620px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .erasmus-hero {
    min-height: 230px;
  }

  .university-card,
  .step {
    padding: 24px;
  }

}


/* ==========================================================================
   ERASMUS INTERN — REDESIGNED SECTIONS (ei-* prefix)
   Same colour palette as the main GO Alive design system
   ========================================================================== */

/* ----------------------------------------
   HERO
---------------------------------------- */
.ei-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(232,57,42,.08) 0%, transparent 52%),
    radial-gradient(ellipse at 10% 90%, rgba(139,91,181,.08) 0%, transparent 52%),
    linear-gradient(180deg, #fffcfc 0%, #ffffff 100%);
  padding: 75px 24px 65px;
  text-align: center;
}

/* top gradient bar */
.ei-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-brand);
}

/* animated dot grid */
.ei-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232,57,42,.15) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

/* floating circles */
.ei-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ei-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .22;
  animation: floatCircle 8s ease-in-out infinite alternate;
}
.ei-circle.c1 { width: 340px; height: 340px; background: #E8392A; top: -80px; right: -60px; animation-delay: 0s; }
.ei-circle.c2 { width: 260px; height: 260px; background: #8B5BB5; bottom: -60px; left: -50px; animation-delay: 2.5s; }
.ei-circle.c3 { width: 200px; height: 200px; background: #F5A623; top: 40%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.2s; }
@keyframes floatCircle {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-30px) scale(1.06); }
}

.ei-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ei-erasmus-logo {
  width: min(260px, 70%);
  height: auto;
  margin-bottom: 6px;
}

.ei-hero-title {
  font-size: clamp(30px, 5.5vw, 54px);
  font-weight: 800;
  color: var(--color-neutral);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0;
}

.ei-gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ei-hero-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------
   SHARED: section label
---------------------------------------- */
.ei-section-label { margin-bottom: 40px; }
.ei-section-label.centered { text-align: center; }
.ei-section-label h2 {
  font-size: clamp(24px, 3.7vw, 38px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -.03em;
}

/* ----------------------------------------
   ABOUT SECTION
---------------------------------------- */
.ei-about {
  padding: 90px 24px;
  background: #fafafa;
}
.ei-about-inner { max-width: 1200px; margin: 0 auto; }
.ei-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ei-about-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.ei-about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 18px 18px 0 0;
}
.ei-about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.ei-about-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,57,42,.09);
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 18px;
}
.ei-about-card p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ----------------------------------------
   UNIVERSITIES SECTION
---------------------------------------- */
.ei-universities {
  background: #fff;
  padding: 90px 24px 100px;
}
.ei-universities-inner { max-width: 1240px; margin: 0 auto; }
.ei-universities-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--color-primary);
  margin: 10px 0 0;
  letter-spacing: -.03em;
}
.ei-title-icon { width: 44px; height: 44px; flex-shrink: 0; }

.ei-uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.ei-uni-card {
  background: #fff;
  border: 1.5px solid #e4e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.ei-uni-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232,57,42,.3);
}

.ei-uni-logo-wrap {
  background: #f8f9fc;
  border-bottom: 1.5px solid #e4e8f0;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
.ei-uni-logo {
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.ei-uni-body { padding: 22px 24px 26px; flex: 1; }
.ei-uni-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.3;
}
.ei-uni-body h3 a {
  color: var(--color-neutral);
  text-decoration: none;
  transition: color .22s;
}
.ei-uni-body h3 a:hover { color: var(--color-primary); }
.ei-country {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: #f0f2f5;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ei-intern-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ei-intern-list li {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}
.ei-intern-list li > i {
  color: var(--color-primary);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ei-intern-name {
  font-weight: 700;
  color: #0050c8;
}
.ei-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #0a66c2;
  text-decoration: none;
  background: rgba(10,102,194,.08);
  padding: 2px 9px;
  border-radius: 99px;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.ei-linkedin:hover { background: #0a66c2; color: #fff; }

/* ----------------------------------------
   GALLERY CAROUSEL
---------------------------------------- */
.ei-gallery {
  background: linear-gradient(180deg, #fbfbfd 0%, #fff8f6 100%);
  padding: 85px 0 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.ei-gallery-header {
  text-align: center;
  margin-bottom: 44px;
  padding: 0 24px;
}
.ei-gallery-header h2 {
  font-size: clamp(24px, 3.7vw, 38px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -.03em;
}

.ei-gallery #intern-carousel {
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.ei-gallery #intern-carousel .carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  will-change: transform;
}
.ei-gallery #intern-carousel .carousel-slide {
  flex: 0 0 33.333333%;
  min-width: 33.333333%;
  max-width: 33.333333%;
  width: 33.333333%;
  padding: 0 10px;
  height: 310px;
  box-sizing: border-box;
  overflow: hidden;
}
.ei-gallery #intern-carousel .carousel-slide img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ei-gallery #intern-carousel .carousel-slide:hover img {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(232, 57, 42, 0.16);
}

/* ----------------------------------------
   HOW TO APPLY SECTION
---------------------------------------- */
.ei-apply {
  background: linear-gradient(135deg, #fff7f5 0%, #fafbff 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.ei-apply::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}
.ei-apply-inner { max-width: 1100px; margin: 0 auto; }

.ei-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 56px;
}

.ei-step-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-smooth);
}
.ei-step-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.ei-step-number {
  position: absolute;
  top: -20px; left: 44px;
  background: var(--gradient-warm);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: .08em;
  box-shadow: 0 4px 14px rgba(232,57,42,.3);
}
.ei-step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,57,42,.09);
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 18px;
}
.ei-step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 12px;
}
.ei-step-card > p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 0 20px;
}

/* roles list inside step 1 */
.ei-step-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ei-step-heading .ei-step-icon { flex-shrink: 0; margin: 0; }
.ei-step-heading h3 { margin: 0; }
.ei-steps > .ei-step-card > p { text-align: center; }
.ei-step-part {
  position: relative;
  border-top: 1.5px solid var(--color-border);
  margin-top: 48px;
  padding: 56px 32px 24px;
}
.ei-step-part .ei-step-number { top: -18px; left: 32px; }
.ei-step-part > p {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 0 20px;
}
.ei-roles-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  width: max-content;
  max-width: 100%;
  gap: 10px;
}
.ei-roles-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  background: transparent;
  padding: 10px 14px;
}
.ei-roles-list li > i { color: var(--color-primary); font-size: 12px; flex-shrink: 0; }

/* embed iframe wrappers (Canva + Google Form) */
.ei-embed-wrap {
  width: 100%;
  height: 650px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
}
.ei-embed-wrap iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

.ei-form-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ei-form-link:hover {
  background: var(--color-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(232,57,42,.25);
}
.ei-form-link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

/* email link */
.ei-email-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ----------------------------------------
   RESPONSIVE — tablet
---------------------------------------- */
@media (max-width: 1000px) {
  .ei-about-grid { grid-template-columns: 1fr 1fr; }
  .ei-uni-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ei-hero { padding: 60px 20px 50px; }
  .ei-step-card { padding: 42px 24px 28px; }
  .ei-roles-list { grid-template-columns: 1fr; }
  .ei-embed-wrap { height: 560px; }
}

@media (max-width: 600px) {
  .ei-step-part { padding: 56px 12px 12px; }
  .ei-step-part .ei-step-number { left: 12px; }
  .ei-about-grid { grid-template-columns: 1fr; }
  .ei-uni-grid { grid-template-columns: 1fr; }
  .ei-embed-wrap { height: 520px; }
}

/* ========================================
   MOBILE NAV BACKDROP
   ======================================== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}


