.hero{
padding:100px 0;
background:linear-gradient(135deg,#f8fbff,#edf5ff);
}

.hero-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero-content h1{
font-size:55px;
font-weight:700;
color:#002b5c;
margin:20px 0;
}

.hero-content p{
font-size:18px;
line-height:1.8;
color:#555;
}

.hero-badge{
background:#e8f2ff;
padding:10px 20px;
border-radius:50px;
font-size:14px;
font-weight:600;
color:#0056b3;
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:15px;
}

.btn-primary{
background:#0056b3;
color:#fff;
padding:14px 30px;
border-radius:8px;
font-weight:600;
}

.btn-secondary{
border:2px solid #0056b3;
color:#0056b3;
padding:12px 30px;
border-radius:8px;
font-weight:600;
}

section{
padding:80px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#002b5c;
}

.category-grid,
.why-grid,
.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.category-card,
.why-card,
.testimonial-card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.step-box{
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.stats .container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
background:#0056b3;
color:#fff;
padding:40px;
border-radius:15px;
text-align:center;
}

.cta{
background:#003366;
color:#fff;
text-align:center;
}

@media(max-width:768px){

.hero-wrapper{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:36px;
}

.steps{
grid-template-columns:1fr;
}

.stats .container{
grid-template-columns:1fr 1fr;
}

.hero-buttons{
flex-direction:column;
}

}

/* Trust Section premium*/
/* ===============================
   TRUST SECTION
================================ */

.trust-section{
    background:#ffffff;
    padding:90px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.trust-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
    border:1px solid #edf2f7;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.trust-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #003366,
        #0056b3,
        #1e88e5
    );
}

.trust-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,86,179,.15);
}

.trust-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;

    background:linear-gradient(
        135deg,
        #003366,
        #0056b3
    );

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:34px;
}

.trust-card h3{
    font-size:24px;
    color:#003366;
    margin-bottom:15px;
    font-weight:700;
}

.trust-card p{
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* Premium Trust Section Ends */


.trust-badge{
    display:inline-block;
    background:#eaf3ff;
    color:#0056b3;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* Premium Catagoty Cards starts */
/* ==================================
   PREMIUM COMPLAINT CATEGORIES
================================== */

.categories{
    background:#f8fbff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.category-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    overflow:hidden;
    border:1px solid #edf2f7;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.4s;
}

.category-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
    90deg,
    #003366,
    #0056b3,
    #1e88e5
    );
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,86,179,.15);
}

.category-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
    135deg,
    #003366,
    #0056b3
    );

    color:#fff;
    font-size:34px;
}

.category-card h3{
    font-size:24px;
    color:#003366;
    margin-bottom:15px;
}

.category-card p{
    color:#6b7280;
    line-height:1.8;
}