* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: #333;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
    }

    /* Header Styles */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: transparent;
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      border-bottom: 1px solid transparent;
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #f0f0f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: all 0.4s ease;
    }

    header.scrolled .logo {
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .logo a {
      text-decoration: none;
      color: inherit;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-links li a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    header.scrolled .nav-links li a {
      color: #333;
    }

    .nav-links li a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    header.scrolled .nav-links li a:hover {
      color: #667eea;
      background: rgba(102, 126, 234, 0.1);
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    header.scrolled .nav-links li a::after {
      background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .nav-links li a:hover::after {
      width: 80%;
    }

    .nav-cta {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    header.scrolled .nav-cta {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
      border: 1px solid transparent;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      z-index: -1;
    }

    header.scrolled .nav-cta::before {
      background: linear-gradient(135deg, #764ba2, #667eea);
    }

    .nav-cta:hover::before {
      left: 0;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .hamburger:hover {
      background: rgba(102, 126, 234, 0.1);
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: rgba(247, 222, 222, 0.9);
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    header.scrolled .hamburger span {
      background: #333;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(247, 247, 247, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 999;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu ul {
      list-style: none;
      text-align: center;
    }

    .mobile-menu ul li {
      margin: 1.5rem 0;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.3s ease;
    }

    .mobile-menu.active ul li {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu ul li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu ul li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu ul li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu ul li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu ul li:nth-child(5) { transition-delay: 0.5s; }
    .mobile-menu ul li:nth-child(6) { transition-delay: 0.6s; }

    .mobile-menu ul li a {
      text-decoration: none;
      color: #333;
      font-size: 1.5rem;
      font-weight: 600;
      padding: 1rem 2rem;
      border-radius: 12px;
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .mobile-menu ul li a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #667eea, #764ba2);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .mobile-menu ul li a:hover::before {
      left: 0;
    }

    .mobile-menu ul li a:hover {
      color: white;
      transform: scale(1.05);
    }

    .mobile-cta {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white !important;
      margin-top: 1rem;
      border-radius: 25px;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    /* Main Content */
    main {
      margin-top: 80px;
      padding: 4rem 2rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero {
      text-align: center;
      color: white;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: #667eea;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .navbar {
        padding: 1rem;
      }

      .logo {
        font-size: 1.5rem;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1rem;
      }

      main {
        padding: 2rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .mobile-menu ul li a {
        font-size: 1.2rem;
      }

      .hero h1 {
        font-size: 2rem;
      }
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Loading animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero {
      animation: fadeInUp 1s ease;
    }

 
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      align-items: center;
      gap: 6rem;
      padding: 0 2rem 0 4rem;
      max-width: 1600px;
      margin: 0 auto;
      color: white;
      overflow: hidden;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 15% 25%, rgba(255,255,255,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255,255,255,0.06) 0%, transparent 45%),
        linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
      animation: slideInLeft 1s ease-out;
      max-width: 650px;
    }

    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: slideInRight 1s ease-out 0.2s both;
    }

    .hero-lottie {
      width: 100%;
      max-width: 550px;
      height: auto;
      filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    }

    .hero-content .subtitle {
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-family: 'Inter', sans-serif;
    }

    .hero-content h1 {
      font-size: 4.75rem;
      font-weight: 800;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.05;
      letter-spacing: -0.025em;
      font-family: 'Inter', sans-serif;
    }

    .hero-content p {
      font-size: 1.375rem;
      margin-bottom: 3.5rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      line-height: 1.6;
      font-family: 'Inter', sans-serif;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-bottom: 3rem;
      align-items: center;
    }

    .stat-item {
      text-align: left;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #ffffff;
      display: block;
      line-height: 1;
      font-family: 'Inter', sans-serif;
    }

    .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 0.25rem;
      font-family: 'Inter', sans-serif;
    }

    .hero .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255, 255, 255, 0.95);
      color: #1e293b;
      padding: 1.125rem 2.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.125rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
      letter-spacing: -0.01em;
    }

    .hero .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #667eea, #764ba2);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .hero .btn:hover::before {
      left: 0;
    }

    .hero .btn:hover {
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .hero .btn::after {
      content: '→';
      font-size: 1.25rem;
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }

    .hero .btn:hover::after {
      transform: translateX(4px);
    }

    /* Features Section */
    .features {
      padding: 8rem 2rem;
      background: 
        linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f1f5ff 100%);
      position: relative;
      overflow: hidden;
    }

    .features::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 0;
      right: 0;
      height: 200px;
      background: linear-gradient(135deg, #764ba2 0%, transparent 100%);
      transform: skewY(-2deg);
      z-index: 0;
    }

    .features::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 10% 20%, rgba(102,126,234,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118,75,162,0.05) 0%, transparent 50%);
      z-index: 0;
    }

    .features-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .features h2 {
      text-align: center;
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: #1a202c;
      position: relative;
      letter-spacing: -0.02em;
    }

    .features .section-subtitle {
      text-align: center;
      font-size: 1.3rem;
      color: #64748b;
      margin-bottom: 4rem;
      font-weight: 400;
      line-height: 1.6;
    }

    .features h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border-radius: 2px;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3rem;
      margin-top: 5rem;
    }

    .feature-item {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 3.5rem 3rem;
      border-radius: 24px;
      text-align: left;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .feature-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }

    .feature-item:hover::before {
      transform: scaleX(1);
    }

    .feature-item:hover {
      transform: translateY(-15px);
      box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(102, 126, 234, 0.15);
      background: rgba(255, 255, 255, 0.95);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: block;
    }

    .feature-item h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #1a202c;
      line-height: 1.3;
    }

    .feature-item p {
      color: #4a5568;
      line-height: 1.8;
      font-size: 1.1rem;
      font-weight: 400;
    }

    /* CTA Section */
    .cta {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 6rem 2rem;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: rotate 30s linear infinite;
      z-index: 0;
    }

    .cta h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .cta p {
      font-size: 1.3rem;
      margin-bottom: 3rem;
      opacity: 0.9;
      position: relative;
      z-index: 1;
    }

    .btn-primary {
      display: inline-block;
      background: white;
      color: #667eea;
      padding: 1.2rem 3.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      transition: all 0.4s ease;
      z-index: -1;
    }

    .btn-primary:hover::before {
      left: 0;
    }

    .btn-primary:hover {
      color: white;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    /* Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 6rem 3rem 4rem;
        gap: 4rem;
      }

      .hero-visual {
        order: -1;
        justify-content: flex-start;
      }

      .hero-lottie {
        max-width: 400px;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-stats {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 6rem 2rem 4rem;
        gap: 3rem;
      }

      .hero-content h1 {
        font-size: 3.5rem;
      }

      .hero-content p {
        font-size: 1.25rem;
      }

      .hero-lottie {
        max-width: 350px;
      }

      .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
      }

      .stat-number {
        font-size: 2rem;
      }

      .features h2 {
        font-size: 2.5rem;
      }

      .cta h2 {
        font-size: 2.5rem;
      }

      .feature-list {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .feature-item {
        padding: 2.5rem 2rem;
      }

      .features {
        padding: 6rem 2rem;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 5rem 1.5rem 3rem;
        text-align: center;
      }

      .hero-content h1 {
        font-size: 2.75rem;
      }

      .hero-content p {
        font-size: 1.125rem;
      }

      .hero .btn, .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
      }

      .hero-lottie {
        max-width: 300px;
      }

      .hero-stats {
        justify-content: center;
        gap: 1.5rem;
      }

      .stat-number {
        font-size: 1.75rem;
      }

      .features h2, .cta h2 {
        font-size: 2rem;
      }

      .feature-item h3 {
        font-size: 1.5rem;
      }

      .feature-item {
        padding: 2rem 1.5rem;
      }
    }

/* Curriculum Section Styles */
.curriculum {
  padding: 8rem 2rem;
  background: 
    linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f1f5ff 100%);
  position: relative;
  overflow: hidden;
}

.curriculum::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, transparent 100%);
  transform: skewY(-2deg);
  z-index: 0;
}

.curriculum::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102,126,234,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(118,75,162,0.05) 0%, transparent 50%);
  z-index: 0;
}

.curriculum-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.curriculum h2 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a202c;
  position: relative;
  letter-spacing: -0.02em;
}

.curriculum .section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 4rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* Main Curriculum Grid */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.curriculum-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.curriculum-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.curriculum-item:hover::before {
  transform: scaleX(1);
}

.curriculum-item:hover {
  transform: translateY(-15px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 15px 35px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.curriculum-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.curriculum-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a202c;
  line-height: 1.3;
}

.curriculum-list {
  list-style: none;
  padding: 0;
}

.curriculum-list li {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.curriculum-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Capstone Section */
.capstone-section {
  margin-top: 6rem;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.06);
}

.capstone-section h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a202c;
  position: relative;
}

.capstone-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

.capstone-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
  font-weight: 500;
}

.capstone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.capstone-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.06),
    0 5px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.capstone-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.capstone-item:hover::before {
  transform: scaleX(1);
}

.capstone-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.capstone-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.capstone-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
  border-radius: 12px;
  flex-shrink: 0;
}

.capstone-item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
  line-height: 1.3;
}

.capstone-item p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .curriculum {
    padding: 6rem 2rem;
  }

  .curriculum h2 {
    font-size: 2.5rem;
  }

  .curriculum .section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .curriculum-item {
    padding: 2.5rem 2rem;
  }

  .curriculum-item h3 {
    font-size: 1.5rem;
  }

  .curriculum-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

  .capstone-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
  }

  .capstone-section h3 {
    font-size: 2rem;
  }

  .capstone-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .capstone-item {
    padding: 2rem 1.5rem;
  }

  .capstone-item h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .curriculum {
    padding: 5rem 1.5rem;
  }

  .curriculum h2 {
    font-size: 2rem;
  }

  .curriculum .section-subtitle {
    font-size: 1rem;
  }

  .curriculum-item {
    padding: 2rem 1.5rem;
  }

  .curriculum-item h3 {
    font-size: 1.3rem;
  }

  .curriculum-list li {
    font-size: 0.95rem;
  }

  .capstone-section {
    padding: 2.5rem 1.5rem;
  }

  .capstone-section h3 {
    font-size: 1.75rem;
  }

  .capstone-intro {
    font-size: 1rem;
  }

  .capstone-item {
    padding: 1.5rem;
  }

  .capstone-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .capstone-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .capstone-item h4 {
    font-size: 1.125rem;
  }

  .capstone-item p {
    font-size: 0.95rem;
  }
}
    /* Footer Styles */
footer {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  color: #333;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

footer p {
  margin: 0;
  font-weight: 500;
  color: #4a5568;
  transition: color 0.3s ease;
}

footer p:hover {
  color: #667eea;
}

/* Footer Links */
footer .footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

footer .footer-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

footer .footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

footer .footer-links a:hover {
  color: #667eea;
}

footer .footer-links a:hover::after {
  width: 60%;
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer {
    font-size: 0.85rem;
    padding: 1.5rem 1rem;
  }

  footer .footer-links {
    gap: 1rem;
  }
}

/* Video Section Styles */
.video-section {
  padding: 6rem 2rem;
  background: 
    linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(102,126,234,0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(118,75,162,0.03) 0%, transparent 50%);
  z-index: 0;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.video-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a202c;
  position: relative;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.video-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

.video-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 4rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-player {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.video-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  z-index: 1;
}

.video-player:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(102, 126, 234, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

/* Video Player Responsive */
.video-player vturb-smartplayer {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-player:hover vturb-smartplayer {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Video Section Responsive */
@media (max-width: 768px) {
  .video-section {
    padding: 5rem 2rem;
  }

  .video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .video-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .video-player {
    padding: 2rem;
    border-radius: 20px;
  }

  .video-player vturb-smartplayer {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 4rem 1.5rem;
  }

  .video-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .video-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .video-player {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .video-player vturb-smartplayer {
    border-radius: 8px;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .video-section {
    padding: 5.5rem 2rem;
  }

  .video-section h2 {
    font-size: 2.75rem;
  }

  .video-subtitle {
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
  }

  .video-player {
    padding: 2.25rem;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .video-container {
    max-width: 1100px;
  }

  .video-section h2 {
    font-size: 3.5rem;
  }

  .video-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4.5rem;
  }

  .video-player {
    padding: 3rem;
  }
}


.hero-content h1 .text-canfuture,
h1 .text-canfuture {
  color: white !important;
  background: linear-gradient(135deg, #da6060, #a34343) !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: white !important;
  background-clip: unset !important;
  padding: 0.2em 0.6em;
  border-radius: 12px;
  font-weight: 900;
  display: inline-block;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 
    0 4px 15px rgba(220, 38, 38, 0.4),
    0 2px 8px rgba(220, 38, 38, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 0.3em;
  white-space: nowrap;
}

.text-canfuture::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff0000, #ff0000);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;

}

.hero-content h1 .text-canfuture:hover,
h1 .text-canfuture:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(220, 38, 38, 0.5),
    0 4px 15px rgba(220, 38, 38, 0.3);
}

.text-canfuture:hover::before {
  opacity: 1;
}

/* Responsive CanFuture Span */
@media (max-width: 768px) {
  .text-canfuture {
    padding: 0.15em 0.5em;
    border-radius: 10px;
    transform: rotate(-1deg);
    margin: 0 0.2em;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .text-canfuture {
    padding: 0.1em 0.4em;
    border-radius: 8px;
    transform: rotate(-1deg);
    margin: 0 0.1em;
    font-size: 0.9em;
  }
}


