.about-hero{
    position: relative;
    height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

/* VIDEO */
.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY */
.about-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(104, 46, 2, 0.5);
    z-index: -1;
}

/* CURVE */
.about-hero::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 100% 100% 0 0;
    transform: scaleX(1.1);
    z-index: 1;
}

/* CONTENT */
.about-contents{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.about-contents h4{
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-contents h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.about-contents-p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
 

 @media (max-width: 1100px){
    .about-contents h1{
        font-size: 48px;
    }

    .about-contents h4{
        font-size: 18px;
    }

    .about-contents-p{
        font-size: 16px;
    }
}
@media (max-width: 800px){

    .about-hero{
        height: 85vh;
    }

    .about-contents h1{
        font-size: 37px;
    }

    .about-contents h4{
        font-size: 17px;
    }

    .about-contents-p{
        font-size: 16px;
        line-height: 1.6;
    }

    .btn{
        padding: 12px 28px;
        font-size: 14px;
    }
}
@media (max-width: 480px){

    .about-hero{
        height: 80vh;
    }

    .about-contents h1{
        font-size: 35px;
    }

    .about-contents h4{
        font-size: 17px;
        letter-spacing: 1px;
    }

    .about-contents-p{
        font-size: 16px;
        line-height: 1.5;
    }

	.about-hero::after {  transform: scaleX(1.4);}
}

/* ------------------------------------logo code----------------------------- */
.clients-section{
    padding:10px 8%;
    background:#fff;
}

.client-section-title{
    text-align:center;
    margin-bottom:40px;
}

.client-section-title h2{
    font-size:42px;
    margin-bottom:10px;
    font-weight:550;
}

.filter-buttons{
    text-align:center;
    margin-bottom:50px;
}

.filter-btn{
    padding:12px 25px;
    margin:5px;
    border:none;
    background:#fff;
    border:2px solid #fd790d;
    color:#fd790d;
    cursor:pointer;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
}

.filter-btn:hover,
.filter-btn.active{
    background:#fd790d;
    color:#fff;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.client-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.client-card:hover{
    transform:translateY(-8px);
}

.client-card img{
    width:120px;
    height:80px;
    object-fit:contain;
    margin-bottom:15px;
}

.client-card h4{
    font-size:15px;
}

@media (max-width:1024px){

    .clients-section{
        padding:80px 6%;
    }

    .client-section-title h2{
        font-size:36px;
    }

    .clients-grid{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .client-card{
        padding:20px;
    }
}

@media (max-width:768px){

    .clients-section{
        padding:70px 5%;
    }

    .client-section-title h2{
        font-size:30px;
    }

    .filter-buttons{
        margin-bottom:30px;
    }

    .filter-btn{
        padding:10px 18px;
        font-size:14px;
    }

    .clients-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .client-card img{
        width:100px;
        height:70px;
    }
}

@media (max-width:480px){

    .clients-section{
        padding:60px 15px;
    }

    .client-section-title h2{
        font-size:29px;
    }

    .filter-buttons{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .filter-btn{
        padding:8px 14px;
        font-size:16px;
    }

    .clients-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .client-card{
        padding:18px;
    }

    .client-card img{
        width:90px;
        height:60px;
    }

    .client-card h4{
        font-size:16px;
    }
}