cc-window {
    background-color: #2c3e50 !important;
    color: #fff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.cc-btn {
    background-color: #0088cc !important;
    border-radius: 3px !important;
    padding: 0.8em 1.8em !important;
    transition: background-color 0.3s ease !important;
    text-transform: uppercase;
    font-weight: 600 !important;
}

.cc-btn:hover {
    background-color: #006699 !important;
    text-decoration: none !important;
}

.cc-message {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.cc-link {
    color: #0088cc !important;
    text-decoration: none !important;
    opacity: 1 !important;
    font-weight: 600;
}

.cc-link:hover {
    color: #006699 !important;
    text-decoration: underline !important;
}
.custom-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover .custom-project-overlay {
    opacity: 1;
}

.custom-project-overlay-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-project-overlay-icon i {
    font-size: 20px;
}

.card-img-top {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-img-top img {
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover .card-img-top img {
    transform: scale(1.1);
}

/* Adjust navigation arrows position */
.owl-carousel.nav-outside .owl-nav {
    margin-top: 20px;
}

.owl-carousel.nav-outside .owl-nav .owl-prev {
    left: -60px;
}

.owl-carousel.nav-outside .owl-nav .owl-next {
    right: -60px;
}


.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    transition: bottom 0.3s ease;
}

.whatsapp-widget.scrolled {
    bottom: 80px;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #22c15e;
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    display: none;
}

.chat-popup .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-popup .card-header {
    background-color: #25d366 !important;
}

.chat-popup .btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.chat-popup .btn-success:hover {
    background-color: #22c15e;
    border-color: #22c15e;
}

@media (max-width: 576px) {
    .chat-popup {
        width: 280px;
    }
    
    .whatsapp-button i {
        position: relative;
        top: 1px;
    }
}.usps-section {
    background-color: #fff;
    padding: 20px 0;
}

.usp-item {
    font-size: 16px;
}

.usp-item i {
    color: #0088CC; /* Primary blue color */
    font-size: 18px;
    width: 24px;
}