#header2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1031;
}

.scroll-logo {
  height: 48px !important;
}

.top-bar {
  padding: 16px 0;
}

.top-bar a {
  color: var(--Black-Text-Color);
  text-decoration: none;
}

.top-bar .contact-info span {
  margin-left: 0 px;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar {
  padding: 12px 0px !important;
}

.navbar-nav .nav-link {
  color: var(--Grey-Text-Color);
  font-weight: 500;
  font-size: 14px;
}

.navbar-toggler {
  border: 1px solid var(--Black-Text-Color) !important;
  border-radius: 6px;
  padding: 2px 6px;
  width: 35px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  border: 1px solid var(--primary-color) !important;
  box-shadow: none !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 8px 8px 0px 0px;
}

.icon-highlight {
  background-color: var(--Secondary-Background-Color);
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.contact-text {
  color: var(--Black-Text-Color);
  font-size: 16px;
  font-weight: 500;
}

.contact-phone {
  color: var(--Black-Text-Color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .scroll-logo {
    height: 32px !important;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0px;
  }

  .navbar-toggler {
    display: none;
  }
}

/* Footer */

.site-footer {
  background-color: #f8ffe3;
}

.site-footer .lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--Black-Text-Color);
  margin-left: auto;
  margin-right: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-color);
  font-size: 14px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  text-decoration: none;
}

.social-icons a i {
  color: var(--primary-color) !important;

}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons a:hover i {
  color: #fff !important;

}

.contact-icon-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50px;
}

.contact-phone-footer {
  color: var(--Black-Text-Color);
  font-size: 14px;
  font-weight: 500;
}

.contact-text-footer {
  color: var(--Black-Text-Color);
  font-size: 16px;
  font-weight: 500;
}

.contact-text-footer:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  color: var(--Black-Text-Color);
}

.footer-bottom p,
.footer-bottom .footer-link {
  color: var(--Black-Text-Color);
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom .footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.view-on-mobile {
  display: none !important;
  padding-inline: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar {
    padding: 0px !important;
  }

  .hiden-on-mobile {
    display: none;
  }

  .view-on-mobile {
    display: block !important;
  }

  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer .lead {
    font-size: 0.9rem;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    margin: 0px;
    font-size: 0.8rem;
  }

  .contact-info-footer .col-auto {
    width: 100%;
    justify-content: center;
    /* Center items within col-auto on mobile */
  }

  .contact-info-footer .me-md-4 {
    margin-right: 0 !important;
  }

  .contact-text-footer {
    font-size: 0.85rem;
  }

  .footer-bottom .text-md-start,
  .footer-bottom .text-md-end {
    text-align: center !important;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 0.5rem;
    /* Add some space between copyright and links on mobile */
  }

  .footer-bottom .col-md-6:last-child {
    margin-bottom: 0;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 24px;
    height: 24px;
  }
}