/* Navbar */
.navbar-brand {
    position: absolute;
    display: flex;
    top: 1px;
    left: 56px;
    ;
    font-family: Arial, Helvetica, sans-serif;
    /* Heading */
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    color: #FFFFFFFF;
    align-items: center;
    margin-left: 4px;

}

#webName {
    margin-left: 0.5px;
}


#logo {
    width: 25px;
    height: auto;
    margin-right: 0px;
}

.nav {
    background-color: #4CB332FF;

}

/* بيغير لون النص اللي مكتوب في ال Nav */
.nav-link {
    color: #FFFFFFFF;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #000000;
    font-weight: 500;

}

.nav-link.active {
    color: #fbfbfb;
    font-weight: 600;
    background-color: #4CB332FF;
    box-shadow: 0 4px 6px rgb(48, 110, 32);
    /* ظل يخليها طالعة لفوق */
    transform: translateY(-2px);
    /* يرفعها لفوق */
}

/* Title */
.title-page {
    margin-top: 90px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #4CB332FF;
}

.p-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #565D6DFF;
}

/* Reward Cards */
.reward-card {
    background: linear-gradient(128.64deg, #4CB332FF 0%, #00A8A0FF 100%);
    color: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reward-card img {
    width: 80px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.reward-card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.reward-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.reward-card .btn {
    background: white;
    color: black;
    font-weight: 500;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
    border: none;
}

.reward-card .btn:hover {
    background: #f2f2f2;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

footer {
    color: white;
    padding: 15px 20px;
    text-align: center;
    background: linear-gradient(128.64deg, #4CB332FF 0%, rgb(27, 183, 105) 100%);

}


footer .footer-col {
    margin: 10px 0;
}

footer h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #222;
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 5px;
}