/* General Styles */
body {
    font-family: 'Play', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

header {
    background-color: white;
    padding: 10px 20px;
}

h1 {
    font-family: 'Play', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #4C8999;
}

h2 {
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #4C8999;
}

h3 {
    font-family: 'Play', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #4C8999;
}


/* Desktop Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.navbar img {
    max-height: 120px;
    width: 90%;
}


.navbar section {
    display: flex;
    justify-content: center;
}

.navbar li {
    position: relative;
    margin-left: 40px;
}

.navbar a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    cursor: pointer;
}

.navbar a:hover {
    color: #4C8999;
    font-weight: bold;
}

/* Highlight the active page link */
.active-page {
    color: #FFFFFF !important; /* Ensures the text is white */
    background-color: #4C8999; /* Background highlight */
    font-weight: bold;
    padding: 10px;
    border-radius: 5px; /* Optional: Rounded edges */
}


/* Dropdown */

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    list-style: none;
    padding: 10px;
    min-width: 237px;
    top: 110%;
    left: -50%;
    z-index: 100;
    border-bottom: #4C8999 solid;
    border-right: #4C8999 solid;
    border-left: #4C8999 solid;

}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 5px 10px;
}

.dropdown-menu li a {
    display: block;
    color: black;
    padding: 5px;
    font-size: 18px;
}

.dropdown-menu li a:hover {
    color: #4C8999;
}






/* Mobile Header */
.mobile-header {
    display: none; /* Hidden on desktop */
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    background-color: white;
}

.mobile-header img {
    width: 50%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: #B8D4D9 solid;
    border-radius: 5px;
    padding: 4px;
}

.hamburger-menu div {
    width: 35px;
    height: 5px;
    background-color: #4C8999;
    margin: 4px 0;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: #FFFFFF;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
}


/* Close Button */
.close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    color: #4C8999;
    background: none;
    border: #B8D4D9 solid;
    border-radius: 5px;
    padding: 4px;
}


.mobile-menu a {
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    width: 50%;
}


.mobile-menu section {
    align-items: center;
    width: 85%;
    max-width: 750px;
    position: absolute;
    bottom: 5%;
}

.mobile-menu img {
    max-height: 140px;
    width: 90%;
    align-items: center;
    justify-content: center;
} 



.dropdown-mobile {
    display: none;
    list-style: none;
    width: 90%;
    text-align: center;
}

.dropdown-mobile li {
    margin-bottom: 3px;
    padding: 18px;
}
.dropdown-mobile a {
    color: black;
    font-size: 18px;
}



/* Responsive Styles */
@media (max-width: 768px) {
    /* Show Mobile Header */
    .mobile-header {
        display: flex;
    }

    /* Hide Desktop Navbar */
    .navbar {
        display: none;
    }

    /* Hamburger Menu Styling */
    .hamburger-menu {
        display: flex;
    }

    /* Align Book Lesson Button */
    .book-lesson {
        margin-left: auto;
    }

}















footer {
    background-color: #4C8999; /* Footer background */
    padding: 20px;
    color: white;
    font-family: 'Play', sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-container section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 32px;
}

.footer-logo img {
    max-height: 140px; /* Adjust logo size */
    width: 90%;
    border: white solid;
    padding-right: 12px;
}

.footer-links, .footer-services, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 5px;
}

.footer-links a,
.footer-services a {
    text-decoration: none;
    color: white
}


.footer-links a:hover {
    color: #B8D4D9;
}

.footer-services a:hover {
    color:#B8D4D9;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 16px;
}

@media (max-width: 768px) {

    .footer-logo {
        margin-bottom: 15px;

    }
}














/* index.html */

.hero {
    width: 100%;
    overflow: hidden; /* Prevents unwanted scrolling */
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}







.services {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 24px;
}

.service-tab {
    padding: 23px 27.5px;
    cursor: pointer;
    background-color: gray;
    color: white;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.service-tab:hover {
    background-color: #4C8999;
    transform: scale(1.05);
}

.service-tab.active {
    background-color: #4C8999;
    color: black;
}

.service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.service-content img {
    width: 400px;
    height: auto;
}

.service-text {
    max-width: 500px;
    text-align: left;
    color: #4C8999;
}

.service-text p {
    color: black;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border: #000000 solid;
    transition: background 0.3s;
}

.learn-more:hover {
    background-color: #4C8999;
    border: #4C8999 solid;
}

































/* Default: Hide accordion on large screens */
.mobile-accordion {
    display: none;
    margin-top: 40px;
}

/* Show accordion and hide carousel on smaller screens */
@media screen and (max-width: 768px) {
    .mobile-accordion {
        display: block;
    }
    .services, .trucks {
        display: none;
    }
}


.accordion-content iframe {
    width: 100%;
    max-width: 350px;
    height: 200px;
    border: #000 solid;
    margin: 32px;
}





/* Accordion Styles */
.mobile-accordion section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-item {
    border-bottom: 1px solid white;
    width: 80%;
    display: flex;
    flex-direction: column;
}

/* Default header style */
.accordion-header {
    background-color: gray;
    color: white;
    padding: 23px 27.5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* Active header style */
.accordion-item.active .accordion-header {
    background-color: #4C8999; /* Active header color */
}

/* Default: Hide content */
.accordion-content {
    display: none;
    background-color: white;
    padding: 15px;
    text-align: center;
}

/* Show content when active */
.accordion-item.active .accordion-content {
    display: block;
}

/* Image adjustments */
.accordion-content img  {
    width: 80%;
    height: auto;
}














/* Styling for the third section */
.third-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.third-section .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    width: 80%;
}

.third-section .row2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}


.third-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4C8999;
}

.third-section p {
    font-size: 18px;
    width: 50%;
}



.video-container iframe {
    width: 100%;
    width: 750px;
    height: 400px;
}

.badge-container {
    gap: 24px;
}


.badge-container img {
    max-width: 250px;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .third-section h2 {
        font-size: 20px;
    }

    .third-section p {
        font-size: 18px;
        width: 100%;
    }

    .video-container iframe {
        height: 225px;
        width: 325px;
    }

    .badge-container {
        flex-direction: column;
    }

    .badge-container img {
        max-width: 250px;
    }
}



















/* precision.html  */

.percision-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title {
    text-align: left;
    background-color: #f5f5f5;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 32px;
}

.title p {
    font-family: 'Play', sans-serif;
    font-size: 18px;
    width: 70%;
}

.capabilities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 70%;
}





/* Flip Card Container */
.flip-card {
    background-color: transparent;
    width: 450px;
    height: 310px;
    perspective: 1000px;
    border: #000000 solid;
}





/* Flip Card Inner Container */

/* Default Flip Animation */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Flip on Hover (For Desktop) */
@media (hover: hover) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}

/* Flip on Tap (For Mobile & Tablet) */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}


/* Front & Back of the Flip Card */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* Front Card - Video Side */
.flip-card-front {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Back Card - Text Side */
.flip-card-back {
    background: #B8D4D9;
    color: #000;
    transform: rotateY(180deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-card-back ul {
    list-style-type: none;
    padding: 0;
}

.flip-card-back ul li {
    font-size: 16px;
    margin: 8px 0;
}


/* Get a quote button */

.quote-btn {
    display: inline-block;
    margin: 40px;
    padding: 10px 60px;
    background-color: #4C8999;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: #000000 solid;
    transition: background 0.3s;
}

.quote-btn:hover {
    background-color: #B8D4D9;
    border: #000000 solid;
}



.equipment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: #f5f5f5;
    padding-bottom: 40px;
}

.equipment-section p {
    font-family: 'Play', sans-serif;
    font-size: 18px;
    width: 70%;
}

.equipment-section a {
    padding: 8px;
    border: #000 solid;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.equipment-section a:hover {
    background-color: #4C8999;
    border: #4C8999 solid;
    color: white;
}





/* Grid container */
.dropdown-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3x3 */
    gap: 16px;
    padding: 32px 160px;
    justify-content: center;
}

/* Equipment item styles */
.equipment {
    text-align: center;
    background-color: #f5f5f5;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.equipment-header {
    font-weight: bold;
}

.equipment-header-inner {
    background-color: #4C8999;
    border: 2px solid #000;
    padding: 10px;
}

/* Equipment content hidden by default */
.equipment-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #f5f5f5;
    color: #4C8999;
    text-align: left;
    font-size: 18px;
}

/* Responsive grid layout */
@media screen and (max-width: 1024px) {
    .dropdown-group {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        padding: 16px;
    }
}

@media screen and (max-width: 600px) {
    .dropdown-group {
        grid-template-columns: 1fr; /* 1 column on mobile */
        padding: 8px;
    }
}






.markets {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.markets h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Grid Layout */
.markets-group {
    display: grid;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

/* Default Layout: 1 Column (Mobile) */
@media (max-width: 600px) {
    .markets-group {
        grid-template-columns: 1fr;
    }
}

/* Tablet Layout: 2 Columns */
@media (min-width: 601px) and (max-width: 1024px) {
    .markets-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Layout: 3 Columns */
@media (min-width: 1025px) {
    .markets-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.market-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.market-item h3 {
    margin-top: 12px;
}



/* Gallery Layout */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background-color: #f5f5f5;
    width: 100%;
}

.gallery-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.gallery-item {
    width: 250px;
    height: 350px;
    cursor: pointer;
    text-align: center;
}

.gallery-item img {
    width: 90%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    background: #4C8999;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

.prev-btn { left: -50px; }
.next-btn { right: -50px; }

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .overlay img {
        width: 80%;
        height: auto;
    }
    .prev-btn { left: 0px; }
    .next-btn { right: 0px; }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }

    .overlay img {
        width: 80%;
        height: auto;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}



/* Pagination Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
    flex-wrap: wrap;
}

/* Default number style */
.pagination span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #4C8999;
    transition: all 0.3s ease;
    color: white;
    background-color: transparent;
}

/* Active (current image) number style */
.pagination span.active {
    color: black;
    background-color: #4C8999;
}

/* Arrow buttons */
.pagination-arrow {
    font-size: 18px;
    font-weight: bold;
    color: #4C8999;
    background: transparent;
    cursor: pointer;
    border: none;
    user-select: none;
}

.pagination-arrow:hover {
    color: #FFFFFF;
    background: #4C8999;
}

/* Responsive Pagination */
/* Medium screens (max 10 numbers) */
@media (max-width: 1024px) {
    .pagination span {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Small screens (max 5 numbers) */
@media (max-width: 600px) {
    .pagination span {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}




























/*radiant.html*/
.radiant-page {
    align-items: center;
    text-align: left;
    justify-content: center;
}

.radiant-page h1, h2, h3 {
    text-align: center;
}

.green {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.green div {
    width: 70%;
    font-size: 18px;
}

.quote-btn2 {
    text-align: center;
}

.manual {
    background-color: #f5f5f5;
    padding: 32px;
}

.manual-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3x3 */
    gap: 16px;
    padding: 32px 160px;
    justify-content: center;
}

/* Medium Screens (2x8) */
@media (max-width: 1024px) {
    .manual-group {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        padding: 32px;

    }
}

/* Small Screens (1x7) */
@media (max-width: 768px) {
    .manual-group {
        grid-template-columns: repeat(1, 1fr); /* 1 column */
        padding: 16px;

    }
}


.manual-group div {
    border: #000 solid;
    font-weight: bold;
    font-size: 18px;
    background-color: #4C8999;
    text-align: center;
    display: flex; /* Centering content */
    align-items: center;
    justify-content: center;
}

.manual-btn {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    padding: 8px 16px; /* Moves padding to anchor */
    font-weight: bold;
}

.manual-group div:hover {
    background-color: white;
}

.manual-group div:hover .manual-btn {
    color: black;
}

/* Carousel Container */

.single-gallery {
    margin: 32px;
}



.gallery-group2 {
    display: flex;
    justify-content: center;
}

.gallery-item2 {
    width: 100%;
    max-width: 750px;
    cursor: pointer;
    text-align: center;
}

.gallery-item2 img {
    width: 90%;
    object-fit: cover;
    border-radius: 5px;
}































/* carpte.html */
.trucks {
    text-align: center;
    padding: 40px;
}

.truck-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 24px;
}

.truck-tab {
    padding: 23px 27.5px;
    cursor: pointer;
    background-color: gray;
    color: white;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    min-width: 250px;
}

.truck-tab:hover {
    background-color: #4C8999;
    transform: scale(1.05);
}

.truck-tab.active {
    background-color: #4C8999;
    color: black;
}

.truck-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.truck-content iframe {
    width: 550px;
    height: 300px;
}

.truck-text {
    max-width: 500px;
    text-align: left;
    color: #4C8999;
}

.truck-text p {
    color: black;
}

.truck-learn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border: #000000 solid;
    transition: background 0.3s;
}

.truck-learn-more:hover {
    background-color: #4C8999;
    border: #4C8999 solid;
}










/* Accessories */

.accessories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 32px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
}

.button-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #f5f5f5;
    border: #000 solid;
    padding: 20px;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
    width: 250px; /* Adjust size as needed */
}

.button-tile img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.button-tile h2 {
    margin-top: 10px;
    transition: color 0.3s;
}

.button-tile:hover {
    background: #4C8999;
    transform: scale(1.05);
}

.button-tile:hover h2 {
    color: white;
}

@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
}








.used-trucks {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    background-color: #f5f5f5;
    padding: 32px;
}

.used-trucks h2 {
    margin-bottom: 32px;
}

.button-container2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.button-tile2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
    width: 100%;
    max-width: 550px;
}

.button-tile2 img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.button-tile2 h2 {
    margin-top: 10px;
    transition: color 0.3s;
}

.button-tile2 h3 { 
    color: black;
    font-size: 24px;
    font-weight: 100;
    margin: 16px;
    padding: 0;
}

.button-tile2 h4 {
    color: #85BB65;
    font-size: 32px;
    font-family: 'Play', sans-serif;
    margin: 0;
    padding: 0;
}

.button-tile2:hover {
    background: #FFFFFF;
    transform: scale(1.05);
}

.button-tile2:hover h2 {
    font-size: 28px;
}


.button-tile2:hover h4 {
    font-size: 36px;
}

/* Mobile: 1 column layout */
@media (max-width: 768px) {
    .button-container2 {
        grid-template-columns: 1fr; /* Stack items in a single column */
    }
}



.signup-button {
    background-color: #4C8999; /* Adjusted to match the button color */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 25px; /* Creates rounded edges */
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.signup-button:hover {
    background-color: #B8D4D9; /* Slightly darker on hover */
    transform: scale(1.05); /* Subtle hover effect */
}



.manual2 {
    background-color: #ffffff;
    padding: 32px;
}


.msds-videos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.msds-videos iframe {
    width: 100%;
    max-width: 450px;
    height: 250px;
    border: #000 solid;
    margin: 32px;
}











.reviews {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.review-container {
    overflow: hidden;
    width: 1050px; /* Fits 3 tiles at 350px each */
    margin: 0 auto;
    position: relative;
}

.review-track {
    display: flex;
    width: calc(350px * 6);
    animation: scrollReviews 12s linear infinite;
}

.review {
    min-width: 350px;
    height: 750px;
    margin: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.review img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2100px); } /* Scrolls full width of 6 tiles */
}






