* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5530;
    --secondary-color: #4a7c4e;
    --accent-color: #6ba86f;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* شريط التنقل */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-toggle {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.lang-toggle:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* القسم الرئيسي */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    background: rgba(0, 0, 0, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    max-width: 90%;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-cta-button:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* مؤشرات الصور */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    border-color: var(--white);
}

/* أزرار التنقل */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    right: 30px;
}

.hero-next {
    left: 30px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* قسم عن المصنع */
.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(to left, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}


/* قسم الرؤية والرسالة */
.vision {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: visible;
    z-index: 1;
    margin-top: 0;
    clear: both;
}

.vision .container {
    position: relative;
    z-index: 1;
}

.vision .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.vision-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.vision-card p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: justify;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 3rem 2rem;
    border-top: 2px solid var(--accent-color);
    position: relative;
    background: linear-gradient(135deg, rgba(107, 168, 111, 0.03) 0%, rgba(44, 85, 48, 0.05) 100%);
    border-radius: 25px;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(107, 168, 111, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(44, 85, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8fdf9 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(44, 85, 48, 0.2);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--white) 0%, #f0f9f2 100%);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.08) 0%, rgba(107, 168, 111, 0.12) 100%);
    border-radius: 50%;
    padding: 16px;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(44, 85, 48, 0.15));
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.15) 0%, rgba(107, 168, 111, 0.2) 100%);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

.stat-item:hover .stat-icon svg {
    color: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(44, 85, 48, 0.3));
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    transition: all 0.4s ease;
    letter-spacing: -1px;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(44, 85, 48, 0.3));
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.stat-item:hover .stat-label {
    color: var(--primary-color);
}

/* قسم التواصل */
/* قسم التواصل */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 168, 111, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.contact-info-card {
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.info-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.info-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-header p {
    opacity: 0.8;
    font-size: 1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.info-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--white);
    color: var(--primary-color);
}

.info-content {
    flex: 1;
}

.info-content .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 1.1rem;
    font-weight: 600;
}

.phones-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-link-modern,
.email-link-modern {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.phone-link-modern .whatsapp-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.phone-link-modern:hover .whatsapp-icon {
    transform: scale(1.2);
}

.phone-link-modern:hover,
.email-link-modern:hover {
    padding-right: 10px;
    /* For RTL */
    color: var(--accent-color);
}

html[dir="ltr"] .phone-link-modern:hover,
html[dir="ltr"] .email-link-modern:hover {
    padding-right: 0;
    padding-left: 10px;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.map-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Design for Contact */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .map-wrapper {
        height: 400px;
    }
}

/* التذييل */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-text {
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

/* الرسوم المتحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* التصميم المتجاوب */


@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .sidebar-overlay {
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    html[dir="ltr"] .nav-menu {
        right: auto;
        left: -100%;
    }

    html[dir="ltr"] .nav-menu.active {
        left: 0;
        right: auto;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .lang-toggle {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .logo-img {
        height: 55px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo-img {
        height: 90px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }



    .services-grid,
    .about-features,
    .vision-content {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-card p {
        text-align: right;
    }

    .about-text p {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-prev {
        right: 15px;
    }

    .hero-next {
        left: 15px;
    }

    .hero-logo-img {
        max-width: 150px;
    }

    .hero-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-logo-img {
        max-width: 120px;
    }

    .hero-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .hero-prev {
        right: 10px;
    }

    .hero-next {
        left: 10px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 25px;
    }
}

    .container {
        padding: 0 15px;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
        padding: 14px;
    }

    .stat-icon svg {
        width: 42px;
        height: 42px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .vision-card {
        padding: 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo-img {
        height: 70px;
    }
}
/* ��� ����� ������� */
.process {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

/* معرض صور مراحل الإنتاج */
.process-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.process-gallery-item {
    position: relative;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.process-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
    border-radius: 15px;
}

.process-gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.process-gallery-item:hover .gallery-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 85, 48, 0.4) 50%, rgba(44, 85, 48, 0.85) 100%);
}

.gallery-content {
    width: 100%;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.process-gallery-item:hover .gallery-content {
    transform: translateY(-5px);
}

.gallery-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    transition: all 0.4s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.process-gallery-item:hover .gallery-number {
    opacity: 1;
    transform: scale(1.1);
    color: var(--accent-color);
}

.gallery-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(to right, var(--accent-color) 0, var(--accent-color) 10px, transparent 10px, transparent 20px);
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--light-bg);
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
}

.process-step:hover .step-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-color);
    color: var(--white); 
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive adjustments for process */
@media (max-width: 992px) {
    .process-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .process-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .gallery-number {
        font-size: 2.5rem;
    }

    .gallery-content h4 {
        font-size: 1.3rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex: 0 0 100%;
    }
}

/* قسم الخدمات */
.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 168, 111, 0.02) 0%, rgba(44, 85, 48, 0.05) 100%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fdf9 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(44, 85, 48, 0.2);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--white) 0%, #f0f9f2 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(107, 168, 111, 0.15) 100%);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(44, 85, 48, 0.15));
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.2) 0%, rgba(107, 168, 111, 0.25) 100%);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(44, 85, 48, 0.3));
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        padding: 18px;
    }

    .service-icon svg {
        width: 44px;
        height: 44px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }
}

