/* styles.css */

/* General Styling */
body {
    font-family: 'Karla', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
}

/* Navbar Styling */
.navbar {
    background-color: forestgreen;
    padding: 10px 0;
}

.navbar-brand {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.navbar-brand i {
    margin-right: 8px;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin-right: 20px;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ff8c00; /* Change the color on hover */
}

/* Download Button Styling */
.custom-btn {
    background-color: #ff8c00;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.custom-btn:hover {
    background-color: #e07b00; /* Change the color on hover */
}

/* Section Styling (Add more styles based on your content) */
/* For example:
#section_1 {
    background-color: #f5f5f5;
    padding: 50px 0;
    color: #333;
}
*/

/* Media Query for Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-left: 0;
        margin-top: 10px;
    }

    .navbar-toggler {
        margin-top: 10px;
    }

    .custom-btn.d-lg-none {
        margin-top: 10px;
    }
}
