﻿#client-banner {
    width: 100%;
    background-image: url(/images/about-banner-img.jfif);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
}
                                                                     

    #client-banner .client-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        color: white;
    }

        #client-banner .client-wrapper h1 {
            color: white;
            font-size: 5vw;
        }

        #client-banner .client-wrapper .pervLink {
            border: 4px solid #f76c31;
            padding: 15px;
            font-weight: 600;
            letter-spacing: 1px;
        }

            #client-banner .client-wrapper .pervLink a {
                color: white;
                text-decoration: none;
            }

                #client-banner .client-wrapper .pervLink a:hover {
                    text-decoration: underline;
                }



.client-section {
    padding: 50px 20px;
}

    .client-section .swiper {
        width: 90%;
        max-width: 1200px;
         height: fit-content; 
        padding: 10px !important;
    }


        .client-section .swiper .swiper-slide {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: 0.3s ease-in-out;
        }


            .client-section .swiper .swiper-slide img {
                width: 100%;
                height: auto;
                border-radius: 10px;
                transition: transform 0.3s ease-in-out;
            }



            .client-section .swiper .swiper-slide::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #f84f08e6;
                transform: scale(0);
                transition: transform 0.3s ease-in-out;
                border-radius: 10px;
            }
                                                                                                                                                                                                                   
            .client-section .swiper .swiper-slide:hover::before {
                transform: scale(1);
            }

            .client-section .swiper .swiper-slide .hover-text {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0);
                color: white;
                font-size: 24px;
                font-weight: bold;
                transition: transform 0.3s ease-in-out;
                z-index: 2;
            }

            .client-section .swiper .swiper-slide:hover .hover-text {
                transform: translate(-50%, -50%) scale(1);
            }



    .client-section h1 {
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 33px;
        position: relative;
        width: fit-content;
        margin: auto;
        padding-bottom: 7px;
        margin-bottom: 40px;
    }

        .client-section h1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background-color: #f76c31;
        }






#client-con {
    width: 100%;
    padding: 30px;
}

    #client-con .client-con-wrapper {
        width: 90%;
        max-width: 1200px;
        padding: 30px;
        margin: auto;
    }

        #client-con .client-con-wrapper h1 {
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 33px;
            position: relative;
            width: fit-content;
            margin: auto;
            padding-bottom: 7px;
        }

            #client-con .client-con-wrapper h1::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80%;
                height: 1px;
                background-color: #f76c31;
            }

        #client-con .client-con-wrapper p {
            font-size: 15px;
            margin-top: 20px;
            color: #33333385;
            letter-spacing: 1px;
            line-height: 20px;
            font-weight: 550;
            text-align: center;
        }


.partnership {
    width: 100%;
    padding: 40px;
}

    .partnership p {
        font-size: 15px;
        margin-bottom: 20px;
        color: #33333385;
        letter-spacing: 1px;
        line-height: 25px;
        font-weight: 550;
    }

    .partnership .spn-1{
        margin-bottom: 20px;
        display: inline-block;
        font-weight: 600;
    }

    .partnership ul{
        list-style: none;
        margin-bottom: 30px;
    }

    .partnership h3{
        margin-bottom: 20px;
        letter-spacing: 1px;
        color: #333;
    }

    .partnership ul li {
        margin-bottom: 10px;
        font-weight: bold;
        color: #33333385;
    }

        .partnership ul li i {
            margin-right: 10px;
            color: black;
        }


        .customers {
            /* text-align: center; */
            padding: 40px;
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

    .customers h2 {
        font-size: 24px;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

        .customers h2::after {
            content: "";
            width: 100px;
            height: 1px;
            background-color: #ff6600;
            display: block;
            margin: 8px auto;
            position: absolute;
        }

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.customer {
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .customer:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .customer img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
    }
