/*==================================================
            PINAKA ISP COMPLAINT
==================================================*/

:root{

    --primary:#04162E;
    --secondary:#0B2344;
    --blue:#1A8DFF;
    --lightBlue:#46B5FF;
    --yellow:#FFD447;
    --green:#22C55E;
    --red:#EF4444;
    --orange:#F59E0B;
    --white:#ffffff;
    --text:#C6D5E7;
    --border:rgba(255,255,255,.08);

}

.complaint-hero{

    padding:150px 0 80px;

    background:
    linear-gradient(
    135deg,
    #04162E,
    #08264B,
    #04162E);

    position:relative;

    overflow:hidden;

}

.complaint-hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-150px;

    top:-150px;

    border-radius:50%;

    background:rgba(26,141,255,.12);

    filter:blur(100px);

}

.complaint-hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    right:-120px;

    bottom:-150px;

    border-radius:50%;

    background:rgba(70,181,255,.10);

    filter:blur(120px);

}

.hero-content{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(26,141,255,.12);

    border:1px solid rgba(26,141,255,.25);

    color:#7CC8FF;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:54px;

    color:#fff;

    margin-bottom:20px;

    font-weight:800;

}

.hero-content p{

    max-width:700px;

    color:#C6D5E7;

    font-size:18px;

    line-height:1.8;

}

.raise-btn{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 35px;

    background:#FFD447;

    color:#111;

    text-decoration:none;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.raise-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(255,212,71,.35);

}

/*==================================================
                SUMMARY
==================================================*/

.complaint-summary{

    padding:70px 0;

    background:#061D39;

}

.summary-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.summary-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.summary-card:hover{

    transform:translateY(-8px);

}

.summary-card i{

    font-size:42px;

    margin-bottom:20px;

}

.summary-card h2{

    font-size:42px;

    color:#fff;

    margin-bottom:10px;

}

.summary-card p{

    color:#C6D5E7;

}

.pending i{

    color:#F59E0B;

}

.assigned i{

    color:#1A8DFF;

}

.progress i{

    color:#A855F7;

}

.resolved i{

    color:#22C55E;

}

/*==================================================
            SECTION TITLE
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    color:#fff;

    font-size:40px;

    margin-bottom:15px;

}

.section-title p{

    color:#C6D5E7;

}

/*==================================================
            QUICK SERVICES
==================================================*/

.quick-services{

    padding:90px 0;

    background:#04162E;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    text-decoration:none;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#1A8DFF;

    box-shadow:0 25px 50px rgba(0,0,0,.30);

}

.service-card i{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:linear-gradient(135deg,#1A8DFF,#46B5FF);

    color:#fff;

    font-size:30px;

    margin-bottom:25px;

}

.service-card h3{

    color:#fff;

    margin-bottom:12px;

    font-size:24px;

}

.service-card p{

    color:#C6D5E7;

    line-height:1.7;

}

/*==================================================
            RECENT COMPLAINTS
==================================================*/

.recent-complaints{

    padding:90px 0;

    background:#061D39;

}

.table-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.table-card table{

    width:100%;

    border-collapse:collapse;

}

.table-card thead{

    background:#0B2344;

}

.table-card th{

    padding:22px;

    color:#ffffff;

    text-align:left;

    font-size:15px;

    font-weight:600;

}

.table-card td{

    padding:20px 22px;

    color:#C6D5E7;

    border-top:1px solid rgba(255,255,255,.06);

}

.table-card tbody tr{

    transition:.3s;

}

.table-card tbody tr:hover{

    background:rgba(255,255,255,.04);

}

.table-card td a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:10px;

    background:#1A8DFF;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.table-card td a:hover{

    background:#46B5FF;

}

/*==================================================
                STATUS BADGES
==================================================*/

.status{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

}

.status.pending{

    background:rgba(245,158,11,.18);

    color:#F59E0B;

}

.status.assigned{

    background:rgba(26,141,255,.18);

    color:#46B5FF;

}

.status.progress{

    background:rgba(168,85,247,.18);

    color:#C084FC;

}

.status.resolved{

    background:rgba(34,197,94,.18);

    color:#22C55E;

}

.status.closed{

    background:rgba(156,163,175,.18);

    color:#D1D5DB;

}

/*==================================================
            SUPPORT BANNER
==================================================*/

.support-banner{

    padding:90px 0;

    background:#04162E;

}

.support-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:50px;

    border-radius:30px;

    background:linear-gradient(135deg,#0B2344,#123763);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.30);

}

.support-card h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

.support-card p{

    color:#C6D5E7;

    font-size:18px;

}

.support-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.support-buttons a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:16px 30px;

    border-radius:14px;

    background:#FFD447;

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.support-buttons a:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(255,212,71,.30);

}

/*==================================================
                ANIMATION
==================================================*/

.summary-card,
.service-card,
.table-card,
.support-card{

    animation:fadeUp .6s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .summary-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .service-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:991px){

    .hero-content{

        flex-direction:column;

        text-align:center;

    }

    .support-card{

        flex-direction:column;

        text-align:center;

    }

}

@media(max-width:768px){

    .summary-grid{

        grid-template-columns:1fr;

    }

    .service-grid{

        grid-template-columns:1fr;

    }

    .table-card{

        overflow-x:auto;

    }

    .table-card table{

        min-width:700px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .section-title h2{

        font-size:30px;

    }

    .support-card{

        padding:30px;

    }

    .support-card h2{

        font-size:30px;

    }

    .support-buttons{

        width:100%;

        justify-content:center;

    }

}

@media(max-width:576px){

    .complaint-hero{

        padding:120px 0 60px;

    }

    .hero-content p{

        font-size:16px;

    }

    .summary-card{

        padding:25px;

    }

    .service-card{

        padding:25px;

    }

    .support-buttons{

        flex-direction:column;

    }

    .support-buttons a{

        width:100%;

        justify-content:center;

    }

}