    /* Page background */
html,body {
    font-family: 'Open Sans', sans-serif;   
    /*overflow: auto !important;*/

}

    /* Header styling */
header {
    background-color: #2c3e50; /* Dark blue */
    color: white;
}
.header-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-height: 60px;
}
nav .nav-link {
    color: white;
    font-weight: 500;
}
nav .nav-link:hover {
    color: #ecf0f1;
}
.dropdown-menu {
    background-color: #2c3e50;
}
.dropdown-item {
    color: #ecf0f1;
}
.dropdown-item:hover {
    background-color: #34495e;
}

    /* Sidebar styling */
.sidebar {
    background-color: #503d2c;
    color: white;
    padding-top: 30px;
}
.sidebar a {
    color: #ecf0f1;
    font-size: 1.1em;
    padding: 10px;
    display: block;
}
.sidebar a:hover {
    background-color: #927b50;
}

    /* Main content */
.content {
    max-width: 1800px;
}

    /* Footer styling */
    .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    @media (min-width: 768px) {
        .bd-placeholder-img-lg {
        font-size: 3.5rem;
        }
    }

    .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
    }

    .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
    }

    .bi {
        vertical-align: -.125em;
        fill: currentColor;
    }

    .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: auto;
    }

    .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .btn-bd-primary {
        --bd-violet-bg: #712cf9;
        --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

        --bs-btn-font-weight: 600;
        --bs-btn-color: var(--bs-white);
        --bs-btn-bg: var(--bd-violet-bg);
        --bs-btn-border-color: var(--bd-violet-bg);
        --bs-btn-hover-color: var(--bs-white);
        --bs-btn-hover-bg: #6528e0;
        --bs-btn-hover-border-color: #6528e0;
        --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
        --bs-btn-active-color: var(--bs-btn-hover-color);
        --bs-btn-active-bg: #5a23c8;
        --bs-btn-active-border-color: #5a23c8;
    }

    .bd-mode-toggle {
        z-index: 1500;
    }

    .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
    }


    /* Custom button styling for sidebar toggle */
.toggle-sidebar {
    background-color: #2c3e50;
    color: white;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    transition: background-color 0.3s ease;
}
.toggle-sidebar:hover {
    background-color: #5a3615;
}
    
    .dropdown-item {
        transition: color 0.3s, background-color 0.3s;
    }
    .dropdown-item:hover {
        background-color: #ff880048;
        color: white;
    }

    /* Style global */



/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(11, 120, 163, 0.733), rgba(9, 153, 163, 0.856)), url("{{ asset('images/LAWYER.png') }}") no-repeat center center/cover;
    color: white;
}

.welcome-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.welcome-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-in-out;
}



/* Keyframes pour les animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Statistics Section */
.statistics-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

.statistics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-item {
    width: 200px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f0f8ff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.stat-item h4 {
    font-size: 2.5em;
    color: #e9962ab4;
}

.stat-item p {
    font-size: 1.1em;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
    text-align: center;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-item {
    width: 300px;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h4 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}
        
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #9b4e0f;
    color: white;
    font-weight: bold;
    }

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

a {
    color: #010230;
    text-decoration: none;
}





img, video {
    max-width: 100%;
    height: auto;
    display: block;
}


