/* Custom Styles */
body {
    font-family: 'Cairo', sans-serif; /* A nice Arabic font */
}

.hero-section {
    background: url('../img/IMG-20251103-WA0017.jpg') no-repeat center center;
    background-size: cover;
    height: 60vh;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.navbar-brand {
    font-weight: bold;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

#partners img {
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s;
    margin: 15px auto;
}

#partners img:hover {
    filter: grayscale(0%);
}

.btn-primary {
    background-color: #0056b3; /* A professional blue */
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #003d82;
}

/* Add some padding and margins */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#gallery .img-fluid {
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

#gallery .img-fluid:hover {
    transform: scale(1.05);
}

#gallery .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

#gallery .img-box img {
    transition: transform 0.5s ease;
}

#gallery .img-box:hover img {
    transform: scale(1.1);
}

#gallery .img-box .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#gallery .img-box:hover .details {
    opacity: 1;
}

.modal-lg {
    max-width: 80%;
}

.modal-content {
    background-color: transparent;
    border: none;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
}