﻿body {
    font-family: "Cairo", sans-serif;
    min-height: 100vh;
    margin: 0;
    /*background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80") no-repeat center center fixed;*/
    background-size: contain;
    background-image: url('../image/pexels-pawel-aparatem_go-344434867-14616413.svg');
    background-attachment: fixed;
}



/* تأثير الزجاج (Glassmorphism) */
.card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 14px;
    /*.text-muted box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    /* تحسين النص داخل البطاقات */
    .card h5, .card h6 {
        color: #fff;
    }

    .card p, .card .text-muted {
        color: rgba(255, 255, 255, 0.9) !important;
    }

/* تحسين وضوح النص داخل البطاقات */
.card {
    background: rgba(255, 255, 255, 0.92);  خلفية فاتحة شبه شفافة 
    color: #111;  
    border: none;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    نص الفقرات داخل البطاقات
    .card p, .card .text-muted, .card h5, .card h6 {
        color: rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important;
    }
.hero {
    color: #fff;
    background: linear-gradient(90deg, rgba(15,76,129,0.9), rgba(43,127,178,0.9)), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero, .navbar, footer {
    background: rgba(15, 76, 129, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

footer {
    background: rgba(15, 76, 129, 0.3);
}

/* -------------------- */
/* ✨ 1. حركة البطاقات عند الظهور */
/* -------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* نضيف الحركة إلى كل بطاقة */
.card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

    /* كل بطاقة تبدأ متأخرة قليلاً عن السابقة */
    .card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .card:nth-child(6) {
        animation-delay: 0.6s;
    }

/* -------------------- */
/* 🌈 2. ضوء متحرك على الخلفية */
/* -------------------- */
/*body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient( circle at var(--x, 30%) var(--y, 30%), rgba(255, 255, 255, 0.12), transparent 70% );
    animation: moveLight 25s infinite linear;
    pointer-events: none;
    z-index: 0;
}*/

@keyframes moveLight {
    0% {
        --x: 30%;
        --y: 30%;
    }

    25% {
        --x: 70%;
        --y: 40%;
    }

    50% {
        --x: 50%;
        --y: 80%;
    }

    75% {
        --x: 20%;
        --y: 60%;
    }

    100% {
        --x: 30%;
        --y: 30%;
    }
}

/* -------------------- */
/* 💎 3. ترتيب الطبقات */
/* -------------------- */
body, html {
    position: relative;
    z-index: 0;
}

.hero, .navbar, footer, .card {
    position: relative;
    z-index: 1;
}

/* ====== تنسيق قسم التواصل ====== */
.contact-section {
    background: rgba(15, 76, 129, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

    .contact-section h5,
    .contact-section h6 {
        color: #ffd369;
    }

    .contact-section p,
    .contact-section a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
    }

        .contact-section a:hover {
            color: #ffd369;
        }

    .contact-section form .form-control {
        background-color: rgba(255, 255, 255, 0.8);
        border: none;
    }

    .contact-section form label {
        color: #fff;
        font-weight: 600;
    }

    .contact-section .btn-warning {
        background-color: #ffd369;
        border: none;
        color: #0f4c81;
    }

        .contact-section .btn-warning:hover {
            background-color: #ffca3a;
        }

@media (max-width: 768px) {
    .contact-section {
        text-align: center;
    }
}

.contact-section h5 {
    margin-bottom: 8px !important; /* يقرّب الأيقونات أكثر */
}


/* قرب العنوان من الأيقونات */
.contact-section h5 {
    margin-bottom: .25rem !important;
}

/* تكبير خفيف عند التحويم */
.contact-section .d-flex a {
    transition: transform .15s ease, color .15s ease;
}

    .contact-section .d-flex a:hover {
        transform: translateY(-4px);
        color: #ffd369;
    }


/* 🎯 تنسيق قسم المشاريع */
#projects {
    color: #fff;
}

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        background: linear-gradient(135deg, rgba(255, 211, 105, 0.25), rgba(255, 255, 255, 0.1));
        border-color: rgba(255, 211, 105, 0.5);
    }

        .project-card:hover h5 {
            color: #ffd369;
            letter-spacing: 0.5px;
        }

    .project-card p {
        color: rgba(255, 255, 255, 0.85);
        transition: color 0.3s ease;
    }

    .project-card:hover p {
        color: #fff;
    }

/* تحسين بسيط على الهواتف */
@media (max-width: 768px) {
    .project-card {
        margin-bottom: 15px;
    }
}


/* ===== قسم الشراكة (بعد الهيرو) ===== */
#partnership {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin-inline: auto;
    width: 90%;
    padding-inline: 2rem;
}

    #partnership h3 {
        font-size: 1.6rem;
        color: #fff;
    }

    #partnership p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.8;
    }

/* 🖼️ تنسيق اللوغو */
.partnership-logo {
    max-width: 180px;
    transition: transform 0.4s ease;
}

    .partnership-logo:hover {
        transform: scale(1.1);
    }

/* تأثير دخول ناعم */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* الهواتف */
@media (max-width: 768px) {
    #partnership {
        text-align: center;
    }

    .partnership-logo {
        margin-bottom: 15px;
    }
}
.ltr-row {
  direction: ltr;
}
/* التصميم البديل للرؤية والرسالة */
.vision-alt,
.mission-alt {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .vision-alt:hover,
    .mission-alt:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.icon-alt {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-alt i {
        font-size: 1.5rem;
    }


/* قسم About */
#about {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

    .about-image-wrapper img {
        transition: transform 0.5s ease;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .about-image-wrapper:hover img {
        transform: scale(1.05);
    }

.experience-badge {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffd54f 100%) !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.about-placeholder {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .about-placeholder:hover {
        border-color: var(--accent-yellow);
        background: rgba(255, 255, 255, 0.1) !important;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.about-content h2 {
    position: relative;
    padding-bottom: 15px;
}

    .about-content h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-yellow), transparent);
        border-radius: 2px;
    }

.feature-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.feature-item {
    transition: transform 0.3s ease;
}

    .feature-item:hover {
        transform: translateX(-5px);
    }

.stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.stat-item {
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-5px);
    }

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    #about {
        margin: 20px 0;
        padding: 2rem 0 !important;
    }

    .about-image-wrapper img {
        height: 300px;
    }

    .experience-badge {
        padding: 1rem !important;
    }

    .stats .col-4 {
        margin-bottom: 1rem;
    }
}

/* قسم القطاعات */
#sectors {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 25px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

#sectors::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,193,7,0.03)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

/* بطاقات القطاعات */
.sector-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.sector-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.sector-card:hover .sector-overlay {
    opacity: 1;
}

.sector-card .card-body {
    position: relative;
    z-index: 2;
}

/* أيقونات القطاعات */
.sector-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffd54f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.4s ease;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.4);
}

.sector-icon i {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

/* عناوين القطاعات */
.sector-card h5 {
    position: relative;
    padding-bottom: 10px;
}
.pdf-icon-red {
    color: #dc3545 !important;
    transition: all 0.3s ease;
}

.btn:hover .pdf-icon-red {
    color: #b02a37 !important;
    transform: scale(1.1);
}

/* قسم الفريق */
#team {
    background: linear-gradient(135deg, rgba(58, 80, 107, 0.8) 0%, rgba(42, 61, 92, 0.75) 100%) !important;
    backdrop-filter: blur(12px);
    border-radius: 25px;
    margin: 60px 0;
}

/* بطاقات الفريق */
.team-card {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    transition: all 0.4s ease;
    min-height: 380px;
}

    .team-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        border-color: rgba(240, 180, 0, 0.4) !important;
        background: rgba(255, 255, 255, 0.18) !important;
    }

/* الصور الشخصية */
.team-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #d4a900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(240, 180, 0, 0.3);
    transition: all 0.4s ease;
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(240, 180, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.avatar-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.avatar-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

/* المناصب */
.position-badge {
    display: inline-block;
    background: rgba(240, 180, 0, 0.15);
    color: var(--accent-yellow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(240, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .position-badge {
    background: rgba(240, 180, 0, 0.25);
    transform: scale(1.05);
}

/* وصف الفريق */
.team-description {
    line-height: 1.6;
    opacity: 0.9;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* مهارات الفريق */
.team-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover .skill-tag {
    background: rgba(240, 180, 0, 0.2);
    color: var(--accent-yellow);
    border-color: rgba(240, 180, 0, 0.4);
    transform: translateY(-2px);
}

/* التأثيرات */
.team-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(240, 180, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team-card:hover .team-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* إصلاح مشكلة بطاقات الفريق */
.team-card {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    transition: all 0.4s ease;
    min-height: 380px;
    opacity: 1 !important; /* إضافة هذه السطر */
    visibility: visible !important; /* إضافة هذه السطر */
    display: block !important; /* إضافة هذه السطر */
}

    /* إزالة أي تأثيرات إخفاء */
    .team-card.hide,
    .team-card.hidden {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

/* التأكد من أن البطاقات مرئية دائماً */
#team .team-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* تحسين تأثيرات الحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card {
    animation: fadeInUp 0.8s ease-out forwards !important; /* إضافة forwards */
}

    .team-card:nth-child(2) {
        animation-delay: 0.2s !important;
        animation-fill-mode: forwards !important;
    }

    .team-card:nth-child(3) {
        animation-delay: 0.4s !important;
        animation-fill-mode: forwards !important;
    }



/* تنسيقات الـ NAV المحسنة */
.custom-navbar {
    background: linear-gradient(135deg, rgba(45, 65, 95, 0.98) 0%, rgba(35, 55, 85, 0.95) 100%) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

    .custom-navbar.scrolled {
        background: linear-gradient(135deg, rgba(35, 55, 85, 0.98) 0%, rgba(25, 45, 75, 0.95) 100%) !important;
        padding: 0.5rem 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

/* العلامة التجارية */
.navbar-brand {
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        transform: translateY(-2px);
    }

.nav-logo-placeholder {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #d4a900 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(240, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .nav-logo-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(240, 180, 0, 0.4);
}

.nav-logo-placeholder i {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.2rem;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--accent-yellow);
    opacity: 0.9;
}

.navbar-brand:hover .brand-name {
    color: var(--accent-yellow);
}

/* عناصر التنقل */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 2px;
}

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 0;
        height: 2px;
        background: var(--accent-yellow);
        transition: width 0.3s ease;
        border-radius: 1px;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 80%;
    }

    .nav-link:hover {
        color: var(--accent-yellow) !important;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .nav-link.active {
        color: var(--accent-yellow) !important;
        background: rgba(240, 180, 0, 0.1);
    }

    .nav-link i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .nav-link:hover i {
        transform: scale(1.2);
    }

/* زر CTA الخاص */
.nav-cta {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #d4a900 100%);
    color: var(--primary-dark) !important;
    font-weight: 600;
    margin-right: 1rem !important;
    border: none;
    box-shadow: 0 4px 15px rgba(240, 180, 0, 0.3);
}

    .nav-cta::before {
        display: none;
    }

    .nav-cta:hover {
        background: linear-gradient(135deg, #d4a900 0%, #bf9800 100%);
        color: var(--primary-dark) !important;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(240, 180, 0, 0.4);
    }

/* زر القائمة للموبايل */
.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
}

    .custom-toggler:hover {
        border-color: var(--accent-yellow);
        background: rgba(240, 180, 0, 0.1);
    }

    .custom-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: all 0.3s ease;
    }

    .custom-toggler:hover .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 180, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

/* مؤشر التمرير */
.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-yellow), #ffd54f);
    transition: width 0.3s ease;
    border-radius: 0 2px 2px 0;
}

/* تأثيرات الحركة */
@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .nav-item {
    animation: navItemFadeIn 0.6s ease-out;
}

    .navbar-nav .nav-item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navbar-nav .nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .navbar-nav .nav-item:nth-child(4) {
        animation-delay: 0.3s;
    }

    .navbar-nav .nav-item:nth-child(5) {
        animation-delay: 0.4s;
    }

    .navbar-nav .nav-item:nth-child(6) {
        animation-delay: 0.5s;
    }

    .navbar-nav .nav-item:nth-child(7) {
        animation-delay: 0.6s;
    }

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 0.6rem 0;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, rgba(35, 55, 85, 0.98) 0%, rgba(25, 45, 75, 0.95) 100%);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        margin: 0.2rem 0;
        text-align: center;
        border-radius: 8px;
    }

    .nav-cta {
        margin: 0.5rem 0 !important;
    }

    .brand-subtitle {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-logo-placeholder {
        width: 40px;
        height: 40px;
    }

        .nav-logo-placeholder i {
            font-size: 1.1rem;
        }

    .brand-name {
        font-size: 1rem;
    }
}
/* تأثير الزجاجي للكروت - بلون أزرق مخفف */
.sector-card {
    background: rgba(15, 76, 129, 0.25) !important; /* تم تخفيف الشفافية من 0.4 إلى 0.25 */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important; /* حدود أخف */
    color: #fff;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /*.sector-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        background: rgba(15, 76, 129, 0.35) !important;*/ /* تخفيف عند الهوفر أيضاً */
        /*border-color: rgba(255, 255, 255, 0.25) !important;
    }*/

sector-card.light-blue {
    background: rgba(86, 140, 200, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    /*## بدائل إضافية لألوان أخف:

```css*/
    /* الخيار 1: أزرق فاتح جداً */
    /*.sector-card.light-blue {
    background: rgba(86, 140, 200, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}*/
    /* الخيار 2: أزرق رمادي */
    /*.sector-card.gray-blue {
    background: rgba(120, 144, 156, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}*/
    /* الخيار 3: شفافية بيضاء مع لمسة زرقاء */
    /*.sector-card.white-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

    .sector-card.white-glass:hover {
        background: rgba(255, 255, 255, 0.15) !important;
    }*/
    /* تحسين النص للخلفيات الفاتحة */
 .sector-card h5, .sector-card h6 
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);  
}

.sector-card p {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

 تحسين الأيقونات 
.sector-icon {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.sector-card:hover .sector-icon {
    background: rgba(255, 193, 7, 0.15) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
}

.brand-logo {
    width: 180px; /* أو أي حجم تريده */
    height: auto; /* للحفاظ على التناسب */
    transition: all 0.3s ease;
}

/* تأثير عند التمرير */
.navbar.scrolled .brand-logo {
    width: 150px; /* حجم أصغر عند التمرير */
}

.brand-logo {
    width: 150px;
    max-width: 100%;
     height:  auto;
}
.contact-section a i {
    transition: 0.3s;
}

.contact-section a:hover i {
    color: #ffc107;
    transform: scale(1.2);
}
