﻿/*body {
}
<style >*/
/* متغيرات الألوان الجديدة */
/*:root {
    --primary-color: #2aad69;
    --primary-dark: #1e8a4f;
    --primary-light: #d4f3e0;
    --accent-color: #ff6b6b;
    --light-color: #f8f9fa;
    --dark-color: #2a2a2a;
    --text-color: #333;
    --text-light: #777;
    --border-color: #e9ecef;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}*/

/* إعادة ضبط عامة */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    padding-top: 90px;
    background-color: #f5f7fa;
    color: var(--text-color);
    line-height: 1.6;
}*/

/* تنسيق الهيدر - تم التحديث */
/*.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 12px 0;
}

.container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}*/

/* تنسيق الشعار - تم التحديث */
/*.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sitename {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/

/* تنسيق القائمة - تم التحديث */
/*.navmenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navmenu li {
    margin: 0 10px;
    position: relative;
}

.navmenu a {
    color: var(--dark-color);*/ /* جعل النص داكنًا لتحسين الوضوح */
    /*font-weight: bold;*/ /* زيادة سمك الخط */
    /*padding: 12px 16px;
    border-radius: 6px;
    transition: var(--transition);
}*/


    /*  .navmenu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 1rem;
            padding: 12px 16px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            position: relative;
        } */

    /*.navmenu a i {
        margin-left: 8px;
        font-size: 1.1rem;
        transition: var(--transition);
    }*/
    /* 
            .navmenu a:hover,
            .navmenu a.active {
                color: var(--primary-color);
                background-color: rgba(42, 173, 105, 0.08);
            }

                .navmenu a:hover i {
                    transform: translateY(-2px);
                }

                .navmenu a.active:after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 70%;
                    height: 3px;
                    background-color: var(--primary-color);
                    border-radius: 3px;
                } */

    /*.navmenu a:hover,
    .navmenu a.active {
        color: white;
        background-color: var(--primary-color);*/ /* تغيير لون الخلفية عند التفاعل */
        /*box-shadow: 0 2px 8px rgba(42, 173, 105, 0.3);
    }*/

/* تنسيق عربة التسوق - تم التحديث */
/*.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}*/

/* زر البدء - تم التحديث */
/*.btn-getstarted {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42, 173, 105, 0.3);
    border: none;
    cursor: pointer;
}

    .btn-getstarted:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(42, 173, 105, 0.4);
    }

    .btn-getstarted i {
        margin-left: 8px;
        transition: var(--transition);
    }

    .btn-getstarted:hover i {
        transform: translateX(5px);
    }*/

/* تذييل الصفحة - تم التحديث بشكل كامل */
/*footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-links h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

.footer-contact p {
    margin-bottom: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 8px;
    transition: var(--transition);
}

    .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

.copyright {
    padding-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}*/

/* تنسيق للأجهزة المحمولة - تم التحديث */
/*.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    background: none;
    border: none;
}

@@media (max-width: 992px) {
    .navmenu ul {
        position: fixed;
        top: 90px;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        box-shadow: var(--shadow);
        padding: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

        .navmenu ul.active {
            transform: translateY(0);
        }

    .navmenu li {
        margin: 8px 0;
    }

    .mobile-nav-toggle {
        display: block;
        margin-left: 15px;
    }

    .btn-getstarted {
        display: none;
    }
}

@@media (max-width: 576px) {
    .logo {
        font-size: 1.5rem;
    }

    .sitename {
        font-size: 1.5rem;
    }
}*/

/* تحسينات إضافية */
/*.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f1f8e9 100%);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
    }

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 25px;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.btn-primary-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
    }

</style >*/
/*.header {
    background-color: #2aad69;*/ /* لون متناسق مع عناصر أخرى */
    /*color: white;*/ /* ضمان وضوح النص */
    /*padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.navmenu ul li a {
    color: white !important;
}

.cart-link {
    color: white !important;
}*/

/* Responsive */
@media (max-width: 768px) {
    .navmenu ul li a {
        color: white !important;
        background: var(--primary-dark);
    }
    .hero-title

{
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.section-title {
    font-size: 2rem;
}

.pricing-card.featured {
    transform: none;
}
}

@keyframes pulse {
    0%, 100%

{
    transform: scale(1);
}

50% {
    transform: scale(1.05);
}

}

@keyframes float {
    0%, 100%

{
    transform: translateY(0);
}

50% {
    transform: translateY(-20px);
}

}

@keyframes slideInRight {
    from

{
    opacity: 0;
    transform: translateX(100px);
}


to {
    opacity: 1;
    transform: translateX(0);
}
}
/* Animations */
@keyframes fadeInUp {
    from

{
    opacity: 0;
    transform: translateY(50px);
}

to {
    opacity: 1;
    transform: translateY(0);
}

}

@keyframes scaleIn {
    from

{
    opacity: 0;
    transform: scale(0.8);
}

to {
    opacity: 1;
    transform: scale(1);
}
}