* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #86b817;
    --secondary-color: #fe8800;
    --light: #f5f5f5;
    --dark: #14141f;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: black !important;
}

.hero {
    /* height: 100vh; */
    max-width: 100%;
    color: #ffffff;
    text-align: center;
    padding: 2em 3em;
    z-index: 1;
}

.nav-title {
    font-size: 1.2em !important;
    font-weight: bold;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 2;
}

.navbar-brand,
.nav-link {
    color: #ffffff !important;
}

.navbar-toggler {
    border: none;
}

.nav-link {
    font-size: 1.2em !important;
    margin-left: 20px;
}

.section-header{
    color: white;
    margin: 0 0 2em 0;
}

.card {
    background-color: #000000 !important;
    color: #fff;
}

.card-title,
.card-text {
    color: #fff;
}

.card-subtitle {
    color: rgb(249, 117, 69) !important;
    font-size: larger;
}

.btn-primary {
    background-color: #0066cc;
    border-color: #005cbf;
}

.btn-primary:hover {
    background-color: #005cbf;
    border-color: #004085;
}

/* Modal Styles */
.modal-content {
    background-color: #333 !important;
    color: #fff!important;
    border: 1px solid #444 !important;
}

.modal-header,
.modal-footer {
    border-color: #444 !important;
}

.form-control {
    background-color: #444 !important;
    color: #fff!important;
    border: 1px solid #555 !important;
}

.form-control:focus {
    background-color: #555 !important;
    color: #fff!important;
    border-color: #666 !important;
}

.modal-header .close {
    color: #fff!important;
}

.modal-footer .btn-secondary {
    background-color: #555 !important;
    border-color: #666 !important;
}

.modal-footer .btn-secondary:hover {
    background-color: #666 !important;
    border-color: #777 !important;
}

#social {
    background-color: #262626;
}

footer {
    margin-top: 5em;
    background-color: #111111;
}

.footer-links {
    padding: 1rem 0 !important;
}

.footer-links .col-md-3,
.footer-links .col-md-2,
.footer-links .col-md-4 {
    margin-bottom: 1rem !important;
}

.footer-links h6 {
    color: var(--light);
    /* Heading color */
}

.footer-links p {
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
        color:white;
}

/* Copyright Section */
.text-center.p-4 {
    background-color: rgba(0, 0, 0, 0.05);
    /* Light background color */
    color: #666;
    /* Text color */
}

.text-center.p-4 a {
    color: #333;
        color:white;
    /* Link color */
}

.text-center.p-4 a:hover {
    text-decoration: none;
}

/* Adjustments for responsiveness */
@media (min-width:992px) {

    .hero {
        padding: 2em 10em;
    }

    .navbar-nav .nav-link {
        position: relative;
        color: #333;
        /* Default link color */
        text-decoration: none;
        padding-bottom: 3px;
        /* Space for the underline */
        transition: color 0.3s ease;
        /* Smooth color transition */
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        /* Height of the underline */
        bottom: 0;
        left: 0;
        background-color: #ffffff;
        /* Underline color */
        transform: scaleX(0);
        /* Start with no width */
        transform-origin: bottom right;
        transition: transform 0.3s ease;
        /* Smooth animation */
    }

    .navbar-nav .nav-link:hover::before {
        transform: scaleX(1);
        /* Expand the underline on hover */
        transform-origin: bottom left;
    }

    /* Optional: Adjust link color on hover */
    .navbar-nav .nav-link:hover {
        color: #ffffff;
        /* Change link color on hover */
    }

    #social div {
        padding: 0 13em;
    }
}