/*
Theme Name: Ismail Elnaggar Theme
Theme URI: https://ismailelnaggar.com
Author: Ismail Elnaggar
Author URI: https://ismailelnaggar.com
Description: Custom WordPress theme optimized for furniture factories technical office.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ismailelnaggar
*/

/* Custom Styles */
body {
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

/* خلفية المخطط الهندسي (Blueprint Style) */
.blueprint-bg {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* خلفية الشبكة الفاتحة للأقسام */
.grid-bg-light {
    background-color: #f8fafc;
    background-image:
        linear-gradient(#e2e8f0 1px, transparent 1px),
        linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}

/* تأثير النبض للزر الرئيسي */
.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* تنسيق البطاقات */
.tech-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: white;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

/* النافذة المنبثقة */
#offer-modal {
    transition: opacity 0.3s ease;
}

.modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Navigation Menu Styles */
.menu-item {
    list-style: none;
}

.menu-item a {
    text-decoration: none;
    transition: color 0.3s;
}

.menu-item a:hover {
    color: #3b82f6;
    /* tech-primary */
}

.current-menu-item a {
    color: #3b82f6;
    /* tech-primary */
}

/* Preloader Animations */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 3s linear infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.animate-progress {
    animation: progress 0.5s ease-out forwards;
}