*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
        scrollbar-width: none;

}

body{
    font-family: 'Poppins', sans-serif;
    
}





   @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
    .float { animation: float 6s ease-in-out infinite; }
    
    .hero-bg {
      position: relative;
      overflow: hidden;
    }
    
    .bg-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: -1;
    }
    
    .bg-slide.active {
      opacity: 0.3;
    }
    
    .floating-card {
      backdrop-filter: blur(10px);
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .glow {
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    
    /* Logo styling */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .logo-icon {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #3b82f6, #06b6d4);
      border-radius: 8px;
      color: white;
      font-weight: bold;
    }
    
    /* Mobile menu animation */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -90%;
      width: 90%;
      height: 100vh;
      background: rgba(15, 23, 42, 0.98);
      transition: right 0.3s ease-out;
      z-index: 100;
      padding-top: 5rem;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu.open {
      right: 0;
    }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease-out;
      z-index: 99;
    }
    
    .overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
.floating-card {
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-scroll] {
  transition: opacity 1s, transform 1s;
}

[data-scroll].is-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-content {
        padding: 0 1rem;
      }
      .cta-buttons {
        flex-direction: column;
        gap: 1rem;
      }
    }
    
    /* Focus styles for accessibility */
      a:focus, button:focus {
        /* outline: 2px solid #3b82f6;
        outline-offset: 2px; */
        border-bottom: 2px solid #3b82f6;
      }
    
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Faster animations for industry section */
    .industry-card {
      transition: all 0.2s ease;
    }
    
    .industry-content {
      transition: all 0.3s ease;
    }
    
    /* Mobile optimization */
    @media (max-width: 768px) {
      .industry-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
      }
      
      .industry-card {
        padding: 1rem;
      }
      
      .industry-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }
      
      .industry-card h3 {
        font-size: 0.9rem;
      }
      
      .industry-card p {
        font-size: 0.75rem;
      }
    }

     .industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    
    .industry-card {
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .industry-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
      transition: left 0.7s ease;
    }
    
    .industry-card:hover::before {
      left: 100%;
    }
    
    .industry-card:hover {
      transform: translateY(-5px);
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .industry-card.active {
      background: rgba(30, 58, 138, 0.3);
      border-color: rgba(59, 130, 246, 0.5);
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    
    .industry-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    
    .industry-card:hover .industry-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .industry-content {
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: all 0.5s ease;
    }
    
    .industry-content.active {
      opacity: 1;
      height: auto;
      overflow: visible;
    }
    
    .industry-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .stat-item {
      background: rgba(15, 23, 42, 0.5);
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
    }
    
    /* Animation for industry items */
    @keyframes slideInItem {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .industry-item {
      animation: slideInItem 0.6s ease forwards;
      opacity: 0;
    }


      .service-list-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .service-list-item:last-child {
    border-bottom: none;
  }
  
  .service-list-item:hover {
    background-color: rgba(17, 24, 39, 0.7);
    padding-left: 2rem;
  }
  
  .service-list-item:hover h3 {
    color: #60a5fa;
  }
  
  .industry-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .stat-item {
    background: rgba(31, 41, 55, 0.4);
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .service-list-item {
      padding: 1.25rem;
    }
    
    .service-list-item:hover {
      padding-left: 1.5rem;
    }
    
    .service-list-item ul {
      grid-template-columns: 1fr !important;
    }
  }