/* Hero section css */


/* Base Styles */
  .hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #284ea6ff 0%, #1e293b 50%, #3c5374ff 100%);
    color: white;
    position: relative;
  }

  /* 3D Floating Shapes - Enhanced Visibility */
  .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(159, 246, 59, 0.15); /* Increased opacity */
    filter: blur(30px); /* Reduced blur for better visibility */
    animation: float 15s infinite ease-in-out;
    transition: transform 0.3s ease-out; /* Smooth movement */
  }

  .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(59, 130, 246, 0.2); /* More visible */
  }

  .shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    background: rgba(139, 92, 246, 0.2); /* More visible */
  }

  .shape-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    background: rgba(14, 165, 233, 0.2); /* More visible */
  }

  .shape-4 {
    width: 180px;
    height: 180px;
    top: 70%;
    left: 20%;
    animation-delay: 9s;
    background: rgba(16, 185, 129, 0.2); /* More visible */
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
      transform: translateY(-30px) translateX(15px) rotate(5deg) scale(1.05);
    }
    50% {
      transform: translateY(15px) translateX(-20px) rotate(-5deg) scale(0.95);
    }
    75% {
      transform: translateY(-20px) translateX(-15px) rotate(3deg) scale(1.02);
    }
  }

  /* Hero Title with Typed.js */
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 1.5rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .typed-title {
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .typed-cursor {
    color: #3b82f6;
    font-weight: bold;
  }

  /* Description */
  .hero-description {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 1s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Buttons */
  .hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 1.2s;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }

  .cta-btn.primary {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  }

  .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }

  .btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
  }

  .cta-btn:hover .btn-hover-effect {
    left: 100%;
  }

  .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  }

  .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
  }

  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #3b82f6, transparent);
    animation: scrollLine 2s infinite;
  }

  @keyframes scrollLine {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(20px);
      opacity: 0;
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
      min-height: 150px;
    }
    
    .cta-btn {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    }
    
    .shape {
      display: none;
    }
  }

