.clients-industries{
padding:60px 60px;
text-align:center;
}

.industry-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.industry-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.industry-card:hover{
transform:translateY(-5px);
}

.industry-card i{
font-size:30px;
color:#2f80ed;
margin-bottom:10px;
}


/* CLIENT LOGOS */

.client-logos{
padding:60px 60px;
background:#f7f9fc;
text-align:center;
}

.logo-slider{
overflow:hidden;
margin-top:40px;
}

.logo-track{
display:flex;
gap:80px;
animation:scroll 25s linear infinite;
}

.logo-track img{
height:50px;
opacity:.7;
}

@keyframes scroll{

0%{transform:translateX(0);}
100%{transform:translateX(-50%);}

}

.cta button{
padding:14px 32px;
background:linear-gradient(135deg,#2f80ed,#1e5bd7);
border:none;
border-radius:8px;
color:white;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:all .3s ease;
box-shadow:0 6px 18px rgba(47,128,237,.35);
}

.cta button:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(47,128,237,.45);
}


@media(max-width:768px){

.cta button{
width:100%;
max-width:260px;
}

}


/* CLIENT IMPACT */

.client-impact{
padding:60px 60px;
text-align:center;
}

.impact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.impact-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}


/* TESTIMONIALS */

.testimonials{
padding:60px 60px;
background:#f7f9fc;
text-align:center;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.testimonial-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.hero{
padding:50px 20px;
color:white;
text-align:center;
}


/* RESPONSIVE */

@media(max-width:900px){

.industry-grid,
.impact-grid,
.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.industry-grid,
.impact-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

}

body.dark-mode .testimonial-card,
body.dark-mode .impact-card,
body.dark-mode .industry-card{
    background:#12163a ;
border:1px solid #1f2937;
color:#e5e7eb;

box-shadow:
0 10px 30px rgba(0,0,0,0.4);
}

body.dark-mode .testimonials{
background:#0b132b;
color:#e5e7eb;
}


body.dark-mode .client-logos{
   background: linear-gradient(135deg, #020617, #1e293b);
}