.bg-deep-blue {
  background: linear-gradient(135deg, rgba(0, 20, 67, 0.98) 0%, rgba(2, 32, 114, 0.98) 100%);
}

.bg-deep-blue-gradient {
  background: linear-gradient(180deg, rgba(0, 20, 67, 0.95) 0%, rgba(2, 32, 114, 0.98) 100%);
  min-height: 100vh;
}

.glassmorphism {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 10, 50, 0.37);
}

.glassmorphism-cards .sync-container {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  min-height: 280px;
}

.glassmorphism-cards .sync-container:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 10, 50, 0.35);
}

.glassmorphism-cards .sync-container .title {
  color: #fff !important;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.glassmorphism-cards .sync-container .description {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.glassmorphism-cards .sync-container .img {
  margin-bottom: 1.5rem;
}

.glassmorphism-cards .sync-container .img img,
.glassmorphism-cards .sync-container .img svg {
  height: 80px;
  width: auto;
}

.opacity-80 {
  opacity: 0.85;
}

/* Add subtle gradient overlay to body */
body {
  background: linear-gradient(45deg, rgba(0, 12, 41, 0.99) 0%, rgba(0, 20, 67, 0.95) 100%);
  min-height: 100vh;
}

/* Enhanced section spacing */
.services.sync {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

/* Improved grid spacing */
.service-wrap .row {
  margin: 0 -1.5rem;
}

.service-wrap [class*="col-"] {
  padding: 0 1.5rem;
}

/* Hero text animation */
.animate-gradient {
  background: linear-gradient(90deg, #ffffff, #64ffda, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 8s linear infinite;
}

.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-up-delay-1 {
  animation-delay: 0.2s;
}

.fade-up-delay-2 {
  animation-delay: 0.4s;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

/* Content section styles */
.content-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.feature-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.highlight {
  color: #64ffda;
  font-weight: 500;
} 