/* --- Top Section: Profile Training --- */
.profile-section {
    padding: 80px 0;
    /*background-color: #000;*/
    background: radial-gradient(circle at bottom left, #0e3552 0%, #000 60%);
}

.main-heading-container {
    display: flex;
    margin-bottom: 40px;
}

.profile-text p {
    font-size:18px;
    line-height: 1.8;
    font-weight: 400;
    color: #d1d1d1;
    margin-bottom: 1.5rem;
}

.profile-text p:last-child {
    margin-bottom: 0;
}

.profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

/* --- Middle Section: Coaching Agenda --- */
.agenda-section {
    padding: 100px 0;
    /* Light gray gradient overlay on an interior background image */
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #000;
}

.agenda-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: var(--color-2);
    font-family: var(--font-02);
}

.agenda-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 60px;
    font-family: var(--font-01);
}

.agenda-list {
    list-style: none;
    padding: 0;
}

.agenda-list li {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
    /*display: flex;*/
    align-items: flex-start;
    font-family: var(--font-01);
}

.agenda-list li .dash {
    color: #c99f43;
    font-weight: 800;
    margin-right: 15px;
}

.btn-inquire {
    display: inline-block;
    border: 2px solid #000;
    color: #000;
    padding: 12px 40px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: var(--font-01);
}

.btn-inquire:hover {
    background-color: var(--color-1);
    color: #fff;
    border: 2px solid var(--color-1);
}

/* --- Bottom Section: Experiences --- */
.experiences-section {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.experiences-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.experience-card {
    background-color: rgba(15, 15, 15, 0.85);
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    font-family: var(--font-02);
}

.exp-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.exp-divider {
    width: 50px;
    height: 2px;
    background-color: #c99f43;
    margin-bottom: 30px;
}

.exp-text {
    color: #d1d1d1;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    font-family: var(--font-01);
}

/* Responsive Design */
@media (max-width: 991px) {
    .profile-img { margin-top: 40px; }
    .agenda-title { font-size: 2.2rem; }
    .experience-card { padding: 40px 20px; }
}

@media (max-width: 768px) {
    .profile-section { padding: 50px 0; }
    .experiences-section { padding: 80px 0; }
}