:root {
    --green: #4CB332FF;
}

/* Mohamed Navbar */
/* Start Navbar  */
.navbar {
    background-color: var(--green);
    font-size: 20px;
    width: 100%;
}

.navbar-brand {
    transition: 0.3s;
    transition-timing-function: linear;
}

.navbar-brand:hover {
    letter-spacing: 1px;
    transform: scale(1.02);
}

.navbar-nav .nav-link {
    transition: 0.5s;
}

.navbar-nav .nav-link:hover {
    transform: translateY(4px);
    color: white;
}

/* End Navbar  */

.hero {
    background: #f0fdf4;
    padding: 60px 0;
}

.hero img {
    border-radius: 15px;
    max-width: 100%;
}

.card img {
    height: 200px;
    object-fit: cover;
}
.card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    margin: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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


.btn {
    background-color: #4CB332FF;
}

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;
}

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