/* ===================================
   NORVAULT SECURITY - PREMIUM THEME
   Modern, Professional & High-Converting
   =================================== */

/* === VARIABLES === */
:root {
  --primary: #0052CC;
  --primary-dark: #003d99;
  --primary-light: #4285f4;
  --secondary: #00D4AA;
  --accent: #FF6B6B;
  --dark: #0A0E27;
  --light: #F8F9FB;
  --gray: #6B7280;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-hero: linear-gradient(135deg, #0052CC 0%, #00D4AA 100%);
  --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,0.25);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #ffffff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.display-1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NAVIGATION === */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  transition: all var(--transition-normal);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  z-index: 1000;
  position: sticky;
  top: 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand svg {
  transition: all var(--transition-normal);
}

.navbar-brand:hover svg {
  transform: rotate(-5deg) scale(1.1);
}

.navbar-brand .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

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

.language-switcher .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
  z-index: 1;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 82, 204, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
}

.hero-title {
  animation: heroFadeInUp 1s ease-out;
}

.hero-subtitle {
  animation: heroFadeInUp 1s ease-out 0.2s both;
  opacity: 0.9;
}

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

/* === BUTTONS === */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-glow {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  position: relative;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
  color: white;
}

.btn-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover .btn-hover-effect {
  width: 300px;
  height: 300px;
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid rgba(10, 14, 39, 0.3);
  border-radius: 20px;
  position: relative;
}

.mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(10, 14, 39, 0.5);
  border-radius: 2px;
  animation: wheel 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* === HERO WAVE === */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* === PAGE HERO SECTION === */
.page-hero-section {
  position: relative;
  background: linear-gradient(135deg, #fef3c7 0%, #e0e7ff 50%, #ddd6fe 100%);
  overflow: hidden;
  padding: 80px 0 40px;
}

.page-hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.08;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%);
}

.page-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.page-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* === SECTIONS TEXT IMPROVEMENTS === */
.lead {
  font-size: 1.25rem !important;
  font-weight: 400;
  color: #1f2937;
  opacity: 1;
}

.text-muted {
  color: #374151 !important;
  font-size: 1.1rem !important;
  line-height: 1.8;
  font-weight: 400;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1f2937;
}

/* Specific improvements for sections */
.feature-card p {
  font-size: 1rem;
  color: #374151;
  font-weight: 400;
}

section h2 {
  color: #0A0E27;
  margin-bottom: 1.5rem;
}

section .lead {
  max-width: 900px;
  margin: 0 auto;
  color: #374151;
  font-size: 1.2rem !important;
}

/* === FEATURE CARDS === */
.feature-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,82,204,0.03) 0%, rgba(0,212,170,0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,82,204,0.12);
  border-color: rgba(0,212,170,0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .icon-bg-animation {
  transform: scale(1.5);
  opacity: 0.1;
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,82,204,0.3);
}

.icon-bg-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 20px;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

/* === FLOATING SHAPES === */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--gradient-secondary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 60%;
  right: 10%;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--gradient-hero);
  border-radius: 50%;
  bottom: 20%;
  left: 50%;
  animation: float 25s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

/* === STATISTICS SECTION === */
.statistics-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.stat-card {
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* === SERVICE CARDS 3D === */
.service-card-3d {
  perspective: 1000px;
  height: 100%;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  min-height: 350px;
}

.service-card-3d:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card-front {
  background: white;
  box-shadow: var(--shadow-lg);
}

.service-card-back {
  background: var(--gradient-primary);
  color: white;
  transform: rotateY(180deg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

/* === PRICING CARDS === */
.pricing-section {
  background: white;
  position: relative;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-2xl);
  border: 2px solid var(--primary);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge-wrapper {
  position: absolute;
  top: -1px;
  right: 20px;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 1rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--gray);
  margin-right: 0.25rem;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.period {
  font-size: 1rem;
  color: var(--gray);
  margin-left: 0.5rem;
}

.feature-list {
  list-style: none;
  padding: 2rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list li i {
  color: var(--success);
  font-size: 1.25rem;
}

.feature-list li.highlight {
  font-weight: 600;
  color: var(--primary);
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--light);
  padding: 5rem 0;
}

.testimonial-card {
  max-width: 600px;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.rating {
  color: #FFD700;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 82, 204, 0.1);
}

.contact-info {
  margin-top: 2rem;
}

.info-item {
  padding: 1rem 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.form-floating .form-control,
.form-floating .form-select {
  border: 2px solid transparent;
  background: var(--light);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 0.25rem rgba(0, 82, 204, 0.1);
}

.form-floating label {
  color: var(--gray);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* === DARK MODE === */
.dark-mode {
  background-color: var(--dark);
  color: var(--light);
}

.dark-mode .navbar {
  background: rgba(10, 14, 39, 0.95);
}

.dark-mode .nav-link {
  color: var(--light) !important;
}

.dark-mode .feature-card,
.dark-mode .pricing-card,
.dark-mode .testimonial-card,
.dark-mode .service-card-front {
  background: #1a1f3a;
  color: var(--light);
}

.dark-mode .contact-form-wrapper {
  background: rgba(26, 31, 58, 0.9);
  border-color: rgba(0, 212, 170, 0.2);
}

.dark-mode .form-control,
.dark-mode .form-select {
  background: rgba(10, 14, 39, 0.5);
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.1);
}

/* === ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  .dark-mode .navbar-collapse {
    background: rgba(10, 14, 39, 0.98);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .service-card-3d:hover .service-card-inner {
    transform: none;
  }
}

@media (max-width: 767px) {
  .display-1 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 4rem 0;
    min-height: 80vh;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
}

/* === LOADING ANIMATION === */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === SEO OPTIMIZED HEADINGS === */
.seo-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.seo-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--gray);
  margin-bottom: 2rem;
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--light);
  border-radius: 50px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.trust-badge i {
  color: var(--success);
  font-size: 1.25rem;
}

/* === STEP NUMBERS === */
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.step-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* === FLOATING BADGE === */
.floating-badge {
  animation: float-badge 3s ease-in-out infinite;
}

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

.floating-badge .badge {
  box-shadow: var(--shadow-xl);
}

/* === FEATURE LIST === */
.feature-list .feature-icon-small {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* === BG LIGHT SECTION === */
.bg-light {
  background-color: #F9FAFB !important;
}

/* === TEAM SECTION === */
.team-card {
  position: relative;
  transition: all var(--transition-normal);
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-normal);
}

/* Style for SVG placeholder images */
.team-image img[src^="data:image/svg"] {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.team-card:hover .team-overlay {
  opacity: 0.9;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social a {
  color: white;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.team-social a:hover {
  transform: translateY(-3px);
}

/* === CASE STUDY STYLES === */
.case-study {
  margin-bottom: 5rem;
}

.case-study img {
  transition: transform var(--transition-normal);
}

.case-study:hover img {
  transform: scale(1.02);
}

/* === CAROUSEL CONTROLS === */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 82, 204, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px;
  width: 20px;
  height: 20px;
}

@media (max-width: 991px) {
  .carousel-control-prev {
    left: -30px;
  }
  
  .carousel-control-next {
    right: -30px;
  }
}

@media (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* === PERFORMANCE OPTIMIZATIONS === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}