body {
    background-image: url('Assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    scrollbar-width: thin;
    scrollbar-color: #2480cc #222;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: bold;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.178);
    border-radius: 5px;
}

.content-wrapper {
    padding: 80px 20px 20px;
    text-align: center;
}

h3, h4 {
    color: white;
}

img {
    width: auto;
    height: auto;
    position: relative;
    bottom: 800;
}

.logo {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 850;
}


.product-scroll-container2 {
    width: 80%;
    max-width: 100%;
    height: 410px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 160px;
    font-size: xx-large;
    margin-left: 200px;
}
.product-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    font-size: xx-large;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-card img {
    width: 325px;
    height: 325px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.product-card.selected {
    border: 3px solid #2480cc;
    box-shadow: 0 0 10px rgba(36, 128, 204, 0.6);
    transform: scale(1.05);
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.contact-btn {
    background-color: rgba(255, 41, 41, 0.7);
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.email-form {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    width: 250px;
}

.email-form input,
.email-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
}

.email-form button {
    padding: 10px;
    background-color: rgba(255, 41, 41, 0.9);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.email-form button:hover {
    background-color: rgb(0, 0, 0);
}

html {
    scroll-behavior: smooth;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-left: 1800px;
}

.social-media img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.social-media a:hover img {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0px;
    top: 0px;
    width: 2200px;
    height: 1200px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
}

.modal-content {
    background-image: url(Assets/backgroundThin.png);
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    color: rgb(255, 255, 255);
}

.modal-product-scroll-container {
    width: 100%;
    height: auto;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 40px;
}

.close {
    color: rgb(255, 65, 65, 0.7);
    font-size: 100px;
    font-weight: bold;
    position: absolute;
    right: 25px;
    top: 0;
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background-color: #2480cc;
    border-radius: 10px;
    border: 2px solid #222;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #55bbff;
}


.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
