body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1d3527;
    color: white;
}

/* شريط التنقل */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #122218;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    cursor: pointer;
}

.nav-center a,
.nav-center button,
.nav-right button {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.nav-center a:hover,
.nav-center button:hover,
.nav-right button:hover {
    color: #d4af37;
}

/* القسم الرئيسي */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}

.hero-text {
    width: 45%;
}

.hero-text h1 {
    font-size: 60px;
    color: #d4af37;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.8;
}

.buy-btn {
    padding: 12px 25px;
    font-size: 18px;
    background-color: #d4af37;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

/* الصور */
.slider {
    width: 45%;
    text-align: center;
}

.slider img {
    width: 100%;
    border-radius: 12px;
}

.dots {
    margin-top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* نافذة التواصل */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;
}

.modal-content {
    background: white;
    color: black;
    width: 400px;
    padding: 20px;
    margin: 100px auto;
    border-radius: 10px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

.close {
    float: left;
    cursor: pointer;
    font-size: 24px;
}