:root {
  --primary: #af0000; /* Red */
  --primary-dark: #8e0000; /* Darker red for hover states */
  --secondary: #198754; /* Green */
  --secondary-dark: #146c43; /* Darker green for hover states */
  --light: #f8f9fa;
  --gray: #6c757d;
  --dark: #212529;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link i {
  font-size: 12px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--primary);
  background-color: rgba(175, 0, 0, 0.05);
}

.header-contact {
  display: flex;
  align-items: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--primary);
}

.phone-link i {
  color: var(--primary);
}

.email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--secondary);
}

.email-link i {
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .header-container {
    padding: 15px;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Mobile dropdown menu - override desktop hover styles */
  .dropdown .dropdown-menu {
    position: static !important;
    width: 100%;
    box-shadow: none !important;
    padding: 0;
    margin-top: 10px;
    margin-left: 15px;
    opacity: 1 !important;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s 0.3s;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    display: block !important;
  }
  
  /* Disable desktop hover behavior on mobile */
  .dropdown:hover .dropdown-menu {
    visibility: hidden;
    max-height: 0;
    padding: 0;
  }
  
  /* Show dropdown when .open class is added */
  .dropdown.open .dropdown-menu {
    visibility: visible !important;
    max-height: 500px;
    padding: 10px 0;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s 0s;
  }
  
  .dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 100%;
  }
  
  .dropdown > .nav-link i {
    transition: transform 0.3s ease;
    margin-left: auto;
  }
  
  .dropdown.open > .nav-link i {
    transform: rotate(180deg);
  }
  
  .dropdown.open > .nav-link {
    color: var(--primary);
  }
  
  .dropdown-menu li {
    list-style: none;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
  }
  
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    color: var(--primary);
    background-color: rgba(175, 0, 0, 0.05);
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }
  
  .mobile-menu-toggle.active i::before {
    content: "\f00d"; /* FontAwesome X icon */
  }
  
  .header-contact {
    display: none;
  }
  
  /* Show overlay when menu is active */
  .main-nav.active ~ .mobile-menu-overlay,
  header .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 40px;
  }
  
  .main-nav {
    width: 100%;
    top: 70px;
    height: calc(100vh - 70px);
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--gray);
}

.hero-text .accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  display: block;
  margin-bottom: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(175, 0, 0, 0.05); /* Light red background */
  top: -200px;
  left: -200px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(25, 135, 84, 0.05); /* Light green background */
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--secondary); /* Green */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item:nth-child(even) .contact-icon {
  background-color: var(--secondary);
}

.contact-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-details p {
  color: var(--gray);
  font-size: 16px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(175, 0, 0, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 50px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  color: white; /* Changed from gray to white */
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.footer-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary); /* Red underline */
  bottom: 0;
  left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white; /* Changed from gray to white */
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary); /* Red on hover */
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: white; /* Changed from gray to white */
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    text-align: center;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }
  
  /* Note: dropdown-menu mobile styles are defined in the Mobile Menu Styles section above */
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 30px;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Additional CSS styles to be added to your existing styles.css file */

/* Enhanced Hero Section Styles */
.hero-benefits {
  margin: 2rem 0;
}

.hero-benefits .benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.hero-benefits .benefit-item span {
  position: relative;
  z-index: 2;
}

.hero-benefits .benefit-item i {
  color: #198754;
  margin-right: 2.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hero-benefits .benefit-item::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  height: 100%;
  width: calc(100% + 10px);
  background-color: rgba(255, 235, 59, 0.2); /* Very light yellow background */
  z-index: 1;
}

.hero-benefits .benefit-item i.fa-check-circle {
  color: #198754;
  margin-right: 2.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Strategic CTA Button Colors */
.btn-success {
  background-color: #28a745;
  color: white;
  border: 2px solid #28a745;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-danger {
  background-color: #dc3545;
  color: white;
  border: 2px solid #dc3545;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Trust Indicators Section */
.trust-indicators {
  background-color: #f8f9fa;
  padding: 3rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc3545;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Services Section */
.services {
  padding: 4rem 0;
}

.section-title p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.service-card.featured {
  border: 2px solid #28a745;
  box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #28a745;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.service-highlights {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-tag {
  background: #e9ecef;
  color: #495057;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-card.featured .highlight-tag {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* Automation Benefits Section */
.automation-benefits {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.benefits-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits-text h2 {
  color: #343a40;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.benefit-list .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.benefit-list .benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: rgba(255, 235, 59, 0.8);
}

.benefit-icon {
  background: var(--secondary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: #343a40;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 2rem;
}

.benefit-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
  margin-left: 2rem;
}

.benefits-cta {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 2px solid #28a745;
}

.benefits-cta h3 {
  color: #343a40;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.benefits-cta p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Enhanced Contact Section */
.contact .section-title p {
  margin-top: 0.5rem;
}

.contact-details small {
  display: block;
  color: #28a745;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.contact-form h3 {
  color: #343a40;
  margin-bottom: 0.5rem;
}

.contact-form > p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.form-note {
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* Enhanced Footer */
.footer-about p {
  line-height: 1.6;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-benefits .benefit-item {
    font-size: 0.9rem;
  }
  
  .benefit-list .benefit-item {
    padding: 1rem;
  }
  
  .benefits-cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-benefits .benefit-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .hero-benefits .benefit-item i {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

/* Active navigation styles for standard navigation */
.nav-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Active navigation styles for Bootstrap navigation */
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-toggle.active,
.dropdown-menu .dropdown-item.active {
  color: var(--primary) !important;
  font-weight: 600;
}