.footer {
    background-color: #343a40;
    color: #000000;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    display: inline-block;
}

.footer h6 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #838383;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #000000;
}

.social-icons a {
    font-size: xx-large;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #000000;
    transition: all 0.3s;
}

/* Feedback Section Styles */
.feedback-section {
    margin-top: 20px;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating i {
    font-size: 1.5rem;
    color: #ffc107;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating i:hover {
    color: #ffc107;
}

.comment-box textarea {
    resize: none;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
}

.comment-box .btn {
    width: 100%;
    background-color: #000;
    border: none;
    padding: 8px 0;
}

.comment-box .btn:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .footer .col-md-3 {
        margin-bottom: 30px;
    }
    
    .feedback-section {
        margin-top: 15px;
    }
}
