    /*
     Theme Name:     Ostech Child
     Theme URI:      https://yourwebsite.com/ostech-child/
     Description:    My custom child theme for Ostech
     Author:         Your Name
     Author URI:     https://yourwebsite.com
     Template:       ostech  /* This MUST match the parent theme's folder name */
     Version:        1.0.0
     License:        GNU General Public License v2 or later
     License URI:    http://www.gnu.org/licenses/gpl-2.0.html
     Text Domain:    ostech-child
    */

    /* --- Your custom CSS starts here --- */

    /* Disable grayscale and hover effect for logo slider */
    .brand-one__single img {
        filter: grayscale(0%) !important; /* Forces original colors/darker gray */
        opacity: 1 !important;           /* Forces full visibility */
        transition: none !important;     /* Removes any hover transition */
    }

    /* Ensure no changes on hover */
    .brand-one__single img:hover {
        filter: grayscale(0%) !important; /* Keep original colors on hover */
        opacity: 1 !important;           /* Keep full visibility on hover */
    }
    
    /* Disable grayscale and hover effect for logo slider (Updated Selector) */
.client-carousel-one .client-carousel__one__item img {
    filter: grayscale(0%) !important; /* Forces original colors/darker gray */
    opacity: 1 !important;           /* Forces full visibility */
    transition: none !important;     /* Removes any hover transition */
}

/* Ensure no changes on hover for the updated selector */
.client-carousel-one .client-carousel__one__item img:hover {
    filter: grayscale(0%) !important; /* Keep original colors on hover */
    opacity: 1 !important;           /* Keep full visibility on hover */
}