/* Custom styles to complement Tailwind CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Focus styles for accessibility */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
  }
  
  /* Custom transition for burger menu spans */
  #burgerMenu span {
    transition: all 0.3s ease;
  }
  
  /* Cookie popup animation */
  #cookiePopup {
    animation: slideUp 0.5s ease;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Form input styles */
  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 {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  /* Checkbox custom style */
  input[type="checkbox"] {
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  input[type="checkbox"]:checked {
    accent-color: #3b82f6;
  }
  
  /* Button hover effects */
  button,
  a {
    transition: all 0.3s ease;
  }
  
  /* Image loading state */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Mobile menu transition */
  #mobileNav {
    transition: all 0.3s ease;
  }
  
  /* Card hover effects */
  .shadow-lg {
    transition: all 0.3s ease;
  }
  
  .shadow-lg:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  /* Responsive iframe */
  iframe {
    max-width: 100%;
  }
  
  /* Link underline animation */
  a {
    position: relative;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f0f9ff;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
  }
  
  /* Print styles */
  @media print {
    header,
    footer,
    #cookiePopup {
      display: none;
    }
  }
  
  /* Added service tag styles with pill shape and hover effects */
  .service-tag {
    padding: 0.5rem 1.25rem;
    background: white;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .service-tag:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
  }
  
  .service-tag.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  /* Added service card transition styles */
  .service-card {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
  }
  
  /* Added feature card parallax animation */
  .feature-card {
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
  }
  
  /* Added team card entrance animation */
  .team-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
  }
  
  /* Added project card rotation effect */
  .project-card {
    transition: all 0.5s ease;
    transform-style: preserve-3d;
  }
  
  .project-card.rotated {
    transform: rotateY(180deg);
  }
  
  .project-card img {
    backface-visibility: hidden;
  }
  
  /* Added 3D card hover effect */
  .card-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
  }
  
  /* Added glassmorphism effect for backdrop blur elements */
  .backdrop-blur-sm,
  .backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  /* Added gradient mesh background animation */
  @keyframes gradient-mesh {
    0% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(30px, -50px) scale(1.1);
    }
    66% {
      transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
      transform: translate(0, 0) scale(1);
    }
  }
  
  /* Added smooth entrance animations for sections */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  section {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  /* Added hover effect for expand buttons */
  .expand-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .expand-btn:hover .arrow {
    transform: translateX(5px);
  }
  
  /* Added pulse animation for CTA buttons */
  @keyframes pulse-shadow {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
      box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }
  }
  
  /* Added floating animation for hero badge */
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Added shine effect for cards on hover */
  @keyframes shine {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100%);
    }
  }
  
  .feature-card::after,
  .team-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
  }
  
  .feature-card:hover::after,
  .team-card:hover::after {
    animation: shine 0.8s ease;
  }
  
  /* Added responsive grid improvements */
  @media (max-width: 768px) {
    .service-tag {
      font-size: 0.75rem;
      padding: 0.4rem 1rem;
    }
  }
  
  /* Added smooth color transitions for all interactive elements */
  * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  