/* إعدادات الخلفية الأساسية */
body {
    background-image: url('img/bgcar.png');
    background-repeat: repeat;
    background-size: auto;
}

/* تنسيق الحاويات العامة للقوائم */
.container {
    max-width: 1200px;
    margin: auto;
}

/* تنسيق الكروت العامة */
.service-card {
    border: 1px solid #d4af37;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

/* تباين الطول للبطاقات */
.short-card {
    height: 300px;
}
.medium-card {
    height: 400px;
}
.large-card {
    height: 500px;
}

/* تنسيق عنوان البطاقة */
.service-card h5 {
    background-color: #d4af37;
    color: #fff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 20px;
}

.gold-text {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1em;
}

/* تنسيقات الشريط العلوي */
.navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: url('img/s.png') no-repeat center center;
    background-size: contain;
    transition: width 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: transparent;
}

.navbar {
    background-color: #8a770f;
}

/* تنسيق الفئات الخاصة */
.service-section {
    margin-top: 30px;
}

.service-section h2 {
    background-color: #d4af37;
    color: #000;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.3em;
    margin-bottom: 15px;
}

/* إعدادات قائمة الصور */
.image-gallery {
    margin-bottom: 15px;
}
.image-gallery img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin: 5px;
}

/* تنسيق النصوص */
.highlighted-text {
    background-color: #d4af37;
    color: #000;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    font-size: 1em;
    display: inline-block;
    margin-bottom: 10px;
}
