
#gtechCarousel {
    padding: 60px 0;
    background: linear-gradient(135deg, #7599cf, #e4ecf7);
}

.carousel-item {
    min-height: 180px;
}

.gtech-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gtech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gtech-card img {
    max-height: 60px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.gtech-card:hover img {
    filter: grayscale(0%);
}

.carousel-indicators {
   bottom: 53px;
}

.carousel-indicators [data-bs-target] {
    background-color: #007bff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

@media (max-width: 576px) {
    #techCarousel {
        padding: 30px 0;
    }

    .carousel-item {
        min-height: 140px;
    }

    .gtech-card {
        padding: 12px;
    }

    .gtech-card img {
        max-height: 40px;
    }

    .gtech-card:hover {
        transform: none;
    }
}

@media (max-width: 991px) {
    .gtech-card img {
        max-height: 50px;
    }
}

@media (min-width: 1200px) {
    #techCarousel {
        padding: 80px 0;
    }

    .gtech-card img {
        max-height: 70px;
    }
}
