:root {
    --bg-dark: #0f0f0f;      /* Deep Black */
    --bg-surface: #1a1a1a;   /* Dark Charcoal */
    --gold-primary: #d4af37;  /* Classic Gold */
    --gold-bright: #f9e29b;   /* Light Metallic Gold */
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Image Section - No Text Overlay */
.hero-section {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-primary);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Holding Logo Section */
.holding-brand {
    text-align: center;
    
}

.main-holding-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 25px;
}

.holding-title {
    color: var(--gold-primary);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gold-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gold-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to left, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
    width: 80%;
}

.partner-links {
    padding: 80px 0;
    background-color: var(--bg-dark);
}
/* ضبط انسيابية الحركة في Swiper */
.swiper-wrapper {
    transition-timing-function: linear !important; /* يجعل الحركة مستمرة بدون توقف */
}
.gallery-section{
    margin: 100px 0px;
}
.gallery-section .section-title{
    text-align: center;
    padding: 10px;
    margin: 25px;
}
.swiper {
    width: 100%;
    padding: 10px 0;
}

.swiper-slide {
    height: 200px;
    overflow: hidden;
}

.swiper-slide img {
    width: auto;
    height: 200px;
    object-fit: cover;
}
.logo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-card {
    text-decoration: none;
    color: var(--gold-primary);
    text-align: center;
    transition: all 0.4s ease;
    width: 200px;
}

.logo-wrapper {
    background: var(--bg-surface);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.logo-label {
    display: block;
    color: var(--text-muted); 
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}
.logo-card:hover .logo-label {
    color: var(--gold-primary);
    transform: translateY(-10px);
}

.logo-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.4s ease;
}

.logo-card:hover .logo-wrapper {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.logo-card:hover img {
    filter: grayscale(0) brightness(1);
}

.logo-card span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Solutions Info Section */
.solutions-info {
    background: var(--bg-surface);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.solutions-info h2 {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.solutions-info p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.gold-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gold-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

/* Footer */
footer {
    background: #050505;
    color: #555;
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #111;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section { height: 40vh; }
    .logo-grid { gap: 30px; }
    .holding-title { font-size: 1.8rem; }
}