@charset "UTF-8";

.bg-clatech-primary {
  background-color: var(--clatech-primary) !important;
}
.text-clatech-secondary {
  color: var(--clatech-secondary) !important;
}
.btn-clatech-primary {
  background-color: var(--clatech-primary);
  border-color: var(--clatech-primary);
  color: #fff;
}
.btn-clatech-primary:hover {
  background-color: #0a1733;
  border-color: #0a1733;
  color: #fff;
}
.btn-outline-clatech-secondary {
  background-color: transparent;
  border-color: var(--clatech-secondary);
  color: var(--clatech-secondary);
}
.btn-outline-clatech-secondary:hover {
  background-color: var(--clatech-secondary);
  color: var(--clatech-primary);
}
.bg-clatech-light {
  background-color: var(--clatech-light-bg) !important;
}
.text-clatech-primary {
  color: var(--clatech-primary) !important;
}
.icon-clatech {
  color: var(--clatech-secondary) !important;
}
.job-card {
  transition: transform 0.2s;
  border-left: 0.25rem solid var(--clatech-secondary);
}
.job-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  background-color: var(--clatech-secondary);
  color: var(--clatech-primary);
  height: 4rem;
  width: 4rem;
  font-size: 2rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-border-clatech {
  border-left: 0.25rem solid var(--clatech-secondary);
}

/* Navbar with secondary color bottom border */
.navbar-border-bottom {
  border-bottom: 4px solid var(--clatech-secondary);
}

/* Footer with secondary color top border */
.footer-border-top {
  border-top: 4px solid var(--clatech-secondary);
}

/* Navbar logo styling */
.navbar-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease-in-out;
}

/* Sticky Navbar Styles */
.navbar {
  transition: all 0.3s ease-in-out;
  padding: 1rem 0;
}

.navbar.sticky-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-scrolled {
  padding: 0.5rem 0;
}

.navbar.navbar-scrolled .navbar-logo {
  height: 30px;
}

/* Add padding to body to prevent content from being hidden under sticky navbar */
body.sticky-navbar-active {
  padding-top: 80px; /* Adjust based on your navbar height */
}

/* Image dimension classes */
.board-member-img {
  height: 150px;
}

.testimonial-author-img {
  height: 40px;
}

/* Align navbar items to the right in mobile view */
@media (max-width: 991.98px) {
  .navbar-collapse .navbar-nav {
    text-align: right;
  }
  
  .navbar-collapse .nav-item {
    padding-right: 1rem;
  }
  
  .navbar-collapse .nav-link {
    display: inline-block;
    padding-right: 0;
  }
}