/* General Styles */
body {
    font-family: "Calibri", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
}

.logo img {
    height: 70px;
}

.logo p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.header-right {
    display: flex;
    align-items: center;
}

.linked-images img {
    height: 30px;
    margin-left: 10px;
}

nav select {
    padding: 5px;
    margin-left: 20px;
}

.hero {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about {
    display: flex;
    padding: 15px;
}

.about-text {
    width: 60%;
    padding-right: 20px;
    text-align: justify;
    font-style: italic;
}

.about-images {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.about-images img {
    width: 100%;
    height : auto
    margin-bottom: 0px;
}

footer {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: #333333;
    color: #fff;
}

.footer-section {
    text-align: center;
}

.footer-section a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        margin-top: 10px;
    }

    .about {
        flex-direction: column;
    }

    .about-text, .about-images {
        width: 100%;
    }

    footer {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}
/* Brands Section Styles */
.Icon-section {
    padding: 0 20px;
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.Icon-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

.Icon-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.Icon-slide {
    display: flex;
    animation: slide 30s linear infinite;
}

.Icon-slide img {
    height: 50px;
    margin: 0 20px;
    object-fit: contain;
}

/* Animation for sliding Icon */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.brand {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.brand:hover {
    background-color: darkgrey;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.product {
    background-color: chocolate;
    border: 1px solid darkblue;
    padding: 4px;
    text-align: left;
}

