html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    font-family: "Poppins";
    scroll-behavior: smooth;
    margin: 0;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

ol,
ul,
menu {
    list-style: none;
}

:root {
    /* transition */
    --transition-1: 0.15s ease;
    --transition-2: 0.35s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);
}


/* ------------------
FOOTER DESIGN
----------------- */

.footer-container {
    font-family: "Poppins";
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 40px 0px 20px 0px;
}

.certified-section {
    text-align: center;
    background-color: #efefef;
    padding: 24px;
}

.certified-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-companies {
    height: 30px;
    width: auto;
    filter: grayscale(100%) brightness(0);
    object-fit: contain;
    padding: 5px;
    /* background-color: white; */
    border-radius: 5px;
}

#logo3 {
    filter: grayscale(100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 40px 64px;
    border-top: 1px solid #eee;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    text-decoration: none;
    color: #666;
}

.address {
    color: #666;
    line-height: 1.5;
    width: 70%;
}

.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.social ion-icon {
    font-size: 24px;
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.newsletter button {
    background: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.copyright {
    text-align: left;
    padding-top: 20px;
    padding: 20px 64px 0px 64px;
    border-top: 1px solid #eee;
    color: #666;
}

.copyright a {
    color: #000;
    font-weight: 500;
}

.copyright a:hover {
    text-decoration: underline;
}



/* ------------------
RESPONSIVE STYLES
----------------- */

/* Tablet & Small Screens */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        padding: 40px 32px;
    }

    .copyright {
        text-align: center;
        padding: 20px 32px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* .footer-container {
        padding: 30px 16px;
    } */

    .address {
        width: 100%;
    }

    .certified-section {
        padding: 20px;
    }

    .certified-section h3 {
        font-size: 20px;
    }

    .logo-container {
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
        padding: 30px 16px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .newsletter input[type="email"] {
        padding: 8px;
    }

    .newsletter button {
        padding: 8px 16px;
    }

    .social {
        gap: 8px;
        margin-top: 16px;
    }

    .social ion-icon {
        font-size: 20px;
    }

    .copyright {
        font-size: 12px;
        padding: 16px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-section ul {
        padding: 0;
        text-align: center;
    }

    .social {
        justify-content: center;
    }

    .newsletter input[type="email"] {
        width: 90%;
    }

    .newsletter button {
        width: 90%;
    }

    .copyright {
        font-size: 12px;
        padding: 12px;
    }
}


@media (min-width: 1440px) {

    .container,
    #contactus,
    #faqs,
    .product-details,
    .products,
    .services-section,
    .hero,
    .footer-content,
    .copyright,
    .filter-section {
        padding-left: 120px;
        padding-right: 120px;
    }
}