/* navbar srt */
.hero-header-section {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(199, 233, 255, 1) 100%
  );
}

.company-logo-img {
  max-height: 50px;
  width: auto;
}

.nav-links-list {
  gap: 1.5rem !important;
}

.nav-link-item {
  font-weight: 600 !important;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link-item:hover {
  color: var(--bs-primary) !important;
}

.nav-link-active {
  color: var(--bs-primary) !important;
}

.contact-cta-btn {
  transition: all 0.3s ease;
  font-weight: 600 !important;
}

.contact-cta-btn:hover {
  background-color: var(--bs-primary) !important;
  color: white !important;
  border-color: var(--bs-primary) !important;
}

.hamburger-menu-icon {
  height: 25px;
  width: auto;
}

.mobile-sidebar-menu {
  --bs-offcanvas-width: 320px;
}

.sidebar-header-section {
  border-bottom: 1px solid var(--bs-border-color-translucent);
}

.sidebar-brand-logo {
  max-height: 40px;
  width: auto;
}

.mobile-nav-item {
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-item:hover {
  color: var(--bs-primary) !important;
}

.mobile-nav-active {
  color: var(--bs-primary) !important;
}

.hero-main-image {
  max-width: 100%;
  height: auto;
}

.main-hero-title {
  font-size: calc(1.5rem + 2vw);
  line-height: 1.2;
}

.hero-title-highlight {
  color: var(--bs-primary) !important;
  text-decoration: underline !important;
}

.hero-description-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.get-started-btn {
  transition: all 0.3s ease;
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
}

.get-started-btn:hover {
  background-color: var(--bs-primary) !important;
  color: white !important;
  border-color: var(--bs-primary) !important;
  transform: translateY(-2px);
}

/* Sec 1 */

.expert-hero-section {
  background: linear-gradient(
    100deg,
    rgba(199, 233, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  height: 800px;
}

.expert-btn:hover {
  background-color: #0d6efd !important;
  color: #f9f9fc !important;
  border-color: transparent !important;
}

/* Sec 2 */

.unique-services-section .service-card {
  background-color: #f9f9fc;
  border-radius: 1rem;
  transition: box-shadow 0.2s;
}
.unique-services-section .service-card:hover {
  box-shadow: 0 4px 32px rgba(27, 106, 210, 0.09);
}
.unique-services-section img {
  max-width: 60px;
  height: auto;
  display: block;
}

/* Sec 3 */

.selected-projects-section {
  background-color: #f9f9fc;
}

.selected-projects-section .project-img {
  transition: box-shadow 0.2s;
}
.selected-projects-section .project-img:hover {
  box-shadow: 0 4px 24px rgba(27, 106, 210, 0.09);
}

/* Sec 4 */

.unique-carousel-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* Sec 5 */

.css-pagination-projects-section {
  background-color: #f9f9fc;
}

.projects-row > .col {
  display: none;
}

/* Footer */

.unique-footer-section {
  background-color: #fff;
  font-family: var(--bs-body-font-family);
}

.unique-footer-bottom-bar {
  height: 50px;
  background-color: #0f172a;
}

.unique-icon {
  width: 20px;
  height: 20px;
}

.unique-contact-list {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.unique-footer-heading {
  max-width: 400px;
}

.unique-footer-text {
  font-size: 1rem;
  color: #212529;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.hover-effect {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.hover-effect:hover,
.hover-effect:focus {
  background-color: #0a57ca77;
  box-shadow: 0 0 8px rgba(10, 88, 202, 0.6);
}
