/* ================= GLOBAL ================= */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #fafafa;
    line-height: 1.6;
    color: #212529;
}

/* ================= SPACING ================= */

.section-spacing {
    padding: 100px 0;
}

/* ================= HERO ================= */

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
}

.hero-subtext {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* ================= FEATURES ================= */

.feature-card {
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ================= BUTTONS ================= */

.dark_btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.25s ease;
}

.dark_btn:hover {
    transform: translateY(-2px);
}

/* ================= SECTION ================= */

.section-title {
    font-size: 32px;
    font-weight: 600;
}

.muted-text {
    color: #6c757d;
}

/* ================= FORMS ================= */

.form-check-input:checked {
    background-color: #212529;
    border-color: #212529;
}

.form-range::-webkit-slider-thumb {
    background-color: #212529;
}

/* ================= ACCORDION ================= */

.accordion {
    --bs-accordion-active-bg: #212529;
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
}

/* ================= NAVBAR ================= */

.navbar-brand {
    font-weight: 600;
}

/* ================= ICON ================= */

.main_icon {
    font-weight: 900;
    font-size: 50px;
}

/* ================= FOOTER ================= */

footer ul li {
    margin-bottom: 6px;
}

.footer-link {
    display: inline-block;
    padding: 4px 0;
    min-height: 20px;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #ffffff !important;
}

/* ================= ACCESSIBILITY ================= */

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #212529;
    outline-offset: 2px;
}


.form-control:focus {
    border-color: #212529 !important;
    box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.25) !important;
}

.ex_icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-spacing {
        padding: 70px 0;
    }
}