/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-1000 {
  animation-delay: 1s;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Background Patterns */
.bg-grid-pattern {
  background-image: 
    linear-gradient(rgba(0, 173, 238, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 238, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #00ADEE 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Morphism */
.glass-card {
  background: rgba(0, 0, 23, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 238, 0.2);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(0, 173, 238, 0.4);
  box-shadow: 0 0 30px rgba(0, 173, 238, 0.2);
  transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #00ADEE 0%, #0088CC 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 173, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 173, 238, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #00ADEE;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid #00ADEE;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  background: rgba(0, 173, 238, 0.1);
  transform: translateY(-2px);
}

/* Logo Styles */
.logo-image {
  width: 200px;
  height: 70px;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: translateY(-2px);
}

/* Footer Logo Styles */
.footer-logo-image {
  width: 200px;
  height: 70px;
  transition: all 0.3s ease;
}

.footer-logo-image:hover {
  transform: translateY(-2px);
}

/* Navigation */
.nav-link {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #00ADEE;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ADEE, #60A5FA);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Service Cards */
.service-icon-card {
  background: rgba(0, 0, 23, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 238, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-icon-card:hover {
  border-color: rgba(0, 173, 238, 0.5);
  box-shadow: 0 0 30px rgba(0, 173, 238, 0.3);
  transform: translateY(-10px);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(0, 173, 238, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.service-icon-card:hover .icon-wrapper {
  background: rgba(0, 173, 238, 0.2);
  box-shadow: 0 0 20px rgba(0, 173, 238, 0.4);
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(0, 0, 23, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 238, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 173, 238, 0.4);
  box-shadow: 0 0 30px rgba(0, 173, 238, 0.2);
}

/* Team Cards */
.team-card {
  background: rgba(0, 0, 23, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 238, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(0, 173, 238, 0.5);
  box-shadow: 0 0 40px rgba(0, 173, 238, 0.3);
  transform: translateY(-10px);
}

/* Service Detail Cards */
.service-detail-card {
  background: rgba(0, 0, 23, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 238, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: rgba(0, 173, 238, 0.4);
  box-shadow: 0 0 30px rgba(0, 173, 238, 0.2);
}

/* Glow Effects */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 173, 238, 0.3);
}

.glow-cyan-hover:hover {
  box-shadow: 0 0 25px rgba(0, 173, 238, 0.5);
}

/* Floating CTA Bubble */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ADEE 0%, #0088CC 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 30px rgba(0, 173, 238, 0.5);
  transition: all 0.3s ease;
  z-index: 999;
  animation: pulse 2s ease-in-out infinite;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 173, 238, 0.7);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ADEE 0%, #0088CC 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0088CC 0%, #00ADEE 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .floating-cta {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .floating-cta i {
    font-size: 1.25rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Form Styles */
input:focus,
textarea:focus {
  outline: none;
}

/* Success/Error Messages */
.success-message {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #22c55e;
}

.error-message {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
}
