  /* CARD DESIGN */
  .highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 360px;
    scroll-snap-align: center;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  
  .metal-orange-glow {
    background: linear-gradient(135deg, #FF6B02, #FF6B02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.15) 0%,
      rgba(255,255,255,0) 50%,
      rgba(0,0,0,0.05) 50%,
      rgba(0,0,0,0.1) 100%
    );
  }
  
  .card-header {
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px; /* optional, for spacing */
  }
  
  .card-icon svg {
    width: 48px;
    height: 48px;
    color: rgb(15, 15, 15); /* or any desired color */
  }
  .card-header h3 {
    color: rgb(15, 15, 15);;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
  }

  .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .card-body p {
    color: rgb(15, 15, 15);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background: rgba(0,0,0,0.2);
    color: rgb(15, 15, 15);;
    border: 2px solid rgb(15, 15, 15);;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 3;
  }
  
  .cta-button:hover {
    background: white;
    color: #ff8c00;
  }
  
  
  /* ANIMATIONS */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
  }
  .carousel-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  .carousel-viewport::-webkit-scrollbar {
    display: none; /* hide scrollbar */
  }

  
  
  /* Mobile Responsiveness: Slightly smaller cards */
  @media (max-width: 768px) {
    .highlight-card {
      flex: 0 0 380px; /* Shrink the cards on mobile */
    }
  }
  
  @media (max-width: 480px) {
    .highlight-card {
      max-height: 600px;
      flex: 0 0 280px; /* Even smaller on very small screens */
    }
  }
  
