.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  
  .slider-container {
    position: relative;
    /* max-width: 1200px; */
    width: 100%;
    /* border-radius: 24px; */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .slide {
    min-width: 100%;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
  }
  
  .slide-content {
    position: relative;
    z-index: 3;
    padding: 40px;
  
    color: white;
    padding-left: 130px;
  }
  
  .tech-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .slide-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
  }
  
  .stats-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
  }
  
  .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
  }
  
  .buttons-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .btn-primary {
    background: #0000ff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
  
  .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
  }
  
  .prev-btn {
    left: 20px;
  }
  
  .next-btn {
    right: 20px;
  }
  
  .indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
  }
  
  .indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    width: 56px;
    height: 12px;
    border-radius: 100px;
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    will-change: transform, opacity;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .slide {
      height: 500px;
    }
  
    .slide-title {
      font-size: 2.2rem;
    }
  
    .slide-content {
      padding: 30px;
    }
  
    .stat-value {
      font-size: 2rem;
    }
  
    .nav-btn {
      width: 48px;
      height: 48px;
    }
  }
  
  @media (max-width: 480px) {
    .slide {
      height: 450px;
    }
  
    .slide-title {
      font-size: 1.8rem;
    }
  
    .stats-container {
      gap: 25px;
    }
  
    .stat-value {
      font-size: 1.8rem;
    }
  
    .btn {
      padding: 12px 20px;
      font-size: 0.9rem;
    }
  }
  
  .animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
  }
  
  .case-study-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .case-study-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .case-study-image {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .case-study-card:hover .case-study-image {
    transform: scale(1.1);
  }
  
  .case-study-overlay {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .case-study-card:hover .case-study-overlay {
    opacity: 0.7;
  }
  
  .case-study-title {
    transition: color 0.3s ease-out;
  }
  
  .case-study-card:hover .case-study-title {
    color: #2563eb;
  }
  
  .metric-icon {
    transition: transform 0.3s ease-out;
  }
  
  .metric-card:hover .metric-icon {
    transform: scale(1.1);
  }
  
  .metric-card {
    transition: all 0.3s ease-out;
  }
  
  .metric-card:hover {
    border-color: #bfdbfe;
  }
  
  .cta-button {
    transition: gap 0.3s ease-out;
  }
  
  .cta-button:hover {
    gap: 0.75rem;
  }
  
  .cta-arrow {
    transition: transform 0.3s ease-out;
  }
  
  .cta-button:hover .cta-arrow {
    transform: translateX(0.25rem);
  }
  
  .tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 16px;
    color: #6b7280;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
  }
  
  .tab-btn:hover {
    color: #2563eb;
  }
  
  .active-tab {
    color: #2563eb;
    border-color: #2563eb;
  }
  