/* ==========================================================
   AABKARI-MP.ONLINE
   Main Stylesheet
   ========================================================== */

/* =========================
   Google Font
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.7;
}

/* =========================
   Links
========================= */

a{
    text-decoration:none;
    transition:.3s;
}

a:hover{
    text-decoration:none;
}

/* =========================
   Top Bar
========================= */

.top-bar{
    background:#fff3cd;
    border-bottom:1px solid #ffe69c;
    font-size:14px;
}

.top-bar small{
    color:#664d03;
}

.official-link{
    color:#0d6efd;
    font-weight:600;
}

.official-link:hover{
    color:#084298;
}

/* =========================
   Navbar
========================= */

.navbar{
    background:#fff !important;
}

.navbar-brand{
    font-size:24px;
    font-weight:700;
    color:#0d6efd !important;
}

.navbar-nav .nav-link{
    color:#333;
    font-weight:500;
    margin-left:8px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0d6efd;
}

/* =========================
   Hero Section
========================= */

.hero{
    background:linear-gradient(135deg,#0d6efd,#0b5ed7);
    color:#fff;
    padding:80px 0;
}

.hero h1{
    font-size:42px;
    font-weight:700;
}

.hero p{
    font-size:18px;
    margin-top:15px;
}

.hero .btn{
    margin-top:20px;
    margin-right:10px;
}

/* =========================
   Search Box
========================= */

.search-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-top:-40px;
    position:relative;
    z-index:100;
}

/* =========================
   Cards
========================= */

.card{
    border:none;
    border-radius:12px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.card i{
    color:#0d6efd;
}

/* =========================
   Section
========================= */

.section-title{
    font-size:30px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:10px;
}

.section-subtitle{
    color:#666;
    margin-bottom:40px;
}

/* =========================
   Buttons
========================= */

.btn-primary{
    background:#0d6efd;
    border-color:#0d6efd;
}

.btn-primary:hover{
    background:#084298;
}

.btn-success{
    background:#198754;
    border-color:#198754;
}

.btn-warning{
    color:#fff;
}

/* =========================
   Table
========================= */

.table{
    background:#fff;
}

.table thead{
    background:#0d6efd;
    color:#fff;
}

.table th{
    font-weight:600;
}

/* =========================
   Notice Box
========================= */

.notice-box{
    background:#e7f1ff;
    border-left:5px solid #0d6efd;
    padding:20px;
    border-radius:8px;
}

/* =========================
   Disclaimer Box
========================= */

.disclaimer-box{
    background:#fff3cd;
    border-left:5px solid #ffc107;
    padding:25px;
    border-radius:8px;
}

/* =========================
   Footer
========================= */

.footer{
    background:#212529;
    color:#ddd;
}

.footer-top{
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-title{
    color:#fff;
    margin-bottom:20px;
    font-weight:600;
}

.footer-text{
    color:#bbb;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ccc;
}

.footer-links a:hover{
    color:#fff;
    padding-left:5px;
}

.footer-bottom{
    padding:18px 0;
    background:#1a1d20;
}

/* =========================
   Scroll Top
========================= */

.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:none;
    cursor:pointer;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.scroll-top:hover{
    background:#084298;
}

/* =========================
   Forms
========================= */

.form-control{
    border-radius:8px;
    min-height:48px;
}

.form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .15rem rgba(13,110,253,.25);
}

/* =========================
   Badges
========================= */

.badge{
    padding:8px 12px;
    font-size:13px;
}

/* =========================
   Utility
========================= */

.shadow-sm{
    box-shadow:0 .125rem .5rem rgba(0,0,0,.08)!important;
}

.rounded-10{
    border-radius:10px;
}

.py-60{
    padding:60px 0;
}

.py-80{
    padding:80px 0;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px){

.hero{
    padding:60px 0;
    text-align:center;
}

.hero h1{
    font-size:32px;
}

.search-box{
    margin-top:20px;
}

.navbar-nav{
    padding-top:15px;
}

}

@media(max-width:768px){

.section-title{
    font-size:24px;
}

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:16px;
}

.footer{
    text-align:center;
}

.footer-links{
    margin-bottom:25px;
}

}

@media(max-width:576px){

.hero{
    padding:45px 0;
}

.hero h1{
    font-size:24px;
}

.search-box{
    padding:20px;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

.table{
    font-size:14px;
}

}