/* Dark modern theme with glass morphism effects */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
    background: #0a0e27;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /* Fade in animation for sections */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in-active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Custom scrollbar with dark theme */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0f1428;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b35, #ff8555);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8555, #ff6b35);
  }
  
  /* Focus styles with orange accent */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Enhanced form elements with dark theme */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    transition: all 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
  }
  
  button,
  a {
    transition: all 0.3s ease;
  }
  
  /* Service card flip animation */
  .service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  }
  
  .service-card.card-flipped {
    transform: rotateY(180deg);
  }
  
  /* Project card expand animation */
  .project-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
  }
  
  .project-card.card-expanded {
    transform: scale(1.05);
    z-index: 10;
    position: relative;
  }
  
  /* Team card 3D effect */
  .team-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
  }
  
  .team-card:hover {
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
  }
  
  /* Glass morphism effect */
  .glass-effect {
    background: rgba(26, 31, 58, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Gradient text effect */
  .gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Mobile menu animation */
  #mobileMenu {
    transition: max-height 0.3s ease-in-out;
  }
  
  /* Cookie popup */
  #cookiePopup {
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }
  
  /* Button glow effect */
  button:hover,
  a.bg-\[\#ff6b35\]:hover {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  }
  
  /* Card border glow animation */
  @keyframes borderGlow {
    0%,
    100% {
      border-color: rgba(255, 107, 53, 0.3);
    }
    50% {
      border-color: rgba(255, 107, 53, 0.6);
    }
  }
  
  .border-glow {
    animation: borderGlow 2s ease-in-out infinite;
  }
  
  /* Responsive typography */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    h3 {
      font-size: 1.5rem;
    }
  }
  
  /* Print styles */
  @media print {
    header,
    footer,
    #cookiePopup {
      display: none;
    }
  }
  
  /* Accessibility - reduce motion */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  
    .service-card,
    .project-card,
    .team-card {
      transform: none !important;
    }
  }
  
  /* Loading state animations */
  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  .loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  /* Smooth page transitions */
  .page-transition {
    transition: opacity 0.3s ease-in-out;
  }
  
  /* Enhanced shadows for depth */
  .shadow-dark-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  
  .shadow-dark-xl {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }
  
  /* Gradient overlays */
  .gradient-overlay {
    position: relative;
  }
  
  .gradient-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 133, 85, 0.1));
    pointer-events: none;
  }
  