.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-a2fdebd */<style>

/* =========================================
   PRANSHU STORE - PREMIUM FOOTER
========================================= */

.ps-footer {
    background: #07152f;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    overflow: hidden;
}


/* =========================================
   MAIN FOOTER
========================================= */

.ps-footer-main {
    max-width: 1300px;
    margin: auto;
    padding: 70px 30px 55px;

    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.5fr;

    gap: 45px;
}


/* =========================================
   LOGO
========================================= */

.ps-footer-logo {
    display: inline-block;
    text-decoration: none !important;

    font-size: 27px;
    font-weight: 800;
    letter-spacing: 1px;

    color: #ffffff !important;
}

.ps-footer-logo span {
    color: #FBBF24;
}


/* BRAND TEXT
========================================= */

.ps-brand-column p {
    color: #b9c4d6;
    line-height: 1.8;
    font-size: 14px;
    margin: 20px 0;
    max-width: 300px;
}


/* =========================================
   HEADINGS
========================================= */

.ps-footer-column h3 {
    position: relative;

    color: #ffffff;
    font-size: 17px;

    margin: 0 0 22px;
    padding-bottom: 12px;
}

.ps-footer-column h3::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 40px;
    height: 3px;

    background: #FBBF24;
    border-radius: 5px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.ps-footer-column > a {
    display: block;

    color: #b9c4d6 !important;
    text-decoration: none !important;

    font-size: 14px;
    margin-bottom: 13px;

    transition: all 0.3s ease;
}

.ps-footer-column > a:hover {
    color: #FBBF24 !important;
    padding-left: 6px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.ps-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.ps-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50%;

    color: #ffffff !important;
    text-decoration: none !important;

    font-weight: bold;

    transition: all 0.3s ease;
}

.ps-social a:hover {
    background: #FBBF24;
    color: #07152f !important;
    transform: translateY(-4px);
}


/* =========================================
   NEWSLETTER
========================================= */

.ps-newsletter p {
    color: #b9c4d6;
    font-size: 14px;
    line-height: 1.7;
}


.ps-newsletter-form {
    display: flex;

    margin-top: 18px;

    border-radius: 6px;
    overflow: hidden;

    background: #ffffff;
}


.ps-newsletter-form input {
    flex: 1;

    min-width: 0;

    border: none !important;
    outline: none !important;

    padding: 13px;

    font-size: 13px;

    box-shadow: none !important;
}


.ps-newsletter-form button {
    border: none;

    padding: 0 16px;

    background: #FBBF24;
    color: #07152f;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}


.ps-newsletter-form button:hover {
    background: #ffffff;
    color: #1E3A8A;
}


/* =========================================
   CONTACT
========================================= */

.ps-contact {
    margin-top: 20px;
}

.ps-contact p {
    margin: 9px 0;
    color: #b9c4d6;
}

.ps-contact a {
    color: #b9c4d6 !important;
    text-decoration: none !important;
}

.ps-contact a:hover {
    color: #FBBF24 !important;
}


/* =========================================
   FEATURES BAR
========================================= */

.ps-footer-features {
    max-width: 1300px;
    margin: auto;

    padding: 25px 30px;

    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.ps-feature {
    display: flex;
    align-items: center;

    gap: 13px;
}


.ps-feature-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FBBF24;
    color: #07152f;

    border-radius: 50%;

    font-size: 20px;
}


.ps-feature strong {
    display: block;

    font-size: 14px;
    color: #ffffff;

    margin-bottom: 5px;
}


.ps-feature span {
    display: block;

    font-size: 12px;
    color: #9eabc0;
}


/* =========================================
   BOTTOM BAR
========================================= */

.ps-footer-bottom {
    max-width: 1300px;
    margin: auto;

    padding: 22px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.ps-footer-bottom p {
    margin: 0;

    color: #9eabc0;

    font-size: 13px;
}


.ps-footer-bottom strong {
    color: #FBBF24;
}


/* =========================================
   PAYMENT
========================================= */

.ps-payment {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #9eabc0;

    font-size: 12px;
}


.ps-payment b {
    background: #ffffff;
    color: #07152f;

    padding: 5px 8px;

    border-radius: 4px;

    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .ps-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .ps-footer-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .ps-footer-main {
        grid-template-columns: 1fr;

        padding: 50px 20px 35px;

        gap: 35px;
    }


    .ps-footer-features {
        grid-template-columns: 1fr;

        padding: 25px 20px;
    }


    .ps-footer-bottom {
        flex-direction: column;

        text-align: center;

        padding: 22px 20px;
    }


    .ps-payment {
        flex-wrap: wrap;
        justify-content: center;
    }


    .ps-newsletter-form {
        width: 100%;
    }

}

</style>/* End custom CSS */