    body {
        font-family: 'Cairo', sans-serif;
    }

    .navbar-brand, .nav-link, .btn-call {
        font-family: 'Cairo', sans-serif;
        font-weight: 700; /* درجة الثقل */
    }

    :root {
        --main-bg: #0a192f;   
        --gold-color: #ccd6f6;    
        --text-white: #ffffff;
    }


    .custom-navbar {
        background-color: var(--main-bg) !important;
        padding: 15px 0;
        border-bottom: 1px solid #222;
    }

    .navbar-brand {
        color: var(--gold-color) !important;
        font-weight: 700;
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-link {
        color: var(--text-white) !important;
        font-size: 0.95rem;
        font-weight: 500;
        margin: 0 8px;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: all 0.3s ease-in-out;
    }

    .nav-link i {
        color: var(--gold-color);
        font-size: 1.1rem;
    }

    .nav-link:hover {
        color: var(--gold-color) !important;
        outline: 3px solid var(--gold-color);
        background-color: rgba(197, 160, 68, 0.05);
        border-radius: 10px;

    }

    .nav-item.active-tab .nav-link {
        border: 1px solid var(--gold-color);
        border-radius: 10px;
        background-color: rgba(197, 160, 68, 0.05);
        color: var(--gold-color) !important;
    }

    .btn-call {
        background-color: var(--gold-color) !important;
        color: #000 !important;
        font-weight: 700;
        border-radius: 50px;
        padding: 10px 28px;
        border: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: transform 0.2s ease;
    }

    .btn-call:hover {
        transform: scale(1.05);
        background-color: black!important;
        color: white !important;
    }

    @media (max-width: 991px) {
        .navbar-collapse {
            background-color: var(--main-bg);
            padding: 20px;
            margin-top: 15px;
            border-radius: 15px;
            border: 1px solid #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            
        }
        .nav-link {
            padding: 12px 0 !important;
            border-bottom: 1px solid #222;
        }
        .btn-call {
            margin-top: 15px;
            justify-content: center;
        }
    }
    /* navbar Styles  */
    .hero-section {
        position: relative;
        height: 100vh;
        overflow: hidden;
        background-color: #f8f9fa; /* لون فاتح احتياطي */
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('./Photos/hero.png'); /* صورتك الواضحة */
        background-size: cover;
        background-position: center;
        transition: transform 0.1s ease-out; /* حركة خفيفة مع الماوس */
    }

    :root {
        --gold-color: #b38b2d;
    }

    .gold-text {
        color: var(--gold-color);
        font-weight: 700;
        min-height: 40px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .company-name {
        color: #ffffff;
        text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.9), 
                    0px 0px 20px rgba(0, 0, 0, 0.5);
    }

    .btn-call {
        background-color: var(--gold-color) !important;
        color: #fff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        border: none;
    }

    .hero-section {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('./Photos/hero.png');
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
        z-index: 2;
    }
    .lead{
        color: rgb(240, 235, 229);
        font-size: 30px;
        font-weight: 500;
    }
    /* hero end  **************************************/
    :root {
        --deep-gold: #b38b2d;
        --dark-text: #1a1a1a;
        --light-gray: #f9f9f9;
    }

    .about-section {
        background-color: #ffffff;
        font-family: 'Cairo', sans-serif;
    }

    .text-gold {
        color: var(--deep-gold) !important;
    }

    .main-title {
        color: var(--dark-text);
        line-height: 1.3;
    }

    .description {
        color: #555;
        line-height: 1.8;
        font-size: 1.05rem;
        text-align: justify;
    }

    .feature-icon {
        font-size: 1.8rem;
        color: var(--deep-gold);
        margin-left: 15px;
    }

    .feature-box h5 {
        color: var(--dark-text);
        font-size: 1.1rem;
    }

    .feature-box p {
        color: #777;
    }

    /* تنسيق الصورة والإطار */
    .image-wrapper {
        position: relative;
        display: inline-block;
        padding: 20px;
    }

    .main-img {
        position: relative;
        z-index: 2;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .frame-behind {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        height: 80%;
        border: 5px solid var(--deep-gold);
        border-radius: 20px;
        z-index: 1;
    }

    @media (max-width: 991px) {
        .image-wrapper {
            margin-bottom: 30px;
        }
        .frame-behind {
            width: 90%;
            height: 90%;
        }
    }
    /* Who Style end ****************************** */
    :root {
        --card-bg: #222222;
        --gold: #b38b2d;
        --dark: #111111;
    }

    .services-section { background-color: var(--dark); font-family: 'Cairo', sans-serif; }
    .text-gold { color: var(--gold); }

    .flip-card { height: 380px; perspective: 1000px; background-color: transparent; }
    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transform-style: preserve-3d;
    }

    /* اللفة الكاملة 360 */
    .flip-card:hover .flip-card-inner { transform: rotateY(360deg); }

    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 15px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .flip-card-back { transform: rotateY(180deg); background-color: #2a2a2a; }

    .icon-box {
        width: 55px; height: 55px;
        background-color: var(--gold);
        color: #000;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .flip-card-front h3 { color: #fff; font-size: 1.2rem; margin-bottom: 15px; }
    .flip-card-front p { color: #aaa; font-size: 0.9rem; }
    .card-footer-text { margin-top: auto; color: var(--gold); font-weight: bold; font-size: 0.8rem; }

    .btn-gold-action {
        background-color: var(--gold);
        color: #fff;
        border: none;
        padding: 8px 25px;
        border-radius: 50px;
        font-weight: bold;
        margin-top: 15px;
    }
    /* Services Style end  */
    :root {
        --white-bg: #ffffff;
        --navy-blue: #0a1e36;
        --gold-accent: #b38b2d;
    }

    .timeline-section { 
        background-color: var(--white-bg); 
        font-family: 'Cairo', sans-serif; 
        padding: 80px 0;
    }

    .section-title { color: var(--navy-blue); font-weight: 800; }

    .badge-custom { 
        background: var(--navy-blue); color: #fff; padding: 6px 25px; 
        border-radius: 50px; font-weight: bold; font-size: 14px;
    }

    .center-line {
        position: absolute; left: 50%; top: 0; bottom: 0;
        width: 2px; background: #e0e0e0; transform: translateX(-50%);
    }

    .timeline-row { display: flex; align-items: center; margin-bottom: 60px; position: relative; width: 100%; }

    .timeline-card {
        width: 44%; background: var(--navy-blue); padding: 35px;
        border-radius: 20px; box-shadow: 0 15px 40px rgba(10, 30, 54, 0.15);
        transition: 0.4s ease-in-out;
    }

    .timeline-card:hover { transform: translateY(-5px); }

    .timeline-icon {
        width: 65px; height: 65px; background: var(--white-bg);
        border: 3px solid var(--navy-blue); border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: var(--navy-blue); font-size: 26px; position: absolute; left: 50%;
        transform: translateX(-50%); z-index: 10;
    }

    .left-row { justify-content: flex-start; text-align: right; }
    .right-row { justify-content: flex-end; text-align: left; }

    .card-title-text { color: var(--gold-accent); margin-bottom: 15px; font-size: 1.3rem; font-weight: 700; }
    .card-desc-text { color: #ffffff; font-size: 1rem; line-height: 1.8; margin: 0; opacity: 0.9; }

    @media (max-width: 991px) {
        .center-line { left: 30px; }
        .timeline-icon { left: 30px; width: 55px; height: 55px; }
        .timeline-card { width: calc(100% - 90px); margin-left: 90px !important; text-align: right; }
        .left-row, .right-row { justify-content: flex-start; }
    }
    /* Why Us Style  */
    :root {
        --navy: #0a1e36;
        --gold: #b38b2d;
        --light-gray: #f8f9fa;
    }

    /* المدونة */
    .blog-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: 0.3s;
    }
    .blog-card:hover { transform: translateY(-10px); }
    .blog-img { height: 220px; background-size: cover; background-position: center; }
    .blog-body { padding: 25px; }
    .read-more { color: var(--gold); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

    /* التواصل */
    /* الألوان الأساسية - تأكد من تعريفها إذا لم تكن موجودة */
:root {
    --navy: #0a192f;
    --gold: #c5a059;
}

.contact-section { 
    background-color: var(--navy); 
    position: relative; 
    overflow: hidden; /* لمنع أي مشاكل في العرض العرضي */
}

.bg-gold { background-color: var(--gold) !important; }
.navy-text { color: var(--navy); }

.contact-icon-circle {
    width: 50px; 
    height: 50px; 
    background: var(--gold);
    border-radius: 50%; 
    display: flex; 
    align-items: center;
    justify-content: center; 
    color: #fff; 
    font-size: 20px;
    flex-shrink: 0; /* يمنع الدائرة من الانضغاط في الشاشات الصغيرة */
}

.bg-whatsapp { background-color: #25d366; }

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-navy:hover { 
    background: var(--gold); 
    color: #fff; 
}

/* --- تعديلات الريسبونسف (Media Queries) --- */

@media (max-width: 991.98px) {
    .contact-section {
        text-align: center; /* توسيط النصوص في التابلت والموبايل */
    }
    
    .contact-info-box {
        justify-content: center; /* توسيط أيقونات الاتصال */
        text-align: right; /* الحفاظ على اتجاه النص العربي */
    }

    .display-5 {
        font-size: 2rem; /* تصغير حجم العنوان الرئيسي */
    }
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 25px 20px; /* تقليل الحواف الداخلية في الموبايل الصغير */
    }
    
    .contact-info-box {
        flex-direction: column; /* ترتيب الأيقونة فوق النص في الموبايل جداً (اختياري) */
        gap: 10px;
    }
    
    .contact-info-box .ms-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
:root {
    --navy-blue: #0a1e36;
    --gold-accent: #b38b2d;
    --dark-bg: #111111;
}

.main-footer {
    background-color: var(--dark-bg);
    border-top: 4px solid var(--gold-accent);
    color: #fff;
    font-family: 'Cairo', sans-serif;
}

.text-gold { color: var(--gold-accent) !important; }
.border-gold { border-color: var(--gold-accent) !important; }

/* تأثيرات الروابط */
.footer-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold-accent);
    transform: translateX(-8px); /* حركة لليمين في العربي */
}

/* أزرار التواصل */
.btn-contact-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.phone-gold {
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
}

.phone-gold:hover {
    background: var(--gold-accent);
    color: #000;
}

.whatsapp-green {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-green:hover {
    background-color: #1ea952;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* ضبط الريسبونسف للموبايل */
@media (max-width: 991.98px) {
    .main-footer { text-align: center !important; }
    .row { text-align: center !important; }
    .footer-link:hover { transform: translateY(-3px); }
    .brand-wrapper .d-flex { justify-content: center !important; }
    .contact-btns-wrapper { max-width: 300px; margin: 0 auto; }
    .footer-description { margin: 0 auto; }
}

@media (max-width: 576px) {
    .h3 { font-size: 1.4rem; }
    .btn-contact-custom { font-size: 0.9rem; padding: 10px 15px; }
}