body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.brand-title {
    font-family: 'Almarai', sans-serif;
}

.subtitle {
    font-family: 'Tajawal', sans-serif;
}

.eng-font {
    font-family: 'Montserrat', sans-serif;
}

/* Projects Cards Styling */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

/* Offer Cards Styling */
.offer-card {
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 40;
    }
}