body {
    font-family: 'Karla', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    background-color: #f8a42f;
    padding: 8px 20px;
    width: 100%;
    top: 0px;
    /* Add top margin */
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: cover;
    margin-left: 0;
}

.navbar {
    margin: 0;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3e%3cpath stroke="currentColor" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e');
}

.navbar-nav .nav-link {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    letter-spacing: 1.5px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    background-color: #ff3c78;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-nav .nav-link:hover:after {
    width: 100%;
}

/* Active class styling */
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link.active:after {
    width: 100%;
}

@media (max-width: 767.98px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse {
        text-align: center;
        padding-top: 10px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .navbar-toggler {
        margin-left: auto;
        z-index: 1050;
    }

    .logo {
        margin-bottom: 10px;
        margin-left: 0;
    }

    .logo img {
        height: 90px;
    }
}



/* Line above the footer */
.footer-top-line {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    /* Thickness of the line */
    background-color: #0cafe5;
    /* Light blue line */
    position: relative;
    z-index: 1;
}

/* Footer Styles */
.footer {
    background-color: #e9768f;
    /* Vibrant coral color */
    color: #fff;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    /* Increased padding for a fuller look */
    overflow: hidden;
    /* Ensure footer content does not overflow */
}

.footer-line {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    /* Thicker line for emphasis */
    background-color: #0cafe5;
    /* Light blue line */
    position: absolute;
    top: -4px;
    /* Adjust as needed */
    left: 0;
    z-index: 1;
    /* Ensure it appears above the footer */
}

.footer p {
    margin: 0;
    position: relative;
    /* Ensure footer text appears above the line */
    z-index: 2;
    font-size: 1.0em;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #0cafe5;
    /* Bright cyan on hover */
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .footer {
        padding: 1rem 0;
        /* Adjust padding for smaller screens */
    }

    .footer-line {
        height: 3px;
        /* Adjust line height for smaller screens */
        top: -3px;
    }
}