:root {
  /* Color Variables */
  --primary: rgba(13, 110, 253, 0.9);
  --primary-light: rgba(78, 140, 234, 0.9);
  --primary-dark: rgba(9, 61, 140, 0.9);
  --primary-soft: rgba(42, 92, 170, 0.1);
  --secondary: #28A745;
  --dark: #343A40;
  --light: #F8F9FA;
  --white: #ffffff;
  --gray: #6C757D;
  
  /* Font */
  --font-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

/* Text Colors */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-primary-soft { background-color: var(--primary-soft) !important; }

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(42, 92, 170, 0.8), rgba(42, 92, 170, 0.9)), 
              url('../assets/hero-cover.jpg') center/cover no-repeat;
  color: white;
  padding: 6rem 0;
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 0.5rem;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Testimonial Cards */
.bg-primary-light {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: none;
  z-index: 99;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0;
    text-align: center;
  }
  .display-4 {
    font-size: 2.5rem;
  }
}


/* Service card hover effect */
.hover-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Icon box styling */
.icon-box {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* Contact page specific styles */
.contact-header {
  background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), 
              url('../assets/contact-bg.jpg') center/cover;
}

#map {
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

/* Form validation styling */
.was-validated .form-control:valid, 
.was-validated .form-control:invalid {
  background-position: right calc(0.375em + 0.1875rem) center;
}

/* Pricing page specific styles */
.pricing-header {
  background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), 
              url('../assets/pricing-bg.jpg') center/cover;
}

/* Plan card hover effects */
.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Featured plan styling */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

/* Pricing toggle active state */
.btn-check:checked + .btn-outline-primary {
  background-color: var(--bs-primary);
  color: white;
}

/* About page specific styles */
.about-header {
  background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), 
              url('../assets/about-bg.jpg') center/cover;
}

/* Team member cards */
.team-card {
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
}

/* Client logo styling */
.grayscale {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.grayscale:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Values icon boxes */
.icon-box {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.75rem;
}