.skill-section {
    background-color: #faf8f5;
    /* Light background to make the content pop */
    padding-left: 40px;
}

.service-list {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
}

.service-list li {
    font-size: 16px;
    /* Set font size */
    margin-bottom: 10px;
    /* Space between list items */
    color: #4a4a4a;
    /* Dark gray color for text */
    line-height: 1.6;
    /* Improve readability */
    position: relative;
}

.service-list li::before {
    content: "✔";
    /* Custom bullet */
    position: absolute;
    left: -25px;
    /* Adjust bullet position */
    top: 0;
    color: #a96b23;
    /* Color the bullet */
    font-size: 24px;
    /* Size of the bullet */
}

.service-list li:hover {
    color: #a96b23;
    /* Change text color on hover */
    cursor: pointer;
    /* Indicate interactivity */
}

.mini-nav-bar {
    background-color: rgb(207, 187, 153);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
}

.mini-nav-bar .nav-link {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    margin: 0 20px;
}

.card-title {
    font-size: 2.8rem;
    /* Bigger titles */
}

ul.fs-5 li {
    line-height: 1.3;
    font-size: 1.2em;
    /* Better spacing for list items */
}

.mini-nav-bar .nav-link.active {
    border-bottom: 2px solid #ffffff;
    /* Active state with visible border */
    color: #f4f0e9;
    /* Active link color */
}
.mini-nav-bar .nav-link:hover {
    border-bottom: 2px solid #ffffff;
    color: #f4f0e9;
}

/* Remove list dots */
.navbar-nav {
    list-style-type: none;
    /* Remove bullet points */
    padding-left: 0;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .navbar-collapse {
        display: none;
    }

    .navbar-toggler.collapsed + .navbar-collapse {
        display: block;
    }

    .navbar-toggler {
        display: block;
        position: absolute;
        top: 10px;
        /* Align to the top */
        right: 10px;
        /* Align to the right */
        padding: 10px;
        /* Add padding to ensure equal top and bottom */
        border: none;
        background: transparent;
    }

    .navbar-toggler-icon {
        background-color: #ffffff;
        width: 30px;
        height: 3px;
        display: block;
        position: relative;
    }

    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        content: "";
        background-color: #ffffff;
        width: 30px;
        height: 3px;
        position: absolute;
        left: 0;
    }

    .navbar-toggler-icon:before {
        top: -10px;
    }

    .navbar-toggler-icon:after {
        bottom: -10px;
    }

    /* Ensure vertical stacking of navbar items on mobile */
    .navbar-collapse .navbar-nav {
        display: block;
        width: 100%;
    }

    .navbar-collapse .nav-item {
        text-align: center;
        width: 100%;
    }

    .navbar-collapse .nav-link {
        display: block;
        padding: 10px 0;
        padding: 15px 0;
        /* Increased padding for mobile */
        font-size: 24px;
        /* Larger font size on mobile */
        width: 100%;
    }
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

    .mini-nav-bar .nav-link {
        display: inline-block;
    }
}
