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

h1, h2, h3, .navbar-brand {
    font-weight: 700; /* خط عريض للعناوين */
}

.custom-navbar {
    background-color: #0d1b2a !important;
    padding: 15px 0;
}

.text-gold {
    color: #e09f3e !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: #e0e1dd !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #e09f3e !important;
}

.btn-contact {
    background-color: #e09f3e;
    color: #fff !important;
    border-radius: 5px;
    padding: 8px 20px !important;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #c3842d;
}

.icon-box {
    font-size: 3rem;
    border-right: 2px solid #e09f3e;
    padding-right: 15px;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-item {
        margin-bottom: 10px;
    }

    .btn-contact {
        width: 50% !important;
        margin: 10px auto !important;
        display: inline-block;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
}
/**************************** nav style end ****************************/ 
:root {
    --gold-color: #d4af37; /* الذهبي */
    --dark-bg: #1a1a1a;   /* درجة الغامق المتناسقة مع navbar-dark */
}

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

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

.btn-gold:hover {
    background-color: #b8962d;
    border-color: #b8962d;
    color: #fff;
}

.about-section {
    background-color: #ffffff; /* خلفية بيضاء لراحة العين أو خليها f9f9f9 */
}
/* Who We Are  */


/* Service Card Styling */
.service-card {
    border: none;
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1); /* لون ذهبي شفاف */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .icon-wrapper {
    background: var(--gold-color);
    color: #fff !important;
}

.service-card i {
    font-size: 1.8rem;
    transition: 0.3s;
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Service  */