/*==================================================
                CLIENTS SECTION
==================================================*/

.clients{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    font-size:46px;
    font-weight:700;
    color:#222;
    margin-bottom:70px;
}

.client-block{
    width:90%;
    max-width:1300px;
    margin:0 auto 90px;
}

.client-subtitle{
    position:relative;
    font-size:28px;
    font-weight:600;
    color:#222;
    margin-bottom:35px;
    padding-left:18px;
}

.client-subtitle::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:5px;
    height:85%;
    background:#2563eb;
    border-radius:20px;
}

/*==================================================
                AUTOMOTIVE
==================================================*/

.automotive-slider{
    overflow:hidden;
}

.automotive-track{
    display:flex;
    gap:20px;
    transition:.5s;
}

.automotive .client{
    min-width:220px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:25px 18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.35s;
    cursor:pointer;
}

.automotive .client:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
    border-color:#2563eb;
}

.automotive .client img{
    width:150px;
    height:120px;
    object-fit:contain;
    margin:0 auto 15px;
    display:block;
    filter:grayscale(100%);
    transition:.35s;
}

.automotive .client:hover img{
    filter:none;
    transform:scale(1.08);
}

.automotive .client p{
    font-size:16px;
    font-weight:600;
    color:#444;
}

.client-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}

.client-dots span{
    width:10px;
    height:10px;
    background:#ccc;
    border-radius:50%;
}

.client-dots span.active{
    background:#2563eb;
    transform:scale(1.3);
}

/*==================================================
                TECHNOLOGY
==================================================*/

.technology-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
    margin-top:30px;
}

.technology .client{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:25px 18px;
    text-align:center;
    transition:.35s;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.technology .client:hover{
    transform:translateY(-8px);
    border-color:#2563eb;
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.technology .client img{
    width:140px;
    height:100px;
    object-fit:contain;
    display:block;
    margin:0 auto 15px;
    transition:.35s;
}

.technology .client:hover img{
    transform:scale(1.08);
}

.technology .client p{
    font-size:16px;
    font-weight:600;
    color:#444;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1200px){

.technology-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.section-title{
    font-size:38px;
}

.technology-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.clients{
    padding:80px 0;
}

.section-title{
    font-size:32px;
}

.client-subtitle{
    font-size:24px;
}

.automotive .client{
    min-width:180px;
}

.automotive .client img{
    width:120px;
    height:90px;
}

.technology .client img{
    width:120px;
    height:90px;
}

}

@media(max-width:576px){

.technology-grid{
    grid-template-columns:1fr;
}

.automotive .client{
    min-width:160px;
}

.automotive .client img{
    width:100px;
}

.technology .client img{
    width:100px;
}

.client p{
    font-size:15px;
}

}
/*==================================================
                PAGE BANNER
==================================================*/

.page-banner{
    position: relative;
    background: linear-gradient(135deg,#2563eb,#4f8df7);
    color:#fff;
    text-align:center;
    padding:180px 20px 100px;
    overflow:hidden;
}

.page-banner::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-220px;
    right:-150px;
}

.page-banner::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-160px;
    left:-120px;
}

.page-banner .container{
    max-width:900px;
    margin:auto;
    position:relative;
    z-index:2;
}

.page-banner span{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
}

.page-banner h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:20px;
}

.page-banner p{
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:auto;
}

@media(max-width:768px){

.page-banner{
    padding:150px 20px 80px;
}

.page-banner h1{
    font-size:38px;
}

.page-banner p{
    font-size:16px;
}

}