body{
    background:#f5f5f5;
    font-family: Arial, sans-serif;
}
.footer-links {
    font-size: 14px;
    padding: 10px 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ffc107;
    text-decoration: underline;
}
.section-title{
    text-align:center;
    font-weight:700;
    font-size:28px;
    margin:20px 0;
    color:#1d2b36;
}
.cardbox {
    margin-bottom: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(89, 106, 255, 0.11);
    border-image: initial;
    background: rgb(235, 244, 255);
    padding: 12px;
    gap: 8px;
	height: -webkit-fill-available;
}
.scroll-top{
    position:fixed;
    bottom:20px;
    right:20px;
    width:55px;
    height:55px;
    background:#5568ff;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
@media (max-width:991px){
    .section-title{
        font-size:36px;
    }
    .cardbox h4{
        font-size:20px;
    }

    .cardbox p{
        font-size:16px;
    }
}
@media (max-width:576px){
    .section-title{
        font-size:28px;
    }
    .cardbox{
        padding:20px;
    }
}
     .hero{
            background: linear-gradient(135deg,#0d6efd,#198754);
            color:#fff;
            padding:80px 0;
        }
        .hero h1{
            font-size:48px;
            font-weight:bold;
        }
        .section-title{
            font-weight:bold;
            color:#0d6efd;
            margin-bottom:20px;
        }
        .card-box{
            border:none;
            box-shadow:0 0 10px rgba(0,0,0,0.1);
            transition:.3s;
        }
        .card-box:hover{
            transform:translateY(-5px);
        }
        .stat-card{
            background:#f8f9fa;
            border-radius:10px;
            padding:20px;
            text-align:center;
        }
        footer{
            background:#212529;
            color:#fff;
            padding:20px 0;
        }
		.navbar {
    background: linear-gradient(90deg, #198754, #5212d8);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.nav-link {
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffe082 !important;
    transform: translateY(-2px);
}

.btn-success {
    font-weight: 600;
}

.btn-outline-success {
    background: #fff;
    border-color: #fff;
    color: #198754;
    font-weight: 600;
}

.btn-outline-success:hover {
    background: #198754;
    color: #fff;
}