/*********************************
8. Footer
*********************************/

.footer {
    width: 100%;
    background: #cb999a;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 100px;
    color: #fff;
    /* Set text color to white */
}
.copy{
    color: #FFFFFF;
}
#vhiron_link{
    color: #ffcf40;
}

.footer_logo {
    display: flex;
    justify-content: left;
    align-items: left;
    column-gap: 10px;
    font-size: 40px;
    line-height: 0.75;
    color: #FFFFFF;
}

.footer_logo span {
    background-image: linear-gradient(to right, #ffcf40 0%, #ffdc73 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    white-space: nowrap;
}

.footer_logo_subtitle {
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.680em;
    line-height: 0.75;
    margin-top: 0px;
    color: #fff;
    /* Keep existing styles for footer logo subtitle */
}

.single-widget1 {
    text-align: left;
    /* Ensure text starts from the left */
    margin-top: 20px;
    /* Adjust top margin for spacing */
    color: #fff;
    /* Set paragraph text color to white */
}

.single-widget1 p {
    margin-top: 20px;
    color: #fff;
    /* Set paragraph text color to white */
}

.copyright {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    justify-content: center;
    font-size: 13px;
    line-height: 1.75;
    margin-top: 20px;
    /* Adjusted margin for better spacing */
    text-align: center;
    /* Center align copyright text */
    color: #fff;
    /* Set text color to white */
    width: 100%;
}

.single-widget h5 {
    /* Set heading text color to black */
    color: #000;
}

.single-widget2 .d-flex {
    margin-bottom: 10px;
    /* Adjust margin between contact details */
}

.single-widget2 .into-icon {
    margin-right: 10px;
    /* Adjust margin between icon and text in contact details */
}

.social-icons {
    margin-top: 20px;
    /* Adjusted margin for better spacing */
}

.social-icons ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social-icons ul li {
    display: inline-block;
}

.social-icons ul li a {
    color: #fff;
    /* Set social icon color to white */
    font-size: 20px;
}

.social-icons ul li a:hover {
    color: #000;
    /* Hover color for social icons */
}

.color{
    color: linear-gradient(to right, #ffcf40 0%, #ffdc73 100%);
}

/*********************************
Responsive Adjustments
*********************************/

@media (max-width: 991.98px) {
    .footer {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .footer_logo {
        font-size: 30px;
    }
    .footer_logo_subtitle {
        font-size: 16px;
        letter-spacing: 0.3em;
    }
}

@media (max-width: 767.98px) {
    .footer_row {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_col {
        margin-bottom: 30px;
    }
    .footer_logo {
        font-size: 25px;
        margin-bottom: 10px;
        /* Add bottom margin for space */
    }
    .footer_logo_subtitle {
        font-size: 14px;
    }
    .social-icons ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .social-icons ul li {
        display: block;
        /* Ensure social icons stack vertically on small screens */
        margin-bottom: 10px;
    }
}