/* 
  Rankzona-inspired Visual Effects for Dizabilitate.ro
  Theme: Light Mode with Neon Cyan/Blue Accents
*/

:root {
  --neon-cyan: #00e5ff;
  --neon-blue: #0d6efd;
  --glass-bg: rgba(255, 255, 255, 0.85); /* Light glassmorphism */
}

/* 1. Header Glassmorphism (Light) */
#header.header {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Nav Links adjust */
.navmenu a:hover, .navmenu .active, .navmenu .active:focus, .navmenu li:hover > a {
  color: var(--neon-blue) !important;
  text-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
}

/* 2. Text Gradients (Headings) */
.gradient-text {
  background: linear-gradient(to right, var(--neon-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 3. Buttons with Glow Effect */
.btn-get-started {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  z-index: 1;
}

.btn-get-started:hover {
  background-color: var(--neon-blue) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6) !important;
  transform: translateY(-2px);
  border-color: var(--neon-blue) !important;
}

/* 4. Card Styling & Interactive Hover (Light Theme) */
.service-item {
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
  border-radius: 16px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15) !important;
}

.service-item .icon i {
  transition: text-shadow 0.3s;
}

.service-item:hover .icon i {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* 5. Scroll-top button glow */
.scroll-top {
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5) !important;
}
.scroll-top:hover {
  background: var(--neon-cyan) !important;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6) !important;
  color: #fff !important;
}

/* 6. Carousels Animations */
.carousel-item img {
  transition: transform 10s ease; /* Slow zoom effect */
}
.carousel-item.active img {
  transform: scale(1.05); /* very slow zoom in */
}

