:root {
    --primary: #1e4fd7;
    --dark-blue: #0a1b3d;
    --orange: #ff6b00;
    --text-main: #444;
    --bg-light: #f9fbff;
    --white: #ffffff;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; color: var(--text-main); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }

/* Header */
header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { background: var(--orange); color: white; padding: 5px 10px; border-radius: 8px; font-weight: bold; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--dark-blue); font-weight: 500; }
.lang-switch a { background: var(--dark-blue); color: white; padding: 8px 15px; border-radius: 20px; }

/* Hero Section */
.hero { background: linear-gradient(135deg, #1e4fd7 0%, #06122d 100%); color: white; padding: 100px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content h1 span { color: var(--white); text-decoration: underline var(--orange); }
.hero-btns { display: flex; gap: 15px; margin-top: 30px; }
.btn { border: none; padding: 15px 30px; border-radius: 10px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; }
.btn-orange { background: var(--orange); color: white; }
.btn-white-outline { background: transparent; border: 2px solid white; color: white; }
.hero-image img { width: 100%; border-radius: 25px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); }

/* Mission/Vision Cards */
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.mv-card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon-box { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: white; }
.icon-box.orange { background: var(--orange); }
.icon-box.blue { background: var(--primary); }

/* Why Us Section */
.why-us { background: var(--primary); color: white; padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; text-align: center; backdrop-filter: blur(10px); }

/* How We Work Process */
.process-steps { display: flex; justify-content: space-between; align-items: center; position: relative; margin-top: 50px; }
.step { text-align: center; z-index: 2; flex: 1; }
.step-icon { width: 70px; height: 70px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--orange); font-size: 1.5rem; }
.step-line { height: 2px; background: #ddd; flex-grow: 1; margin-top: -50px; z-index: 1; }

/* Footer */
.footer { background: var(--dark-blue); color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links a { color: #ccc; text-decoration: none; line-height: 2.5; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; font-size: 0.9rem; }

/* WhatsApp */
.whatsapp-fixed { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* تأثيرات الأزرار - Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-orange:hover {
    background-color: #e66000; /* درجة أغمق قليلاً */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.btn-white-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* تأثير كروت الخدمات - Service Cards UX */
.service-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: rgba(30, 79, 215, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* حركة الأيقونة داخل الكارت عند الهوفر */
.service-card:hover .s-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--orange);
    color: white;
}

.service-card a {
    transition: margin-left 0.3s ease;
}

.service-card:hover a {
    margin-left: 10px; /* السهم بيتحرك لبره شوية */
    color: var(--orange);
}

/* تأثير كروت المشاريع - Projects (image_de82f8.jpg) */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.project-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1); /* زووم بسيط للصورة */
}

.project-overlay {
    transition: opacity 0.3s ease;
    background: linear-gradient(to top, rgba(10, 27, 61, 0.9), transparent);
}

:root {
    --deep-blue: #0a2463;
    --primary-blue: #1e4fd7;
    --orange: #ff6b00;
    --light-gray: #666;
}

.section-padding { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.main-title { color: var(--deep-blue); font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.sub-title { color: var(--light-gray); font-size: 1.1rem; }

/* About Flex Section */
.about-flex { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.about-image-wrapper { flex: 1; }
.about-img { 
    width: 100%; 
    border-radius: 40px; /* انحناء كبير زي الصورة */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}
.about-img:hover { transform: scale(1.02); }

.about-content { flex: 1.2; }
.description { color: var(--light-gray); font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }

.features-list { list-style: none; padding: 0; }
.features-list li { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--deep-blue);
    font-weight: 500;
}
.features-list i { color: var(--orange); font-size: 1.2rem; }

/* Mission & Vision Cards */
.mv-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card { 
    background: #fff; 
    padding: 40px; 
    border-radius: 30px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.04); 
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

/* UX: Card Hover Effect */
.mv-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(30, 79, 215, 0.1);
}

.mv-icon-box { 
    width: 60px; height: 60px; 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    color: #fff; 
    margin-bottom: 25px; 
}
.orange-bg { background: var(--orange); box-shadow: 0 10px 20px rgba(255,107,0,0.2); }
.blue-bg { background: var(--primary-blue); box-shadow: 0 10px 20px rgba(30,79,215,0.2); }

.mv-card h3 { color: var(--deep-blue); margin-bottom: 15px; font-size: 1.5rem; }
.mv-card p { color: var(--light-gray); line-height: 1.6; }

:root {
    --primary-blue: #0a2463;
    --accent-orange: #ff6b00;
    --text-gray: #6b7280;
    --bg-white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.services-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header .subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* شبكة الخدمات */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* تصميم البطاقة */
.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 25px; /* انحناء الزوايا كما في الصورة */
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

/* UX: تأثير التفاعل عند الهوفر */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(255, 107, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* رابط Learn More */
.learn-more {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.learn-more i {
    font-size: 0.8rem;
}

.service-card:hover .learn-more {
    gap: 15px; /* حركة السهم عند الهوفر */
}

.why-choose-us {
    background: linear-gradient(135deg, #1e4fd7 0%, #0a2463 100%);
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.why-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.why-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* قائمة المميزات */
.reasons-list {
    list-style: none;
    padding: 0;
}

.reasons-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.reasons-list li:hover {
    transform: translateX(10px); /* UX: حركة تفاعلية عند القراءة */
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #ff6b00; /* البرتقالي الخاص بـ Helper Zone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

/* تصميم الـ Glassmorphism للإحصائيات */
.stats-container {
    display: flex;
    gap: 20px;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.1); /* شفافية بيضاء */
    backdrop-filter: blur(10px); /* تأثير الضبابية خلف الكارت */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    min-width: 160px;
    transition: all 0.4s ease;
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.5);
}

.stat-glass-card h3 {
    font-size: 2.5rem;
    color: #ff6b00;
    margin: 0;
    display: inline-block;
}

.stat-glass-card span {
    font-size: 1.5rem;
    color: #ff6b00;
    font-weight: bold;
}

.stat-glass-card p {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 992px) {
    .why-wrapper { flex-direction: column; text-align: center; }
    .reasons-list li { justify-content: center; }
    .stats-container { flex-wrap: wrap; justify-content: center; }
}

.projects-section {
    padding: 80px 0;
    background-color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    border-radius: 30px; /* انحناء الزوايا زي الصورة */
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* طبقة الظل فوق الصورة */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0; /* مخفي في البداية */
    transition: opacity 0.4s ease;
}

/* UX: ظهور البيانات عند الهوفر */
.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1); /* تأثير زووم هادئ */
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info .category {
    color: #ff6b00; /* لون Helper Zone */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.project-info h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.view-case {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-case:hover {
    gap: 12px;
}

:root {
    --primary-blue: #0a2463;
    --accent-orange: #ff6b00;
    --gray-text: #6b7280;
    --soft-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.process-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
    gap: 20px;
}

/* الخط الواصل بين الخطوات */
.process-line {
    position: absolute;
    top: 35px; /* موازن مع منتصف الدائرة */
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.process-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* الدائرة والأيقونة */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--accent-orange);
    font-size: 24px;
    box-shadow: var(--soft-shadow);
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

/* الـ Tag البرتقالي فوق الأيقونة */
.step-tag {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* UX: تأثير الهوفر */
.process-item:hover .icon-circle {
    background: var(--accent-orange);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.process-item h4 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-item p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
}

/* التجاوب مع الموبايل */
@media (max-width: 992px) {
    .process-container {
        flex-direction: column;
        gap: 50px;
    }
    .process-line {
        display: none; /* إخفاء الخط في الموبايل لسهولة العرض */
    }
}

.testimonials-section {
    background: linear-gradient(135deg, #0a2463 0%, #06122d 100%);
    padding: 100px 0;
    text-align: center;
}

.section-header-centered h2 { color: #fff; font-size: 36px; margin-bottom: 10px; }
.section-header-centered p { color: rgba(255,255,255,0.6); margin-bottom: 50px; }

.testimonial-slider { padding: 20px 20px 60px !important; }

/* الكارت الزجاجي */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* انحناء زوايا مطابق للصورة */
    padding: 40px;
    text-align: left;
    height: 100%;
    transition: 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.client-box { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }

/* أيقونة البروفايل بدل الصورة */
.profile-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b00, #ff9e5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.client-details h5 { color: #fff; margin: 0; font-size: 18px; }
.client-details span { color: #ff6b00; font-size: 14px; }

.glass-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* ستايل نقاط السلايدر */
.swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; }
.swiper-pagination-bullet-active { background: #ff6b00 !important; width: 25px; border-radius: 5px; }

/* الألوان والمتغيرات */
:root {
    --primary-blue: #1e4fd7;
    --navy-blue: #0a2463;
    --orange-accent: #ff6b00;
    --gray-text: #6b7280;
    --soft-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--navy-blue);
    font-size: 34px;
    font-weight: 700;
}

/* توزيع الشبكة */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* تصميم الكارت الأبيض (Form) */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--soft-shadow);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 79, 215, 0.1);
}

/* الزر المتدرج (Gradient Button) */
.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--orange-accent), var(--navy-blue));
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* كارت المعلومات الأزرق */
.info-card-blue {
    background: var(--primary-blue);
    padding: 35px;
    border-radius: 25px;
    color: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item small {
    display: block;
    opacity: 0.7;
    font-size: 12px;
}

.info-item p {
    font-weight: 500;
    font-size: 15px;
}

/* صندوق الصورة */
.image-box img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--soft-shadow);
    display: block;
}

/* التجاوب مع الجوال */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.main-footer {
    background-color: #0a2463; /* اللون الأزرق الداكن الموجود في الصورة */
    color: white;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* الشعار في الفوتر */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    background: #ff6b00; /* اللون البرتقالي المميز للماركة */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

.logo-text h4 { margin: 0; font-size: 20px; }
.logo-text span { font-size: 12px; color: #ff6b00; display: block; }

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
}

/* الروابط السريعة */
.footer-links h4, .footer-social h4 {
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover { color: #ff6b00; padding-left: 5px; }

/* أيقونات التواصل الاجتماعي */
.social-icons { display: flex; gap: 15px; }
.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover { background: #ff6b00; transform: translateY(-3px); }

/* الفاصل السفلي */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom { text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 14px; }

/* زر الواتساب العائم */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* التجاوب مع الجوال */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-about p { margin: 0 auto 20px; }
    .social-icons { justify-content: center; }
    .footer-logo { justify-content: center; }
}

/* ============================= */
/* GLOBAL RESPONSIVE FIXES */
/* ============================= */

img {
    max-width: 100%;
    height: auto;
}

button {
    flex-wrap: wrap;
}

/* ============================= */
/* NAVBAR RESPONSIVE */
/* ============================= */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 15px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .features-list li {
        justify-content: center;
    }
}

/* ============================= */
/* WHY CHOOSE US */
/* ============================= */

@media (max-width: 992px) {
    .why-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================= */
/* PROCESS SECTION */
/* ============================= */

@media (max-width: 992px) {
    .process-container {
        flex-direction: column;
        align-items: center;
    }

    .process-item {
        max-width: 400px;
    }

    .process-line {
        display: none;
    }
}

/* ============================= */
/* PROJECTS SECTION */
/* ============================= */

@media (max-width: 768px) {
    .project-card {
        height: 250px;
    }
}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* FOOTER */
/* ============================= */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}

.logo-icon {
    width: 50px;          /* حدد العرض اللي يناسبك */
    height: 50px;         /* حدد الطول اللي يناسبك */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;     /* عشان لو الصورة كبيرة ما تطلعش بره الحواف */
    background: transparent; /* لو كنت حاطط خلفية برتقالي وعاوز تشيلها */
}

.logo-icon img {
    width: 100%;          /* يخلي الصورة بعرض الـ div */
    height: 100%;         /* يخلي الصورة بطول الـ div */
    object-fit: contain;  /* أهم خاصية: بتحافظ على أبعاد اللوجو بدون ما يتمط */
}


