html {
    margin: 0;
    background-color: #131425;
    color: #FFFFFF;
    font-family: Montserrat;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    color: #FFFFFF;
}

.header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 25px;
    max-height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container .header-logo {
    max-width: 250px;
    height: auto;
}

.header-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-icons .language-icon img {
    max-width: 30px;
    cursor: pointer;
}

.hamburger-menu img {
    max-width: 30px;
    cursor: pointer;
}

.red-text {
    color: red;
    font-family: Comic-sans;
}

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

.hero-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.hero-wrapper {
    display: flex;
    width: 100%;
    animation: slide 12s infinite ease-in-out;
}

.hero-wrapper img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: contain;
}

/* Keyframes for sliding effect */
@keyframes slide {
    0%, 25% { transform: translateX(0); }
    30%, 50% { transform: translateX(-100%); }
    55%, 75% { transform: translateX(-200%); }
    80%, 100% { transform: translateX(-300%); }
}

.container {
    padding: 0 25px;
    max-width: 1440px;
    margin: 0 auto;
}

h1 {
    font-weight: 900;
    font-size: 37px;
}

h2 {
    font-weight: normal;
    font-size: 30px;
}

h3 {
    font-size: 24px;
    font-weight: normal;
}

.ml-3 {
    margin-left: 3em;
}

.grid-2-col {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin: 3em 0;
}

.about-image, .service-image {
    flex: 1;
    display: flex;
}

.about-image img, .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-container {
    flex: 5;
}

.about-container p {
    margin: 0;
    line-height: 25px;
}

.service-text p {
    margin: 0;
}

.about-container p:not(:last-of-type),
.service-text p:not(:last-of-type) {
    margin-bottom: 1em;
}

.products-container {
    display: flex;
    gap: 40px;
    padding: 3em 0;
}

.product {
    background-color: #FFFFFF;
    padding: 40px 25px 25px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.product img {
    max-width: 100%;
}

.product-name {
    color: #111111;
    font-size: clamp(28px, 4vw, 41px);
    font-weight: 900;
}

.text-large {
    font-size: clamp(18px, 2vw, 25.8px);
    line-height: 40px;
}

.map img {
    margin-top: 3em;
}

.service {
    margin: 3em 0;
}

.service-text {
    flex: 2.5;
}

.service-text a {
    display: block;
    text-align: center;
    max-width: fit-content;
    margin: 0 auto;
}

.contact {
    margin: 6em 0 0;
}

.contact-form, .contact-text {
    flex: 1;
}

.contact-form form {
    max-width: 500px;
}

input:not(input[type="checkbox"]), textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: none;
    height: 35px;
    font-size: 20px;
    font-family: 'Montserrat';
}

textarea { 
    height: 80px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin: 0 0 12px 0;
}

.checkbox-container input {
    margin-right: 5px;
}

.submit-btn {
    width: 100%;
    background: red;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 12px;
}

.contact .grid-2-col {
    align-items: center;
}

.text-xlarge {
    font-size: 32px;
    font-weight: 900;
    display: block;
    margin-top: 1em;
}

.testimonials .logo-container {
    display: block;
    margin: 0 auto;
    max-width: fit-content;
}

.footer {
    margin-top: 10em;
    padding: 10px 0;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.sm-link img {
    max-width: 38px;
}

.menu-container {
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.6);
    position: fixed;
    height: 100vh;
    background-color: #121423;
    width: 400px;
    right: 0;
    top: 0;
    padding: 10px 25px 10px 45px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 4;
    box-sizing: border-box;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .menu-container {
    transform: translateX(0);
}

nav.menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 4em 0;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-bottom {
    margin-top: auto;
    margin-bottom: 20px;
}

.menu-bottom img {
    max-width: 30px;
}

.logo-container img {
    max-width: 175px;
}

@media (max-width: 1200px) {
    .about-container {
        flex: 2;
    }
}

@media (max-width: 992px) {
    .products-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .grid-2-col {
        flex-direction: column;
    }

    .about-image img, .service-image img {
        max-height: 250px;
        object-fit: contain;
    }

    .red-text {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .menu-container {
        width: 100%;
    }
}