/* Original CSS with responsive additions */
.dk-footer {
    background-color: #151616;
    color: #e8e5da;
    padding: 30px 0 0;
    margin-top: 30px;
}

.dk-footer-box-info {
    background-color: #3434347a;
    text-align: center;
    margin-top: -40px;
    padding: 5px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.dk-footer-box-info .footer-logo {
    margin-bottom: 30px;
}

.dk-footer-box-info .footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-info-text {
    color: #e8e5da;
    margin-bottom: 30px;
}

.footer-social-link h3 {
    color: #e8e5da;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-social-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-social-link ul li {
    margin-right: 15px;
}

.footer-social-link ul li a {
    color: var(--scound);
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social-link ul li a:hover {
    color: #e8e5da;
}

.footer-awarad {
    margin-top: 30px;
}

.footer-awarad img {
    max-width: 100%;
    height: auto;
}

.footer-awarad p {
    color: #e8e5da;
    margin-top: 10px;
}

.contact-us {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin: 5px;
    margin-top: 13px;
    color: var(--scound);
    font-size: 24px;
}

.contact-info h3 {
    color: #e8e5da;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info p {
    color: #e8e5da;
    margin: 18px;
}

.footer-widget {
    margin-bottom: 30px;
    color: #e8e5da;
}

.footer-widget p {
    color: #e8e5da;
}

.section-heading {
    position: relative;
    margin-bottom: 30px;
}

.section-heading h3 {
    color: #e8e5da;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin-left: 60px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #e8e5da;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-widget ul li a:hover {
    color: #e8e5da;
    padding-left: 5px;
}

.dk-footer-form {
    position: relative;
    margin-left: 20px;
}

.dk-footer-form input {
    padding-right: 40px;
    background: #333;
    border: none;
    color: #e8e5da;
    width: 100%;
    height: 50px;
}

.dk-footer-form button {
    height: 100%;
    background: transparent;
    border: none;
    color: #e8e5da;
}

.dk-footer-form button:hover {
    height: 100%;
    background: transparent;
    border: none;
    color: #e8e5da;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 15px;
}

.copyright {
    background: #111;
    padding: 1px 0;
}

.copyright span {
    color: #999;
    font-size: 14px;
    margin: 3px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.copyright-menu ul {
    list-style: none;
    padding: 0;
    margin: 3px;
    margin-left: -15px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.copyright-menu ul li {
    margin-left: 15px;
}

.copyright-menu ul li a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.copyright-menu ul li a:hover {
    color: #e8e5da;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    color: var(--scound);
}

.back-to-top button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--scound);

}

/* Responsive Media Queries - Minimal Changes */
@media (max-width: 991px) {
    .footer-widget {
        width: 50%;
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .footer-widget ul {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .footer-widget {
        width: 100%;
        float: none;
        text-align: left;
    }

    .footer-widget ul {
        margin-left: 0;
        padding-left: 0;
        display: inline-block;
        text-align: left;
    }

    .contact-us {
        margin-left: 10px;
    }

    .footer-social-link ul {
        flex-wrap: wrap;
    }

    .footer-social-link ul li {
        margin: 0 8px 8px 0;
    }

    .copyright-menu ul {
        flex-wrap: wrap;
        margin-left: 0px;
    }

    .copyright-menu ul li {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .dk-footer-box-info {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: -30px;
    }

    .dk-footer-box-info .footer-logo img {
        width: 120px;
    }

    .contact-us {
        flex-direction: row;
        align-items: left;
    }

    .contact-icon {
        margin-bottom: -25px;
        margin-left: -5px;
    }

    .contact-info p {
        margin: 10px 19px;
        text-align: left;
    }

    .footer-widget {
        width: 100%;
        float: none;
        text-align: left;
        margin-left: -10px;
    }

    .footer-widget ul li a {
        margin-left: 55px;
    }
}