* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
   background-color: #dddddd;
}
h1, h2, h3,p, a, li, button {
    font-family: 'Roboto', sans-serif;
}
h1, h2, h3 {
    font-weight: bolder;
}
.nav-button { 
    outline: none !important;
    box-shadow: none !important;
}

.hero-section {
    /* background-image: url(../image/equipments.webp); */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/equipments.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hero-header {
    font-size: 60px !important;
    font-weight: bolder;

}

.hero-btn {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 8px 30px;
    font-size: 18px;
}

.product-container {
    max-width: 1550px;
}

.collections-container {
    max-width: 1550px;
}
.single-product {
    max-width: 480px;
}

.cart-container {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-empty {
    width: 600px;
    margin: 0 auto !important;
}

.form-container {
    max-width: 600px;
    height: auto;
}

#contact-us {
    height: 80vh;
}

.faqs-section {
    height: 80vh;
}

.testimonials-section {
    height: 80vh;
}

.collections-section {
    height: auto;

}
.collections{
    max-width: 480px;
    
}
.collections img{
    max-width: 100%;
    height: 450px;
    object-fit: cover;
}
.form-button {
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 30px !important;
}

.form-button:hover {
    color: #198754 !important;
    padding: 6px 28px !important;
    background-color: white !important;
    border: 2px solid #198754 !important;
    transition: 0.3s all ease-in-out;
}

.testimonials-header {
    font-size: 40px !important;
    font-weight: bolder;
    color: #198754;
}

.testimonials-text {
    font-style: italic;
    color: #198754;
}

.testimonials-name {
    color: #198754 !important;
}


@media screen and (min-width: 768px) {
    .navbar-nav {
        gap: 30px !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 600px) {
    .navbar-nav {
        gap: 10px !important;
        text-align: center !important;
    }

    .hero-header {
        font-size: 30px !important;
        font-weight: bolder;
    }

    .hero-text {
        font-size: 16px !important;
    }

    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/model.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .about-text {
        font-size: 14px !important;
    }

    .cart-container {
        height: 100vh;

    }

    .faqs-section {
        height: auto;
    }

    .collections-section {
        height: auto;

    }

    .cart-empty {
        width: 100%;
        margin: 0 10px !important;
    }

    .testimonials-section {
        height: auto;
        padding: 1px !important;
    }

    .testimonials-header {
        font-size: 20px !important;
    }

    .testimonials-header-text {
        font-size: 14px !important;
    }
}
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}
thead {
    background-color: #198754;
    color: white;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
