/* .footer {
    background-color: var(--dynamic-footer);
    color: #fff;
    padding: 50px 0 20px;
}

.footer .logo {
    height: 45px;width: 215px;margin-bottom: 1rem;
}

.footer .logo span {
    color: var(--dynamic-color);
}

.footer p {
    font-size: 14px;
    color: #ccc;
}

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

.footer a:hover {
    color: var(--dynamic-color);
}

.footer .social-icons{
    display: flex;flex-wrap: wrap;gap: 10px 6px;
}
.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e222b;
    color: #fff;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: var(--dynamic-color);
}

.footer .newsletter input {
    background: #1e222b;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #fff;
}

.footer .newsletter input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--dynamic-color);
}

.footer .btn-subscribe {
    background: var(--dynamic-color);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    width: 100%;
    transition: 0.3s;
}

.footer .btn-subscribe:hover {
    background: #c3070f;
}

.footer-bottom {
    border-top: 1px solid #1e222b;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 13px;
    color: #ccc;
}

.footer ul.list-unstyled{
    display: flex;flex-direction: column;gap: 0.4rem;
}

.footer .list-unstyled li,
.footer .list-unstyled a{
    font-size: 14px;
} */



/* !------------------------Footer Css 2------------------------- */

.footer {
    margin-top: 2rem;
    background: #fff;
    padding: 60px 0 20px;
    color: #222;
    font-size: 15px;box-shadow: 0 0px 5px #ddd;
}

.footer h6 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 15px;
    color: #111;
}

.footer a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.footer a:hover {
    color: #0066ff;
}

.subscribe-box input {
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    padding: 10px 15px;
    outline: none;
    max-width: 220px;
    font-size: 14px;
}

.subscribe-box button {
    border: none;
    background: #0056ff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 0 30px 30px 0;
    transition: 0.3s;
    font-size: 14px;
}

.subscribe-box button:hover {
    background: #0041cc;
}

.footer-brand {
    width: 250px;height: 60px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    color: #555;
    margin-right: 20px;
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #0066ff;
}

.social-icons a {
    margin-left: 20px;
    color: #333;
    font-size: 25px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0056ff;
}