/* Cookie Popup Styles */
.cookie-popup-b2356 {
  position: fixed;
  bottom: -200px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: bottom 0.5s ease;
  border-radius: 24px;
  border: 2px solid #10b981;
}

.cookie-popup-b2356.show-b2356 {
  bottom: 20px;
}

.cookie-content-b2356 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: white;
}

@media (max-width: 768px) {
  .cookie-content-b2356 {
      flex-direction: column;
      text-align: center;
  }
  
  .cookie-popup-b2356 {
      left: 10px;
      right: 10px;
  }
}

/* Global Styles */
* {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Form input focus states */
input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Button and link transitions */
button,
a {
  transition: all 0.3s ease;
}

/* Image optimization */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Smooth animations */
.transition-b2356 {
  transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
  background: #10b981;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #059669;
}

/* Pulse animation for tech logos */
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

/* Gradient text effect */
.gradient-text-b2356 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover effects */
.feature-card-b2356,
.project-card-b2356,
.team-member-b2356,
.process-step-b2356 {
  cursor: pointer;
}

/* Service category interactive styles */
.service-category-b2356 {
  transform-style: preserve-3d;
}

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  html {
      scroll-behavior: smooth;
  }
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 3px solid #10b981;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Loading state */
@keyframes shimmer {
  0% {
      background-position: -1000px 0;
  }
  100% {
      background-position: 1000px 0;
  }
}

.loading-b2356 {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, #f3f4f6 4%, #e5e7eb 25%, #f3f4f6 36%);
  background-size: 1000px 100%;
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  h3 {
      font-size: 1.5rem;
  }
}

/* Enhanced shadow utilities */
.shadow-custom-b2356 {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.shadow-custom-lg-b2356 {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Rounded corner consistency */
.rounded-custom-b2356 {
  border-radius: 24px;
}

.rounded-custom-lg-b2356 {
  border-radius: 32px;
}

/* Grid gap utilities for better spacing */
.gap-custom-b2356 {
  gap: 2rem;
}

/* Backdrop blur effect */
.backdrop-blur-custom-b2356 {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Text balance for better readability */
h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* Smooth transitions for all interactive elements */
button, a, input, textarea, select {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient backgrounds */
.bg-gradient-custom-b2356 {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

/* Green accent color variables for consistency */
:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
}
