/* RODO Solutions - Custom Styles & Animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --rodo-navy: #0B192C;
  --rodo-dark: #07101C;
  --rodo-blue: #0047AB;
  --rodo-azure: #0284C7;
  --rodo-cyan: #38BDF8;
  --rodo-orange: #FF6500;
  --rodo-orange-light: #FF8A3D;
  --rodo-surface: #F8FAFC;
}

html {
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Gradients */
.gradient-text-blue {
  background: linear-gradient(135deg, #0047AB 0%, #0284C7 60%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.gradient-text-rodo {
  background: linear-gradient(135deg, #0047AB 0%, #0284C7 50%, #FF6500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-rodo {
  background: linear-gradient(135deg, #0047AB 0%, #0284C7 100%);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #FF6500 0%, #E8590C 100%);
}

/* Glassmorphism */
.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 1px 4px 0 rgba(15, 23, 42, 0.03);
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-dark {
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subtle Shadows & Hover effects */
.shadow-rodo {
  box-shadow: 0 10px 30px -10px rgba(0, 71, 171, 0.15);
}

.shadow-orange {
  box-shadow: 0 10px 25px -5px rgba(255, 101, 0, 0.35);
}

.hover-lift {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Glowing background spheres */
.bg-mesh {
  position: absolute;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}

/* Interactive Tabs styling */
.tab-btn.active {
  background-color: #0047AB;
  color: #FFFFFF;
  border-color: #0047AB;
  box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #94A3B8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748B;
}

/* Pulsing animation for WhatsApp */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.animate-pulse-ring {
  animation: pulse-ring 2s infinite ease-in-out;
}
