.supported-brands {
    margin: 40px 0 30px;
    text-align: center;
}

.supported-brands h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 10px;
}

.supported-brands p {
    font-size: 16px;
    color: #6b7280;
    max-width: 650px;
    margin: 0 auto;
}

/* Brand Cards Container */
.cards-brads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-top: 40px;
    align-items: center;
}

/* Individual Brand Card */
.card-imgs {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-imgs img {
    max-width: 100%;
    /* max-height: 55px; */
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.card-imgs:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card-imgs:hover img {
    filter: grayscale(100%);
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .supported-brands h3 {
        font-size: 24px;
    }

    .cards-brads {
        gap: 18px;
    }

    .card-imgs {
        height: 100px;
        padding: 20px;
    }

    .card-imgs img {
        max-height: 45px;
    }
}

.support__brands h2{
    text-align: center;
    font-weight: 600;
    font-size: 30px;
}
.support__brands .btns__action{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}
.support__brands .btns__action button{
    text-transform: uppercase;
}
.support__brands .custom-btn {
    border: none;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.support__brands .custom-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #0a1f44;
    transition: width 0.3s ease;
}

.support__brands .custom-btn:hover::after {
    width: 100%;
}

.gallery-section .card__brand {
    text-align: center;
    /* background: #fff; */
    padding: 20px;
    border-radius: 10px;
    /* opacity: 0;
    transition: translateY(40px) scale; */
}

.card__brand:hover {
    transform: translateY(-5px);
}

.card__img img {
    width: 100%;
    height: 260px;              
    object-fit: cover;
}

.card__title {
    margin-top: 15px;
}

.card__title h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1f44;
}
.gallery-section {
    display: none;
}
.gallery-section.active{
    display: flex;
}


/* .support__brands .custom-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0%;
    background-color: #0a1f44;
    transition: height 0.3s ease;
}

.support__brands .custom-btn:hover::after {
    height: 100%;
} */


/* .support__brands .custom-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #0a1f44;
    transition: width 0.3s ease;
}

.support__brands .custom-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0%;
    background-color: #0a1f44;
    transition: height 0.3s ease;
}

.support__brands .custom-btn:hover::after {
    width: 100%;
}

.support__brands .custom-btn:hover::before {
    height: 100%;
} */


/* .gallery-section {
    margin-top: 40px;
} */


/* Items */

