/* General Styles */
body {
    font-family: 'Reem Kufi', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    background-color: #f9f9f9;
    color: #333;
}

/* Hero Section */
.hero {
    background: url('backgorund.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.btn {
    background-color: #a6893e;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn:hover {
    background-color: #8b732c;
}

/* Sections */
.section {
    padding: 80px 20px;
    text-align: center;
}

/* Products */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    width: 320px;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: #a6893e;
}

/* Contact */
.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    background-color: #25d366;
    padding: 15px;
    border-radius: 50%;
}
/* Fade-in Effect */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
