/** ADD YOUR AWESOME CODES HERE **/

.about-us {
    display: flex;
}

#prevSlide,
#nextSlide {
    /* create border */
    border: 1px solid #088f9a;
    /* create border radius */
    border-radius: 50%;
}

.promo-banner {
    margin-bottom: 20px;
    text-align: center;
}

.promo-text {
    background-color: #ffaa00;
    color: black;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 18px;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
}

/* Media queries for different screen sizes */
@media (max-width: 576px) {
    .promo-text {
        font-size: 16px;
        padding: 6px 12px;
        border-radius: 20px;
    }
}

@media (max-width: 360px) {
    .promo-text {
        font-size: 14px;
        padding: 5px 10px;
    }
}

.best-deals {
    margin-top: 30px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Service Title */
.service-title-custom {
    background-color: #088f9a;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 50px;
    color: #f0f0f0;
}

/* Image Button */
.img-button {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-button:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Checkout Counter */
.checkout-counter {
    margin: 15px 0;
    font-size: 16px;
}

/* Action Buttons Container */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

/* Button Styling */
.btn-cust {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    min-width: 150px;
    transition: all 0.3s ease;
}

/* Consultation Button */
.consultation-btn {
    background-color: #088f9a;
    color: #f0f0f0;
}

/* Order Button */
.order-btn {
    background-color: #ffaa00;
    color: #121212;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .best-deals {
        width: 100%;
        margin: 0 auto;
    }

    .service-title {
        font-size: 16px;
        padding: 8px 12px;
    }

    .btn-cust {
        padding: 8px 16px;
        min-width: 130px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .best-deals {
        width: 100%;
        margin: 0 auto;
    }

    .service-widget {
        padding: 15px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cust {
        width: 100%;
        max-width: 200px;
    }
}

/* Full width slider styles that respect your existing design */
.section.wb.nopadtop {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

swiper-container {
    width: 100%;
    height: 100%;
    /* Match your existing height */
}

swiper-slide {
    position: relative;
    overflow: hidden;
}

swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text overlay that matches your teal banner */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #088f9a;
    /* Your teal color */
    color: white;
    padding: 15px 20px;
    text-align: left;
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.slide-content p {
    font-size: 16px;
    margin: 0;
}

/* Navigation buttons that match your existing style */
.swiper-nav {
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 10;
    display: flex;
}

.swiper-nav button {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    margin: 0 2px;
}