body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f4f7f9;
    margin: 0;
    padding: 0;
}
.header-section {
    background: #FFF;
    color: #000;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}
.header-section .logo {
    width: 320px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}
.header-section h1 {
    font-size: 48px;
    font-weight: 700;
    animation: fadeIn 1.5s ease-in-out;
    color: #0a3d70;
}
.header-section p {
    font-size: 22px;
    font-weight: 300;
    margin-top: 10px;
    animation: fadeIn 2s ease-in-out;
}
.parallax-section {
    height: 400px;
    background: url('images/reward.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}
.section-title {
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
}
.container {
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 30px;
    animation: fadeIn 2s ease-in-out;
}
.btn-custom {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}
.btn-custom:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}
.footer {
    background-color: #2c3e50; /* Keep the footer color the same */
    color: white;
    padding: 40px 0;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer .contact-link {
    color: #3498db;
    font-size: 24px;
}
.footer .contact-link:hover {
    color: white;
}
.footer .email-text {
    display: inline-block;
    margin-left: 10px;
}
.footer i {
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition */
}
.footer .d-flex {
    justify-content: center;
}
.footer .mx-2 {
    margin: 0 10px;
}
/* Hover effect for social media icons */
.footer .d-flex a:hover i {
    transform: scale(1.2); /* Increase size */
    color: #3498db; /* Change color to the custom blue */
}
.contact-info {
    text-decoration: none; 
    color: #3498db; 
    font-size: 18px;
    transition: color 0.3s, transform 0.3s; 
}

.contact-info:hover {
    color: #2980b9; 
    transform: scale(1.1);
}

.contact-info i {
    margin-left: 10px; 
    transition: transform 0.3s;
}

.contact-info:hover i {
    transform: translateX(5px); 
}

/* تنسيق السهم داخل الـ header */
.scroll-to-top {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-to-top:hover {
    color: #0056b3;
}

.scroll-link {
    text-decoration: none;
}

.scroll-to-top i {
    animation: bounce 1.5s infinite; /* تأثير الاهتزاز */
}

/* تأثير حركة السهم */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
