.header-top::after {
    display: none
}
.header-top::before {
    display: none
}
.header-top-list .far {
    color: #fff;
}

.floating-icon {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 50px;
    font-size: 35px;
    color: white;
    padding: 5px;
    border-radius: 50%;
    z-index: 9999;
    animation: ripple 1.5s infinite ease-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: bottom 0.3s ease;
}

.call-icon {
    left: 20px;
    background-color: #0d6efd; 
}
.whatsapp-icon {
    right: 20px;
    background-color: #25D366;
}
.call-icon:hover {
    color: #25D366; 
}
.whatsapp-icon:hover {
    color: #0d6efd; 
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.gallery-img img.loaded {
    opacity: 1;
}
.gallery-scroll {
    max-height: 600px; /* Adjust height as needed */
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
}

.gallery-scroll::-webkit-scrollbar {
    width: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #eee;
}
.service-sidebar .project {
    background: var(--theme-color);
}
.service-sidebar .project h4 {
    color: var(--color-white);
    margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  .table-responsive .table th,
  .table-responsive .table td {
    white-space: nowrap !important;
  }
}
.hide-mobile {
  display: none;
}
@media (min-width: 576px) {
  .hide-mobile {
    display: block !important;
  }
}
.sidebar-popup-contact li .icon {
    flex-shrink: 0;
}
@media (max-width: 991.98px) {
    .dropdown-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        margin-left: 15px;
        border: none;
        box-shadow: none;
    }
}
.service-details .content .list li{
    display: flex;
    align-items: flex-start;
}
.service-details .content .list i {
    min-width: 20px;
    text-align: center;
    margin-top: 4px;
}
.spec-box {
    padding: 12px;
    border: 1px solid #dfdfdf;
    background-color: #fbfbfb;
    border-radius: 5px;
}