:root {
    --primary: #4361ee;
    --primary-dark: #3f37c9;
    --secondary: #4895ef;
    --light: #f8f9fa;
    --dark: #2b2d42;
    --accent: #7209b7;
    --success: #4cc9f0;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
  }

  section {
    width: 100%;
  }

  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }

  .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.5;
  }

  .hero-content {
    z-index: 2;
  }

  .hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

  /* Feature Cards */
  .feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.2);
  }

  .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  /* Steps */
  .step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  /* Testimonials */
  .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(67, 97, 238, 0.1);
    font-family: serif;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary);
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, var(--accent), #b5179e);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .cta-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
  }

  .btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-outline-white:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
  }

  .animate-delay-1 {
    animation-delay: 0.2s;
  }

  .animate-delay-2 {
    animation-delay: 0.4s;
  }

  .animate-delay-3 {
    animation-delay: 0.6s;
  }

  .animate-delay-4 {
    animation-delay: 0.8s;
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }

    .hero-section {
      padding: 4rem 0 6rem;
      clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .cta-section {
      clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    }
  }

  :root {
    --primary: #4361ee;
    --primary-dark: #3f37c9;
    --secondary: #4895ef;
    --light: #f8f9fa;
    --dark: #2b2d42;
    --accent: #7209b7;
    --success: #4cc9f0;
    --tech: #4a90e2;
    --business: #7ed321;
    --design: #bd10e0;
  }
  
  /* New Elements */
  .lang-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
  }
  
  .process-section {
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .process-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(var(--primary), 0.1);
  }
  
  .process-card:hover {
    transform: translateY(-10px);
  }
  
  .process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(var(--primary), 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
  }
  
  .process-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 1rem;
  }
  
  .resume-preview {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .resume-mockup .page {
    background: white;
    height: 500px;
    border-radius: 8px;
    position: relative;
    transform: rotate(3deg);
  }
  
  .resume-mockup .shadow {
    position: absolute;
    width: 90%;
    height: 96%;
    background: rgba(0,0,0,0.05);
    filter: blur(10px);
    bottom: -15px;
    left: 5%;
  }
  
  .mentor-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .mentor-card:hover {
    transform: translateY(-5px);
  }
  
  .mentor-header {
    padding: 2rem;
    color: white;
    text-align: center;
  }
  
  .mentor-header.tech { background: var(--tech); }
  .mentor-header.business { background: var(--business); }
  .mentor-header.design { background: var(--design); }
  
  .mentor-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .mentor-content {
    background: white;
    padding: 2rem;
    min-height: 180px;
  }
  
  .resume-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  }
  
  /* Enhanced Existing Styles */
  .feature-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
  }
  
  .feature-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover:after {
    transform: scaleX(1);
  }
  
  .cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding: 7rem 0 !important;
  }
  
  @media (max-width: 768px) {
    .resume-section .row {
      flex-direction: column-reverse;
    }
    
    .lang-badge {
      position: static;
      margin-bottom: 1rem;
    }
  }