﻿/* ============================================
   RAFAA ACADEMY LANDING PAGE STYLES
   Updated: 2025-07-19
   Author: oussamaLaib
   ============================================ */

:root {
  /* Primary Colors */
  --rafaa-primary: #2E7CE4;
  --rafaa-secondary: #4CAF50;
  --rafaa-accent: #66BB6A;
  --rafaa-light: #f8f9fa;
  --rafaa-dark: #212529;
  --rafaa-white: #ffffff;
  --rafaa-gray: #6c757d;
  --rafaa-border: #dee2e6;
  --trafaa-success-light: #6BC76F;
  --trafaa-success: #4CAF50;
  /* Category Colors */
  --rafaa-social: #4E67EB;
  --rafaa-behavioral: #FF9800;
  --rafaa-educational: #4CAF50;
  --rafaa-professional: #9C27B0;
  --rafaa-personal: #2196F3;
  --rafaa-religious: #607D8B;
  /* Event Colors */
  --event-workshop: #4E67EB;
  --event-lecture: #607D8B;
  --event-conference: #9C27B0;
  --event-course: #4CAF50;
  --event-seminar: #FF9800;
  --event-live: #f44336;
  --event-upcoming: #4CAF50;
  --event-completed: #6c757d;
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #2E7CE4 0%, #4CAF50 100%);
  --gradient-blue: linear-gradient(135deg, #2E7CE4 0%, #1976D2 100%);
  --gradient-green: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  --gradient-orange: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  --gradient-purple: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
  /* Box Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-circle: 50%;
  /* Transitions */
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-slow: all 0.8s ease;
  --primary-color: #007bff;
  --primary-light: #e9f5ff;
  --primary-dark: #0056b3;
  --secondary-color: #ff6b6b;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f5f9ff;
  --border-color: #e5e5e5;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(45deg, #007bff, #00c6ff);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  line-height: 1.6;
  color: var(--rafaa-dark);
  overflow-x: hidden;
  background-color: var(--rafaa-light);
}

.landing-page {
  overflow-x: hidden;
}

  .landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4, .landing-page h5, .landing-page h6 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .landing-page p {
    margin-bottom: 1rem;
  }

  .landing-page a {
    color: var(--rafaa-primary);
    text-decoration: none;
    transition: var(--transition-fast);
  }

    .landing-page a:hover {
      color: var(--rafaa-secondary);
    }

  .landing-page img {
    max-width: 100%;
    height: auto;
  }

  .landing-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .landing-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .landing-page [class*="col-"] {
    padding: 0 15px;
  }

  /* ============================================
   HERO SECTION
   ============================================ */
  .landing-page .hero-section {
    position: relative;
    background: linear-gradient(135deg, #2E7CE4 0%, #4CAF50 100%);
    color: var(--rafaa-light);
    padding: 120px 0 160px;
    overflow: hidden;
  }

  .landing-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/landing/pattern-overlay.png');
    opacity: 0.1;
  }

  .landing-page .hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
  }

  .landing-page .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

    .landing-page .hero-title .highlight {
      color: #FFD700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

  .landing-page .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
  }

  .landing-page .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .landing-page .primary-btn {
    background-color: var(--rafaa-white);
    color: var(--rafaa-primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
  }

    .landing-page .primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

  .landing-page .secondary-btn {
    background-color: transparent;
    color: var(--rafaa-white);
    border: 2px solid var(--rafaa-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

    .landing-page .secondary-btn:hover {
      background-color: var(--rafaa-white);
      color: var(--rafaa-primary);
      transform: translateY(-3px);
    }

  .landing-page .hero-image {
    position: relative;
    z-index: 2;
  }

    .landing-page .hero-image img {
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-xl);
      transform: perspective(1000px) rotateY(-15deg);
      transition: var(--transition-medium);
    }

      .landing-page .hero-image img:hover {
        transform: perspective(1000px) rotateY(0);
      }

  .landing-page .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
  }

    .landing-page .hero-wave svg {
      display: block;
      width: 100%;
      height: 80px;
    }

  /* ============================================
   ABOUT SECTION
   ============================================ */
  .landing-page .about-section {
    padding: 100px 0;
    background-color: var(--rafaa-light);
  }

  .landing-page .about-image {
    position: relative;
  }

    .landing-page .about-image img {
      width: 100%;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-lg);
    }

  .landing-page .about-content {
    padding: 30px;
  }

  .landing-page .about-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--rafaa-dark);
    position: relative;
    display: inline-block;
  }

    .landing-page .about-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: 0;
      width: 80px;
      height: 4px;
      background: var(--gradient-primary);
      border-radius: var(--border-radius);
    }

  .landing-page .about-description {
    color: var(--rafaa-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .landing-page .about-values {
    margin-top: 40px;
  }

  .landing-page .value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
  }

  .landing-page .value-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rafaa-white);
    box-shadow: var(--shadow-sm);
    background: var(--gradient-primary);
    flex-shrink: 0;
  }

  .landing-page .value-content {
    flex: 1;
  }

  .landing-page .value-title {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: var(--rafaa-dark);
  }

  .landing-page .value-description {
    color: var(--rafaa-gray);
    margin: 0;
    font-size: 0.95rem;
  }

  /* ============================================
   FEATURES SECTION
   ============================================ */
  .landing-page .features-section {
    padding: 80px 0;
    background-color: var(--rafaa-light);
  }

  .landing-page .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .landing-page .section-title {
    font-size: 2.5rem;
    color: var(--rafaa-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

    .landing-page .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gradient-primary);
      border-radius: var(--border-radius);
    }

  .landing-page .section-subtitle {
    font-size: 1.1rem;
    color: var(--rafaa-white);
    max-width: 700px;
    margin: 1.5rem auto 0;
  }

  .landing-page .features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .landing-page .feature-card {
    background-color: var(--rafaa-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border: 1px solid var(--rafaa-border);
    height: 100%;
  }

    .landing-page .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

  .landing-page .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--rafaa-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
  }

  .landing-page .feature-card:hover .feature-icon {
    transform: scale(1.1);
  }

  .landing-page .feature-icon.academic {
    background: var(--gradient-blue);
  }

  .landing-page .feature-icon.social {
    background: var(--gradient-primary);
  }

  .landing-page .feature-icon.behavioral {
    background: var(--gradient-orange);
  }

  .landing-page .feature-icon.professional {
    background: var(--gradient-purple);
  }

  .landing-page .feature-icon.technology {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  }

  .landing-page .feature-icon.certificate {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
  }

  .landing-page .feature-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: var(--rafaa-dark);
  }

  .landing-page .feature-description {
    color: var(--rafaa-gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* ============================================
   EVENTS SECTION
   ============================================ */
  .landing-page .events-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }

  .landing-page .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .landing-page .event-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    background-color: var(--rafaa-white);
    border: 1px solid var(--rafaa-border);
  }

    .landing-page .event-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

  .landing-page .event-image {
    height: 220px;
    position: relative;
    overflow: hidden;
  }

    .landing-page .event-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-medium);
    }

  .landing-page .event-card:hover .event-image img {
    transform: scale(1.1);
  }

  .landing-page .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition-fast);
  }

  .landing-page .event-card:hover .event-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  }

  .landing-page .event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rafaa-white);
    z-index: 2;
    backdrop-filter: blur(10px);
  }

    .landing-page .event-status.upcoming {
      background: rgba(76, 175, 80, 0.9);
    }

    .landing-page .event-status.live {
      background: rgba(244, 67, 54, 0.9);
      animation: pulse 2s infinite;
    }

    .landing-page .event-status.completed {
      background: rgba(108, 117, 125, 0.9);
    }

  .landing-page .event-content {
    padding: 25px;
  }

  .landing-page .event-type {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: var(--border-radius);
  }

    .landing-page .event-type.workshop {
      background-color: rgba(78, 103, 235, 0.1);
      color: var(--event-workshop);
    }

    .landing-page .event-type.lecture {
      background-color: rgba(96, 125, 139, 0.1);
      color: var(--event-lecture);
    }

    .landing-page .event-type.conference {
      background-color: rgba(156, 39, 176, 0.1);
      color: var(--event-conference);
    }

    .landing-page .event-type.course {
      background-color: rgba(76, 175, 80, 0.1);
      color: var(--event-course);
    }

    .landing-page .event-type.seminar {
      background-color: rgba(255, 152, 0, 0.1);
      color: var(--event-seminar);
    }

  .landing-page .event-title {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: var(--rafaa-dark);
    line-height: 1.4;
    min-height: 55px;
  }

  .landing-page .event-description {
    color: var(--rafaa-gray);
    margin: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .landing-page .event-details {
    margin-bottom: 20px;
  }

  .landing-page .event-schedule {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--rafaa-light);
    border-radius: var(--border-radius);
  }

  .landing-page .schedule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--rafaa-gray);
  }

    .landing-page .schedule-item i {
      color: var(--rafaa-primary);
    }

  .landing-page .event-presenters {
    margin-bottom: 15px;
  }

  .landing-page .presenters-title {
    font-size: 1rem;
    color: var(--rafaa-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

    .landing-page .presenters-title i {
      color: var(--rafaa-primary);
    }

  .landing-page .presenters-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .landing-page .presenter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--rafaa-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--rafaa-border);
  }

  .landing-page .presenter-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .landing-page .presenter-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .landing-page .presenter-name {
    font-weight: 600;
    color: var(--rafaa-dark);
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .landing-page .presenter-title {
    font-size: 0.75rem;
    color: var(--rafaa-gray);
    line-height: 1.1;
  }

  .landing-page .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--rafaa-border);
    padding-top: 15px;
    margin-top: 15px;
  }

  .landing-page .event-participants {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--rafaa-gray);
    font-size: 0.9rem;
  }

    .landing-page .event-participants i {
      color: var(--rafaa-primary);
    }

  .landing-page .event-actions {
    display: flex;
    gap: 8px;
  }

  .landing-page .join-btn, .landing-page .details-btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }

  .landing-page .join-btn {
    background: var(--event-live);
    color: var(--rafaa-white);
  }

    .landing-page .join-btn:hover {
      background: #d32f2f;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

  .landing-page .details-btn {
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
  }

    .landing-page .details-btn:hover {
      background: var(--rafaa-secondary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

  .landing-page .view-all-events {
    text-align: center;
    margin-top: 40px;
  }

  .landing-page .view-all-btn {
    background: transparent;
    color: var(--rafaa-primary);
    border: 2px solid var(--rafaa-primary);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

    .landing-page .view-all-btn:hover {
      background: var(--rafaa-primary);
      color: var(--rafaa-white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

  /* Event Status Animation */
  .landing-page .event-status.live {
    animation: livePulse 2s infinite;
  }

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
  }
}

/* ============================================
   FEATURED COURSES SECTION
   ============================================ */
/*.landing-page .featured-courses-section {
  padding: 80px 0;
  background-color: var(--rafaa-white);
}

.landing-page .featured-courses-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.landing-page .course-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  background-color: var(--rafaa-white);
  border: 1px solid var(--rafaa-border);
}

  .landing-page .course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }

.landing-page .course-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

  .landing-page .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
  }

.landing-page .course-card:hover .course-image img {
  transform: scale(1.1);
}

.landing-page .course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rafaa-white);
  z-index: 1;
}

  .landing-page .course-badge.popular {
    background-color: #F44336;
  }

  .landing-page .course-badge.new {
    background-color: #4CAF50;
  }

.landing-page .course-content {
  padding: 25px;
}

.landing-page .course-category {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: var(--border-radius);
}

  .landing-page .course-category.social {
    background-color: rgba(78, 103, 235, 0.1);
    color: var(--rafaa-social);
  }

  .landing-page .course-category.religious {
    background-color: rgba(96, 125, 139, 0.1);
    color: var(--rafaa-religious);
  }

  .landing-page .course-category.educational {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--rafaa-educational);
  }

.landing-page .course-title {
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  color: var(--rafaa-dark);
  line-height: 1.4;
  min-height: 55px;
}

.landing-page .course-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--rafaa-gray);
}

.landing-page .course-instructor, .landing-page .course-duration {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-page .course-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.landing-page .stars {
  display: flex;
  gap: 2px;
}

  .landing-page .stars i {
    color: #FFC107;
  }

.landing-page .rating-number {
  font-weight: 600;
  color: var(--rafaa-dark);
}

.landing-page .reviews-count {
  font-size: 0.8rem;
  color: var(--rafaa-gray);
}

.landing-page .course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rafaa-border);
  padding-top: 15px;
}

.landing-page .course-price .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rafaa-primary);
}

.landing-page .course-price .free-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rafaa-secondary);
}

.landing-page .enroll-btn {
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

  .landing-page .enroll-btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }*/

/* ============================================
   STATISTICS SECTION
   ============================================ */
.landing-page .statistics-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  position: relative;
  overflow: hidden;
}

  .landing-page .statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/landing/pattern-overlay.png');
    opacity: 0.1;
  }

.landing-page .statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.landing-page .statistic-item {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

  .landing-page .statistic-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
  }

.landing-page .statistic-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--rafaa-white);
}

.landing-page .statistic-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.landing-page .statistic-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.landing-page .testimonials-section {
  padding: 80px 0;
  background-color: var(--rafaa-white);
}

.landing-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.landing-page .testimonial-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  background-color: var(--rafaa-white);
  border: 1px solid var(--rafaa-border);
  padding: 30px;
}

  .landing-page .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }

.landing-page .testimonial-content {
  position: relative;
  margin-bottom: 25px;
}

.landing-page .quotation-mark {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 3rem;
  color: var(--rafaa-primary);
  opacity: 0.2;
}

.landing-page .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
  z-index: 1;
  position: relative;
}

.landing-page .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.landing-page .author-avatar {
  margin-right: 15px;
}

.landing-page .author-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f0f7ff;
  color: #007bff;
  font-size: 1.5rem;
}

.landing-page .author-info {
  display: flex;
  flex-direction: column;
}

.landing-page .author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.landing-page .author-role {
  font-size: 0.9rem;
  color: #777;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.landing-page .minerva-footer {
  position: relative;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
}

.landing-page .footer-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}

.landing-page .footer-logo {
  margin-bottom: 20px;
}

  .landing-page .footer-logo img {
    height: 40px;
  }

.landing-page .footer-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.landing-page .footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.landing-page .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--rafaa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

  .landing-page .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--rafaa-white);
    transform: translateY(-3px);
  }

.landing-page .footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--rafaa-white);
}

  .landing-page .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--rafaa-accent);
  }

.landing-page .links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .landing-page .links-list li {
    margin-bottom: 10px;
  }

  .landing-page .links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
  }

    .landing-page .links-list a::before {
      content: '\f105';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      margin-left: 10px;
      color: var(--rafaa-accent);
      transition: var(--transition-fast);
    }

    .landing-page .links-list a:hover {
      color: var(--rafaa-white);
      transform: translateX(-5px);
    }

.landing-page .contact-info {
  margin-bottom: 30px;
}

.landing-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

  .landing-page .contact-item i {
    color: var(--rafaa-accent);
    margin-top: 5px;
  }

.landing-page .footer-bottom {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

  .landing-page .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.landing-page .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.landing-page .legal-links {
  display: flex;
  gap: 20px;
}

  .landing-page .legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
  }

    .landing-page .legal-links a:hover {
      color: var(--rafaa-white);
    }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.landing-page .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--rafaa-primary);
  color: var(--rafaa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

  .landing-page .back-to-top:hover {
    background-color: var(--rafaa-secondary);
    transform: translateY(-5px);
    color: var(--rafaa-white);
    box-shadow: var(--shadow-lg);
  }

/* Show back-to-top button when page is scrolled */
@media (min-width: 1px) {
  .landing-page .back-to-top {
    opacity: 1;
    visibility: visible;
  }
}

/* ============================================
   SWIPER STYLES FOR CUSTOM SLIDERS
   ============================================ */
/*.landing-page .custom-slider-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--rafaa-white);
}

.landing-page .wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--rafaa-white);
}

.landing-page .background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

  .landing-page .background:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(46, 124, 228, 0.6) 0%, rgba(14, 93, 196, 0.85) 100%);
    opacity: 0.9;
  }

  .landing-page .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }

.landing-page .item-bg {
  width: 300px;
  height: 500px;
  position: absolute;
  top: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s;
  left: -30px;
  z-index: 2;
}

  .landing-page .item-bg.active {
    left: 0;
    top: 0;
    opacity: 1;
  }

.landing-page .news-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .landing-page .news-slider {
    max-width: 1000px;
  }
}

@media screen and (max-width: 576px) {
  .landing-page .news-slider {
    margin-top: 45px;
  }
}

.landing-page .news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.landing-page .news-slider__item {
  width: 400px;
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .landing-page .news-slider__item {
    width: 340px;
  }
}

.landing-page .news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.landing-page .news-slider__item.swiper-slide-active,
.landing-page .news-slider__item.swiper-slide-prev,
.landing-page .news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}

.landing-page .news-slider__ctr {
  position: relative;
  z-index: 12;
}

.landing-page .news-slider__arrow {
  background: #fff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}

  .landing-page .news-slider__arrow:focus {
    outline: none !important;
  }

  .landing-page .news-slider__arrow .icon-font {
    display: inline-flex;
  }

  .landing-page .news-slider__arrow.news-slider-prev {
    left: 15px;
    transform: translateY(-50%);
  }

  .landing-page .news-slider__arrow.news-slider-next {
    right: 15px;
    transform: translateY(-50%);
  }

.landing-page .news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

  .landing-page .news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: #fff;
    opacity: 0.2;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
    transition-delay: 0.5s, 0.5s, 0s;
  }

  .landing-page .news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
    width: 100px;
    transition-delay: 0s;
  }

@media screen and (max-width: 576px) {
  .landing-page .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}

.landing-page .news__item {
  padding: 40px;
  color: #fff;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
}

@media screen and (min-width: 800px) {
  .landing-page .news__item:hover {
    color: #222222;
    transition-delay: 0.1s;
  }

    .landing-page .news__item:hover .news-date,
    .landing-page .news__item:hover .news__title,
    .landing-page .news__item:hover .news__txt {
      opacity: 1;
      transition-delay: 0.1s;
    }

    .landing-page .news__item:hover .news__img {
      box-shadow: none;
    }
}

.landing-page .news__item.active {
  color: #222222;
}

  .landing-page .news__item.active .news-date,
  .landing-page .news__item.active .news__title,
  .landing-page .news__item.active .news__txt {
    opacity: 1;
  }

  .landing-page .news__item.active .news__img {
    box-shadow: none;
  }

@media screen and (max-width: 992px) {
  .landing-page .news__item {
    padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .landing-page .news__item {
    padding: 20px;
  }
}

.landing-page .news-date {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .landing-page .news-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}

.landing-page .news-date__title {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

@media screen and (max-width: 576px) {
  .landing-page .news-date__title {
    margin-right: 10px;
  }
}

.landing-page .news-date__txt {
  font-size: 16px;
}

.landing-page .news__title {
  font-size: 25px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .landing-page .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.landing-page .news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.landing-page .news__img {
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  height: 200px;
  margin-top: 30px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
}

@media screen and (max-width: 576px) {
  .landing-page .news__img {
    height: 180px;
    margin-top: 20px;
  }
}

.landing-page .news__img img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}*/

/* Custom Slider Styles for Modern Cards */
/*.landing-page .custom-slider {
  position: relative;
  max-width: 100%;
  margin: 60px auto 0;
  overflow: visible;
}

.landing-page .custom-slider__wrp {
  overflow: visible;
}

.landing-page .custom-slider__item {
  width: 400px;
  height: 500px;
}

@media screen and (max-width: 992px) {
  .landing-page .custom-slider__item {
    width: 340px;
    height: 450px;
  }
}

@media screen and (max-width: 576px) {
  .landing-page .custom-slider__item {
    width: 280px;
    height: 400px;
  }
}

.landing-page .custom-slider__ctr {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.landing-page .custom-slider__arrows {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-250px);
  z-index: 12;
}

.landing-page .custom-slider__arrow {
  background: #fff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  cursor: pointer;
  outline: none !important;
  transition: all 0.3s;
  position: absolute;
}

  .landing-page .custom-slider__arrow:hover {
    transform: scale(1.1);
  }

  .landing-page .custom-slider__arrow.custom-slider-prev {
    left: 20px;
  }

  .landing-page .custom-slider__arrow.custom-slider-next {
    right: 20px;
  }

  .landing-page .custom-slider__arrow .icon-font {
    display: inline-flex;
    font-size: 20px;
  }

.landing-page .custom-slider__pagination {
  text-align: center;
  margin-top: 30px;
}

.landing-page .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #fff;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
  border: 1px solid #333;
}

.landing-page .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0e5dc4;
  width: 100px;
  transition-delay: 0s;
}

@media screen and (max-width: 576px) {
  .landing-page .swiper-pagination-bullet-active {
    width: 70px;
  }
}

.landing-page .card__item {
  padding: 0;
  color: #fff;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.15);
  transform-origin: center;
}

  .landing-page .card__item.active {
    transform: scale(1.05);
    z-index: 2;
  }

.landing-page .card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  z-index: 1;
}

  .landing-page .card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.landing-page .background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 132, 209, 0.6) 0%, rgba(14, 93, 196, 0.85) 100%);
  opacity: 0.9;
  z-index: 1;
  border-radius: 10px;
}

.landing-page .card-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #0e5dc4;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 3;
}

.landing-page .card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 30px;
  z-index: 3;
}

.landing-page .card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #fff;
}

.landing-page .card__category {
  font-size: 14px;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 5px;
}

.landing-page .card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0;
}

.landing-page .card__meta-item {
  display: flex;
  align-items: center;
  margin-left: 15px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
}

  .landing-page .card__meta-item i {
    margin-left: 5px;
    color: #ffc107;
  }

.landing-page .card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}

  .landing-page .card__badge.featured {
    background-color: #ff9800;
  }

  .landing-page .card__badge.free {
    background-color: #4CAF50;
    left: 90px;
  }

  .landing-page .card__badge.upcoming {
    background-color: #2196F3;
  }

  .landing-page .card__badge.live {
    background-color: #f44336;
    animation: pulse 1.5s infinite;
  }

  .landing-page .card__badge.completed {
    background-color: #9E9E9E;
  }

.landing-page .card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.landing-page .card__btn {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

  .landing-page .card__btn i {
    margin-right: 5px;
  }

  .landing-page .card__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

.landing-page .teacher-social-links {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.landing-page .teacher-social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 8px;
  color: #0e5dc4;
  transition: all 0.3s;
}

  .landing-page .teacher-social-link:hover {
    transform: scale(1.2);
    background: #0e5dc4;
    color: #fff;
  }

.landing-page .modern-loading {
  text-align: center;
  padding: 100px 20px;
  color: var(--rafaa-gray);
}

.landing-page .modern-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--rafaa-border);
  border-top: 4px solid var(--rafaa-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.landing-page .modern-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--rafaa-gray);
}

.landing-page .modern-empty-icon {
  font-size: 4rem;
  color: var(--rafaa-primary);
  margin-bottom: 20px;
}

.landing-page .modern-empty-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.landing-page .modern-empty-text {
  font-size: 1rem;
}*/

/* Modern card stars adjustment */
/*.landing-page .modern-card-stars {
  display: flex;
  align-items: center;
  color: #ffc107;
}

  .landing-page .modern-card-stars i {
    margin-left: 2px;
  }

  .landing-page .modern-card-stars span {
    margin-right: 5px;
  }*/

/* Continue adding .landing-page prefix to remaining selectors */

/* ===== ANIMATION CLASSES ===== */

/* Fade-in animations with delays */
.landing-page .animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
  animation-play-state: running;
}

/* Floating animation */
.landing-page .animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Pulse animation */
.landing-page .animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Rotation animation */
.landing-page .animate-rotate {
  animation: rotate 15s linear infinite;
}

/* Bounce animation */
.landing-page .animate-bounce {
  animation: bounce 2s ease infinite;
}

/* Tilt animation */
.landing-page .animate-tilt {
  animation: tilt 10s ease-in-out infinite;
}

/* Flip animation */
.landing-page .animate-flip {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.5s ease;
}

  .landing-page .animate-flip:hover {
    transform: perspective(1000px) rotateY(10deg);
  }

/* Reveal animation */
.landing-page .animate-reveal {
  animation: reveal 0.8s ease-out forwards;
  opacity: 0;
}

/* Delay classes for staggered animations */
.landing-page .animate-delay-1 {
  animation-delay: 0.2s;
}

.landing-page .animate-delay-2 {
  animation-delay: 0.4s;
}

.landing-page .animate-delay-3 {
  animation-delay: 0.6s;
}

.landing-page .animate-delay-4 {
  animation-delay: 0.8s;
}

.landing-page .animate-delay-5 {
  animation-delay: 1s;
}

.landing-page .animate-delay-6 {
  animation-delay: 1.2s;
}

/* ===== HOVER EFFECTS ===== */

/* Scale on hover */
.landing-page .hover-scale {
  transition: transform 0.3s ease;
}

  .landing-page .hover-scale:hover {
    transform: translateY(-5px) scale(1.03);
  }

/* Button hover effect */
.landing-page .btn-hover-effect {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

  .landing-page .btn-hover-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
  }

  .landing-page .btn-hover-effect:hover:before {
    left: 100%;
  }

/* Link hover effect */
.landing-page .link-hover-effect {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

  .landing-page .link-hover-effect:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    right: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
  }

  .landing-page .link-hover-effect:hover:after {
    width: 100%;
    right: auto;
    left: 0;
  }

/* Shine effect */
.landing-page .shine-effect {
  position: relative;
  overflow: hidden;
}

  .landing-page .shine-effect:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
  }

/* Ripple effect */
.landing-page .ripple-effect {
  position: relative;
  overflow: hidden;
}

.landing-page .event-card:hover .ripple-effect:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 1s ease-out;
}

/* Logo hover */
.landing-page .logo-hover {
  transition: all 0.3s ease;
}

  .landing-page .logo-hover:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }

/* ===== SPECIAL ELEMENTS ===== */

/* Highlight text with background */
.landing-page .highlight {
  position: relative;
  color: #FFD700;
  z-index: 1;
}

  .landing-page .highlight:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
    transform: skewX(-12deg);
  }

/* Highlight text with background */
.landing-page .highlight-purple {
  position: relative;
  color: #764ba2;
  z-index: 1;
}

  .landing-page .highlight-purple:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #667eea;
    z-index: -1;
    transform: skewX(-12deg);
  }

/* Wave animation */
.landing-page .wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Image decoration */
.landing-page .image-shape-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 70%;
  height: 70%;
  border: 4px solid var(--rafaa-primary);
  z-index: -1;
  opacity: 0.2;
}

/* Counter animation using CSS (visual effect only) */
.landing-page .count-animation {
  position: relative;
  display: inline-block;
  font-weight: bold;
}

  .landing-page .count-animation:before {
    content: attr(data-count);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 2s forwards;
  }

/* Feature icons animation */
.landing-page .feature-icon i {
  transition: transform 0.3s ease;
}

.landing-page .feature-card:hover .feature-icon i {
  transform: scale(1.2);
}

/* Course image zoom effect */
.landing-page .course-image {
  overflow: hidden;
}

  .landing-page .course-image img {
    transition: transform 0.5s ease;
  }

.landing-page .course-card:hover .course-image img {
  transform: scale(1.1);
}

/* Event image zoom effect */
.landing-page .event-image {
  overflow: hidden;
}

  .landing-page .event-image img {
    transition: transform 0.5s ease;
  }

.landing-page .event-card:hover .event-image img {
  transform: scale(1.1);
}

/* Footer social links */
.landing-page .social-link {
  transition: all 0.3s ease;
}

  .landing-page .social-link:hover {
    transform: translateY(-5px);
  }

/* Featured Courses News Slider Wrapper */
.landing-page .featured-courses-news-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--rafaa-white);
}

  .landing-page .featured-courses-news-wrapper .background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }

    .landing-page .featured-courses-news-wrapper .background:after{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(45deg, rgba(46, 124, 228, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
      opacity: 0.9;
    }

    .landing-page .featured-courses-news-wrapper .background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      user-select: none;
      opacity: 0.3;
    }

.landing-page .featured-courses-item-bg {
  width: 350px;
  height: 520px;
  position: absolute;
  top: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  right: -30px;
  z-index: 2;
}

  .landing-page .featured-courses-item-bg.active {
    right: 0;
    top: 0;
    opacity: 1;
  }

.landing-page .featured-courses-news-slider {
  z-index: 3;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .landing-page .featured-courses-news-slider {
    max-width: 1000px;
  }
}

@media screen and (max-width: 576px) {
  .landing-page .featured-courses-news-slider {
    margin-top: 45px;
  }
}

.landing-page .featured-courses-news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.landing-page .featured-courses-news-slider__item {
  width: 380px;
  flex-shrink: 0;
  padding: 0 10px;
}

@media screen and (max-width: 992px) {
  .landing-page .featured-courses-news-slider__item {
    width: 340px;
  }
}

.landing-page .featured-courses-news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.landing-page .featured-courses-news-slider__item.swiper-slide-active,
.landing-page .featured-courses-news-slider__item.swiper-slide-prev,
.landing-page .featured-courses-news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}

.landing-page .featured-courses-news-slider__ctr {
  position: relative;
  z-index: 12;
}

.landing-page .featured-courses-news-slider__arrow {
  background: var(--rafaa-white);
  border: 2px solid var(--rafaa-primary);
  display: inline-flex;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(46, 124, 228, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
  color: var(--rafaa-primary);
  font-size: 18px;
  transition: all 0.3s ease;
}

  .landing-page .featured-courses-news-slider__arrow:hover {
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
    transform: translateY(-50%) scale(1.1);
  }

  .landing-page .featured-courses-news-slider__arrow:focus {
    outline: none !important;
  }

  .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-prev {
    right: 15px;
    transform: translateY(-50%);
  }

  .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-next {
    left: 15px;
    transform: translateY(-50%);
  }

.landing-page .featured-courses-news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

  .landing-page .featured-courses-news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: var(--rafaa-primary);
    opacity: 0.3;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
    transition-delay: 0.5s, 0.5s, 0s;
  }

  .landing-page .featured-courses-news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--rafaa-primary);
    width: 100px;
    transition-delay: 0s;
  }

@media screen and (max-width: 576px) {
  .landing-page .featured-courses-news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}

/* Course Item Styles */
.landing-page .course-news__item {
  padding: 40px;
  color: var(--rafaa-white);
  border-radius: 15px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, var(--rafaa-primary) 0%, var(--rafaa-secondary) 100%);
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  .landing-page .course-news__item:hover {
    color: var(--rafaa-dark);
    transition-delay: 0.1s;
  }

    .landing-page .course-news__item:hover .course-price,
    .landing-page .course-news__item:hover .course-news__title,
    .landing-page .course-news__item:hover .course-news__txt {
      opacity: 1;
      transition-delay: 0.1s;
    }

    .landing-page .course-news__item:hover .course-news__img {
      box-shadow: none;
    }
}

.landing-page .course-news__item.active {
  color: var(--rafaa-dark);
}

  .landing-page .course-news__item.active .course-price,
  .landing-page .course-news__item.active .course-news__title,
  .landing-page .course-news__item.active .course-news__txt {
    opacity: 1;
  }

  .landing-page .course-news__item.active .course-news__img {
    box-shadow: none;
  }

@media screen and (max-width: 992px) {
  .landing-page .course-news__item {
    padding: 30px;
    min-height: 420px;
  }
}

@media screen and (max-width: 576px) {
  .landing-page .course-news__item {
    padding: 25px;
    min-height: 380px;
  }
}

/* Course Price Display */
.landing-page .course-price {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 576px) {
  .landing-page .course-price {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 10px;
  }
}

.landing-page .course-price__amount {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #FFD700;
}

@media screen and (max-width: 576px) {
  .landing-page .course-price__amount {
    margin-left: 10px;
    font-size: 28px;
  }
}

.landing-page .course-price__currency {
  font-size: 16px;
  opacity: 0.8;
}

.landing-page .course-price__free {
  font-size: 28px;
  font-weight: 700;
  color: #4CAF50;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--rafaa-secondary);
}

/* Course Title */
.landing-page .course-news__title {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 576px) {
  .landing-page .course-news__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

/* Course Description */
.landing-page .course-news__txt {
  margin: 15px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Course Image */
.landing-page .course-news__img {
  border-radius: 12px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.25);
  height: 180px;
  margin-top: 25px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (max-width: 576px) {
  .landing-page .course-news__img {
    height: 160px;
    margin-top: 20px;
  }
}

.landing-page .course-news__img img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

/* Course Meta Information */
.landing-page .course-meta {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.landing-page .course-badge {
  background: rgba(255, 215, 0, 0.9);
  color: var(--rafaa-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

  .landing-page .course-badge.free-badge {
    background: rgba(76, 175, 80, 0.9);
    color: var(--rafaa-white);
  }

.landing-page .course-rating {
  background: rgba(255, 255, 255, 0.9);
  color: var(--rafaa-dark);
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

  .landing-page .course-rating i {
    color: #FFC107;
    font-size: 10px;
  }

/* Course Action Button */
.landing-page .course-action-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--rafaa-white);
  color: var(--rafaa-primary);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

  .landing-page .course-action-btn:hover {
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .landing-page .course-action-btn i {
    font-size: 16px;
  }

/* Loading States */
.landing-page .featured-courses-loading {
  text-align: center;
  padding: 100px 20px;
  color: var(--rafaa-gray);
}

.landing-page .featured-courses-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--rafaa-border);
  border-top: 4px solid var(--rafaa-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.landing-page .featured-courses-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--rafaa-gray);
}

.landing-page .featured-courses-empty-icon {
  font-size: 4rem;
  color: var(--rafaa-primary);
  margin-bottom: 20px;
}

/* Accessibility Improvements with .landing-page prefix */
.landing-page .event-card:focus,
.landing-page .join-btn:focus,
.landing-page .details-btn:focus,
.landing-page .view-all-btn:focus {
  outline: 2px solid var(--rafaa-accent);
  outline-offset: 2px;
}

/* Screen reader only content */
.landing-page .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;
}

/* High contrast mode support with .landing-page prefix */
@media (prefers-contrast: high) {
  .landing-page .event-card,
  .landing-page .testimonial-card,
  .landing-page .feature-card {
    border: 2px solid;
  }

  .landing-page .event-status,
  .landing-page .course-badge {
    border: 2px solid;
  }
}

/* Reduced motion preferences with .landing-page prefix */
@media (prefers-reduced-motion: reduce) {
  .landing-page *, .landing-page ::before, .landing-page ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive Design with .landing-page prefix */
@media (max-width: 992px) {
  .landing-page .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
  }

  .landing-page .event-card {
    margin-bottom: 20px;
  }

  .landing-page .event-actions {
    flex-direction: column;
    gap: 10px;
  }

  .landing-page .join-btn, .landing-page .details-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .landing-page .events-section {
    padding: 60px 0;
  }

  .landing-page .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landing-page .event-image {
    height: 180px;
  }

  .landing-page .event-content {
    padding: 20px;
  }

  .landing-page .event-schedule {
    flex-direction: column;
    gap: 10px;
  }

  .landing-page .presenters-list {
    gap: 6px;
  }

  .landing-page .presenter-item {
    padding: 6px;
  }

  .landing-page .event-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .landing-page .event-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .landing-page .event-title {
    font-size: 1.1rem;
    min-height: auto;
  }

  .landing-page .event-description {
    font-size: 0.9rem;
  }

  .landing-page .presenter-name {
    font-size: 0.8rem;
  }

  .landing-page .presenter-title {
    font-size: 0.7rem;
  }

  .landing-page .join-btn, .landing-page .details-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

/* Print Styles with .landing-page prefix */
@media print {
  .landing-page .events-section {
    background: white !important;
    color: black !important;
  }

  .landing-page .event-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }

  .landing-page .event-actions,
  .landing-page .back-to-top {
    display: none !important;
  }
}

/* RTL Adjustments with .landing-page prefix */
[dir="rtl"] .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-prev {
  left: 15px;
  right: auto;
}

[dir="rtl"] .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-next {
  right: 15px;
  left: auto;
}

[dir="rtl"] .landing-page .course-meta {
  right: auto;
  left: 20px;
}

[dir="rtl"] .landing-page .course-action-btn {
  right: auto;
  left: 25px;
}

[dir="rtl"] .landing-page .featured-courses-item-bg {
  right: auto;
  left: -30px;
}

  [dir="rtl"] .landing-page .featured-courses-item-bg.active {
    right: auto;
    left: 0;
  }

/* Add missing keyframe */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   MISSING KEYFRAMES
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes tilt {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(1deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
  }

  100% {
    transform: perspective(400px) rotateY(10deg);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   FORCE SHOW CONTENT (FALLBACK)
   ============================================ */
/* Fallback to show content if animations don't load */
.landing-page .animate-reveal,
.landing-page .animate-fade-in-right,
.landing-page .animate-fade-in-up {
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure statistics are always visible */
.landing-page .statistic-item,
.landing-page .about-content,
.landing-page .about-description,
.landing-page .value-item {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================
   FEATURED COURSES NEWS SLIDER
   ============================================ */
.landing-page .featured-courses-news-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--rafaa-white);
}

  .landing-page .featured-courses-news-wrapper .background{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7CE4' fill-opacity='0.08'%3E%3Crect x='10' y='15' width='40' height='30' rx='2'/%3E%3Cline x1='15' y1='25' x2='45' y2='25' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='30' x2='40' y2='30' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='35' x2='35' y2='35' stroke='%232E7CE4' stroke-width='1'/%3E%3Ccircle cx='50' cy='10' r='3'/%3E%3Cpath d='M47 7 L53 7 M50 4 L50 10' stroke='%232E7CE4' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
  }

    .landing-page .featured-courses-news-wrapper .background:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(45deg, rgba(46, 124, 228, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
      opacity: 0.3;
    }

.landing-page .featured-courses-item-bg {
  width: 350px;
  height: 520px;
  position: absolute;
  top: 30px;
  right: -30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

  .landing-page .featured-courses-item-bg.active {
    right: 0;
    top: 0;
    opacity: 1;
  }

.landing-page .featured-courses-news-slider {
  z-index: 3;
  max-width: 1300px;
  margin: 60px auto 0;
  position: relative;
}

.landing-page .featured-courses-news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.landing-page .featured-courses-news-slider__item {
  width: 380px;
  flex-shrink: 0;
  padding: 0 10px;
}

.landing-page .featured-courses-news-slider.single-item .featured-courses-news-slider__wrp {
  justify-content: center !important;
  transform: none !important;
  width: 100% !important;
}

.landing-page .featured-courses-news-slider.single-item .featured-courses-news-slider__item {
  width: 380px !important;
  margin: 0 auto !important;
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.landing-page .featured-courses-news-slider.single-item .featured-courses-news-slider__ctr {
  display: none !important;
}

.landing-page .featured-courses-news-slider:not(.single-item) .featured-courses-news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.landing-page .featured-courses-news-slider:not(.single-item) .featured-courses-news-slider__item.swiper-slide-active,
.landing-page .featured-courses-news-slider:not(.single-item) .featured-courses-news-slider__item.swiper-slide-prev,
.landing-page .featured-courses-news-slider:not(.single-item) .featured-courses-news-slider__item.swiper-slide-next {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.landing-page .featured-courses-news-slider__ctr {
  position: relative;
  z-index: 12;
}

.landing-page .featured-courses-news-slider__arrow {
  background: var(--rafaa-white);
  border: 2px solid var(--rafaa-primary);
  display: inline-flex;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(46, 124, 228, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 15;
  cursor: pointer;
  outline: none !important;
  color: var(--rafaa-primary);
  font-size: 18px;
  transition: all 0.3s ease;
}

  .landing-page .featured-courses-news-slider__arrow:hover {
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
    transform: translateY(-50%) scale(1.1);
  }

  .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-prev {
    right: 15px;
    transform: translateY(-50%);
  }

  .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-next {
    left: 15px;
    transform: translateY(-50%);
  }

.landing-page .featured-courses-news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

  .landing-page .featured-courses-news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: var(--rafaa-primary);
    opacity: 0.3;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  }

  .landing-page .featured-courses-news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--rafaa-primary);
    width: 100px;
  }

/* Course Item Styles */
.landing-page .course-news__item {
  padding: 40px;
  color: var(--rafaa-white);
  border-radius: 15px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, var(--rafaa-primary) 0%, var(--rafaa-secondary) 100%);
  overflow: hidden;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  .landing-page .course-news__item:hover {
    color: var(--rafaa-dark);
    transition-delay: 0.1s;
  }

    .landing-page .course-news__item:hover .course-price,
    .landing-page .course-news__item:hover .course-news__title,
    .landing-page .course-news__item:hover .course-news__txt {
      opacity: 1;
      transition-delay: 0.1s;
    }

    .landing-page .course-news__item:hover .course-news__img {
      box-shadow: none;
    }
}

.landing-page .course-news__item.active {
  color: var(--rafaa-dark);
}

  .landing-page .course-news__item.active .course-price,
  .landing-page .course-news__item.active .course-news__title,
  .landing-page .course-news__item.active .course-news__txt {
    opacity: 1;
  }

  .landing-page .course-news__item.active .course-news__img {
    box-shadow: none;
  }

.landing-page .course-price {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}

.landing-page .course-price__amount {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #FFD700;
}

.landing-page .course-price__currency {
  font-size: 16px;
  opacity: 0.8;
}

.landing-page .course-price__free {
  font-size: 28px;
  font-weight: 700;
  color: #4CAF50;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--rafaa-secondary);
}

.landing-page .course-news__title {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.landing-page .course-news__txt {
  margin: 15px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-page .course-news__img {
  border-radius: 12px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.25);
  height: 180px;
  margin-top: 25px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

  .landing-page .course-news__img img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
  }

.landing-page .course-meta {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.landing-page .course-badge {
  background: rgba(255, 215, 0, 0.9);
  color: var(--rafaa-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

  .landing-page .course-badge.free-badge {
    background: rgba(76, 175, 80, 0.9);
    color: var(--rafaa-white);
  }

.landing-page .course-rating {
  background: rgba(255, 255, 255, 0.9);
  color: var(--rafaa-dark);
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

  .landing-page .course-rating i {
    color: #FFC107;
    font-size: 10px;
  }

.landing-page .course-action-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--rafaa-white);
  color: var(--rafaa-primary);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

  .landing-page .course-action-btn:hover {
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .landing-page .course-action-btn i {
    font-size: 16px;
  }

/* ============================================
   EVENTS NEWS SLIDER
   ============================================ */
.landing-page .events-news-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--rafaa-light);
}

  .landing-page .events-news-wrapper .background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.1'%3E%3Crect x='15' y='20' width='70' height='60' rx='3' stroke='%234CAF50' stroke-width='1'/%3E%3Crect x='25' y='10' width='6' height='20' rx='3'/%3E%3Crect x='69' y='10' width='6' height='20' rx='3'/%3E%3Cline x1='15' y1='35' x2='85' y2='35' stroke='%234CAF50' stroke-width='1'/%3E%3Ccircle cx='30' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3Ccircle cx='70' cy='50' r='2'/%3E%3Ccircle cx='30' cy='65' r='2'/%3E%3Ccircle cx='50' cy='65' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-repeat: repeat;
    background-position: 0 0;
  }

    .landing-page .events-news-wrapper .background:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(45deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 124, 228, 0.1) 100%);
      opacity: 0.3;
    }

.landing-page .events-item-bg {
  width: 350px;
  height: 520px;
  position: absolute;
  top: 30px;
  right: -30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

  .landing-page .events-item-bg.active {
    right: 0;
    top: 0;
    opacity: 1;
  }

.landing-page .events-news-slider {
  z-index: 3;
  max-width: 1300px;
  margin: 60px auto 0;
  position: relative;
}

.landing-page .events-news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.landing-page .events-news-slider__item {
  width: 380px;
  flex-shrink: 0;
  padding: 0 10px;
}

  .landing-page .events-news-slider__item.swiper-slide {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .landing-page .events-news-slider__item.swiper-slide-active,
  .landing-page .events-news-slider__item.swiper-slide-prev,
  .landing-page .events-news-slider__item.swiper-slide-next {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

.landing-page .events-news-slider__ctr {
  position: relative;
  z-index: 12;
}

.landing-page .events-news-slider__arrow {
  background: var(--rafaa-white);
  border: 2px solid var(--rafaa-secondary);
  display: inline-flex;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(76, 175, 80, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 15;
  cursor: pointer;
  outline: none !important;
  color: var(--rafaa-secondary);
  font-size: 18px;
  transition: all 0.3s ease;
}

  .landing-page .events-news-slider__arrow:hover {
    background: var(--rafaa-secondary);
    color: var(--rafaa-white);
    transform: translateY(-50%) scale(1.1);
  }

  .landing-page .events-news-slider__arrow.events-slider-prev {
    right: 15px;
    transform: translateY(-50%);
  }

  .landing-page .events-news-slider__arrow.events-slider-next {
    left: 15px;
    transform: translateY(-50%);
  }

.landing-page .events-news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

  .landing-page .events-news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: var(--rafaa-secondary);
    opacity: 0.3;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  }

  .landing-page .events-news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--rafaa-secondary);
    width: 100px;
  }

/* Event Item Styles */
.landing-page .event-news__item {
  padding: 40px;
  color: var(--rafaa-white);
  border-radius: 15px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, var(--rafaa-secondary) 0%, var(--rafaa-primary) 100%);
  overflow: hidden;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  .landing-page .event-news__item:hover {
    color: var(--rafaa-dark);
    transition-delay: 0.1s;
  }

    .landing-page .event-news__item:hover .event-date,
    .landing-page .event-news__item:hover .event-news__title,
    .landing-page .event-news__item:hover .event-news__txt {
      opacity: 1;
      transition-delay: 0.1s;
    }

    .landing-page .event-news__item:hover .event-news__img {
      box-shadow: none;
    }
}

.landing-page .event-news__item.active {
  color: var(--rafaa-dark);
}

  .landing-page .event-news__item.active .event-date,
  .landing-page .event-news__item.active .event-news__title,
  .landing-page .event-news__item.active .event-news__txt {
    opacity: 1;
  }

  .landing-page .event-news__item.active .event-news__img {
    box-shadow: none;
  }

.landing-page .event-date {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}

.landing-page .event-date__day {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #FFD700;
}

.landing-page .event-date__month {
  font-size: 16px;
  opacity: 0.8;
}

.landing-page .event-date__time {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--rafaa-secondary);
  padding: 4px 8px;
  border-radius: 12px;
  margin-top: 5px;
  display: inline-block;
}

.landing-page .event-news__title {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.landing-page .event-news__txt {
  margin: 15px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-page .event-news__img {
  border-radius: 12px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.25);
  height: 150px;
  margin-top: 25px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
  position: relative;
  z-index: 2;
}

  .landing-page .event-news__img img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

.landing-page .event-meta {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.landing-page .event-status-badge {
  background: rgba(255, 215, 0, 0.9);
  color: var(--rafaa-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

  .landing-page .event-status-badge.upcoming {
    background: rgba(76, 175, 80, 0.9);
    color: var(--rafaa-white);
  }

  .landing-page .event-status-badge.live {
    background: rgba(244, 67, 54, 0.9);
    color: var(--rafaa-white);
    animation: pulse 2s infinite;
  }

  .landing-page .event-status-badge.completed {
    background: rgba(108, 117, 125, 0.9);
    color: var(--rafaa-white);
  }

.landing-page .event-type-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--rafaa-dark);
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.landing-page .event-action-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--rafaa-white);
  color: var(--rafaa-secondary);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

  .landing-page .event-action-btn:hover {
    background: var(--rafaa-secondary);
    color: var(--rafaa-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .landing-page .event-action-btn i {
    font-size: 16px;
  }

/* ============================================
   ACTIVE COURSES NEWS SLIDER
   ============================================ */
.landing-page .courses-news-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--rafaa-white);
}

  .landing-page .courses-news-wrapper .background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C27B0' fill-opacity='0.09'%3E%3Crect x='20' y='30' width='80' height='50' rx='4' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='45' x2='70' y2='45' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='55' x2='60' y2='55' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='65' x2='50' y2='65' stroke='%239C27B0' stroke-width='1'/%3E%3Ccircle cx='60' cy='90' r='8' stroke='%239C27B0' stroke-width='1'/%3E%3Cpath d='M56 90 L59 93 L65 87' stroke='%239C27B0' stroke-width='2'/%3E%3Cpath d='M10 15 Q30 10 50 15 Q70 20 90 15' stroke='%239C27B0' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    background-repeat: repeat;
    background-position: 0 0;
  }

    .landing-page .courses-news-wrapper .background:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(45deg, rgba(156, 39, 176, 0.1) 0%, rgba(46, 124, 228, 0.1) 100%);
      opacity: 0.3;
    }
.landing-page .courses-item-bg {
  width: 350px;
  height: 520px;
  position: absolute;
  top: 30px;
  right: -30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

  .landing-page .courses-item-bg.active {
    right: 0;
    top: 0;
    opacity: 1;
  }

.landing-page .courses-news-slider {
  z-index: 3;
  max-width: 1300px;
  margin: 60px auto 0;
  position: relative;
}

.landing-page .courses-news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.landing-page .courses-news-slider__item {
  width: 380px;
  flex-shrink: 0;
  padding: 0 10px;
}

  .landing-page .courses-news-slider__item.swiper-slide {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .landing-page .courses-news-slider__item.swiper-slide-active,
  .landing-page .courses-news-slider__item.swiper-slide-prev,
  .landing-page .courses-news-slider__item.swiper-slide-next {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

.landing-page .courses-news-slider__ctr {
  position: relative;
  z-index: 12;
}

.landing-page .courses-news-slider__arrow {
  background: var(--rafaa-white);
  border: 2px solid var(--rafaa-secondary);
  display: inline-flex;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(76, 175, 80, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 15;
  cursor: pointer;
  outline: none !important;
  color: var(--rafaa-secondary);
  font-size: 18px;
  transition: all 0.3s ease;
}

  .landing-page .courses-news-slider__arrow:hover {
    background: var(--rafaa-secondary);
    color: var(--rafaa-white);
    transform: translateY(-50%) scale(1.1);
  }

  .landing-page .courses-news-slider__arrow.courses-slider-prev {
    right: 15px;
    transform: translateY(-50%);
  }

  .landing-page .courses-news-slider__arrow.courses-slider-next {
    left: 15px;
    transform: translateY(-50%);
  }

.landing-page .courses-news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

  .landing-page .courses-news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: var(--rafaa-secondary);
    opacity: 0.3;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  }

  .landing-page .courses-news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--rafaa-secondary);
    width: 100px;
  }

/* Active Course Item Styles */
.landing-page .active-course-news__item {
  padding: 40px;
  color: var(--rafaa-white);
  border-radius: 15px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, var(--rafaa-professional) 0%, var(--rafaa-primary) 100%);
  overflow: hidden;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  .landing-page .active-course-news__item:hover {
    color: var(--rafaa-dark);
    transition-delay: 0.1s;
  }

    .landing-page .active-course-news__item:hover .active-course-price,
    .landing-page .active-course-news__item:hover .active-course-news__title,
    .landing-page .active-course-news__item:hover .active-course-news__txt {
      opacity: 1;
      transition-delay: 0.1s;
    }

    .landing-page .active-course-news__item:hover .active-course-news__img {
      box-shadow: none;
    }
}

.landing-page .active-course-news__item.active {
  color: var(--rafaa-dark);
}

  .landing-page .active-course-news__item.active .active-course-price,
  .landing-page .active-course-news__item.active .active-course-news__title,
  .landing-page .active-course-news__item.active .active-course-news__txt {
    opacity: 1;
  }

  .landing-page .active-course-news__item.active .active-course-news__img {
    box-shadow: none;
  }

.landing-page .active-course-price {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}

.landing-page .active-course-price__amount {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #FFD700;
}

.landing-page .active-course-price__currency {
  font-size: 16px;
  opacity: 0.8;
}

.landing-page .active-course-price__free {
  font-size: 28px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--rafaa-secondary);
}

.landing-page .active-course-news__title {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.landing-page .active-course-news__txt {
  margin: 15px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-page .active-course-news__img {
  border-radius: 12px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.25);
  height: 160px;
  margin-top: 25px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

  .landing-page .active-course-news__img img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
  }

.landing-page .active-course-action-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--rafaa-white);
  color: var(--rafaa-professional);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

  .landing-page .active-course-action-btn:hover {
    background: var(--rafaa-professional);
    color: var(--rafaa-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .landing-page .active-course-action-btn i {
    font-size: 16px;
  }

.landing-page .view-all-courses {
  text-align: center;
  margin-top: 30px;
}

.landing-page .view-all-btn {
  background: transparent;
  color: var(--rafaa-primary);
  border: 2px solid var(--rafaa-primary);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

  .landing-page .view-all-btn:hover {
    background: var(--rafaa-primary);
    color: var(--rafaa-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

/* ============================================
   TEACHERS NEWS SLIDER
   ============================================ */
.landing-page .teachers-news-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

  .landing-page .teachers-news-wrapper .background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.12'%3E%3Ccircle cx='40' cy='25' r='8'/%3E%3Cpath d='M25 55 Q40 45 55 55' stroke='%23667eea' stroke-width='2'/%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='60' cy='20' r='4'/%3E%3Ccircle cx='20' cy='60' r='4'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3Cline x1='24' y1='20' x2='32' y2='25' stroke='%23667eea' stroke-width='1'/%3E%3Cline x1='56' y1='20' x2='48' y2='25' stroke='%23667eea' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-repeat: repeat;
    background-position: 0 0;
  }

    .landing-page .teachers-news-wrapper .background:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(45deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
      opacity: 0.3;
    }

.landing-page .teachers-item-bg {
  width: 380px;
  height: 560px;
  position: absolute;
  top: 30px;
  right: -30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

  .landing-page .teachers-item-bg.active {
    right: 0;
    top: 0;
    opacity: 1;
  }

.landing-page .teachers-news-slider {
  z-index: 3;
  max-width: 1300px;
  margin: 60px auto 0;
  position: relative;
}

.landing-page .teachers-news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.landing-page .teachers-news-slider__item {
  width: 400px;
  flex-shrink: 0;
  padding: 0 10px;
}

  .landing-page .teachers-news-slider__item.swiper-slide {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .landing-page .teachers-news-slider__item.swiper-slide-active,
  .landing-page .teachers-news-slider__item.swiper-slide-prev,
  .landing-page .teachers-news-slider__item.swiper-slide-next {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

.landing-page .teachers-news-slider__ctr {
  position: relative;
  z-index: 12;
}

.landing-page .teachers-news-slider__arrow {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(102, 126, 234, 0.8);
  display: inline-flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 30px 8px rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 15;
  cursor: pointer;
  outline: none !important;
  color: #667eea;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

  .landing-page .teachers-news-slider__arrow:hover {
    background: #667eea;
    color: var(--rafaa-white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px 10px rgba(102, 126, 234, 0.4);
  }

  .landing-page .teachers-news-slider__arrow.teachers-slider-prev {
    right: 15px;
    transform: translateY(-50%);
  }

  .landing-page .teachers-news-slider__arrow.teachers-slider-next {
    left: 15px;
    transform: translateY(-50%);
  }

.landing-page .teachers-news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}

  .landing-page .teachers-news-slider__pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.5;
    margin: 0 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .landing-page .teachers-news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--rafaa-white);
    transform: scale(1.3);
    border: 2px solid #667eea;
  }

/* Teacher Item Styles */
.landing-page .teacher-news__item {
  padding: 0;
  color: var(--rafaa-dark);
  border-radius: 20px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 800px) {
  .landing-page .teacher-news__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px 20px rgba(0, 0, 0, 0.15);
  }

    .landing-page .teacher-news__item:hover .teacher-info,
    .landing-page .teacher-news__item:hover .teacher-news__title,
    .landing-page .teacher-news__item:hover .teacher-specialization {
      transform: translateY(-5px);
    }

    .landing-page .teacher-news__item:hover .teacher-avatar {
      transform: scale(1.25);
    }
}

.landing-page .teacher-news__item.active {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px 25px rgba(0, 0, 0, 0.2);
}

  .landing-page .teacher-news__item.active .teacher-info,
  .landing-page .teacher-news__item.active .teacher-news__title,
  .landing-page .teacher-news__item.active .teacher-specialization {
    transform: translateY(-10px);
  }

/* Teacher Avatar Section */
.landing-page .teacher-avatar-section {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
}

.landing-page .teacher-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: var(--rafaa-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

  .landing-page .teacher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .landing-page .teacher-avatar i {
    font-size: 3rem;
    color: #667eea;
  }

.landing-page .teacher-experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #667eea;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.landing-page .teacher-social-links-news {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.landing-page .teacher-social-link-news {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #667eea;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

  .landing-page .teacher-social-link-news:hover {
    transform: scale(1.2) translateY(-3px);
    background: #667eea;
    color: var(--rafaa-white);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  }

.landing-page .teacher-info {
  padding: 30px 25px 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.landing-page .teacher-news__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--rafaa-dark);
  transition: all 0.3s ease;
  position: relative;
}

.landing-page .teacher-position {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
  background: rgba(102, 126, 234, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

.landing-page .teacher-specialization {
  margin: 15px 0;
  line-height: 1.5em;
  font-size: 14px;
  color: var(--rafaa-gray);
  transition: all 0.3s ease;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-page .teacher-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.landing-page .teacher-stat {
  text-align: center;
  flex: 1;
}

.landing-page .teacher-stat-number {
  font-size: 18px;
  font-weight: 700;
  color: #667eea;
  display: block;
}

.landing-page .teacher-stat-label {
  font-size: 11px;
  color: var(--rafaa-gray);
  margin-top: 4px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.landing-page .minerva-footer {
  position: relative;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
}
.landing-page .main-footer-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  text-align: center;
  line-height: 60px;
  height: 150px;
}

.landing-page .footer-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}

.landing-page .footer-logo {
  margin-bottom: 20px;
}

  .landing-page .footer-logo img {
    height: 40px;
  }

.landing-page .footer-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.landing-page .footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.landing-page .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--rafaa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

  .landing-page .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--rafaa-white);
    transform: translateY(-3px);
  }

.landing-page .footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--rafaa-white);
}

  .landing-page .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--rafaa-accent);
  }

.landing-page .links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .landing-page .links-list li {
    margin-bottom: 10px;
  }

  .landing-page .links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
  }

    .landing-page .links-list a::before {
      content: '\f105';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      margin-left: 10px;
      color: var(--rafaa-accent);
      transition: var(--transition-fast);
    }

    .landing-page .links-list a:hover {
      color: var(--rafaa-white);
      transform: translateX(-5px);
    }

.landing-page .contact-info {
  margin-bottom: 30px;
}

.landing-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

  .landing-page .contact-item i {
    color: var(--rafaa-accent);
    margin-top: 5px;
  }

.landing-page .footer-bottom {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

  .landing-page .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.landing-page .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.landing-page .legal-links {
  display: flex;
  gap: 20px;
}

  .landing-page .legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
  }

    .landing-page .legal-links a:hover {
      color: var(--rafaa-white);
    }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.landing-page .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--rafaa-primary);
  color: var(--rafaa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

  .landing-page .back-to-top:hover {
    background-color: var(--rafaa-secondary);
    transform: translateY(-5px);
    color: var(--rafaa-white);
    box-shadow: var(--shadow-lg);
  }

@media (min-width: 1px) {
  .landing-page .back-to-top {
    opacity: 1;
    visibility: visible;
  }
}

/* ============================================
   LOADING AND EMPTY STATES
   ============================================ */
.landing-page .featured-courses-loading,
.landing-page .courses-loading,
.landing-page .events-loading,
.landing-page .teachers-loading {
  text-align: center;
  padding: 100px 20px;
  color: var(--rafaa-gray);
}

.landing-page .featured-courses-loading-spinner,
.landing-page .courses-loading-spinner,
.landing-page .events-loading-spinner,
.landing-page .teachers-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--rafaa-border);
  border-top: 4px solid var(--rafaa-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.landing-page .featured-courses-empty,
.landing-page .courses-empty,
.landing-page .events-empty,
.landing-page .teachers-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--rafaa-gray);
}

.landing-page .featured-courses-empty-icon,
.landing-page .courses-empty-icon,
.landing-page .events-empty-icon,
.landing-page .teachers-empty-icon {
  font-size: 4rem;
  color: var(--rafaa-primary);
  margin-bottom: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.landing-page .animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
  animation-play-state: running;
}

.landing-page .animate-float {
  animation: float 6s ease-in-out infinite;
}

.landing-page .animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.landing-page .animate-rotate {
  animation: rotate 15s linear infinite;
}

.landing-page .animate-bounce {
  animation: bounce 2s ease infinite;
}

.landing-page .animate-tilt {
  animation: tilt 10s ease-in-out infinite;
}

.landing-page .animate-flip {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.5s ease;
}

  .landing-page .animate-flip:hover {
    transform: perspective(1000px) rotateY(10deg);
  }

.landing-page .animate-reveal {
  animation: reveal 0.8s ease-out forwards;
  opacity: 0;
}

.landing-page .animate-delay-1 {
  animation-delay: 0.2s;
}

.landing-page .animate-delay-2 {
  animation-delay: 0.4s;
}

.landing-page .animate-delay-3 {
  animation-delay: 0.6s;
}

.landing-page .animate-delay-4 {
  animation-delay: 0.8s;
}

.landing-page .animate-delay-5 {
  animation-delay: 1s;
}

.landing-page .animate-delay-6 {
  animation-delay: 1.2s;
}

/* ============================================
   HOVER EFFECTS
   ============================================ */
.landing-page .hover-scale {
  transition: transform 0.3s ease;
}

  .landing-page .hover-scale:hover {
    transform: translateY(-5px) scale(1.03);
  }

.landing-page .btn-hover-effect {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

  .landing-page .btn-hover-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
  }

  .landing-page .btn-hover-effect:hover:before {
    left: 100%;
  }

.landing-page .link-hover-effect {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

  .landing-page .link-hover-effect:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    right: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
  }

  .landing-page .link-hover-effect:hover:after {
    width: 100%;
    right: auto;
    left: 0;
  }

.landing-page .shine-effect {
  position: relative;
  overflow: hidden;
}

  .landing-page .shine-effect:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
  }

.landing-page .ripple-effect {
  position: relative;
  overflow: hidden;
}

.landing-page .event-card:hover .ripple-effect:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 1s ease-out;
}

.landing-page .logo-hover {
  transition: all 0.3s ease;
}

  .landing-page .logo-hover:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }

.landing-page .highlight {
  position: relative;
  color: #FFD700;
  z-index: 1;
}

  .landing-page .highlight:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
    transform: skewX(-12deg);
  }

.landing-page .image-shape-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 70%;
  height: 70%;
  border: 4px solid var(--rafaa-primary);
  z-index: -1;
  opacity: 0.2;
}

.landing-page .count-animation {
  position: relative;
  display: inline-block;
  font-weight: bold;
}

  .landing-page .count-animation:before {
    content: attr(data-count);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 2s forwards;
  }

.landing-page .feature-icon i {
  transition: transform 0.3s ease;
}

.landing-page .feature-card:hover .feature-icon i {
  transform: scale(1.2);
}

.landing-page .course-image {
  overflow: hidden;
}

  .landing-page .course-image img {
    transition: transform 0.5s ease;
  }

.landing-page .course-card:hover .course-image img {
  transform: scale(1.1);
}

.landing-page .event-image {
  overflow: hidden;
}

  .landing-page .event-image img {
    transition: transform 0.5s ease;
  }

.landing-page .event-card:hover .event-image img {
  transform: scale(1.1);
}

.landing-page .social-link {
  transition: all 0.3s ease;
}

  .landing-page .social-link:hover {
    transform: translateY(-5px);
  }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes tilt {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(1deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1300px) {
  .landing-page .featured-courses-news-slider,
  .landing-page .courses-news-slider,
  .landing-page .events-news-slider,
  .landing-page .teachers-news-slider {
    max-width: 1000px;
  }
}

@media screen and (max-width: 992px) {
  .landing-page .featured-courses-news-slider__item,
  .landing-page .courses-news-slider__item,
  .landing-page .events-news-slider__item {
    width: 340px;
  }

  .landing-page .teachers-news-slider__item {
    width: 360px;
  }

  .landing-page .featured-courses-news-slider.single-item .featured-courses-news-slider__item,
  .landing-page .courses-news-slider.single-item .courses-news-slider__item {
    width: 340px !important;
  }

  .landing-page .hero-title {
    font-size: 2.5rem;
  }

  .landing-page .course-news__item,
  .landing-page .active-course-news__item,
  .landing-page .event-news__item {
    padding: 30px;
    min-height: 420px;
  }

  .landing-page .teacher-news__item {
    min-height: 480px;
  }

  .landing-page .featured-courses-item-bg,
  .landing-page .courses-item-bg,
  .landing-page .events-item-bg {
    width: 300px;
    height: 450px;
  }

  .landing-page .teachers-item-bg {
    width: 320px;
    height: 480px;
  }
}

@media screen and (max-width: 768px) {
  .landing-page .hero-section {
    padding: 80px 0 120px;
  }

  .landing-page .hero-title {
    font-size: 2rem;
  }

  .landing-page .hero-subtitle {
    font-size: 1rem;
  }

  .landing-page .hero-content {
    padding-right: 0;
    padding-bottom: 80px;
    text-align: center;
  }

  .landing-page .hero-actions {
    justify-content: center;
  }

  .landing-page .about-section,
  .landing-page .features-section,
  .landing-page .statistics-section,
  .landing-page .testimonials-section {
    padding: 60px 0;
  }

  .landing-page .featured-courses-news-wrapper,
  .landing-page .courses-news-wrapper,
  .landing-page .events-news-wrapper,
  .landing-page .teachers-news-wrapper {
    padding: 60px 0;
  }

  .landing-page .featured-courses-news-slider,
  .landing-page .courses-news-slider,
  .landing-page .events-news-slider,
  .landing-page .teachers-news-slider {
    margin-top: 30px;
  }

  .landing-page .featured-courses-news-slider__arrow,
  .landing-page .courses-news-slider__arrow,
  .landing-page .events-news-slider__arrow,
  .landing-page .teachers-news-slider__arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .landing-page .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .landing-page .featured-courses-news-slider__item,
  .landing-page .courses-news-slider__item,
  .landing-page .events-news-slider__item {
    width: 300px;
  }

  .landing-page .teachers-news-slider__item {
    width: 320px;
  }

  .landing-page .featured-courses-news-slider.single-item .featured-courses-news-slider__item,
  .landing-page .courses-news-slider.single-item .courses-news-slider__item {
    width: 300px !important;
  }

  .landing-page .hero-title {
    font-size: 1.8rem;
  }

  .landing-page .section-title {
    font-size: 2rem;
  }

  .landing-page .about-title {
    font-size: 2rem;
  }

  .landing-page .course-news__item,
  .landing-page .active-course-news__item,
  .landing-page .event-news__item {
    padding: 25px;
    min-height: 380px;
  }

  .landing-page .teacher-news__item {
    min-height: 450px;
  }

  .landing-page .featured-courses-news-wrapper,
  .landing-page .courses-news-wrapper,
  .landing-page .events-news-wrapper,
  .landing-page .teachers-news-wrapper {
    min-height: 520px;
  }

  .landing-page .featured-courses-news-slider__pagination .swiper-pagination-bullet-active,
  .landing-page .courses-news-slider__pagination .swiper-pagination-bullet-active,
  .landing-page .events-news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }

  .landing-page .course-price__amount,
  .landing-page .active-course-price__amount {
    font-size: 28px;
  }

  .landing-page .course-news__title,
  .landing-page .active-course-news__title,
  .landing-page .event-news__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .landing-page .course-news__img,
  .landing-page .active-course-news__img {
    height: 160px;
    margin-top: 20px;
  }

  .landing-page .event-news__img {
    height: 120px;
    margin-top: 20px;
  }

  .landing-page .course-price,
  .landing-page .active-course-price,
  .landing-page .event-date {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .landing-page .event-date__day {
    font-size: 28px;
  }
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-prev,
[dir="rtl"] .landing-page .courses-news-slider__arrow.courses-slider-prev,
[dir="rtl"] .landing-page .events-news-slider__arrow.events-slider-prev,
[dir="rtl"] .landing-page .teachers-news-slider__arrow.teachers-slider-prev {
  left: 15px;
  right: auto;
}

[dir="rtl"] .landing-page .featured-courses-news-slider__arrow.featured-courses-slider-next,
[dir="rtl"] .landing-page .courses-news-slider__arrow.courses-slider-next,
[dir="rtl"] .landing-page .events-news-slider__arrow.events-slider-next,
[dir="rtl"] .landing-page .teachers-news-slider__arrow.teachers-slider-next {
  right: 15px;
  left: auto;
}

[dir="rtl"] .landing-page .featured-courses-item-bg,
[dir="rtl"] .landing-page .courses-item-bg,
[dir="rtl"] .landing-page .events-item-bg,
[dir="rtl"] .landing-page .teachers-item-bg {
  right: auto;
  left: -30px;
}

  [dir="rtl"] .landing-page .featured-courses-item-bg.active,
  [dir="rtl"] .landing-page .courses-item-bg.active,
  [dir="rtl"] .landing-page .events-item-bg.active,
  [dir="rtl"] .landing-page .teachers-item-bg.active {
    right: auto;
    left: 0;
  }

[dir="rtl"] .landing-page .teacher-experience-badge,
[dir="rtl"] .landing-page .course-meta,
[dir="rtl"] .landing-page .event-meta {
  right: auto;
  left: 20px;
}

[dir="rtl"] .landing-page .course-action-btn,
[dir="rtl"] .landing-page .active-course-action-btn,
[dir="rtl"] .landing-page .event-action-btn {
  right: auto;
  left: 25px;
}

[dir="rtl"] .landing-page .about-title::after {
  right: auto;
  left: 0;
}

[dir="rtl"] .landing-page .footer-title::after {
  right: auto;
  left: 0;
}

[dir="rtl"] .landing-page .links-list a::before {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .landing-page .links-list a:hover {
  transform: translateX(5px);
}

[dir="rtl"] .landing-page .back-to-top {
  right: auto;
  left: 30px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.landing-page .event-card:focus,
.landing-page .join-btn:focus,
.landing-page .details-btn:focus,
.landing-page .view-all-btn:focus,
.landing-page .course-action-btn:focus,
.landing-page .active-course-action-btn:focus,
.landing-page .event-action-btn:focus {
  outline: 2px solid var(--rafaa-accent);
  outline-offset: 2px;
}

.landing-page .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;
}

@media (prefers-contrast: high) {
  .landing-page .event-card,
  .landing-page .testimonial-card,
  .landing-page .feature-card,
  .landing-page .course-news__item,
  .landing-page .active-course-news__item,
  .landing-page .event-news__item,
  .landing-page .teacher-news__item {
    border: 2px solid;
  }

  .landing-page .event-status-badge,
  .landing-page .course-badge,
  .landing-page .event-type-badge {
    border: 2px solid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *, .landing-page ::before, .landing-page ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   FORCE SHOW CONTENT (FALLBACK)
   ============================================ */
.landing-page .animate-reveal,
.landing-page .animate-fade-in-right,
.landing-page .animate-fade-in-up {
  opacity: 1 !important;
  transform: none !important;
}

.landing-page .statistic-item,
.landing-page .about-content,
.landing-page .about-description,
.landing-page .value-item {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .landing-page .events-section,
  .landing-page .featured-courses-news-wrapper,
  .landing-page .courses-news-wrapper,
  .landing-page .teachers-news-wrapper {
    background: white !important;
    color: black !important;
  }

  .landing-page .event-card,
  .landing-page .course-news__item,
  .landing-page .active-course-news__item,
  .landing-page .event-news__item,
  .landing-page .teacher-news__item {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }

  .landing-page .event-actions,
  .landing-page .course-action-btn,
  .landing-page .active-course-action-btn,
  .landing-page .event-action-btn,
  .landing-page .back-to-top {
    display: none !important;
  }
}

/* ============================================
   SVG BACKGROUND PATTERNS
   ============================================ */

/* Featured Courses Pattern - Educational Books */
.landing-page .featured-courses-news-wrapper .background {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7CE4' fill-opacity='0.08'%3E%3Crect x='10' y='15' width='40' height='30' rx='2'/%3E%3Cline x1='15' y1='25' x2='45' y2='25' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='30' x2='40' y2='30' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='35' x2='35' y2='35' stroke='%232E7CE4' stroke-width='1'/%3E%3Ccircle cx='50' cy='10' r='3'/%3E%3Cpath d='M47 7 L53 7 M50 4 L50 10' stroke='%232E7CE4' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.1;
  background-repeat: repeat;
  background-position: 0 0;
}

/* Teachers Pattern - Professional Network */
.landing-page .teachers-news-wrapper .background {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.12'%3E%3Ccircle cx='40' cy='25' r='8'/%3E%3Cpath d='M25 55 Q40 45 55 55' stroke='%23667eea' stroke-width='2'/%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='60' cy='20' r='4'/%3E%3Ccircle cx='20' cy='60' r='4'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3Cline x1='24' y1='20' x2='32' y2='25' stroke='%23667eea' stroke-width='1'/%3E%3Cline x1='56' y1='20' x2='48' y2='25' stroke='%23667eea' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.1;
  background-repeat: repeat;
  background-position: 0 0;
}

/* Events Pattern - Calendar Grid */
.landing-page .events-news-wrapper .background{
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.1'%3E%3Crect x='15' y='20' width='70' height='60' rx='3' stroke='%234CAF50' stroke-width='1'/%3E%3Crect x='25' y='10' width='6' height='20' rx='3'/%3E%3Crect x='69' y='10' width='6' height='20' rx='3'/%3E%3Cline x1='15' y1='35' x2='85' y2='35' stroke='%234CAF50' stroke-width='1'/%3E%3Ccircle cx='30' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3Ccircle cx='70' cy='50' r='2'/%3E%3Ccircle cx='30' cy='65' r='2'/%3E%3Ccircle cx='50' cy='65' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.1;
  background-repeat: repeat;
  background-position: 0 0;
}

/* Active Courses Pattern - Learning Progress */
.landing-page .courses-news-wrapper .background{
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C27B0' fill-opacity='0.09'%3E%3Crect x='20' y='30' width='80' height='50' rx='4' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='45' x2='70' y2='45' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='55' x2='60' y2='55' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='65' x2='50' y2='65' stroke='%239C27B0' stroke-width='1'/%3E%3Ccircle cx='60' cy='90' r='8' stroke='%239C27B0' stroke-width='1'/%3E%3Cpath d='M56 90 L59 93 L65 87' stroke='%239C27B0' stroke-width='2'/%3E%3Cpath d='M10 15 Q30 10 50 15 Q70 20 90 15' stroke='%239C27B0' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.1;
  background-repeat: repeat;
  background-position: 0 0;
}
/*.landing-page .wave-animation .background {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7CE4' fill-opacity='0.08'%3E%3Crect x='10' y='15' width='40' height='30' rx='2'/%3E%3Cline x1='15' y1='25' x2='45' y2='25' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='30' x2='40' y2='30' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='35' x2='35' y2='35' stroke='%232E7CE4' stroke-width='1'/%3E%3Ccircle cx='50' cy='10' r='3'/%3E%3Cpath d='M47 7 L53 7 M50 4 L50 10' stroke='%232E7CE4' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 1;
  background-repeat: repeat;
  background-position: 0 0;
}
*/
  /* Remove or reduce the overlay opacity */
.landing-page .featured-courses-news-wrapper .background:after,
.landing-page .events-news-wrapper .background:after,
.landing-page .courses-news-wrapper .background:after,
.landing-page .main-footer-section .background:after,
.landing-page .teachers-news-wrapper .background:after{
  opacity: 0.3; /* Reduced from 0.9 to let patterns show through */
}

/* Ensure patterns are visible */
.landing-page .featured-courses-news-wrapper .background,
.landing-page .events-news-wrapper .background,
.landing-page .courses-news-wrapper .background,
.landing-page .main-footer-section .background,
.landing-page .teachers-news-wrapper .background{
  z-index: 1;
}



/* ============================================
   NEW SECTIONS STYLES
   Added: 2025-01-25
   ============================================ */

/* ============================================
   ACADEMY DEFINITION SECTION
   ============================================ */
.landing-page .academy-definition-section {
  padding: 100px 0;
  background: var(--rafaa-white);
  position: relative;
  overflow: hidden;
}

  .landing-page .academy-definition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-repeat: repeat;
  }

.landing-page .academy-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rafaa-dark);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.landing-page .academy-meaning {
  text-align: center;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--rafaa-primary);
  backdrop-filter: blur(10px);
}

.landing-page .meaning-title {
  font-size: 1.5rem;
  color: var(--rafaa-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-page .meaning-text {
  font-size: 1.2rem;
  color: var(--rafaa-dark);
  font-weight: 500;
  margin: 0;
}

.landing-page .definition-content {
  padding: 40px 0;
}

.landing-page .definition-title {
  font-size: 2.2rem;
  color: var(--rafaa-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

  .landing-page .definition-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
  }

.landing-page .definition-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--rafaa-gray);
  margin-bottom: 2rem;
}

.landing-page .vision-box {
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  gap: 20px;
}

.landing-page .vision-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.landing-page .vision-content {
  flex: 1;
}

.landing-page .vision-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-page .vision-text {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}

.landing-page .definition-image {
  padding: 40px 0;
}

  .landing-page .definition-image .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

    .landing-page .definition-image .image-wrapper img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      transition: var(--transition-medium);
    }

    .landing-page .definition-image .image-wrapper:hover img {
      transform: scale(1.05);
    }

.landing-page .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 124, 228, 0.3) 0%, rgba(76, 175, 80, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.landing-page .definition-image .image-wrapper:hover .image-overlay {
  opacity: 1;
}

.landing-page .overlay-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--rafaa-primary);
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.landing-page .definition-image .image-wrapper:hover .overlay-icon {
  transform: scale(1);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.landing-page .mission-section {
  padding: 100px 0;
  background: var(--rafaa-white);
  position: relative;
}

.landing-page .mission-image {
  padding: 40px 0;
}

  .landing-page .mission-image .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

    .landing-page .mission-image .image-wrapper img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

.landing-page .mission-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.landing-page .stat-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.landing-page .stat-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rafaa-white);
  font-size: 1.2rem;
}

.landing-page .stat-info {
  flex: 1;
}

.landing-page .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rafaa-primary);
  display: block;
}

.landing-page .stat-label {
  font-size: 0.9rem;
  color: var(--rafaa-gray);
}

.landing-page .mission-content {
  padding: 40px 0;
}

.landing-page .mission-title {
  font-size: 2.5rem;
  color: var(--rafaa-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.landing-page .title-underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.landing-page .mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--rafaa-gray);
  margin-bottom: 2rem;
}

.landing-page .mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-page .highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  border-right: 4px solid var(--rafaa-primary);
  transition: var(--transition-fast);
}

  .landing-page .highlight-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
  }

  .landing-page .highlight-item i {
    color: var(--rafaa-primary);
    font-size: 1.2rem;
  }

  .landing-page .highlight-item span {
    font-weight: 500;
    color: var(--rafaa-dark);
  }

/* ============================================
   FOUNDATION SECTION
   ============================================ */
.landing-page .foundation-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rafaa-primary) 0%, var(--rafaa-secondary) 100%);
  color: var(--rafaa-white);
  position: relative;
  overflow: hidden;
}

.landing-page .foundation-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30 L35 25 L30 20 L25 25 Z'/%3E%3Ccircle cx='30' cy='45' r='8' stroke='%23ffffff' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .foundation-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.landing-page .timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

  .landing-page .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .landing-page .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }

.landing-page .timeline-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--rafaa-white);
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

  .landing-page .timeline-icon.active {
    background: rgba(255, 215, 0, 0.9);
    border-color: #FFD700;
    color: var(--rafaa-dark);
    transform: scale(1.1);
  }

.landing-page .timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
}

.landing-page .timeline-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #FFD700;
}

.landing-page .timeline-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  /*opacity: 0.9;*/
}

.landing-page .launch-date {
  background: rgba(255, 215, 0, 0.2);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 20px 0;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.landing-page .date-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  display: block;
  margin-bottom: 0.5rem;
}

.landing-page .date-text {
  font-size: 1rem;
  opacity: 0.8;
}

/* ============================================
   DIPLOMA SECTION
   ============================================ */
.landing-page .diploma-section {
  padding: 100px 0;
  background: var(--rafaa-light);
  position: relative;
}

.landing-page .diploma-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C27B0' fill-opacity='0.09'%3E%3Crect x='20' y='30' width='80' height='50' rx='4' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='45' x2='70' y2='45' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='55' x2='60' y2='55' stroke='%239C27B0' stroke-width='1'/%3E%3Cline x1='30' y1='65' x2='50' y2='65' stroke='%239C27B0' stroke-width='1'/%3E%3Ccircle cx='60' cy='90' r='8' stroke='%239C27B0' stroke-width='1'/%3E%3Cpath d='M56 90 L59 93 L65 87' stroke='%239C27B0' stroke-width='2'/%3E%3Cpath d='M10 15 Q30 10 50 15 Q70 20 90 15' stroke='%239C27B0' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .certification-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 auto 3rem;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

  .landing-page .certification-badge i {
    font-size: 1.5rem;
    color: #FFD700;
  }

.landing-page .diploma-card {
  background: var(--rafaa-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-fast);
  height: 100%;
  border: 1px solid var(--rafaa-border);
}

  .landing-page .diploma-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
  }

  .landing-page .diploma-card .card-header {
    background: var(--gradient-primary);
    color: var(--rafaa-white);
    padding: 30px 25px;
    text-align: center;
  }

  .landing-page .diploma-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
  }

  .landing-page .diploma-card .card-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
  }

  .landing-page .diploma-card .card-content {
    padding: 30px 25px;
  }

  .landing-page .diploma-card .card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rafaa-gray);
    margin-bottom: 2rem;
  }

.landing-page .diploma-duration {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-page .duration-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  border-right: 4px solid var(--rafaa-primary);
}

  .landing-page .duration-item i {
    color: var(--rafaa-primary);
    font-size: 1.1rem;
  }

  .landing-page .duration-item span {
    font-weight: 500;
    color: var(--rafaa-dark);
  }

.landing-page .program-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
}

  .landing-page .feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
  }

  .landing-page .feature-item i {
    color: var(--rafaa-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .landing-page .feature-item span {
    color: var(--rafaa-dark);
    line-height: 1.5;
  }

.landing-page .status-info {
  display: flex;
  gap: 30px;
  margin-bottom: 2rem;
  justify-content: center;
}

.landing-page .status-item {
  text-align: center;
  padding: 20px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  flex: 1;
}

.landing-page .status-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rafaa-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.landing-page .status-label {
  font-size: 0.9rem;
  color: var(--rafaa-gray);
  font-weight: 500;
}

.landing-page .status-item.current .status-number {
  color: var(--rafaa-secondary);
}

.landing-page .status-item.graduate .status-number {
  color: var(--rafaa-professional);
}

.landing-page .status-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rafaa-gray);
  margin: 0;
  text-align: center;
}

/* ============================================
   PARTNERSHIPS SECTION
   ============================================ */
.landing-page .partnerships-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--rafaa-white);
  position: relative;
  overflow: hidden;
}

.landing-page .partnerships-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='25' cy='25' r='5'/%3E%3Ccircle cx='75' cy='25' r='5'/%3E%3Ccircle cx='25' cy='75' r='5'/%3E%3Ccircle cx='75' cy='75' r='5'/%3E%3Cline x1='30' y1='25' x2='70' y2='25' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='25' y1='30' x2='25' y2='70' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='75' y1='30' x2='75' y2='70' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='30' y1='75' x2='70' y2='75' stroke='%23ffffff' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.landing-page .partnership-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

  .landing-page .partnership-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

.landing-page .partner-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
}

.landing-page .partnership-card:hover .partner-logo {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.landing-page .partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-page .partner-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--rafaa-white);
}

.landing-page .partner-description {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.landing-page .services-section {
  padding: 100px 0;
  background: var(--rafaa-white);
  position: relative;
}

.landing-page .services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7CE4' fill-opacity='0.08'%3E%3Crect x='10' y='15' width='40' height='30' rx='2'/%3E%3Cline x1='15' y1='25' x2='45' y2='25' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='30' x2='40' y2='30' stroke='%232E7CE4' stroke-width='1'/%3E%3Cline x1='15' y1='35' x2='35' y2='35' stroke='%232E7CE4' stroke-width='1'/%3E%3Ccircle cx='50' cy='10' r='3'/%3E%3Cpath d='M47 7 L53 7 M50 4 L50 10' stroke='%232E7CE4' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

.landing-page .service-category {
  background: var(--rafaa-light);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--rafaa-border);
  position: relative;
  overflow: hidden;
}

  .landing-page .service-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 0 var(--border-radius-lg) 0 0;
  }

.landing-page .category-title {
  font-size: 1.5rem;
  color: var(--rafaa-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.landing-page .course-duration-badge {
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
  text-align: center;
}

  .landing-page .course-duration-badge.short {
    background: var(--gradient-orange);
  }

.landing-page .services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-page .service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--rafaa-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid var(--rafaa-border);
}

  .landing-page .service-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
  }

.landing-page .service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rafaa-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.landing-page .service-content {
  flex: 1;
}

.landing-page .service-title {
  font-size: 1.2rem;
  color: var(--rafaa-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-page .service-description {
  color: var(--rafaa-gray);
  margin: 0;
  line-height: 1.5;
}

.landing-page .service-badge {
  background: var(--rafaa-secondary);
  color: var(--rafaa-white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

.landing-page .course-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--rafaa-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid var(--rafaa-border);
}

  .landing-page .course-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
  }

.landing-page .course-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.landing-page .course-name {
  font-weight: 500;
  color: var(--rafaa-dark);
  line-height: 1.4;
}

.landing-page .service-highlight {
  grid-column: 1 / -1;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

  /* ============================================
   NEW SECTIONS STYLES - CONTINUATION
   Added: 2025-01-25
   ============================================ */

  /* Complete the service-highlight::before selector */
  .landing-page .service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 5 L25 15 L35 15 L27 22 L30 32 L20 25 L10 32 L13 22 L5 15 L15 15 Z'/%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-repeat: repeat;
    opacity: 0.1;
  }

.landing-page .highlight-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #FFD700;
  margin: 0 auto 20px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.landing-page .highlight-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.landing-page .highlight-description {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* ============================================
   ACADEMY DEFINITION SECTION
   ============================================ */
.landing-page .academy-definition-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

  .landing-page .academy-definition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-repeat: repeat;
  }

.landing-page .academy-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rafaa-dark);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.landing-page .academy-meaning {
  text-align: center;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--rafaa-primary);
  backdrop-filter: blur(10px);
}

.landing-page .meaning-title {
  font-size: 1.5rem;
  color: var(--rafaa-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-page .meaning-text {
  font-size: 1.2rem;
  color: var(--rafaa-dark);
  font-weight: 500;
  margin: 0;
}

.landing-page .definition-content {
  padding: 40px 0;
}

.landing-page .definition-title {
  font-size: 2.2rem;
  color: var(--rafaa-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

  .landing-page .definition-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
  }

.landing-page .definition-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--rafaa-gray);
  margin-bottom: 2rem;
}

.landing-page .vision-box {
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  gap: 20px;
}

.landing-page .vision-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.landing-page .vision-content {
  flex: 1;
}

.landing-page .vision-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-page .vision-text {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}

.landing-page .definition-image {
  padding: 40px 0;
}

  .landing-page .definition-image .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

    .landing-page .definition-image .image-wrapper img {
      width: 100%;
      height: 400px;
      object-fit: fill;
      transition: var(--transition-medium);
    }

    .landing-page .definition-image .image-wrapper:hover img {
      transform: scale(1.05);
    }

.landing-page .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 124, 228, 0.3) 0%, rgba(76, 175, 80, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.landing-page .definition-image .image-wrapper:hover .image-overlay {
  opacity: 1;
}

.landing-page .overlay-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--rafaa-primary);
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.landing-page .definition-image .image-wrapper:hover .overlay-icon {
  transform: scale(1);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.landing-page .mission-section {
  padding: 100px 0;
  background: var(--rafaa-white);
  position: relative;
}

.landing-page .mission-image {
  padding: 40px 0;
}

  .landing-page .mission-image .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

    .landing-page .mission-image .image-wrapper img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

.landing-page .mission-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.landing-page .stat-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.landing-page .stat-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rafaa-white);
  font-size: 1.2rem;
}

.landing-page .stat-info {
  flex: 1;
}

.landing-page .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rafaa-primary);
  display: block;
}

.landing-page .stat-label {
  font-size: 0.9rem;
  color: var(--rafaa-gray);
}

.landing-page .mission-content {
  padding: 40px 0;
}

.landing-page .mission-title {
  font-size: 2.5rem;
  color: var(--rafaa-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.landing-page .title-underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.landing-page .mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--rafaa-gray);
  margin-bottom: 2rem;
}

.landing-page .mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-page .highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  border-right: 4px solid var(--rafaa-primary);
  transition: var(--transition-fast);
}

  .landing-page .highlight-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
  }

  .landing-page .highlight-item i {
    color: var(--rafaa-primary);
    font-size: 1.2rem;
  }

  .landing-page .highlight-item span {
    font-weight: 500;
    color: var(--rafaa-dark);
  }

/* ============================================
   FOUNDATION SECTION
   ============================================ */
.landing-page .foundation-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rafaa-primary) 0%, var(--rafaa-secondary) 100%);
  color: var(--rafaa-white);
  position: relative;
  overflow: hidden;
}

.landing-page .foundation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30 L35 25 L30 20 L25 25 Z'/%3E%3Ccircle cx='30' cy='45' r='8' stroke='%23ffffff' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .foundation-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}


.landing-page .timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

  .landing-page .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .landing-page .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }

.landing-page .timeline-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--rafaa-white);
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

  .landing-page .timeline-icon.active {
    background: rgba(255, 215, 0, 0.9);
    border-color: #FFD700;
    color: var(--rafaa-dark);
    transform: scale(1.1);
  }

.landing-page .timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
}

.landing-page .timeline-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #FFD700;
}

.landing-page .timeline-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--rafaa-white);
}

.landing-page .launch-date {
  background: rgba(255, 215, 0, 0.2);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 20px 0;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.landing-page .date-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  display: block;
  margin-bottom: 0.5rem;
}

.landing-page .date-text {
  font-size: 1rem;
  opacity: 0.8;
}

/* ============================================
   DIPLOMA SECTION
   ============================================ */
.landing-page .diploma-section {
  padding: 100px 0;
  background: var(--rafaa-light);
  position: relative;
}

.landing-page .certification-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 auto 3rem;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

  .landing-page .certification-badge i {
    font-size: 1.5rem;
    color: #FFD700;
  }

.landing-page .diploma-card {
  background: var(--rafaa-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-fast);
  height: 100%;
  border: 1px solid var(--rafaa-border);
}

  .landing-page .diploma-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
  }

  .landing-page .diploma-card .card-header {
    background: var(--gradient-primary);
    color: var(--rafaa-white);
    padding: 30px 25px;
    text-align: center;
  }

  .landing-page .diploma-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
  }

  .landing-page .diploma-card .card-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
  }

  .landing-page .diploma-card .card-content {
    padding: 30px 25px;
  }

  .landing-page .diploma-card .card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rafaa-gray);
    margin-bottom: 2rem;
  }

.landing-page .diploma-duration {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-page .duration-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  border-right: 4px solid var(--rafaa-primary);
}

  .landing-page .duration-item i {
    color: var(--rafaa-primary);
    font-size: 1.1rem;
  }

  .landing-page .duration-item span {
    font-weight: 500;
    color: var(--rafaa-dark);
  }

.landing-page .program-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
}

  .landing-page .feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
  }

  .landing-page .feature-item i {
    color: var(--rafaa-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .landing-page .feature-item span {
    color: var(--rafaa-dark);
    line-height: 1.5;
  }

.landing-page .status-info {
  display: flex;
  gap: 30px;
  margin-bottom: 2rem;
  justify-content: center;
}

.landing-page .status-item {
  text-align: center;
  padding: 20px;
  background: var(--rafaa-light);
  border-radius: var(--border-radius);
  flex: 1;
}

.landing-page .status-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rafaa-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.landing-page .status-label {
  font-size: 0.9rem;
  color: var(--rafaa-gray);
  font-weight: 500;
}

.landing-page .status-item.current .status-number {
  color: var(--rafaa-secondary);
}

.landing-page .status-item.graduate .status-number {
  color: var(--rafaa-professional);
}

.landing-page .status-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rafaa-gray);
  margin: 0;
  text-align: center;
}

/* ============================================
   PARTNERSHIPS SECTION
   ============================================ */
.landing-page .partnerships-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--rafaa-white);
  position: relative;
  overflow: hidden;
}

.landing-page .partnerships-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='25' cy='25' r='5'/%3E%3Ccircle cx='75' cy='25' r='5'/%3E%3Ccircle cx='25' cy='75' r='5'/%3E%3Ccircle cx='75' cy='75' r='5'/%3E%3Cline x1='30' y1='25' x2='70' y2='25' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='25' y1='30' x2='25' y2='70' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='75' y1='30' x2='75' y2='70' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='30' y1='75' x2='70' y2='75' stroke='%23ffffff' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.landing-page .partnership-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

  .landing-page .partnership-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

.landing-page .partner-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
}

.landing-page .partnership-card:hover .partner-logo {
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.6);
}

.landing-page .partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.landing-page .partner-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--rafaa-white);
}

.landing-page .partner-description {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.landing-page .services-section {
  padding: 100px 0;
  background: var(--rafaa-white);
  position: relative;
}

.landing-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

.landing-page .service-category {
  background: var(--rafaa-light);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--rafaa-border);
  position: relative;
  overflow: hidden;
}

  .landing-page .service-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 0 var(--border-radius-lg) 0 0;
  }

.landing-page .category-title {
  font-size: 1.5rem;
  color: var(--rafaa-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.landing-page .course-duration-badge {
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

  .landing-page .course-duration-badge.short {
    background: var(--gradient-orange);
  }

.landing-page .services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-page .service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--rafaa-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid var(--rafaa-border);
}

  .landing-page .service-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
  }

.landing-page .service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rafaa-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.landing-page .service-content {
  flex: 1;
}

.landing-page .service-title {
  font-size: 1.2rem;
  color: var(--rafaa-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-page .service-description {
  color: var(--rafaa-gray);
  margin: 0;
  line-height: 1.5;
}

.landing-page .service-badge {
  background: var(--rafaa-secondary);
  color: var(--rafaa-white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

.landing-page .course-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--rafaa-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid var(--rafaa-border);
}

  .landing-page .course-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
  }

.landing-page .course-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.landing-page .course-name {
  font-weight: 500;
  color: var(--rafaa-dark);
  line-height: 1.4;
}

.landing-page .service-highlight {
  grid-column: 1 / -1;
  background: var(--gradient-primary);
  color: var(--rafaa-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* ============================================
   FEATURED LECTURERS SECTION
   ============================================ */
.landing-page .lecturers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rafaa-primary) 0%, var(--rafaa-secondary) 100%);
  color: var(--rafaa-dark);
  position: relative;
  overflow: hidden;
}

.landing-page .lecturers-overlay, .landing-page  .mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7CE4' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='25' r='8'/%3E%3Cpath d='M25 55 Q40 45 55 55' stroke='%232E7CE4' stroke-width='2'/%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='60' cy='20' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-repeat: repeat;
  opacity: 0.1;
}

.landing-page .subtitle-description {
  font-size: 1.5rem;
  color: var(--rafaa-dark);
  margin-top: 1rem;
  font-style: italic oblique;
}

.landing-page .lecturers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-top: 3rem;
}

.landing-page .lecturer-category {
  background: var(--rafaa-white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rafaa-border);
  position: relative;
  overflow: hidden;
}

  .landing-page .lecturer-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 0 var(--border-radius-lg) 0 0;
  }

  .landing-page .lecturer-category .category-title {
    font-size: 1.6rem;
    color: var(--rafaa-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--rafaa-light);
    padding-bottom: 15px;
  }

.landing-page .lecturers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.landing-page .lecturer-item {
  background: var(--rafaa-light);
  padding: 25px 20px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition-fast);
  border: 1px solid var(--rafaa-border);
  position: relative;
}

  .landing-page .lecturer-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--rafaa-white);
  }

.landing-page .lecturer-avatar {
  position: relative;
  margin-bottom: 15px;
}

.landing-page .avatar-placeholder {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--rafaa-white);
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.landing-page .lecturer-rank {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rafaa-secondary);
  color: var(--rafaa-white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.landing-page .lecturer-name {
  font-size: 1.1rem;
  color: var(--rafaa-dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ============================================ */

/* Tablet Styles */
@media screen and (max-width: 992px) {
  .landing-page .academy-main-title {
    font-size: 2.5rem;
  }

  .landing-page .definition-title,
  .landing-page .mission-title {
    font-size: 2rem;
  }

  .landing-page .timeline-item {
    flex-direction: column !important;
    text-align: center;
    gap: 20px;
  }

  .landing-page .services-grid,
  .landing-page .lecturers-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .partnerships-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .landing-page .lecturers-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .landing-page .academy-definition-section,
  .landing-page .mission-section,
  .landing-page .foundation-section,
  .landing-page .diploma-section,
  .landing-page .partnerships-section,
  .landing-page .services-section,
  .landing-page .lecturers-section {
    padding: 60px 0;
  }

  .landing-page .academy-main-title {
    font-size: 2rem;
  }

  .landing-page .definition-title,
  .landing-page .mission-title {
    font-size: 1.8rem;
  }

  .landing-page .vision-box {
    flex-direction: column;
    text-align: center;
  }

  .landing-page .mission-stats {
    flex-direction: column;
    gap: 10px;
  }

  .landing-page .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .landing-page .timeline-content {
    padding: 20px;
  }

  .landing-page .date-number {
    font-size: 2rem;
  }

  .landing-page .status-info {
    flex-direction: column;
    gap: 15px;
  }

  .landing-page .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landing-page .service-item {
    flex-direction: column;
    text-align: center;
  }

  .landing-page .lecturers-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .landing-page .lecturer-item {
    padding: 20px 15px;
  }

  .landing-page .avatar-placeholder {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .landing-page .lecturer-name {
    font-size: 1rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 576px) {
  .landing-page .academy-main-title {
    font-size: 1.8rem;
  }

  .landing-page .meaning-title {
    font-size: 1.2rem;
  }

  .landing-page .meaning-text {
    font-size: 1rem;
  }

  .landing-page .definition-text,
  .landing-page .mission-text {
    font-size: 1rem;
  }

  .landing-page .vision-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .landing-page .timeline-title {
    font-size: 1.5rem;
  }

  .landing-page .certification-badge {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .landing-page .diploma-card .card-content {
    padding: 20px 15px;
  }

  .landing-page .partnership-card {
    padding: 20px;
  }

  .landing-page .partner-logo {
    width: 80px;
    height: 80px;
  }

  .landing-page .service-category {
    padding: 30px 20px;
  }

  .landing-page .service-highlight {
    padding: 30px 20px;
  }

  .landing-page .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .landing-page .highlight-title {
    font-size: 1.5rem;
  }
}

/* RTL Support for New Sections */
[dir="rtl"] .landing-page .definition-title::after {
  right: 0;
  left: auto;
}

[dir="rtl"] .landing-page .title-underline {
  margin-right: 0;
}

[dir="rtl"] .landing-page .highlight-item {
  border-right: none;
  border-left: 4px solid var(--rafaa-primary);
}

  [dir="rtl"] .landing-page .highlight-item:hover {
    transform: translateX(5px);
  }

[dir="rtl"] .landing-page .duration-item {
  border-right: none;
  border-left: 4px solid var(--rafaa-primary);
}

[dir="rtl"] .landing-page .service-category::before {
  right: auto;
  left: 0;
  border-radius: var(--border-radius-lg) 0 0 0;
}

[dir="rtl"] .landing-page .lecturer-category::before {
  right: auto;
  left: 0;
  border-radius: var(--border-radius-lg) 0 0 0;
}

[dir="rtl"] .landing-page .service-item:hover,
[dir="rtl"] .landing-page .course-item:hover {
  transform: translateX(5px);
}

[dir="rtl"] .landing-page .feature-item:hover {
  transform: translateX(5px);
}
    /* ============================================
   CLEANED UP SLIDER STYLES - NO CONFLICTS
   Updated: 2025-01-19 by oussamaLaib
   ============================================ */
