* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}


/* Navbar styles */

.navbar {
    background: #033161;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    display: flex;
    align-items: center;
    border-radius: 15%;
    height: 85px;
    width: 250px;
    margin-top: -.1rem;
    display: none;
}


.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    margin: 0;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    font-size: 22px;
    transition: background-color .5s ease;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    max-height: 50px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 10px;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    transition: background-color .5s ease;
}

.button:hover {
    color: #970505;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #970505;
    transition: all 0.3s ease;
}

@media screen and (max-width: 800px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #033161;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 40vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        margin-left: 35px;
        display: inline;
    }

    .navbar__toggle {
        margin-top: 1.5rem;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin-top: 5px;
        margin-right: 25px;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        width: 100%;
        display: table;
    }

    #mobile__menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


@media screen and (min-width: 801px) {
    .navbar__container {
        justify-content: center; 
    }

    .navbar__menu {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center; 
        opacity: 1;
        height: 100%;
    }

    .navbar__item {
        height: 100%;
    }

    .navbar__links,
    .navbar__btn {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar__links:hover {
        color: #970505;
        transition: all 0.3s ease;
    }
}





.container {
    max-width: 1400px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    height: 75vh;
}

a {
    text-decoration: none;
    color: #033161;
    font-size: 22px;
}

p {
    color: #033161;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding: 50px 0px;
}

#main-logo {
    margin-bottom: -4rem;
    height: 300px;
    margin-top: -4rem;
}

#big-img {
    margin-left: auto; 
    margin-top: 6rem;
    margin-right: auto;
}


.col-2 h1 {
    font-size: 44px;
    line-height: 60px;
    margin: 25px 0;
}

.btn {
    display: inline-block;
    background: #970505;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}

.btn:hover {
    background: #d0312d;
}

.header {
    background: radial-gradient(#fff, #0e4c92);
}


@media screen and (max-width: 900px) {
    .container {
        text-align: center;
        height: 75vh;
    }

    #big-img {
        height: 400px;
        width: 400px;
    }

    #main-logo {
        display: none;
    }
}


@media screen and (max-width: 700px) {
    .container {
        height: 95vh;
        text-align: center;
    }

    #main-header {
        font-size: 48px;
    }

    #big-img {
        height: 300px;
        width: 300px;
        margin-top: -2rem;
    }
}






.centered-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}

.baa-info {
    margin-bottom: 1.5rem;
}

.testing-info {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

@media screen and (max-width: 600px) {
    .centered-section {
        padding: 0px;
    }
}








.categories {
    margin: 70px auto;
    max-width: 1100px;
    align-content: center;
}

.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img {
    width: 100%;
    max-height: 275px;
}

.col-3 h3 {
    margin-left: 50px;
}













.brands {
    margin: 100px auto;
}

.col-5 {
    width: 160px;
}

.col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}

.col-5 img:hover {
    filter: grayscale(0);
}











/* Footer Styles */

.footer {
    background-color: #033161;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 10vh;
}

.footer__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer__content p {
    color: #fff;
}

.design-credit {
    font-size: 12px; 
    color: #aaa; 
    margin-top: 10px; 
    background-color: #033161;
}

.design-credit a {
    font-size: 12px;
    color: #aaa;
    text-decoration: none;
}

.design-credit a:hover {
    text-decoration: underline;
}













/* Products */

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px auto;
}

.category-btn {
    background-color: #970505;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px; 
    width: 250px;
    height: 180px;
}

.category-btn img {
    max-width: 125px;
    max-height: 125px;
    margin-bottom: 10px;
}

.category-btn span {
    font-size: 14px;
    margin-top: -20px;
}

.category-btn:hover {
    background-color: #d0312d;
}

.product-category {
    display: none;
}

.show {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-header {
    font-size: 24px;
    color: #033161;
    margin-bottom: 20px;
    position: relative;
    margin-top: 75px;
}

.category-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px; 
    background-color: #970505; 
    position: absolute;
    bottom: -5px; 
    left: 50%;
    transform: translateX(-50%);
}

.product {
    width: 200px;
    margin: 15px;
    text-align: center;
    transition: transform 0.3s; 
    background-color: #f4f4f4; 
    padding: 15px;
    border-radius: 8px;
}

.product:hover {
    transform: scale(1.05); 
}

.product img {
    width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: contain;
}

.product h4 {
    margin-top: 10px;
    padding: 0px 10px;
    color: #033161;
    position: relative;
}

.product-label {
    background-color: #970505; 
    color: #fff; 
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-container img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: none;
}

.slider-container img:first-child {
    display: block;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    transform: translateX(-7%);
    z-index: 2;
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.image-slider:hover .slider-arrows {
    opacity: 1;
}

.prev-arrow,
.next-arrow {
    font-size: 24px;
    cursor: pointer;
    color: #033161;
    border-radius: 50%;
    padding: 8px;
}

.prev-arrow:hover,
.next-arrow:hover {
    color: #970505;
}




/* About Page Specific Styles */
.about__hero {
    background: linear-gradient(to right, #033161, #0e4c92);
    color: #fff;
    padding: 100px 20px 60px;
    text-align: center;
}

.about__hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about__hero p {
    font-size: 20px;
    font-weight: 500;
}

.centered-section h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 28px;
    color: #033161;
    border-bottom: 2px solid #970505;
    padding-bottom: 5px;
    display: inline-block;
}

.centered-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    color: #033161;
    font-size: 18px;
}

.centered-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.centered-section ul li::before {
    content: '—'; /* em dash as a visual cue */
    position: absolute;
    left: 0;
    color: #970505;
}


.centered-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #033161;
}

@media screen and (max-width: 700px) {
    .about__hero h1 {
        font-size: 36px;
    }

    .centered-section {
        padding: 25px 15px;
    }

    .centered-section h2 {
        font-size: 22px;
    }

    .centered-section p, .centered-section ul {
        font-size: 16px;
    }
}







/* Contact Forn CSS Section */

.contact__form__container {
    width: 100%;
    height: 130vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/contactBR.jpeg');
    background-size: cover;
    background-position: center;
}



form {
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
}

.contact__form__container img {
    align-self: center;
    margin-bottom: 2rem;
}

form h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2rem;
}

form h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

#phoneContact {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

#phoneContact:hover {
    text-decoration: underline;
}

#emailContact {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

#emailContact:hover {
    text-decoration: underline;
}

form input, form textarea {
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #fff;
    font-size: 16px;
}

form button {
    padding: 15px;
    background: #fff;
    color: #000;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}

form button:hover {
    background-color: #970505;
}









