/* PAGE BODY TO MAKE PAGE LOOK BETTER */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white; 
    color: #495057;
}

/*.header {*/
/*background-color: #343a40;*/
/*color: #fff;*/
/*text-align: center;*/
/*padding: 40px 0;*/
/*margin-bottom: 30px;*/
/*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
/*}*/


.content {
padding: 30px;
border-radius: 10px;
background-color: #fff;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}

.container {
padding: 10px 0;
justify-content:center;
display:flex;
}
.container-two {
padding: 0 15px;
}



/* Navbar Container */

.navbar {
    background-color: #343a40; /* Dark background color */
    border-bottom: 2px solid #e44002; /* Red accent border */
    padding: 0; /* Add some vertical padding */
    transition: all 0.1s; /* Smooth transition */
}

/* Navbar brand styling */
.navbar-brand {
    color: #fff; /* White text color */
    font-weight: bold; /* Bold font weight */
    font-size: 24px; /* Larger font size */
    transition: all 0.3s; /* Smooth transition */
}

/* Navbar toggler icon */
.navbar-toggler {
    border: none; /* Remove border */
    outline: none; /* Remove outline */
    transition: all 0.1s; /* Smooth transition */
}

.navbar-toggler:focus {
    outline: none; /* Remove focus outline */
}

/* Navbar links styling */
.navbar-nav .nav-link {
    font-size: 22px;
    color: #fff; /* White text color */
    font-weight: 500; /* Medium font weight */
    transition: all 0.1s; /* Smooth transition */
}

.navbar-nav .nav-link:hover {
    color: #e44002; /* Red color on hover */
}

/* Style active link */
.navbar-nav .nav-item.active .nav-link {
    font-weight: bold;
}

/* Navbar collapse */
@media (max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        top: 65px; /* Height of the navbar */
        right: 0;
        z-index: 1;
        width: 100%; /* Full width on small screens */
        background-color: #343a40; /* Dark background color */
        border-left: 2px solid #e44002; /* Red accent border */
        padding: 10px; /* Add some padding */
        transition: max-height 0.1s ease, opacity 0.1s ease; /* Smooth transition */
        max-height: 0; /* Initially collapsed */
        overflow: hidden; /* Hide overflowing content */
        opacity: 0; /* Initially hidden */
    }
    
    .navbar-collapse.show {
        max-height: 1000px; /* Expand collapse when toggled */
        opacity: 1; /* Show when toggled */
    }
    
    .navbar-nav {
        text-align: center; /* Align links to the right */
    }

    .navbar-nav .nav-link {
        display: block; /* Make links display as block elements */
        padding: 0.5rem 1rem;
        margin: 0.5rem 0;
    }

    .navbar-toggler.collapsed + .navbar-collapse {
        max-height: 1000px; /* Expand collapse when toggled */
    }
}

@media (max-width: 768px) {

    .navbar-brand {
        margin-left: 10px;
    }
}



/* FOOTER CONTAINER */

.footer {
    margin-top: 200px;
    background-color: #111;
    color: grey;
    text-align: center;
    padding: 0;
}
.footer ul {
    list-style: none;
    padding: 0;
    
}
.footer ul li {
    margin-bottom: 0px;
}
.footer ul li a {
    color: grey;
    text-decoration: none;
}
.footer ul li a:hover {
    text-decoration: none;
    transition: 0.1s ease;
    color:#05aeef;
}

.importantpages {
    background-color: #fff;
    color: grey;
    text-align: center;
    padding: 20px 0;
}

.importantpages ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.importantpages ul li {
    margin: 0 10px;
}

.importantpages ul li a {
    color: grey;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .importantpages ul li {
        margin: 5px 10px;
    }
}
