/* Clean Navbar Styles */

#navbar {
    background-color: #4CAF50 !important;
    padding: 10px 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    text-transform: uppercase;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 5px;
}

.navbar ul li a:hover, .navbar ul li a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #FFD700 !important;
}

.bi-list.mobile-nav-toggle {
    font-size: 24px;
    color: white;
    display: none;
    cursor: pointer;
    transition: 0.3s;
}
/* responsive  */
@media (max-width: 991px) {
    .bi-list.mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #4CAF50;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        text-align: center;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}



h2 {
    color: #28a745;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-label {
    font-weight: bold;
    color: #34495e;
    text-align: left;
    display: block;
    font-size: 1.1rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: #4CAF50;
    box-shadow: 0px 0px 8px rgba(76, 175, 80, 0.5);
    outline: none;
}

.upload-section {
    margin-top: 20px;
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.upload-section label {
    font-weight: bold;
    color: #333;
}

.upload-section input[type="file"] {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.btn-submit {
    background: linear-gradient(90deg, #28a745, #218838);
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #218838, #1e7e34);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

