﻿#teamBanner {
    background-color: #1a719c;
}

.gallery-carousel .gallery-item {
    height: 300px;
    position: relative;
    overflow: hidden;
}

    .gallery-carousel .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: block;
    pointer-events: none;
}

.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.gallery-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.gallery-carousel .owl-nav button.owl-next {
    right: 10px;
}

.owl-nav button span.arrow {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.overlay-content p {
    margin: 0;
    font-size: 14px;
}

.testimonial-carousel .testimonial-item {
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    text-align: center;
}

.testimonial-carousel .owl-nav button {
    margin: 0 5px;
    background: #1a719c !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.logo-carousel .logo-item img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-carousel .logo-item img:hover {
    opacity: 1;
}