
:root {
    /* Colors - Al Ryum Brand */
    --primary: #122023;
    --secondary: #9ef3ee;
    --accent: #3f78e0;
    --dark: #262b32;
    --light: #fefefe;
    --gray: #f6f7f9;
    --text-color: #60697b;
    --heading-color: #343f52;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.7;
}
.hero-gradient {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.container {
    max-width: 1280px;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.transition-shadow {
    transition: box-shadow 0.3s ease;
}
.service-card {
    transition: all 0.3s ease;
}

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

.stat-item {
    position: relative;
}

.stat-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .stat-item:after {
        display: none;
    }
}

.news-card {
    transition: all 0.3s ease;
}

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