/* Home page styles extracted from index.php */

    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      /* Brand Colors - Deep, Trustworthy, Accessible */
      --primary: #1a5fb4;       /* Core Brand Blue */
      --primary-dark: #154a8f;  /* Hover/Active State */
      --primary-light: #e8f0fe; /* Background Tints */
      --accent: #ff9800;        /* Call to Action Orange */
      --accent-hover: #f57c00;  /* CTA Interaction */
      
      /* Neutral System - Clean & Calm */
      --bg-body: #f8fafc;       /* Cool Grey 50 */
      --bg-surface: #ffffff;    /* Pure White */
      --bg-alt: #f1f5f9;        /* Cool Grey 100 */
      
      /* Text System - High Contrast & Readable */
      --text-main: #0f172a;     /* Slate 900 */
      --text-muted: #475569;    /* Slate 600 */
      --text-light: #94a3b8;    /* Slate 400 */
      --text-white: #ffffff;
      
      /* Spacing System - Locked Vertical Rhythm */
      --space-xs: 0.5rem;   /* 8px */
      --space-sm: 1rem;     /* 16px */
      --space-md: 2rem;     /* 32px */
      --space-lg: 4rem;     /* 64px */
      --space-xl: 6rem;     /* 96px - Standard Section Padding */
      --container-width: 1280px;
      
      /* Section Standards */
      --section-padding: var(--space-xl);
      --header-h2-size: 2.5rem;

      /* Legacy variables mapping for compatibility */
      --text: var(--text-main);
      --white: var(--bg-surface);
      --dark: var(--text-main);
      --border: #E2E8F0;
      --section-spacing: var(--section-padding);
      
      /* Shadows */
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text);
      background-color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Hero Section */
    .site-homepage .hero.hero-section {
      --hero-glow-x: 0px;
      --hero-glow-y: 0px;
      --hero-card-x: 0px;
      --hero-card-y: 0px;
      position: relative;
      color: var(--white);
      text-align: center;
      min-height: 100vh;
      padding: 6rem 1.5rem 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      /* Soft overlay – lets the orange and blue image glow remain visible */
      background:
        linear-gradient(rgba(5, 12, 28, 0.24) 0%, rgba(5, 12, 28, 0.38) 100%),
        url('/images/edubridge-cover.jpeg') center 42% / cover no-repeat;
      overflow: hidden;
      margin-bottom: 0;
    }

    .site-homepage .hero.hero-section::after {
      content: "";
      position: absolute;
      inset: -10%;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(38rem 22rem at 28% 32%, rgba(245, 158, 11, 0.2), transparent 70%),
        radial-gradient(36rem 22rem at 72% 38%, rgba(45, 107, 255, 0.22), transparent 68%);
      transform: translate(var(--hero-glow-x), var(--hero-glow-y));
      transition: transform 220ms ease-out;
      animation: heroGlowDrift 14s ease-in-out infinite alternate;
    }

    /* Top vignette: dims source image watermark without affecting the glowing hands */
    .site-homepage .hero.hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        to bottom,
        rgba(5, 12, 28, 0.54) 0%,
        rgba(5, 12, 28, 0.10) 20%,
        rgba(5, 12, 28, 0.00) 38%
      );
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }

    /* Slim glass card – lets more of the hands show around it */
    .hero-content {
      position: relative;
      z-index: 1;
      width: min(92%, 640px);
      padding: 2.25rem 2.5rem 2rem;
      border-radius: 20px;
      background: rgba(8, 16, 34, 0.46);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 20px 48px rgba(2, 8, 23, 0.38),
                  0 0 0 1px rgba(255, 255, 255, 0.06) inset;
      transition: transform 220ms ease-out, box-shadow 220ms ease, background 220ms ease;
    }

    .site-homepage .hero.hero-section.is-interactive .hero-content {
      transform: translate3d(var(--hero-card-x), var(--hero-card-y), 0);
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4vw, 3.6rem);
      margin-bottom: 1rem;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    }

    .hero p {
      font-size: clamp(1rem, 1.9vw, 1.2rem);
      max-width: 560px;
      margin: 0 auto 1.75rem;
      opacity: 0.92;
      font-weight: 400;
      line-height: 1.6;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }

    .hero-actions .btn-outline {
      margin-left: 0;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--white);
      padding: 1rem 2.6rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      cursor: pointer;
      text-transform: uppercase;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
      min-height: 56px;
      min-width: 200px;
      position: relative;
      overflow: hidden;
    }

    .btn:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn:hover:after {
      width: 300px;
      height: 300px;
    }

    .btn:hover, .btn:focus {
      transform: translateY(-3px) scale(1.02);
      box-shadow: var(--shadow-hover);
      background: var(--accent-hover);
      outline: none;
    }

    .btn:focus-visible {
      outline: 2px solid rgba(255, 176, 32, 0.85);
      outline-offset: 2px;
    }

    .btn:active {
      transform: translateY(-1px) scale(0.98);
    }

    .btn-outline {
      background: rgba(15, 23, 42, 0.45);
      border: 2px solid rgba(255, 255, 255, 0.65);
      color: var(--white);
      margin-left: 1rem;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.35);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--primary);
      border-color: var(--white);
      box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }

    .btn-donate-hero {
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: #fff;
      border-color: rgba(180, 83, 9, 0.35);
      box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
      animation: donateHeroPulse 2.6s ease-in-out infinite;
    }

    .btn-donate-hero:hover,
    .btn-donate-hero:focus {
      background: linear-gradient(135deg, #f97316, #ea580c);
      box-shadow: 0 18px 34px rgba(234, 88, 12, 0.38);
    }

    @keyframes donateHeroPulse {
      0%, 100% {
        box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
      }
      50% {
        box-shadow: 0 18px 34px rgba(249, 115, 22, 0.42);
      }
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 12px rgba(26, 95, 180, 0.2);
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 8px 24px rgba(26, 95, 180, 0.3);
    }

    /* Features Section */
    .features {
      padding: var(--section-padding) 0;
      background: var(--bg-alt);
    }

    .section-title {
      text-align: center;
      margin-bottom: var(--space-lg);
    }

    .section-title h2 {
      font-size: var(--header-h2-size);
      color: var(--text-main);
      position: relative;
      display: inline-block;
      padding-bottom: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .section-title h2:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), #ffb74d);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--space-md);
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .feature-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      height: 100%;
      position: relative;
    }

    .feature-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-card:hover:before {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }

    .feature-img {
      height: 240px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-card:hover .feature-img {
      transform: scale(1.05);
    }

    .feature-img::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
    }

    .feature-content {
      padding: 2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .feature-content h3 {
      color: var(--text-main);
      margin-bottom: 1rem;
      font-size: 1.5rem;
      font-weight: 600;
    }

    .feature-content p {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
    }

    /* How It Works Section */
    .how-it-works {
      padding: var(--section-spacing) 0;
      background: var(--bg-body);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .step-card {
      text-align: center;
      padding: 2.5rem 2rem;
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      border: 1px solid var(--border);
      position: relative;
    }

    .step-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .step-number {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 12px rgba(26, 95, 180, 0.3);
      transition: transform 0.3s ease;
    }

    .step-card:hover .step-number {
      transform: scale(1.1);
    }

    .step-card h3 {
      color: var(--text-main);
      font-size: 1.25rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .step-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Enhanced CTA Section */
    .cta {
      background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.95) 0%,
        rgba(26, 95, 180, 0.97) 100%
      );
      color: white;
      padding: 6rem 1.5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 50%, rgba(255, 152, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .cta::after {
      content: '';
      position: absolute;
      inset: -12% -8%;
      background:
        radial-gradient(circle at 28% 72%, rgba(255, 176, 32, 0.16) 0%, transparent 52%),
        radial-gradient(circle at 76% 26%, rgba(96, 165, 250, 0.16) 0%, transparent 54%);
      pointer-events: none;
      animation: ctaGlowShift 18s ease-in-out infinite alternate;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      margin-bottom: 1.5rem;
      font-weight: 700;
      line-height: 1.2;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .cta p {
      max-width: 700px;
      margin: 0 auto 2.5rem;
      font-size: 1.25rem;
      opacity: 0.9;
      font-weight: 300;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .cta-buttons .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.125rem 2.5rem;
      font-size: 1.125rem;
      font-weight: 600;
      min-width: 220px;
    }

    .cta-buttons .btn-outline {
      margin-left: 0;
    }

    .cta-buttons .btn i {
      font-size: 1.25rem;
    }

    .cta-assurance {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .assurance-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .assurance-item i {
      color: var(--accent);
      font-size: 1.1rem;
    }

    /* Stats Section */
    .stats-section {
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
    }

    .stats-section .section-title {
      text-align: center;
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #0f172a;
    }

    .stats-section .section-subtitle {
      text-align: center;
      font-size: 18px;
      color: #64748b;
      margin-bottom: 60px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }

    .stat-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .stat-number {
      font-size: 52px;
      font-weight: 800;
      color: #1e3a8a;
      margin-bottom: 10px;
      line-height: 1.05;
    }

    .stat-label {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #0f172a;
    }

    .stat-subtext {
      font-size: 14px;
      color: #64748b;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .site-homepage .hero.hero-section {
        min-height: 90vh;
        padding: 5.5rem 1.5rem 4.5rem;
        background-position: center 35%;
      }

      .hero-content {
        padding: 2rem 2rem 1.75rem;
      }
      
      .steps-grid {
        gap: 2rem;
      }

      .cta-assurance {
        gap: 2rem;
      }
    }

    /* 2-column features at tablet widths */
    @media (max-width: 992px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      :root {
        --section-spacing: 4rem;
      }

      .edu-header {
        padding: 0.75rem 0;
      }

      .site-homepage .hero.hero-section {
        min-height: 82vh;
        padding: 5rem 1.25rem 3.5rem;
        /* Focal point keeps joined hands above the card on portrait screens */
        background:
          linear-gradient(rgba(5, 12, 28, 0.26) 0%, rgba(5, 12, 28, 0.42) 100%),
          url('/images/edubridge-cover.jpeg') center 32% / cover no-repeat;
      }

      .site-homepage .hero.hero-section::after {
        animation: none;
        transform: none;
      }

      .hero-content {
        width: min(96%, 540px);
        padding: 1.75rem 1.5rem 1.5rem;
      }

      .hero h1 {
        font-size: clamp(1.85rem, 7vw, 2.4rem);
      }
      
      .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
      
      .hero-actions {
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero .btn {
        width: 100%;
        margin: 0;
        min-width: unset;
      }
      
      .btn-outline {
        margin-left: 0;
      }

      .features-grid,
      .steps-grid,
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Prevent cards from overflowing their grid cell */
      .feature-card {
        min-width: 0;
        overflow: hidden;
      }

      .cta {
        padding: 4rem 1.5rem;
      }

      .cta h2 {
        font-size: 2.25rem;
      }

      .cta p {
        font-size: 1.125rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        min-width: unset;
      }

      .cta-assurance {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
      }

      .stats-grid {
        gap: 2rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }
    }

    /* Single-column features on phones */
    @media (max-width: 560px) {
      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
      }

      .feature-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
      }

      .feature-content h3 {
        font-size: 1.35rem;
        line-height: 1.3;
        overflow-wrap: break-word;
      }

      .feature-content p {
        font-size: 0.95rem;
        line-height: 1.65;
      }
    }

    @media (max-width: 480px) {
      .site-homepage .hero.hero-section {
        min-height: 78vh;
        padding: 4.5rem 1rem 3rem;
        background-position: center 28%;
      }

      .hero-content {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
      }

      .hero h1 {
        font-size: clamp(1.7rem, 6.5vw, 2rem);
        line-height: 1.1;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .cta h2 {
        font-size: 2rem;
      }

      .btn {
        min-width: unset;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
      }

      .cta-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
      }
    }

    @media (max-width: 1024px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Animation Keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes glowFloat {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.7;
      }
      50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 1;
      }
    }

    @keyframes heroGlowDrift {
      0% {
        transform: translate(var(--hero-glow-x), var(--hero-glow-y)) scale(1);
      }
      100% {
        transform: translate(calc(var(--hero-glow-x) + 10px), calc(var(--hero-glow-y) - 8px)) scale(1.02);
      }
    }

    @keyframes ctaGlowShift {
      0% {
        transform: translate3d(-0.6%, 0, 0);
        opacity: 0.9;
      }
      100% {
        transform: translate3d(0.6%, -0.4%, 0);
        opacity: 1;
      }
    }

    @media (max-width: 1024px) {
      .hero-content {
        background: rgba(8, 16, 34, 0.52);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }
    }

    /* Page Load Animations */
    .hero h1,
    .hero p,
    .hero-actions {
      animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .hero h1 {
      animation-delay: 0.1s;
    }

    .hero p {
      animation-delay: 0.2s;
    }

    .hero-actions {
      animation-delay: 0.3s;
    }

    .section-title,
    .feature-card,
    .step-card,
    .stat-card {
      opacity: 0;
      animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .section-title {
      animation-delay: 0.4s;
    }

    .feature-card:nth-child(1) { animation-delay: 0.5s; }
    .feature-card:nth-child(2) { animation-delay: 0.6s; }
    .feature-card:nth-child(3) { animation-delay: 0.7s; }

    .step-card:nth-child(1) { animation-delay: 0.8s; }
    .step-card:nth-child(2) { animation-delay: 0.9s; }
    .step-card:nth-child(3) { animation-delay: 1.0s; }
    .step-card:nth-child(4) { animation-delay: 1.1s; }

    .stat-card:nth-child(1) { animation-delay: 1.2s; }
    .stat-card:nth-child(2) { animation-delay: 1.3s; }
    .stat-card:nth-child(3) { animation-delay: 1.4s; }
    .stat-card:nth-child(4) { animation-delay: 1.5s; }

    .cta {
      opacity: 0;
      animation: fadeIn 0.8s ease forwards;
      animation-delay: 1.6s;
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      
      .hero h1,
      .hero p,
      .hero-actions,
      .section-title,
      .feature-card,
      .step-card,
      .stat-card,
      .cta {
        animation: none !important;
        opacity: 1 !important;
      }

      .site-homepage .hero.hero-section::after,
      .cta::after,
      .site-homepage .hero.hero-section.is-interactive .hero-content {
        animation: none !important;
        transform: none !important;
      }
      
      .btn:after,
      .feature-card:before,
      .feature-card:hover,
      .step-card:hover {
        transition: none !important;
      }
    }
.feature-img--applications { background-image: url("/images/jakob-rosen-CTd5_C7p__8-unsplash.jpg"); }
.feature-img--career { background-image: url("/images/daniel-korpai-pKRNxEguRgM-unsplash.jpg"); }
.feature-img--scholarship { background-image: url("/images/pang-yuhao-_kd5cxwZOK4-unsplash.jpg"); }
