body {
    font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bg-light-blue {
    background-color: #97bdfe;
}

nav.navbar {
    border-bottom: 1px solid #000;
}

.bubble {
    border-radius: 25px;
    padding: 8px 20px;
    display: inline-block;
    margin: 0 5px;
    font-weight: bold;
}

.bubble-pink {
    background-color: #ffb6a3;
}

.bubble-white {
    background-color: white;
}

.bubble-purple {
    background-color: #d9b6ff;
}

.btn-yellow,
.btn-repair {
    background-color: #E1FB62;
    color: #000;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    border: 1px solid #000;
    box-shadow: 2px 3px 0px 2px rgba(0, 0, 0);
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-yellow:hover,
.btn:focus-visible,
.btn-repair:hover {
    background-color: #fdd835;
    color: #000;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    border: 1px solid #000;
    box-shadow: 2px 3px 0px 2px rgba(0, 0, 0);
    transition: all 0.3s ease;
    font-size: 14px;
}

.partner-logo {
    /* max-height: 40px; */
    max-width: 100%;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.service-card {
    margin-bottom: 30px;
}

.service-image {
    max-width: 100%;
    height: auto;
    width: 400px;
    box-shadow: 6px -6px 0px 2px rgba(0, 0, 0);
}

.stars {
    color: gold;
}

.case-study-card {
    background-color: #ffcdb2;
    border-radius: 10px;
    padding: 30px 20px 50px 20px;
    height: 100%;
    margin: 10px;
    min-height: 595px;
}
.case-study-card h4 {
    color: #2743CB;
    font-size: 22px;
    margin-bottom: 25px;
}
.case-study-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.testimonial-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer {
    background-color: #a7c7f7;
    padding: 50px 0 10px 0;
    border-top: 1px solid #000;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc !important;
}

.owl-dot.active {
    background: #333 !important;
}

.modal-content {
    background-color: #F8F5F5;
    font-size: 14px;
}

.brands-carousel.owl-carousel .owl-item img {
    width: auto;
}
.brands-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.testimonial-card  h5 {
    margin-bottom: 20px;
}
.contact-info-card {
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.contact-icon {
    font-size: 2.5rem;
    color: #ffeb3b;
    margin-bottom: 15px;
}
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}
.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    bottom: 10px;
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}
.whatsapp-sticky:hover .whatsapp-tooltip {
    opacity: 1;
}
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}