.modules-hero{
.modules-hero{
    padding-top:70px;
    padding-bottom:100px;
}
background:
radial-gradient(circle at right,
rgba(0,180,255,.12),
transparent 35%),
linear-gradient(
180deg,
#071321,
#091a2e);
}
.modules-hero-grid{
display:grid;
grid-template-columns:1fr 680px;
gap:60px;
align-items:center;
}
.modules-hero h1{
font-size:64px;
line-height:1.05;
font-weight:800;
color:white;
margin:30px 0;
}
.modules-hero h1 span{
color:#3fb8ff;
display:block;
}
.modules-hero p{
font-size:20px;
line-height:1.8;
color:#b4c3d8;
margin-bottom:40px;
max-width:650px;
}
.modules-preview{

display:flex;

justify-content:flex-end;

align-items:flex-start;

padding-top:25px;

height:auto;

background:none;

border:none;

border-radius:0;

backdrop-filter:none;

}
/*================ MODULE CARDS ================*/
.all-modules{
padding:120px 0;
background:#081321;
}
.all-modules h2{
text-align:center;
font-size:52px;
font-weight:800;
margin-bottom:70px;
color:#fff;
}
.modules-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:70px;
padding-top:20px;
justify-items:center;
}
.modules-card{
width:100%;
padding:35px;
min-height:340px;
display:flex;
flex-direction:column;
justify-content:space-between;
border-radius:24px;
background:linear-gradient(145deg,#142945,#0b1d31);
border:1px solid rgba(255,255,255,.08);
transition:.35s;
box-shadow:0 20px 60px rgba(0,0,0,.30);
}
.modules-card:hover{
transform:translateY(-10px);
border-color:#2ca9ff;
box-shadow:0 25px 60px rgba(0,140,255,.20);
}
.modules-card i{
font-size:42px;
color:#33b3ff;
margin-bottom:25px;
}
.modules-card h3{
font-size:24px;
margin-bottom:15px;
color:white;
}
.modules-card p{
color:#a8bdd6;
line-height:1.7;
margin-bottom:25px;
}
.modules-card a{
text-decoration:none;
color:#37b3ff;
font-weight:700;
}
@media(max-width:1200px){
.modules-grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:768px){
.modules-grid{
grid-template-columns:1fr;
}
.all-modules h2{
font-size:36px;
}
}

.modules-title span{

color:#18b4ff;

animation:logoGlow 3s ease-in-out infinite;

}

@keyframes logoGlow{

0%,100%{

text-shadow:
0 0 8px rgba(24,180,255,.45),
0 0 18px rgba(24,180,255,.25);

}

50%{

text-shadow:
0 0 12px rgba(24,180,255,.75),
0 0 28px rgba(24,180,255,.55),
0 0 45px rgba(24,180,255,.35);

}

}

/==================================================
ERP DASHBOARD
==================================================/
.erp-dashboard{

width:100%;
max-width:680px;

background:rgba(12,22,40,.95);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

overflow:hidden;

box-shadow:0 35px 80px rgba(0,0,0,.45);

margin-top:40px;

}
.erp-dashboard:hover{
transform:translateY(-8px);
box-shadow:0 45px 90px rgba(0,120,255,.18);
}
.dashboard-top{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 25px;
background:rgba(255,255,255,.04);
border-bottom:1px solid rgba(255,255,255,.06);
}
.dashboard-top strong{
color:white;
font-size:18px;
font-weight:700;
}
.dots{
display:flex;
gap:8px;
}
.dots span{
width:11px;
height:11px;
border-radius:50%;
background:#ffffff55;
}
.kpi-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
padding:25px;
}
.kpi-card{
background:linear-gradient(145deg,#142947,#0b1c32);
padding:22px;
border-radius:18px;
border:1px solid rgba(255,255,255,.06);
transition:.35s;
}
.kpi-card:hover{
transform:translateY(-5px);
border-color:#2cb8ff;
}
.kpi-card small{
display:block;
color:#94b4d8;
margin-bottom:10px;
font-size:13px;
}
.kpi-card h3{
color:#38b6ff;
font-size:34px;
font-weight:800;
}
.progress-area{
padding:0 25px 25px;
}
.progress-area h4{
color:white;
font-size:15px;
margin:18px 0 10px;
}
.progress{
height:10px;
border-radius:50px;
background:#10243d;
overflow:hidden;
}
.bar{
height:100%;
border-radius:50px;
background:linear-gradient(90deg,#00b4ff,#2e7cff);
}
.recent-orders{
padding:25px;
border-top:1px solid rgba(255,255,255,.06);
}
.recent-orders h4{
color:white;
margin-bottom:18px;
}
.order{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.05);
color:#c6d5e7;
}
.order:last-child{
border:none;
}
.order label{
padding:6px 12px;
border-radius:50px;
font-size:12px;
font-weight:700;
color:white;
}
.green{
background:#1db954;
}
.orange{
background:#ff9800;
}
.blue{
background:#1677ff;
}
.modules-title .modules-one{

    font-weight:900;

    background:linear-gradient(
        180deg,
        #87ecff 0%,
        #3dd4ff 30%,
        #0b9bff 60%,
        #0053d6 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    animation:oneGlow 3s ease-in-out infinite;

}