* {
    box-sizing: border-box;
    max-width: 100%;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    text-align: center;
}
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    font-size: 34px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.menu {
    position: sticky;
    top: 0;
    background-color: #333;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
}
.menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}
.menu a:hover {
    background-color: #4CAF50;
    border-radius: 5px;
}
.slideshow-container {
    position: relative;
    max-width: 1200px;
    max-height: 500px;
    margin: auto;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.slide {
    display: none;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.active {
    display: block;
}
.container {
    /* max-width: 1200px; */
    margin: auto;
    padding: 20px;
    max-width: 100%;
    overflow: hidden;
}
.about {
    background: white;
    padding: 40px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about p {
    direction: rtl;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    direction: rtl;
    justify-content: center;
    align-items: center;
}
.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.product img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}
.footer {
    /* margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px;
    width: 100%;
    position: relative;
    bottom: 0;
}

.contact {
    /* display: grid;
    width: 100%;
    height: 250px;
    align-items: start;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr; */

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}
.phoneNumber {
    text-align: center;
    color: white;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    display: flex;
    direction: rtl;
    flex-wrap: wrap;
    gap: 20px;
    height: 320px;
}

.phoneNumber-box {
    height: 100px;
}

.phoneNumber div {
    width: 100%;
}

.phoneNumber span {
    width: 100%;
}
.socialMedia {
    /* text-align: center;
    color: white;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    display: flex;
    direction: rtl;
    flex-wrap: wrap;
    gap: 20px;
    height: 250px; */

    display: flex;
    gap: 15px;
}
/* .socialMedia div {
    margin-top: 170px;
} */

.socialMedia a {
    display: inline-block;
}
.map-container {
    width: 100%;
    height: 150px;

}
.map-container iframe {
    /* width: 100%;
    height: 100%;
    display: block; */

    max-width: 100%;
    height: auto;
}
meta[name="viewport"] {
    content: "width=device-width, initial-scale=1";
}
@media (max-width: 768px) {
    .header {
        font-size: 20px;
    }
    .footer {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}