@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #007bff;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

.navbar-dark .navbar-brand {
    color: #fff;
    font-weight: bold;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://media.istockphoto.com/id/1324117090/photo/stainless-steel-rolls-rolls-of-steel-sheet-in-the-warehouse-a-roll-of-galvanized-steel-sheet.jpg?s=612x612&w=0&k=20&c=Kqas7-VSRNAOdXnt0oqSWlIWyr-7StuOSZVXSglMsOo=') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3.5rem;
}

#services .service-box {
    padding: 40px 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

#services .service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#services .service-box i {
    color: var(--primary-color);
}

#gallery .row {
    display: flex;
    flex-wrap: wrap;
}

#gallery .col-md-4 {
    display: flex;
    align-items: stretch;
}

#gallery img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    width: 100%;
    object-fit: cover;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#about img {
    border-radius: 10px;
}



#contact h3 {
    font-weight: 700;
}

#contact i {
    margin-right: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

body {
    padding-top: 56px;
}
