/* Footer Styles */
.footer {
    background-color: black;
    color: #fff;
    padding: 60px 0 20px;
}

.bottomToTopBtnWrper {
    position: fixed !important;
    top: 90%;
    right: 80px;
    z-index: 999999999 !important;
}

.bottomToTopBtn {
    background: var(--branColor);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    outline: none;
    display: none;
    align-items: center;
    justify-content: center;

}

.bottomToTopBtn:hover .fa-arrow-up {
    animation: bounce 0.5s ease infinite;
}


@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #ddd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.f-powered {
    margin-top: 15px;
}

.f-powered .stripe-logo {
    height: auto;
    width: 240px !important;
    z-index: 10;
}

.newsletter-formWrper {
    display: flex;
    margin: 15px 0;
    justify-content: center;
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    background: #111;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--branColor);
}


.f-powered {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px
}

.f-powered .stripe-logo {
    height: auto;
    width: 300px
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--branColor);
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    transition: .5s;
}

.newsletter-form button:hover {
    background: #274783;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}



.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}


.footer-column p {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--branColor);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-policies a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.copyright p {
    color: #999;
    font-size: 0.9rem;
}




.paymentDivWrper {
    margin-top: 20px;
}


.payemntandsubcribeWrper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.payemntandsubcribeWrper>div {

    width: 100%;
}

.payemntandsubcribeWrper>div:first-child {
    display: flex;
    justify-content: flex-start;
}

.subbtnandinputerWrper {
    display: flex;
    align-items: center;
}


.payemntandsubcribeWrper>div:last-child {
    display: flex;
    justify-content: flex-end;
}

/* Responsive Styles */
@media (max-width: 1200px) {



    .bottomToTopBtnWrper {
        bottom: 40px;
        right: 40px;
    }
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }


    .bottomToTopBtnWrper {
        bottom: 40px;
        right: 40px;
    }
}

@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2.5rem;
    }

    .main-content p {
        font-size: 1.1rem;
    }

    .newsletter-section h3 {
        font-size: 1.3rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .footer-policies {
        justify-content: center;
    }


    .bottomToTopBtnWrper {
        bottom: 40px;
        right: 40px;
    }


}

@media (max-width: 576px) {
    .main-content {
        padding: 60px 0;
        min-height: 50vh;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .newsletter-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .newsletter-section h3 {
        font-size: 1.2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column h4 {
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-policies {
        /* flex-direction: column; */
        gap: 10px;
    }

    .footer-policies a {
        font-size: 0.85rem;
    }

    .f-pay-card {
        max-width: 100%
    }

    .copyright p {
        font-size: 0.85rem;
    }



    .bottomToTopBtnWrper {
        bottom: 20px;
        right: 25px;
    }

}