/* Base Typography - FS-Elliott Brand Compliant */
body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
}

/* Enhanced Navigation Styles */
.navigation {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.dropdown-menu {
  min-width: 200px;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  transform: translateY(0);
}

.mega-menu {
  min-width: 600px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
}

.dropdown:hover .mega-menu {
  transform: translateX(-50%) translateY(0);
}

/* Professional Menu Animations */
.menu-item {
  position: relative;
  transition: all 0.3s ease;
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transition: width 0.3s ease;
}

.menu-item:hover::after {
  width: 100%;
}

/* FS-Elliott Brand Button Styles */
.btn-primary {
  background: #0069aa;
  border: none;
  box-shadow: 0 4px 15px 0 rgba(0, 105, 170, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #004d7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(0, 105, 170, 0.4);
}

.btn-secondary {
  background: #d32a2f;
  border: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #b8262b;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Spacing */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Professional Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Advanced Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Enhanced Service Cards */
.service-card-enhanced {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card-enhanced:hover::before {
  opacity: 1;
}

.service-card-enhanced:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced Blog Cards */
.blog-card-enhanced {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Professional Loading Animation */
.loading-dots {
  display: inline-flex;
  gap: 4px;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Hover Effects for Statistics */
.stat-card {
  transition: all 0.3s ease;
  position: relative;
}

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

.stat-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #e0f2fe, #f0f9ff, #f8fafc, #f1f5f9);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::after {
  opacity: 1;
}

/* FS-Elliott Brand Colors */
.fs-primary {
  background: #0069aa;
  color: white;
}

.fs-secondary {
  background: #d32a2f;
  color: white;
}

.fs-black {
  background: #000000;
  color: white;
}

.fs-light-gray {
  background: #dbdcdd;
  color: #000000;
}

/* FS-Elliott Brand Logo */
/*
.fs-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fs-triangle {
  width: 40px;
  height: 35px;
  position: relative;
}

.fs-triangle svg {
  width: 100%;
  height: 100%;
}

.fs-wordmark {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #000000;
  position: relative;
}

.fs-wordmark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D32A2F;
}
*/
/* Professional Shadows */
.shadow-professional {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Advanced Styling Enhancements */
.stats-counter {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.stats-counter::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 70%
  );
  transform: rotate(-45deg);
}

.hero-enhanced {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-left: 4px solid transparent;
  background-clip: padding-box;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-left-color: #2563eb;
  transform: translateY(-2px);
}

.service-card-enhanced {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
  overflow: hidden;
}

.service-card-enhanced::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 0;
  height: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.service-card-enhanced:hover::before {
  width: 200%;
  height: 200%;
}

/* Enhanced Blog Cards */
.blog-card-enhanced {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.blog-card-enhanced::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8, #1e40af);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

/* Text Gradients */
.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Professional Form Styling */
.form-professional input,
.form-professional textarea {
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
}

.form-professional input:focus,
.form-professional textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Hero Parallax Effects */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Parallax scroll animation */
@keyframes parallax-bg {
  0% {
    transform: translateY(0) scale(1.1);
  }
  100% {
    transform: translateY(-50px) scale(1.1);
  }
}

@keyframes parallax-middle {
  0% {
    transform: translateY(0) scale(1.05);
  }
  100% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes parallax-front {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* Hero text animations */
.hero-title {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Glow effect for highlighted text */
.glow-text {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5),
    0 0 40px rgba(59, 130, 246, 0.3), 0 0 60px rgba(59, 130, 246, 0.2);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5),
      0 0 40px rgba(59, 130, 246, 0.3), 0 0 60px rgba(59, 130, 246, 0.2);
  }
  100% {
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.7),
      0 0 50px rgba(59, 130, 246, 0.4), 0 0 80px rgba(59, 130, 246, 0.3);
  }
}

/* Animated Particles */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 40%;
  left: 60%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 90%;
  animation-delay: 3s;
  animation-duration: 6s;
}

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

/* Responsive parallax adjustments */
@media (max-width: 768px) {
  .parallax-layer img {
    opacity: 0.1 !important;
  }

  .particle {
    display: none;
  }
}

/* Smooth scroll behavior for the entire page */
html {
  scroll-behavior: smooth;
}

/* Hero button enhancements */
.hero-buttons a:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mt-4-h-250 {
  height: 250px;
}
.img-250 {
  height: 100%;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
