/* Custom CSS for AI & Data Analytics Company - New Design */
:root {
    --primary-dark: #1f2937; /* Dark Slate Gray */
    --secondary-light: #f9fafb; /* Off White */
    --ai-green: #10b981; /* Emerald Green */
    --ai-green-hover: #059669;
    --text-color: #374151; /* Darker Text */
    --text-light-50: #d1d5db;
    --data-gray: #e5e7eb;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background-color: var(--secondary-light);
    color: var(--text-color);
    overflow-x: hidden;
}

/* --- Hero Panel (Left-Aligned Content, Right Visual) --- */
.main-hero-panel {
    position: relative;
    padding-top: 80px; /* للإزاحة عن شريط التنقل */
    padding-bottom: 80px;
    background-color: var(--primary-dark);
    color: white;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* تغطية نصف الشاشة فقط للخلفية */
    height: 100%;
    background-size: cover;
    background-position: left center;
    opacity: 0.1; /* تظليل الصورة بشكل خفيف جداً */
    z-index: 1;
}

.hero-content-area {
    position: relative;
    z-index: 2;
}

.tag-line {
    display: inline-block;
    color: var(--ai-green);
    border: 1px solid var(--ai-green);
    padding: 6px 15px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-subtitle {
    font-size: 1.15rem;
    color: var(--text-light-50);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual-placeholder {
    text-align: right;
    padding: 20px;
}

/* --- Feature Cards (Clean & Simple) --- */
.value-propositions {
    padding: 4rem 0;
    background-color: white;
    border-bottom: 1px solid var(--data-gray);
}

.feature-list-cards {
    margin-top: -80px; /* سحب القائمة للأعلى لتتداخل مع الهيرو بنمط مختلف */
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(31, 41, 55, 0.1), 0 8px 10px -6px rgba(31, 41, 55, 0.1);
}

.clean-stat-card {
    padding: 1.5rem;
    text-align: center;
    border-left: 1px solid var(--data-gray);
}

    .clean-stat-card:last-child {
        border-left: none; /* إزالة الحد من آخر بطاقة */
    }

.card-icon-wrap {
    font-size: 1.8rem;
    color: var(--ai-green);
    margin-bottom: 0.5rem;
}

/* --- Section Heading --- */
.section-heading-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-underline {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

    .section-title-underline::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--ai-green);
        border-radius: 2px;
    }

/* --- Product Cards (Simple & Boxy) --- */
.bg-data-gray {
    background-color: var(--data-gray);
}

.product-card-simple {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #f3f4f6;
}

    .product-card-simple:hover {
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        transform: translateY(-5px);
    }

.product-card-img-container {
    height: 200px;
    overflow: hidden;
}

    .product-card-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-card-info {
    padding: 1.5rem;
}

/* --- Buttons (AI Green) --- */
.btn-ai-main {
    background-color: var(--ai-green);
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px; /* شكل مربع/زاوية حادة */
    border: 2px solid var(--ai-green);
    transition: 0.3s;
}

    .btn-ai-main:hover {
        background: var(--ai-green-hover);
        color: white;
        transform: translateY(-1px);
    }

.btn-ai-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px;
    transition: 0.3s;
}

    .btn-ai-secondary:hover {
        background: white;
        color: var(--primary-dark);
    }

/* --- About/Vision Section (Dark) --- */
.company-vision-panel {
    background-color: var(--primary-dark);
    color: white;
}

.image-with-frame-simple {
    position: relative;
}

    .image-with-frame-simple img {
        display: block;
    }

    /* إزالة تأثير الإطار المزدوج */
    .image-with-frame-simple::before {
        display: none;
    }

/* --- CTA Banner (New Style) --- */
.cta-banner-v2 {
    padding: 80px 0;
}

.cta-content-box {
    background-color: var(--primary-dark);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* نمط مختلف: خطوط مائلة */
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .main-hero-panel {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-image-wrap {
        display: none;
    }

    .hero-visual-placeholder {
        display: none;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .feature-list-cards {
        margin-top: 0;
    }

    .clean-stat-card {
        border-left: none;
        border-bottom: 1px solid var(--data-gray);
    }

        .clean-stat-card:last-child {
            border-bottom: none;
        }
}
