/*
========================================
Global
========================================
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #222;
    line-height: 1.6;
}


/*
========================================
Container
========================================
*/

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/*
========================================
Navbar
========================================
*/

.navbar {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: #ffc107 !important;
}


/*
========================================
Buttons
========================================
*/

.btn-primary {
    border-radius: 10px;
    padding: 10px 22px;
}

.btn-warning {
    border-radius: 10px;
    padding: 10px 22px;
}


/*
========================================
Cards
========================================
*/

.card {
    border: none;
    border-radius: 15px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}


/*
========================================
Section Title
========================================
*/

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
    color: #0d6efd;
}


/*
========================================
Forms
========================================
*/

.form-control {
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}


/*
========================================
Footer
========================================
*/

footer {
    background: #1b1b1b;
    color: #fff;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer a:hover {
    color: #ffc107;
}


/*
========================================
Utilities
========================================
*/

.shadow-sm {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08) !important;
}

.rounded-lg {
    border-radius: 15px;
}

.text-primary {
    color: #0d6efd !important;
}

.bg-primary {
    background: #0d6efd !important;
}


/*
========================================
Responsive
========================================
*/

@media (max-width: 768px) {

    .navbar-brand {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .card {
        margin-bottom: 20px;
    }

}