/**
Theme Name: astra child theme
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-theme
Template: astra
*/


/* =========================================
   VYAPAR WALLAH BLOG - CUSTOM FOOTER
   ========================================= */

.vw-main-footer {
    background: linear-gradient(180deg, #0A4C95 0%, #052c5c 100%);
    color: #ffffff;
    padding: 70px 5% 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.vw-main-footer::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(243, 112, 33, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.vw-footer-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Brand */

.vw-footer-logo {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffffff !important;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none !important;
}

.vw-footer-logo span {
    color: #F37021;
}

.vw-footer-slogan {
    color: #F37021;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vw-footer-desc {
    color: #c9dff1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* WhatsApp */

.vw-footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff !important;
    padding: 13px 24px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vw-footer-wa:hover {
    background: #1ebd5a;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Footer headings */

.vw-footer-col h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px;
    padding-bottom: 10px;
    position: relative;
}

.vw-footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #F37021;
    border-radius: 3px;
}

/* Lists */

.vw-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vw-footer-col ul li {
    margin-bottom: 13px;
}

.vw-footer-col ul li a {
    display: block;
    color: #c9dff1 !important;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.vw-footer-col ul li a:hover {
    color: #F37021 !important;
    padding-left: 7px;
}

/* Bottom */

.vw-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.vw-copyright {
    color: #9db4ca;
    font-size: 14px;
}

.vw-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vw-legal-links a {
    color: #9db4ca !important;
    text-decoration: none !important;
    font-size: 14px;
}

.vw-legal-links a:hover {
    color: #F37021 !important;
}

.vw-legal-links span {
    color: #607d9a;
}

/* Social links */

.vw-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vw-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 0;
    transition: all 0.3s ease;
}

.vw-social-links a:hover {
    background: #F37021;
    border-color: #F37021;
    transform: translateY(-3px);
}

.vw-social-links a::first-letter {
    font-size: 14px;
}

/* Tablet */

@media (max-width: 992px) {

    .vw-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .vw-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .vw-main-footer {
        padding: 50px 25px 20px;
    }

    .vw-footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .vw-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .vw-footer-col ul li a:hover {
        padding-left: 0;
    }

    .vw-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .vw-legal-links {
        justify-content: center;
    }

    .vw-social-links {
        justify-content: center;
    }

    .vw-footer-logo {
        font-size: 27px;
    }
}






/* FIX: Custom footer must stay below the blog content */

.vw-main-footer {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    grid-column: 1 / -1 !important;
    flex: 0 0 100% !important;
}
/* =========================================================
   VYAPAR WALLAH FOOTER
   MOBILE + RESPONSIVE FIX
========================================================= */

.vw-main-footer {
    background: #0f478a;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.vw-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 65px 30px 45px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 45px;

    box-sizing: border-box;
}

.vw-footer-col {
    min-width: 0;
}

.vw-footer-logo {
    display: inline-block;
    margin-bottom: 15px;

    color: #ffffff !important;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    text-decoration: none !important;
}

.vw-footer-logo span {
    color: #f36f21;
}

.vw-footer-slogan {
    margin-bottom: 18px;

    color: #f36f21;
    font-size: 22px;
    font-weight: 700;
}

.vw-footer-desc {
    max-width: 390px;
    margin: 0 0 25px;

    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.7;
}

.vw-footer-col h4 {
    margin: 0 0 22px;

    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.vw-footer-col h4::after {
    content: "";
    display: block;

    width: 48px;
    height: 3px;

    margin-top: 10px;

    background: #f36f21;
}

.vw-footer-col ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.vw-footer-col li {
    margin: 0 0 14px;
    padding: 0;
}

.vw-footer-col li a {
    color: rgba(255,255,255,0.9) !important;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none !important;
}

.vw-footer-col li a:hover {
    color: #f36f21 !important;
}

.vw-footer-wa {
    display: inline-block;

    padding: 13px 22px;

    background: #20c967;
    color: #ffffff !important;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}

.vw-footer-wa:hover {
    background: #18b75a;
    color: #ffffff !important;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.vw-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;

    padding: 25px 30px 30px;

    border-top: 1px solid rgba(255,255,255,0.15);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;
}

.vw-copyright {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.vw-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.vw-legal-links a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
}

.vw-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vw-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;

    color: #ffffff !important;

    font-size: 0;
    text-decoration: none !important;
}

.vw-social-links a::first-letter {
    font-size: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vw-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
        padding: 50px 25px 35px;
    }

    .vw-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-main-footer {
        width: 100%;
        overflow: hidden;
    }

    .vw-footer-container {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
        max-width: 100%;

        gap: 35px;

        padding: 45px 22px 35px;
    }

    .vw-footer-col {
        width: 100%;
        min-width: 0;
    }

    .vw-footer-logo {
        font-size: 30px;
    }

    .vw-footer-slogan {
        font-size: 19px;
        line-height: 1.4;
    }

    .vw-footer-desc {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .vw-footer-col h4 {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .vw-footer-col li {
        margin-bottom: 12px;
    }

    .vw-footer-col li a {
        font-size: 15px;
    }

    .vw-footer-wa {
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }


    /* Bottom section */

    .vw-footer-bottom {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;

        padding: 25px 20px 30px;

        gap: 18px;

        text-align: center;
    }

    .vw-copyright {
        width: 100%;
        font-size: 13px;
        line-height: 1.6;
    }

    .vw-legal-links {
        width: 100%;

        display: flex;
        justify-content: center;

        font-size: 13px;
        line-height: 1.6;
    }

    .vw-social-links {
        width: 100%;
        justify-content: center;
    }

}