@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --orange:#ff7800;
    --black:#130f40;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --border:.2rem solid rgba(0,0,0,.1);
    --outline:.1rem solid rgba(0,0,0,.1);
    --outline-hover:.2rem solid var(--black);
}

*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body{
    background:#eee;
}

section{
    padding:2rem 9%;
}

.heading{
    text-align: center;
    padding:2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color:var(--black);
}

.heading span{
    background: var(--orange);
    color:#fff;
    display: inline-block;
    padding:.5rem 3rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border:.2rem solid var(--black);
    color:var(--black);
    cursor: pointer;
    background: none;
}

.btn:hover{
    background: var(--orange);
    color:#fff;
}

.footer {
    background: #fff;
    padding: 1rem 9%;
}

/* Payment Methods Section */
.payment-methods {
    text-align: center;
    padding: 1rem 0; /* Reduce padding */
}

.payment-methods h3 {
    font-size: 2rem; /* Reduce the font size */
    color: var(--black);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-icons img {
    height: 30px; /* Reduce the height of payment method images */
}

/* Horizontal Divider */
.footer-divider {
    width: 80%;
    height: 1px;
    background: lightgray;
    margin: 2rem auto;
}

/* Footer Content */
.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    align-items: start;
    justify-items: start;
}

/* Footer Styling */
.footer .box-container .box h3 {
    font-size: 2rem; /* Reduce the font size */
    padding: 0.5rem 0;
    color: var(--black); /* Set color to var(--black) */
}

.footer .box-container .box h3 i {
    color: var(--orange);
}

.footer .box-container .box .links {
    display: flex;
    align-items: center;
    font-size: 1.4rem; /* Reduce the font size */
    padding: 0.5rem 0;
    gap: 0.5rem; /* Maintains spacing between icon and text */
    color: #666; /* Set color to dark grey */
}

.footer .box-container .box .links i {
    color: var(--orange);
    flex-shrink: 0; /* Prevents icon from moving */
    font-size: 1.4rem; /* Reduce the icon size */
}

.footer .box-container .box .links:hover {
    padding-left: 1rem; /* Adjust padding */
    transition: padding-left 0.3s ease-in-out;
}

.center-content {
    text-align: center;
}

.footer-logo {
    max-width: 120px; /* Reduce the logo size */
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer .box-container .box p {
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.4rem; /* Reduce the font size */
    padding: 0.5rem 0;
    color: #666;
}

.footer .credit {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    padding-top: 1.5rem;
    font-size: 1.6rem; /* Reduce the font size */
    color: var(--black);
    border-top: var(--border);
}

.footer .credit span {
    color: var(--orange);
}

/* media queries  */

@media (max-width:991px){

    section{
        padding:2rem;
    }

}

@media (max-width:450px){

    .heading{
        display: block;
        font-size: 2.5rem;
    }

    .footer{
        text-align: center;
    }

    .footer .box-container .box .payment-img{
        margin: 2rem auto;
    }

}