/* General Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f3f6fc;
}

/* Meal Plans Section */
.meal-plans {
    width: 100%;
    padding: 80px 8% 20px;
    text-align: center;
}

/* Section Header Styling */
.section-header h1 {
    font-size: 2.5em;
    color: #ff6a00;
    font-weight: bold;
}
.section-header p {
    color: #666;
    margin: 10px 0 30px;
    font-size: 1.1em;
}

/* Meal Plans Content */
.meal-plans-contents {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styling */
.meal-plans-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.meal-plans-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.meal-plans-card-header {
    background-color: #ff6a00;
    padding: 30px 20px;
    position: relative;
}
.meal-plans-card-title {
    font-size: 1.2em;
    color: #ffffff;
    font-weight: bold;
}

/* Price Circle */
.price-circle {
    background-color: #ffffff;
    border: 4px solid #ff6a00;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.price-circle .price {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}
.price-circle .desc {
    font-size: 0.9em;
    color: #777;
}

/* Recommend Tag */
/* Recommend Tag */
.tag-box {
    position: absolute;
    top: 20px;
    left: -55px; 
    background-color: #f7f6f6;
    color: #ff6a00;
    padding: 5px 70px; 
    transform: rotate(-45deg);
    font-size: 0.8em;
    font-weight: bold;
    text-align: center; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card Body */
.meal-plans-card-body {
    padding: 20px;
}
.meal-plans-card-body ul {
    list-style-type: none;
    margin-top: 20px;
}
.meal-plans-card-body ul li {
    color: #333;
    font-size: 1em;
    margin: 10px 0;
}
.meal-plans-card-body ul li i {
    color: #ff6a00;
    margin-right: 8px;
}

/* Select Plan Button */
.btn.meal-plan-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6a00;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn.meal-plan-btn:hover {
    background-color: #e55b00;
}
/*   === Team Section Styling Starts ===   */
section.our-team {
    width: 100%;
    padding: 80px 8% 20px;
}

.our-team .team-contents {
    max-width: 1068px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 0 auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    .our-team .team-contents {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .our-team .team-contents {
        grid-template-columns: 1fr;
    }
}

.team-contents .trainer-card {
    position: relative;
    max-width: 350px;
    padding: 10px;
    background-color: var(--light-heading-clr);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s; /* Added scale effect on hover */
}

.trainer-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.trainer-card .trainer-image {
    width: 100%;
    height: 300px;
}

.trainer-card .trainer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.trainer-card .trainer-desc {
    padding: 10px 0;
}

.trainer-card .trainer-desc h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-heading-clr);
}

.trainer-card .trainer-desc p {
    color: var(--dark-text-clr);
    margin-top: 5px;
}

.trainer-card .trainer-contact {
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-clr);
    padding: 15px 10px;
    border-radius: 5px 0 0 5px;
    transition: right 0.3s;
}

.team-contents .trainer-card:hover .trainer-contact {
    right: 0;
}

.trainer-card .trainer-contact a {
    text-decoration: none;
    color: var(--light-heading-clr);
}

.trainer-card .trainer-contact a:not(:last-child) {
    margin-bottom: 15px;
}

.trainer-card .trainer-contact a i {
    font-size: 20px;
    color: var(--light-heading-clr);
    transition: transform 0.3s;
}

.trainer-card .trainer-contact a i:hover {
    transform: scale(1.2);
}

/*   === Team Section Styling Ends ===   */

/*   === Class Schedule Section Styling ===   */
.class-schedule {
    max-width: 1068px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
}

.class-schedule h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ff6a00; /* Highlight heading with #ff6a00 */
    margin-bottom: 15px;
}

/* Class Schedule Section Styling */
.class-schedule {
    max-width: 1068px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
}

.class-schedule h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 15px;
}

/* Class Cards Container Styling for Two-Column Layout */
.class-schedule .class-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.class-schedule .class-card {
    background-color: var(--light-heading-clr);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s;
    overflow: hidden;
    text-align: left;
}

/* Image Styling */
.class-schedule .class-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.class-schedule .class-card h3 {
    color: #ff6a00;
    font-size: 20px;
    margin-bottom: 8px;
}

.class-schedule .class-card p {
    color: var(--dark-text-clr);
    margin: 5px 0;
}

/* Hover Effect */
.class-schedule .class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design: Stacks cards vertically on smaller screens */
@media (max-width: 768px) {
    .class-schedule .class-cards {
        grid-template-columns: 1fr;
    }
}












/*   === Footer Section Styling Starts ===   */
section.page-footer {
    width: 100%;
    padding: 70px 8% 50px;
    background-color: #1f1f1f; /* Darker background */
    color: #fff; /* Light text color for contrast */
}

.page-footer .footer-contents {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three columns */
    grid-gap: 40px;
    text-align: left; /* Align text to the left for a cleaner look */
}

.footer-contents .footer-col {
    display: flex;
    flex-direction: column;
}

.footer-contents .footer-col .footer-col-title {
    margin-bottom: 20px;
}

.footer-col .footer-col-title h3 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    font-weight: bold; /* Make the title stand out */
}

.footer-contents .footer-col .footer-col-desc {
    display: flex;
    flex-direction: column;
}

.footer-col-1 .footer-col-desc p {
    line-height: 1.6;
    color: #ccc; /* Softer color for descriptions */
    margin-bottom: 10px;
}

.footer-col-1 .footer-col-desc span {
    color: #ccc;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-col-1 .footer-social-media {
    display: flex;
    margin-top: 20px;
}

.footer-col-1 .footer-social-media a {
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-col-1 .footer-social-media a i {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background-color: #ff5e00; /* Bright, attractive primary color */
    color: #fff;
    border: 1px solid transparent;
    border-radius: 50%; /* Rounded social media icons */
    transition: all 0.3s;
}

.footer-col-1 .footer-social-media a i:hover {
    background-color: transparent;
    border: 1px solid #ff5e00;
    color: #ff5e00;
}

.footer-col-2 .footer-col-desc a {
    text-decoration: none;
    font-size: 16px;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 17px;
    transition: color 0.3s;
}

.footer-col-2 .footer-col-desc a:hover {
    color: #ff5e00;
}

.footer-col-3 .footer-col-desc p {
    color: #ccc;
    line-height: 1.6;
}

.footer-col-3 .footer-col-desc input {
    width: 100%;
    padding: 15px;
    margin: 20px 0px 15px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 25px;
}

.join-us-btn-wrapper .btn {
    background-color: #ff5e00;
    border: none;
    padding: 12px 25px;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.join-us-btn-wrapper .btn:hover {
    background-color: #e04b00;
}

.copy-rights {
    width: 100%;
    padding: 20px 8%;
    background-color: #1f1f1f;
    border-top: 1px solid #333;
}

.copy-rights p {
    color: #ccc;
    text-align: center;
}

.copy-rights p b {
    color: #ff5e00;
}

/*   === Media Query Starts ===   */
@media (max-width: 768px) {
    .page-footer .footer-contents {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}

@media (max-width: 568px) {
    .footer-col-1 .footer-social-media a i {
        width: 30px;
        height: 30px;
        font-size: 14px; /* Slightly smaller icons on smaller screens */
    }
}

