﻿/* Who Section */
.who-section {
    background: linear-gradient(135deg, #f6f8f9, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: start;
    border-top: 4px solid var(--primary);
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

.card-header {
    background-color: var(--primary);
    color: white;
    padding: 20px 25px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 16px 16px 0 0;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

    .card-body ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .card-body ul li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 15px;
            color: #444;
            line-height: 1.6;
            font-size: 16px;
        }

            .card-body ul li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                width: 22px;
                height: 22px;
                background: var(--primary-bg-light);
                color:var(--primary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: bold;
            }

    .card-body p {
        color: #444;
        font-size: 16px;
        line-height: 1.6;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }
}

/* Why Coaching Section */
.why-coaching {
    background: linear-gradient(135deg, rgba(0, 162, 138, 0.05), rgba(0, 162, 138, 0.02));
    text-align: center;
    padding: 80px 20px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
    text-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .benefit:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .benefit h3 {
        color: var(--primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .benefit h3 i {
            background-color: rgba(0, 162, 138, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Services Section */
.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 162, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 32px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
}

/* How It Works Section */
.how-it-works-section {
    background-color: white;
    text-align: center;
    padding: 80px 20px;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    max-width: 220px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
    z-index: 1;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, rgba(0, 162, 138, 0.1), rgba(0, 162, 138, 0.05));
    text-align: center;
    padding:80px 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .feature i {
        font-size: 48px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .feature h3 {
        margin-bottom: 15px;
        color: var(--secondary);
    }