body{
    background:#f5f8fc;
    font-family:'Segoe UI',sans-serif;
}

/* Navbar */

.custom-navbar{
    background:#fff;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    padding:10px 0;
}

.logo{
    width:60px;
}

.brand-text h2{
    margin:0;
    font-size:22px;
    font-weight:700;
    line-height:1.1;
}

.brand-text p{
    margin:0;
    font-size:12px;
    color:#666;
    white-space:nowrap;
}

.navbar-nav{
    gap:12px;
}

.nav-link{
    font-size:17px;
    font-weight:600;
    padding:8px 0 !important;
    white-space:nowrap;
}

@media (min-width:992px){

    .navbar-brand{
        flex:0 0 auto;
    }

    .navbar-collapse{
        justify-content:flex-end;
    }

    .navbar-nav{
        align-items:center;
    }
}

@media(max-width:991px){

    .logo{
        width:50px;
    }

    .brand-text h2{
        font-size:20px;
    }

    .brand-text p{
        font-size:11px;
        white-space:normal;
    }

    .navbar-collapse{
        margin-top:15px;
    }
}

.text-blue{
    color:#0d6efd;
}

.text-pink{
    color:#e91e63;
}

.nav-link{
    font-weight:600;
    margin-left:15px;
}

/* Top Header */

.top-header{

background:linear-gradient(135deg,#0d6efd,#6f42c1);

padding:60px 0;

color:#fff;

text-align:center;

}

/* Cards */

.portal-section{

padding:70px 0;

}

.portal-card{

background:#fff;

border-radius:18px;

padding:35px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.portal-card:hover{

transform:translateY(-8px);

}

.icon-box{

width:70px;

height:70px;

border-radius:15px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

}

.blue{

background:#0d6efd;

}

.green{

background:#198754;

}

.upload-btn{

margin-top:15px;

padding:10px 25px;

border-radius:30px;

font-weight:600;

}

/* Footer */

.footer{

background:#0d1b3d;

color:#fff;

padding:35px 0;

margin-top:80px;

}

.footer h5{

font-weight:700;

}

@media(max-width:768px){

.logo{

width:55px;

}

.brand-text h2{

font-size:20px;

}

.brand-text p{

font-size:11px;

}

.top-header{

padding:40px 20px;

}

}

/*=========================
Hero Section
==========================*/

/*=========================
Hero Section
==========================*/

.hero-section{

    background:linear-gradient(135deg,#0f4c81,#2563eb);

    min-height:360px;

    padding:35px 0;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

}

.hero-section::before{
    content:'';
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    position:absolute;
    top:-120px;
    right:-100px;
}

.hero-section::after{
    content:'';
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    position:absolute;
    left:-80px;
    bottom:-80px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.18);
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.hero-section h1{
    color:#fff;
    font-size:44px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-section h1 span{
    color:#FFD54F;
}

.hero-section p{
    color:#f5f5f5;
    font-size:16px;
    line-height:1.8;
    margin-bottom:22px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
}

.hero-buttons .btn-primary{
    background:#fff;
    color:#2958f5;
    border:none;
}

.hero-buttons .btn-outline-light:hover{
    color:#2958f5;
    background:#fff;
}

/*=========================
Right Card
==========================*/

.hero-card{
    background:#fff;
    border-radius:20px;
    padding:28px;
    max-width:400px;
    margin:auto;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.hero-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#1e3a8a,#2563eb);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    margin:auto auto 18px;
}

.hero-card h3{
    font-size:30px;
    font-weight:700;
    text-align:center;
    margin-bottom:10px;
}

.hero-card p{
    color:#666;
    font-size:14px;
    text-align:center;
    margin-bottom:20px;
}

.hero-stats{
    display:flex;
    justify-content:space-between;
    text-align:center;
}

.hero-stats h4{
    color:#2958f5;
    font-size:26px;
    font-weight:700;
    margin-bottom:3px;
}

.hero-stats span{
    font-size:13px;
    color:#777;
}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.hero-section{
    min-height:auto;
    padding:60px 0;
    text-align:center;
}

.hero-section h1{
    font-size:36px;
}

.hero-card{
    margin-top:35px;
}

.hero-stats{
    flex-direction:column;
    gap:15px;
}

}


/*=========================
Services
==========================*/

.services-section{

    padding:70px 0;
    background:#ffffff;

}

.service-card{

    background:#fff;
    border-radius:22px;
    text-align:center;
    padding:45px 35px;
    height:100%;
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-8px);

}

/* Upload */

.upload-card{

    border:1px solid #ffd1df;
    box-shadow:0 15px 35px rgba(233,30,99,.08);

}

.upload-card:hover{

    box-shadow:0 20px 45px rgba(233,30,99,.18);

}

/* Complaint */

.complaint-card{

    border:1px solid #cfe2ff;
    box-shadow:0 15px 35px rgba(13,110,253,.08);

}

.complaint-card:hover{

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

/* Icon */

.service-icon{

    width:90px;
    height:90px;
    margin:0 auto 25px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.service-icon img{

    width:52px;

}

/* Heading */

.service-card h2{

    font-size:38px;
    font-weight:700;
    margin-bottom:15px;

}

.upload-card h2{

    color:#e91e63;

}

.complaint-card h2{

    color:#0d47a1;

}

/* Text */

.service-card p{

    color:#666;
    line-height:1.9;
    font-size:16px;
    margin-bottom:28px;

}

/* Button */

.service-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    border-radius:40px;
    padding:14px 36px;
    font-weight:600;
    transition:.3s;

}

/* Pink */

.upload-btn{

    background:linear-gradient(90deg,#ff2d75,#e91e63);

}

.upload-btn:hover{

    color:#fff;
    transform:scale(1.04);

}

/* Blue */

.complaint-btn{

    background:linear-gradient(90deg,#3f6cc5,#2c57b0);
    cursor:default;
    pointer-events:none;

}

/* Mobile */

@media(max-width:768px){

.service-card{

padding:35px 25px;

}

.service-card h2{

font-size:28px;

}

.service-icon{

width:75px;
height:75px;

}

.service-icon img{

width:42px;

}

}







/*=========================
Footer
==========================*/

.main-footer{

    background:#0e0d00;
    color:#d6dbe6;
    padding:70px 0 25px;

}

.footer-logo{

    width:80px;
    margin-bottom:18px;

}

.footer-logo-box h3{

    color:#fff;
    font-weight:700;
    margin-bottom:15px;

}

.footer-text{

    color:#b8c1d1;
    line-height:1.9;
    font-size:15px;

}

.footer-title{

    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
    position:relative;

}

.footer-title::after{

    content:'';
    display:block;
    width:50px;
    height:3px;
    background:#2f56f4;
    margin-top:8px;
    border-radius:5px;

}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#c7d0df;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:#fff;
    padding-left:6px;

}

.footer-contact{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-contact li{

    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:#c7d0df;

}

.footer-contact i{

    color:#4f7cff;
    font-size:18px;
    margin-top:2px;

}

.footer-contact a{

    color:#c7d0df;
    text-decoration:none;

}

.footer-contact a:hover{

    color:#fff;

}

.footer-divider{

    border-color:rgba(255,255,255,.12);
    margin:40px 0 25px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;
    color:#b8c1d1;
    font-size:15px;

}

@media(max-width:768px){

.main-footer{

text-align:center;

}

.footer-title::after{

margin:10px auto 0;

}

.footer-contact li{

justify-content:center;

}

}

.main-footer{
    background:#0f172a;
    color:#fff;
    padding:60px 0 25px;
    margin-top:70px;
}

.footer-logo{
    width:70px;
}

.footer-title{
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.footer-text{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:12px;
}

.footer-links a,
.footer-contact a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#fff;
}

.footer-contact i{
    color:#0d6efd;
    margin-right:10px;
}

.main-footer hr{
    border-color:rgba(255,255,255,.15);
    margin:35px 0 20px;
}

@media(max-width:768px){

.main-footer{
    text-align:center;
}

.footer-contact i{
    margin-right:6px;
}

}


.custom-navbar{
    background:#fff;
    padding:12px 0;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

