/* ============================================
   CSS Variables & Base Styles
   ============================================ */

   :root {
    --button-outline: rgba(0,0,0, .10);
    --badge-outline: rgba(0,0,0, .05);
    --opaque-button-border-intensity: -8;
    --elevate-1: rgba(0,0,0, .03);
    --elevate-2: rgba(0,0,0, .08);
    --background: 222 84% 5%;
    --foreground: 210 20% 98%;
    --border: 222 47% 11%;
    --card: 222 47% 11%;
    --card-foreground: 210 20% 98%;
    --card-border: 222 47% 15%;
    --primary: 189 94% 43%;
    --primary-foreground: 189 20% 98%;
    --secondary: 347 77% 50%;
    --secondary-foreground: 142 20% 98%;
    --muted: 222 47% 15%;
    --muted-foreground: 210 20% 70%;
    --accent: 38 92% 50%;
    --accent-foreground: 38 20% 98%;
    --destructive: 0 84% 42%;
    --destructive-foreground: 0 20% 98%;
    --input: 222 47% 20%;
    --ring: 189 94% 43%;
    --font-sans: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    --font-serif: Georgia, serif;
    --font-mono: 'Fira Code', 'Courier New', Menlo, monospace;
    --radius: .5rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-display: swap;
  }
  
  /* ============================================
     Animations
     ============================================ */
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes gradientShift {
    0%, 100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  
  @keyframes marqueeScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes codeScroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  
  @keyframes pulse-glow {
    0%, 100% {
      box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    }
    50% {
      box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
    }
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  .animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  .animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
  }
  
  .animate-gradientShift {
    animation: gradientShift 20s ease infinite;
    background-size: 200% 200%;
  }
  
  
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  
  .animate-code-scroll {
    animation: codeScroll 20s linear infinite;
  }
  
  .animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  /* ============================================
     Utility Classes
     ============================================ */
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
  }
  
  .section-description {
    
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .section-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
  }
  
  .divider-line {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(to left, hsl(var(--primary)), hsl(var(--secondary)));
    border-radius: 9999px;
  }
  
  .divider-line.gradient {
    background: linear-gradient(to left, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
  }
  
  .divider-line-sub {
    width: 8rem;
    height: 0.125rem;
    background: linear-gradient(to left, transparent, hsl(var(--primary) / 0.5), transparent);
    border-radius: 9999px;
  }
  
  .card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--card-border));
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  }
  
  /* ============================================
     Hero Section
     ============================================ */
  
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 1.5rem;
  }

  /* Hero Top Bar */
  .hero-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(1px);
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
  }

  .hero-top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .hero-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--card) / 0.5);
    border: 1px solid hsl(var(--border) / 0.3);
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }

  .social-link:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.2);
  }

  .social-link svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .lang-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--card) / 0.5);
    border: 1px solid hsl(var(--border) / 0.3);
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
  }

  .lang-toggle-btn:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.2);
  }

  .hero-cv-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .hero-cv-button:hover {
    background: hsl(var(--primary) / 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px hsl(var(--primary) / 0.4);
  }

  .hero-cv-button svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  /* Floating Buttons Container (Mobile Only) */
  .hero-floating-buttons {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  /* Floating CV Button (Mobile Only) */
  .hero-cv-button-floating {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 8px 24px hsl(var(--primary) / 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
  }

  .hero-cv-button-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px hsl(var(--primary) / 0.5);
  }

  .hero-cv-button-floating svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Floating Language Toggle Button (Mobile Only) */
  .lang-toggle-btn-floating {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: hsl(var(--card) / 0.9);
    border: 1px solid hsl(var(--border) / 0.5);
    color: hsl(var(--muted-foreground));
    box-shadow: 0 8px 24px hsl(var(--primary) / 0.2);
    backdrop-filter: blur(8px);
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
  }

  .lang-toggle-btn-floating:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary));
    transform: scale(1.1);
    box-shadow: 0 12px 32px hsl(var(--primary) / 0.3);
  }

  @media (max-width: 768px) {
    .hero-top-bar {
      display: none;
    }

    .hero-floating-buttons {
      display: flex !important;
    }

    .lang-toggle-btn:not(.lang-toggle-btn-floating) {
      display: none !important;
    }

    .lang-toggle-btn-floating {
      display: flex !important;
    }
  }

  @media (min-width: 769px) {
    .hero-floating-buttons {
      display: none !important;
    }

    .lang-toggle-btn:not(.lang-toggle-btn-floating) {
      display: flex;
    }

    .lang-toggle-btn-floating {
      display: none !important;
    }
  }

  .code-background {
    direction: ltr;
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  }
  
  .code-background > div {
    animation: codeScroll 20s linear infinite;
  }
  
  .code-line {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: hsl(var(--primary) / 0.9);
    padding: 0.5rem 0;
    white-space: nowrap;
    user-select: none;
  }
  
  .hero-bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
  }
  
  .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.2), transparent, hsl(var(--secondary) / 0.2));
    animation: gradientShift 20s ease infinite;
    background-size: 200% 200%;
  }
  
  .glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .glow-circle-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.2);
    top: 25%;
    right: 25%;
  }
  
  .glow-circle-2 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.2);
    bottom: 25%;
    left: 25%;
    animation-delay: 1.5s;
  }
  
  .glow-circle-3 {
    width: 16rem;
    height: 16rem;
    background: hsl(var(--accent) / 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(to right, hsl(var(--border)) 1px, transparent 1px),
      linear-gradient(to bottom, hsl(var(--border)) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .hero-icon-wrapper{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin:auto;
  }
  
  .hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.1);
    border: 2px solid hsl(var(--primary) / 0.3);
    margin: 0 auto 1.5rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
  }
  
  .hero-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.05);
    filter: blur(40px);
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .code-icon {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
    position: relative;
    z-index: 10;
  }
  
  .hero-title-wrapper {
    position: relative;
  }
  
  .hero-title {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    position: relative;
    z-index: 10;
  }
  
  .hero-title-glow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: hsl(var(--primary));
    opacity: 0.3;
    filter: blur(40px);
  }
  
  .hero-badges-wrapper {
    position: absolute;
    width: 120%;
    top: 35%;
    right: -9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.9s forwards;
  }
  
  .hero-badge-item {
    position: relative;
    opacity: 0;
  }
  
  .hero-badge-item .hero-icon {
    width: 140px;
    height: 100px;
    margin: 0;
  }
  
  .hero-badge-item .badge-text {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--primary));
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-badge-item .badge-text .badge-content{
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: gray;
    position: relative;
    z-index: 10;
    text-align: center;
  }
  
  .hero-badge-left {
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
  }
  
  .hero-badge-right {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
  }
  
  @media (max-width: 768px) {
    .hero-badges-wrapper {
      flex-direction: column;
      gap: 1rem;
      padding: 0;
      display: none;
    }
    .code-line{
      color:hsl(var(--primary) / 0.5) ;
    }
    .hero-badge-item .hero-icon {
      min-width: 10rem;
    }
  }
  
  .hero-subtitle-wrapper {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-subtitle {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: bolder;
    color: hsl(var(--primary));
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .typing-cursor {
    display: inline-block;
    width: 2px;
    height: 2rem;
    background: hsl(var(--primary));
    margin-right: 0.5rem;
    animation: blink 1s infinite;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
  }
  
  .btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
  }
  
  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.5), 0 10px 10px -5px hsl(var(--primary) / 0.3);
  }
  
  .btn-outline {
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
  }
  
  .btn-outline:hover {
    background-color: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.2);
  }
  
  .btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
  }
  
  .hero-tech-keywords {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
  }
  
  .tech-keyword {
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    background: hsl(var(--card) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    cursor: default;
  }
  
  .tech-keyword:hover {
    color: hsl(var(--primary));
    border-color: hsl(var(--primary) / 0.5);
    transform: scale(1.1);
  }
  
  .scroll-indicator {
    margin:20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.4s forwards;
    transition: color 0.3s ease;
  }
  
  .scroll-indicator:hover {
    color: hsl(var(--primary));
  }
  
  .scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-mono);
  }
  
  .scroll-arrow {
    width: 2rem;
    height: 3rem;
    border: 2px solid currentColor;
    border-radius: 9999px;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0.5rem;
  }
  
  .scroll-arrow svg {
    width: 1rem;
    height: 1rem;
    animation: float 2s ease-in-out infinite;
  }
  
  .hero-fade-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, hsl(var(--background)), transparent);
    pointer-events: none;
    z-index: 20;
  }
  
  /* ============================================
     About Section
     ============================================ */
  
  .about-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .about-section .bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  }
  
  .about-glow-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.3);
    top: 0;
    right: 0;
  }
  
  .about-glow-2 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.3);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  @media (min-width: 768px) {
    .about-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .about-bio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .bio-item {
    position: relative;
  }
  
  .bio-accent-line {
    position: absolute;
    right: -1rem;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
    border-radius: 9999px;
  }
  
  .bio-text {
    font-size: 1.125rem;
    color: hsl(var(--foreground));
    line-height: 1.75;
    padding-right: 2rem;
  }
  
  .bio-text-secondary {
    
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
  }
  
  .highlight-card {
    background: hsl(var(--primary) / 0.05);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  }
  
  .highlight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .highlight-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
  }
  
  .highlight-title {
    font-weight: 700;
    color: hsl(var(--foreground));
  }
  
  .highlight-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    
  }
  
  .about-key-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .key-point-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--card-border) / 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.5s ease;
  }
  
  .key-point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
  }
  
  .key-point-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    border: 2px solid hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    transition: all 0.5s ease;
  }
  
  .key-point-card:hover .key-point-icon {
    transform: scale(1.1);
    border-color: hsl(var(--primary) / 0.4);
  }
  
  .key-point-icon.secondary {
    background: hsl(var(--secondary) / 0.1);
    border-color: hsl(var(--secondary) / 0.2);
    color: hsl(var(--secondary));
  }
  
  .key-point-icon.accent {
    background: hsl(var(--accent) / 0.1);
    border-color: hsl(var(--accent) / 0.2);
    color: hsl(var(--accent));
  }
  
  .key-point-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .key-point-content {
    flex: 1;
  }
  
  .key-point-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .key-point-card:hover .key-point-title {
    color: hsl(var(--primary));
  }
  
  .key-point-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .stat-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--card-border) / 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.2);
  }
  
  .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    border: 2px solid hsl(var(--primary) / 0.2);
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
  }
  
  .stat-card:hover .stat-icon {
    transform: scale(1.1);
    border-color: hsl(var(--primary) / 0.4);
  }
  
  .stat-icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--primary));
    font-family: var(--font-mono);
    margin-bottom: 0.75rem;
  }
  
  .stat-value-large {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
  }
  
  .stat-card .stat-value-large {
    color: hsl(var(--primary));
  }
  
  .stat-card.secondary .stat-value-large {
    color: hsl(var(--secondary));
  }
  
  .stat-card.accent .stat-value-large {
    color: hsl(var(--accent));
  }
  
  .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
  }
  
  /* ============================================
     Skills Section
     ============================================ */
  
  .skills-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .skills-section .bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  }
  
  .skills-glow-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.3);
    bottom: 0;
    left: 0;
  }
  
  .skills-glow-2 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.2);
    top: 50%;
    right: 25%;
    animation-delay: 1s;
  }
  
  .skills-glow-3 {
    width: 16rem;
    height: 16rem;
    background: hsl(var(--accent) / 0.2);
    top: 0;
    left: 33%;
    animation-delay: 2s;
  }
  
  .badge-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .badge-line {
    width: 3rem;
    height: 0.125rem;
    background: linear-gradient(to left, transparent, hsl(var(--primary)));
    border-radius: 9999px;
  }
  
  .section-badge {
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.3);
    background: hsl(var(--primary) / 0.05);
    border-radius: 9999px;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
  }
  
  .skill-category-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--card-border) / 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .skill-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.2);
  }
  
  .skill-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .skill-category-header > div:first-child {
    flex-shrink: 0;
  }
  
  .skill-category-header > div:last-child {
    flex: 1;
  }
  
  .skill-category-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    border: 2px solid;
  }
  
  .skill-category-card:hover .skill-category-icon {
    transform: scale(1.1) rotate(6deg);
  }
  
  .skill-category-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .skill-category-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    transition: color 0.3s ease;
  }
  
  .skill-category-card:hover .skill-category-title {
    color: hsl(var(--primary));
  }
  
  .skill-category-divider {
    width: 4rem;
    height: 0.25rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
    transition: width 0.5s ease;
  }
  
  .skill-category-card:hover .skill-category-divider {
    width: 6rem;
  }
  
  .skill-category-card:hover .skill-category-divider {
    width: 6rem;
  }
  
  .skill-bar-wrapper {
    margin-bottom: 1.25rem;
  }
  
  .skill-bar-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .skill-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: color 0.3s ease;
  }
  
  .skill-percentage {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.3s ease;
  }
  
  .skill-bar-container {
    height: 0.5rem;
    background: hsl(var(--muted));
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
  }
  
  .skill-bar {
    height: 100%;
    border-radius: 9999px;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
  }
  
  .skill-bar.primary {
    background: hsl(var(--primary));
  }
  
  .skill-bar.secondary {
    background: hsl(var(--secondary));
  }
  
  .skill-bar.accent {
    background: hsl(var(--accent));
  }
  
  .skill-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: gradientShift 2s ease infinite;
  }
  
  .tech-cloud {
    margin-top: 5rem;
  }
  
  .cloud-title {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .tech-badge {
    padding: 0.625rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--primary) / 0.3);
    background: hsl(var(--card) / 0.8);
    backdrop-filter: blur(4px);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
  }
  
  .tech-badge:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary));
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.2);
  }
  
  /* ============================================
    Tech Marquee
    ============================================ */
  
    .wrapper {
      margin-top: 2rem;
      box-sizing: content-box;
      max-width: 1536px;
      margin-inline: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0)
      );
    }

    @keyframes scrollLeft {
      to {
        left: -200px;
      }
    }

    @keyframes scrollRight {
      to {
        right: -200px;
      }
    }

    .itemLeft,
    .itemRight {
      width: 200px;
      height: 100px;
      background-color:hsl(var(--secondary) / 0.1);
      border: 2px solid hsl(var(--secondary) / 0.2);
      border-radius: 12px;
      position: absolute;
      animation-timing-function: linear;
      animation-duration: 30s;
      animation-iteration-count: infinite;
      transition: all 0.5s ease;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      
    }

    .itemLeft:hover,
    .itemRight:hover {
      border: 2px solid hsl(var(--secondary) / 0.4);
    }

    .itemLeft {
      left: max(calc(200px * 8), 100%);
      animation-name: scrollLeft;
    }

    .itemRight {
      right: max(calc(200px * 8), calc(100% + 200px));
      animation-name: scrollRight;
    }

    .item1 {
      animation-delay: calc(30s / 8 * (8 - 1) * -1);
    }

    .item2 {
      animation-delay: calc(30s / 8 * (8 - 2) * -1);
    }

    .item3 {
      animation-delay: calc(30s / 8 * (8 - 3) * -1);
    }

    .item4 {
      animation-delay: calc(30s / 8 * (8 - 4) * -1);
    }

    .item5 {
      animation-delay: calc(30s / 8 * (8 - 5) * -1);
    }

    .item6 {
      animation-delay: calc(30s / 8 * (8 - 6) * -1);
    }

    .item7 {
      animation-delay: calc(30s / 8 * (8 - 7) * -1);
    }

    .item8 {
      animation-delay: calc(30s / 8 * (8 - 8) * -1);
    }

    .marquee-tech {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .marquee-tech img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
      transition: all 0.5s ease;
    }

    .itemLeft:hover  img,
    .itemRight:hover  img{
      transform: scale(1.1);
      filter: drop-shadow(0 8px 12px rgba(211, 11, 11, 0.3));
    }
  
  /* ============================================
    Projects Section
    ============================================ */
  
  .projects-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .projects-section .bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
  }
  
  .projects-glow-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.2);
    top: 50%;
    right: 50%;
  }
  
  .projects-glow-2 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.2);
    bottom: 0;
    left: 0;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--card-border) / 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
  }
  
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.3);
  }

  .project-card .explostion{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(var(--primary) / 0.1);
    position: absolute;
  }
  .project-card:hover .exp{
    border-radius: 50%;
    background-color: hsl(var(--primary) / 0.5);
    z-index: 999;
    position: absolute;
    animation: explostion 1s ease;
  }
  @keyframes explostion {
    0%{
      width: 0%;
      height: 0%;
    }
    100%{
      width: 100%;
      height: 150%;
      opacity: 0;
    }
  }
  
  .project-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  
  .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .project-card:hover .project-image {
    transform: scale(1.1);
  }
  
  .project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.5), transparent);
    opacity: 0.6;
    transition: opacity 0.5s ease;
  }
  
  .project-card:hover .project-image-overlay {
    opacity: 0.4;
  }
  
  .project-hover-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--primary) / 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .project-card:hover .project-hover-icon {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .project-hover-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
  }
  
  .project-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.1), transparent);
    transition: all 0.5s ease;
  }
  
  .project-card:hover .project-content {
    background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.55), hsl(var(--background) / 0.3));
    backdrop-filter: blur(4px);
  }
  
  .project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .project-card:hover .project-title {
    color: hsl(var(--primary));
  }
  
  .project-description {
    
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 0;
  }
  
  .project-card:hover .project-description {
    max-height: 8rem;
    opacity: 1;
    margin-bottom: 1rem;
  }
  
  .project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .project-tech-badge {
    padding: 0.25rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.3);
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    transition: all 0.3s ease;
  }
  
  .project-card:hover .project-tech-badge {
    background: hsl(var(--primary) / 0.2);
  }
  
  .project-actions {
    display: flex;
    gap: 0.75rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  .project-card:hover .project-actions {
    transform: translateY(0);
    opacity: 1;
  }
  
  .project-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .project-btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
  }
  
  .project-btn-icon {
    padding: 0.5rem;
    background: transparent;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
  }
  
  .project-btn-icon:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary));
  }
  
  .project-btn svg,
  .project-btn-icon svg {
    width: 1rem;
    height: 1rem;
  }
  
  /* ============================================
     Contact Section
     ============================================ */
  
  .contact-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .contact-section .bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  }
  
  .contact-section .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.2), transparent, hsl(var(--secondary) / 0.2));
    animation: gradientShift 20s ease infinite;
    background-size: 200% 200%;
  }
  
  .contact-glow-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.2);
    top: 25%;
    right: 33%;
  }
  
  .contact-glow-2 {
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.2);
    bottom: 25%;
    left: 33%;
    animation-delay: 2s;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  
  .contact-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--card-border) / 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.2);
  }
  
  .contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.1);
    border: 2px solid hsl(var(--primary) / 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
  }
  
  .contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
    border-color: hsl(var(--primary) / 0.4);
    background: hsl(var(--primary) / 0.2);
  }
  
  .contact-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary));
  }
  
  .contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
  }
  
  .contact-card:hover .contact-card-title {
    color: hsl(var(--primary));
  }
  
  .contact-card-description {
    
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.75;
  }
  
  .contact-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: var(--radius);
    border: none;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .contact-btn:hover {
    transform: translateX(2px);
  }
  
  .contact-btn svg {
    width: 1rem;
    height: 1rem;
  }
  
  .cta-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--card-border) / 0.5);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  
  .cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.2);
  }
  
  .cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.1);
    border: 2px solid hsl(var(--primary) / 0.2);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
  }
  
  .cta-card:hover .cta-icon {
    transform: scale(1.1);
    border-color: hsl(var(--primary) / 0.4);
  }
  
  .cta-icon svg {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
  }
  
  .cta-title {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
  }
  
  .cta-description {
    
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
  }
  
  /* ============================================
     Footer
     ============================================ */
  
  .footer {
    position: relative;
    padding: 3rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
    overflow: hidden;
  }
  
  .footer-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--primary) / 0.05), transparent);
  }
  
  .footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-text {
    
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-name {
    color: hsl(var(--foreground));
    font-weight: 700;
  }
  
  .footer-made {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .heart-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--destructive));
    fill: hsl(var(--destructive));
  }
  
  /* ============================================
     Responsive Design
     ============================================ */
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-title-glow {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
  
    .btn {
      width: 100%;
    }
  
    .skills-grid,
    .projects-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (min-width: 769px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  