:root {
    --bs-primary: #0061f2;
    --bs-primary-rgb: 0, 97, 242;
    --bs-secondary: #6c757d;
    --bs-success: #00ac69;
    --bs-info: #00d4aa;
    --bs-warning: #f4a100;
    --bs-danger: #e81500;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--bs-gray-700);
    background-color: #fff;
    font-size: 15px;
}

.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bs-primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 400;
    color: var(--bs-gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

.hero-section {
    padding: 10rem 0 2rem;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.display-4 {
    font-weight: 600;
    font-size: 3.3rem;
}

.display-3 {
    font-size: 1.8rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
}

.btn {
    font-weight: 500;
    padding: 0.7rem 1.8rem;
    border-radius: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--bs-primary);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 97, 242, 0.075);
}

.btn-primary:hover {
    background-color: #0056d6;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(0, 97, 242, 0.15);
}

.btn-outline-primary {
    color: var(--bs-primary);
    background-color: transparent;
    background-image: none;
    border: 2px solid var(--bs-primary);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-warning {
    background-color: var(--bs-warning);
    color: white;
}

.btn-warning:hover {
    background-color: #e09600;
    color: white;
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--bs-primary);
    border-color: white;
    transform: translateY(-1px);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-weight: 600;
    color: var(--bs-gray-800);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--bs-gray-600);
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 2rem 0 rgba(33, 40, 50, 0.25);
}

.card-body {
    padding: 1.8rem;
}

.stats-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: white;
}

.icon-primary {
    background: linear-gradient(135deg, var(--bs-primary), #0056d6);
}
.icon-success {
    background: linear-gradient(135deg, var(--bs-success), #00965a);
}
.icon-info {
    background: linear-gradient(135deg, var(--bs-info), #00b894);
}
.icon-warning {
    background: linear-gradient(135deg, var(--bs-warning), #e09600);
}

.stats-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-weight: 500;
    color: var(--bs-gray-700);
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.stats-meta {
    font-size: 13px;
    color: var(--bs-gray-500);
    font-weight: 300;
}

.progress {
    height: 0.4rem;
    border-radius: 0.25rem;
    margin: 1rem 0;
}

.bg-light-custom {
    background-color: #f8f9fa !important;
}

.feature-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    background: linear-gradient(
        135deg,
        rgba(0, 97, 242, 0.1),
        rgba(0, 97, 242, 0.05)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--bs-primary);
    border: 1px solid rgba(0, 97, 242, 0.1);
}

.feature-title {
    font-weight: 500;
    color: var(--bs-gray-800);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-text {
    color: var(--bs-gray-600);
    margin-bottom: 1.2rem;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.2rem 0;
    font-size: 13px;
    color: var(--bs-gray-600);
    font-weight: 300;
}

.feature-list .bi-check-circle {
    color: var(--bs-success);
    margin-right: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--bs-primary), #0056d6);
    border-radius: 1rem;
    padding: 3.5rem 2rem;
    color: white;
    text-align: center;
}

.cta-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer {
    background-color: var(--bs-gray-800);
    color: white;
    padding: 3.5rem 0 2rem;
}

.footer h5 {
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: white;
    font-size: 1.1rem;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 300;
}

.footer a:hover {
    color: white;
}

.footer-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: white !important;
    margin-bottom: 1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #ffffff, transparent 50%);
    font-size: 20px;
    color: color-mix(in srgb, #ffffff, transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 0 2rem;
    }

    .display-4 {
        font-size: 2.3rem;
    }

    .display-3 {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 0.85rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional typography improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 500;
}

small,
.small {
    font-size: 12px;
    font-weight: 300;
}
