: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  */

.title-page {
    text-align: center;
    margin: 120px 0 50px 0;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #333333;
}

.trainer-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    max-width: 300px;
    margin: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.trainer-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 15px auto;
    display: block;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00a5a5;
}

.book-btn {
    background-color: #4CB332FF;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
}

.book-btn:hover {
    background-color: #218838;
}


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