﻿:root {
    --general-font-family: "Arial", sans-serif;
    --greenw: #7C8A24;
    --greend: #228A10;
    --orange: #EA5B0C;
    --bluew: #024A96;
    --blued: #0B0296;
    --background: #EDEDED;
    --blackw: #454545;
    --gray-border: #e0e0e0;
    --active-link: #184e77;
    --gray-text: #787878;
    --my-withe: #EDEDED;
    --btn-orange: #DEB841;
    --orange-over: #c9a53b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dashboard-container {
    display: flex;
    min-height: calc(100vh - 70px - 100px);
}

.navbar {
    width: 100%;
    height: 80px;
    background-color: white;
    border-bottom: 1px solid var(--gray-border);
    font-family: var(--general-font-family);
}

.navbar-container {
    max-width: 95%;
    margin: 0 auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0 20px;*/
}

.navbar-brand {
    margin-left: 3%;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {    
    display: flex;
    gap: 40px;
}

    .nav-links a {
        text-decoration: none;
        color: gray;
        font-size: 1.4em;
        font-weight: 500;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

        .nav-links a.active {
            color: var(--active-link);
        }

        .nav-links a:not(.active):hover {
            color: var(--active-link);
        }

.btn-log {
    background-color: var(--active-link);
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .btn-log:hover {
        background-color: rgba(24, 78, 119, 0.8)
    }

.btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #184e77;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #184e77;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btn-logout:hover {
        background-color: #184e77;
        color: white;
    }

.btn-select {
    background-color: var(--my-withe);
    color: var(--blackw);
    font-weight: bold;
    border: solid 1px var(--blackw);
    padding: 12px 24px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
}

.hero-section {
    background-color: #000;
    color: white;
    padding: 0;
}

.hero-content {
    display: flex;
}

.hero-text {
    padding: 60px 40px;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero-text h1 {
        font-size: 50px;
        /*  margin-bottom: 25px;   */
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 18px;
        line-height: 1.6;
    }

.hero-image {
    flex: 45%;
    overflow: hidden;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.features-section {
    background-color: white;
    padding: 80px 40px;
    text-align: center;
}

.features-text h2 {
    font-size: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-text span {
    color: #184e77;
}

.features-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
    /* flex-wrap: wrap; */
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    max-width: 320px;
    flex: 1 1 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ccc;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }

    .feature-card img {
        height: 50px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #333;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
    }

.benefits-section {
    background-color: rgba(225, 225, 225, 0.486);
    padding: 60px;
    text-align: center;
    align-items: center;
}

.benefits-title {
    color: #184e77;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 60px;
}

.benefits-container {
    display: flex;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    width: 30%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    color: #184e77;
    margin-bottom: 30px;
}

.benefit-text {
    color: #666;
    font-size: 18px;
    line-height: 1.4;
}

.custom-footer {
    background-color: #141414;
    color: #f0f0f0;
    padding: 30px 10px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
}

.footer-content {
    width: 100%;
    height: 25px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: space-between;*/
    gap: 2px;
}

.footer-left {
    text-align: center;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

    .footer-right a {
        color: #fff;
        text-decoration: none;
        transition: color 0.5s ease;
    }

        .footer-right a:hover {
            color: #0d6efd;
        }

    .footer-right span {
        color: #888;
    }
