html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #020814;
  color: white;
}

/* Navigation styles */
.nav-scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Icon styles */
.service-icon,
.use-case-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #00f7ff;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon,
.use-case-card:hover .use-case-icon {
  transform: scale(1.1);
}

/* Custom background colors */
.bg-custom-dark {
  position: relative;
}

.bg-custom-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0f1a2b;
  opacity: 0.3;
  z-index: -1;
}

/* Service and Use Case Cards */
.service-card,
.use-case-card {
  padding: 1.5rem;
  background-color: rgba(26, 41, 66, 0.8);
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #00f7ff;
  transition: transform 0.3s ease;
  transform: scaleY(0.7);
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #00f7ff;
  transition: transform 0.3s ease;
  transform: scaleX(0.7);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.use-case-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
  background-color: rgba(26, 41, 66, 1);
}

.service-card h3,
.use-case-card h3 {
  font-size: 1.25rem;
  font-weight: 300;
  color: #00f7ff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card p,
.use-case-card p {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.service-card:hover p,
.use-case-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* Custom text colors */
.text-cyan {
  color: #00f7ff;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Custom borders */
.border-cyan {
  border-color: #00f7ff;
}

/* Custom shadows */
.shadow-cyan {
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.hover-shadow-cyan:hover {
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
}

/* Custom transitions */
.hover-translate {
  transition: transform 0.3s ease;
}

.hover-translate:hover {
  transform: translateY(-0.5rem);
}

/* Custom gradients */
.gradient-text {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #2563eb, #9333ea);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gradient-text:hover::after {
  transform: scaleX(1);
}

.gradient-text:hover {
  background: linear-gradient(to right, #1d4ed8, #7e22ce);
  -webkit-background-clip: text;
  background-clip: text;
}

/* List arrow styles */
.arrow-list li {
  position: relative;
  padding-left: 1.5rem;
  transition: transform 0.3s ease;
}

.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00f7ff;
  transition: transform 0.3s ease;
}

.arrow-list li:hover {
  transform: translateX(0.25rem);
}

.arrow-list li:hover::before {
  transform: translateX(-0.25rem);
}