/* Velora IT Services - FZCO custom styles */

body {
  background: #fff;
  color: #111a22;
}

section {
  scroll-margin-top: 80px;
}

h1, h2, h3 {
  letter-spacing: -0.01em;
}

a {
  transition: color 0.2s;
}
a:hover {
  color: #1672ce;
}

h2 {
  position: relative;
  display: inline-block;
}
h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #1672ce;
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

header.scrolled {
  background-color: rgba(17, 26, 34, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.active-link {
  color: #1672ce !important;
}

#mobile-menu a.active-link {
  background-color: #1672ce;
  color: #e2e8f0 !important;
}

@media (max-width: 600px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.custom-hero-bg {
  background-image: url('images/bg.svg'), linear-gradient(to bottom, #111a22, #1a2632);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.animate-fade-in {
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1) both;
}

.glassmorphism {
  background: rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.18);
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: none; }
}
.animate-slide-in-left {
  animation: slide-in-left 1.2s cubic-bezier(.4,0,.2,1) both;
} 