.logo-white,
.logo-color {
    width: 182px;
}

.mobile-logo {
    width: 70%;
}

.text-dg-primary {
    color: #2e90ce !important
}

.dg-outline-btn:hover {
    background-color: #175cff;
    color: #fff;
    border-color: #175cff;
}

.hd-chat-box {
    background-color: #182051;
}

.achievement-circle {
    display: grid;
    place-content: center;
    padding: 1.5rem;
    aspect-ratio: 1 / 1;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
}

.achievement-circle__title {
    display: block;
    font-weight: 700;
    color: #010101;
}

.service-section {
    padding-inline: 16px;
    background-color: #e7f2ff;
    padding: 80px;
}

.sections__head {
    padding-bottom: 60px;
}
.service-card {
    padding: 40px 24px;
    height: 100%;
}
.abs-darkmode-contaier{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #182051, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 999999;
}
.abs-darkmode-contaier i{
    color: white;
    font-size: 24px !important;
}

/* ==== Bottom Nav (Mobile Only) ==== */
.abs-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  z-index: 9999;
  border-radius: 16px 16px 0 0;
}

.abs-nav-item, .abs-more-btn{
  text-decoration: none;
  color: #555;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.abs-nav-item i {
  font-size: 22px;
  margin-bottom: 2px;
}

.abs-nav-item:hover {
  color: #007bff;
}

/* Highlighted button for "Free Quote" */
.abs-quote-btn {
    background: #101827;
    color: #fff;
    padding: 22px 14px;
    border-radius: 50%;
    transform: translateY(-20px);
    box-shadow: 0 4px 10px rgb(16 24 39 / 40%);
}

/* Dropdown Styles */
.abs-dropdown {
  position: absolute;
  bottom: 50px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  width: 180px;
  display: none;
  flex-direction: column;
  animation: absDropdownSlide 0.25s ease;
}

.abs-dropdown a {
  text-decoration: none;
  color: #444;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.abs-dropdown a:hover {
  background: #f3f6ff;
  color: #007bff;
}

@keyframes absDropdownSlide {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Show Dropdown */
.abs-more.active .abs-dropdown {
  display: flex;
}

/* Mobile Only */
@media (min-width: 768px) {
  .abs-bottom-nav {
    display: none;
  }
}


/* Extra small devices (phones) */
@media (max-width: 600px) {
    .abs-darkmode-contaier{
        display: none;
    }
    #abs-chatbot-widget{
        display: none !important;
    }
    .footer-section{
        margin-bottom: 15%;
    }
}

/* Small devices (tablets) */
/* @media (min-width: 601px) and (max-width: 768px) {} */

/* Medium devices (desktops) */
/* @media (min-width: 769px) and (max-width: 1024px) {} */

/* Large devices (large desktops) */
/* @media (min-width: 1025px) {} */