.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height>.single-item {
    display: flex;
    flex-direction: column;
}

.equal-height .item {
    flex: 1;
    /*padding: 30px 20px;*/
    border: 1px solid #00d1d5;
    border-radius: 10px;
    background: #f9fdfd;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height>.single-item {
    display: flex;
    flex-direction: column;
}

.equal-height .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    /*padding: 20px;*/
}

.equal-height .item .thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.equal-height .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.address-correct {
    display: flex;
    gap: 5px;
    align-items: Start;
}

/* responsive image heights and background settings */
.services-single .thumb {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* keep product centered & not cropped */
    width: 100%;
    /* default mobile height (small devices) */
    height: 180px;
}

/* spacing & layout tweaks for the service item container */
.services-single {
    padding: 0.75rem 0.5rem;
    /* small-device padding (keeps it compact) */
}

/* content column padding */
.services-single .info {
    padding: 0.5rem;
}

/* Medium and up: add more padding (x and y) as requested */
@media (min-width: 768px) {
    .services-single {
        padding: 2rem 2.5rem;
        /* y-axis 2rem, x-axis 2.5rem */
    }

    .services-single .info {
        padding: 1.25rem 1.5rem;
    }

    /* larger left thumb on md */
    .services-single .thumb {
        height: 260px;
    }
}

/* Large and up: slightly larger image and spacing */
@media (min-width: 992px) {
    .services-single {
        padding: 2.5rem 3rem;
        /* increase spacing on larger screens */
    }

    .services-single .info {
        padding: 1.5rem 2rem;
    }

    .services-single .thumb {
        height: 320px;
    }
}

/* Optional: ensure the short description paragraph doesn't overflow layout */
.services-single .info p {
    margin-bottom: 1rem;
}

/* Owl Carousel Nav Styling */
.services-one-item-carousel .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10; /* Ensure above other elements */
}

.services-one-item-carousel .owl-nav button {
    background-color: #00a4e9;
    border: none;
    color: white;
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 20;
    transition: 0.3s;
}

/* Fix pointer issue — remove pointer-events: none */
.services-one-item-carousel .owl-nav button:hover {
    background-color: #0085c7;
}

.services-one-item-carousel .owl-nav button i {
    pointer-events: none; /* only icon ignores clicks, not button */
}
