/* Logo styles */
.logo-standard {
    height: 70px;
    width: auto;
}

/* Image sizing */
.image-150 {
    height: 150px;
    width: auto;
}

/* Background image patterns */
.bg-pattern-1 {
    background-image: url('../images/background/pattern-1.png');
}

.bg-pattern-3 {
    background-image: url('../images/background/pattern-3.png');
}

.bg-pattern-4 {
    background-image: url('../images/background/pattern-4.png');
}

.bg-pattern-7 {
    background-image: url('../images/background/pattern-7.png');
}

.bg-branded {
    background-image: url('../images/background/18.jpg');
}

.bg-testimonials {
    background-image: url('../images/Tozike-17.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Mobile-specific fix for testimonials background */
@media (max-width: 767px) {
    .testimonial-section {
        min-height: 400px;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        background-size: cover !important;
        background-position: center 30% !important;
    }
}

/* Gallery functionality */
#hidden-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

#hidden-gallery .image {
    flex: 0 0 calc(25% - 11.25px);
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    #hidden-gallery .image {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 767px) {
    #hidden-gallery .image {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 480px) {
    #hidden-gallery .image {
        flex: 0 0 100%;
    }
}
