/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #252525;
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.glow-icon, .glow-icon-end, .glow-icon-sec {
    width: 30px;
    vertical-align: middle;
    margin-left: 5px;
}

.underline-theme {
    width: 60px;
    height: 4px;
    background: #0070B7;
    margin: 10px;
}

.join-mission-title img {
    position: absolute;
    top: 0px;
    right: 146px;
}

.btn-primary {
    background: #0070B7;
    border: none;
    font-family: 'GalanoGrotesque-Bold', sans-serif;
    font-size: 19px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #005f9e;
}

.btn-warning {
    font-family: 'GalanoGrotesque-Bold', sans-serif;
    font-size: 19px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

/* Hero Section */
.about-us-hero-section {
    background: linear-gradient(
        to right,
        white 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(255, 255, 255, 0) 55%
      ),
      url("../images/become-coach-main-mask.png") no-repeat right center / cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 48px;
    font-weight: bolder;
    color: #000;
}

.title-border {
    border-left: 5px solid #f9a826;
    padding-left: 15px;
}

.show-on-mobile {
    display: none;
    padding: 0;
}

.bg-secondary-light {
    background: #f8f9fa;
}

/* Credit Coaching Section */
.credit-coaching-section {
    padding: 60px 0;
    margin-left: 70px;
}

.credit-coaching-card {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 45px;
    position: relative;
    z-index: 1;
    right: 90px;
    top: 127px;
    height: 445px;
}

.brush-blue {
    width: 180px;
    position: relative;
    right: 55px;
    top: 20px;
}

.brush-yellow {
    width: 180px;
    position: relative;
    left: 317px;
    top: 20px;
    z-index: 0;
}

/* Who We Are Section */
.who-we-are-section {
    background: url('../images/become-coach-backgroung-3rd.png') no-repeat center/cover;
    padding: 80px 0;
    text-align: center;
}

.core-values-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.core-values-title span {
    color: #0070B7;
}

.core-value-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
    text-align: left;
}

.core-value-card:hover {
    transform: translateY(-5px);
}

.core-value-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.core-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.core-value-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../images/gro-bullets.png') no-repeat center/contain;
    flex-shrink: 0;
    margin-top: 3px;
}

.second-card {
    border-bottom: 5px solid #0070B7;
}

/* Look Forward Section */
.look-forward-section {
    padding: 60px 0;
}

.look-forward-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.look-forward-image,
.look-forward-text {
    flex: 1 1 48%;
    padding: 20px;
    background: #fff;
    min-height: 320px;
}

.look-forward-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.looking-forward-list {
    list-style: none;
    padding: 20px;
}

.looking-forward-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.looking-forward-list li::before {
    content: '';
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 4px;
}

.looking-forward-list li:nth-child(1)::before {
    background-image: url('../images/looking-for-icon1.png');
}

.looking-forward-list li:nth-child(2)::before {
    background-image: url('../images/looking-for-icon2.png');
}

.looking-forward-list li:nth-child(3)::before {
    background-image: url('../images/looking-for-icon3.png');
}

/* Take Next Step Section */
.take-next-step {
    background: url('../images/become-coach-backgroung-3rd.png') no-repeat center/cover;
    padding: 120px 0;
    text-align: center;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(4, 278px);
    justify-content: center;
    gap: 0;
}

.card {
    border: none;
    position: relative;
    background: no-repeat center/contain;
    width: 280px;
    height: 374px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card:nth-child(1) {
    background-image: url('../images/rounded-rectangle-1.png');
}

.card:nth-child(2) {
    background-image: url('../images/rounded-rectangle-2.png');
    z-index: 1;
}

.card:nth-child(3) {
    background-image: url('../images/rounded-rectangle-3.png');
}

.card:nth-child(4) {
    background-image: url('../images/rounded-rectangle-4.png');
}

.corner-icon {
    position: absolute;
    width: 80px;
}

.corner-icon.top-right {
    top: 28px;
    right: -5px;
}

.corner-icon.bottom-right {
    bottom: 29px;
    right: -6px;
}

.center-icon {
    width: 50px;
    margin-bottom: 15px;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.card-content p {
    font-size: 20px;
    line-height: 30px;
    color: #252525;
    padding: 10px;
}

.card-number {
    position: absolute;
    font-size: 24px;
    color: #252525;
    z-index: 2;
}

.card-number-1, .card-number-3 {
    bottom: 15px;
    right: 74px;
}

.card-number-2 {
    top: 15px;
    right: 73px;
}

.card-number-4 {
    top: 15px;
    right: 173px;
}

/* Join Community Section */
.join-community {
    padding: 60px 0;
    text-align: center;
}

.join-mission-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.glo-img-last {
    position: relative;
    bottom: 128px;
    left: 394px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .card-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: 374px;
    }

    .core-value-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-us-hero-section {
        display: none;
    }

    .show-on-mobile {
        display: block;
    }

    .hero-title {
        font-size: 35px;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    .credit-coaching-section {
        margin-left: 0;
        padding: 40px 15px;
    }

    .credit-coaching-section .row > div {
        text-align: center;
    }

    .credit-coaching-card {
        right: 0;
        top: 0;
        padding: 20px;
    }

    .brush-blue {
        width: 120px;
        left: -30px;
        right: 0;
        top: 26px;
        margin: 10px auto;
        display: block;
    }

    .brush-yellow {
        width: 122px;
        left: 129px;
        right: 0;
        top: -85px;
        margin: 10px auto;
        display: block;
    }

    .who-we-are-section {
        padding: 40px 15px;
    }

    .core-values-title {
        font-size: 28px;
    }

    .core-value-card {
        margin-bottom: 20px;
    }

    .look-forward-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .look-forward-image,
    .look-forward-text {
        flex: 1 1 100%;
        padding: 10px;
        min-height: auto;
    }

    .glo-img-last {
        position: relative;
        width: 30px;
        margin: 10px auto;
        display: block;
        bottom: 94px;
        left: 107px;
    }

    .take-next-step {
        padding: 60px 15px;
    }

    .card-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card {
        max-width: 300px;
        min-height: 300px;
        margin: 0 auto;
    }

    .card-content p {
        font-size: 18px;
        line-height: 26px;
    }

    .center-icon {
        width: 40px;
    }

    .corner-icon {
        width: 60px;
    }

    .card-number {
        font-size: 20px;
    }

    .card-number-1, .card-number-3 {
        bottom: 15px;
        right: 40px;
    }

    .card-number-2, .card-number-4 {
        top: 40px;
        right: 15px;
    }

    .btn-primary,
    .btn-warning {
        font-size: 16px;
        padding: 12px 30px;
    }

    .join-mission-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .corner-icon.top-right {
        top: -2px;
        right: 11px;
    }

    .corner-icon.bottom-right {
        bottom: -1px;
        right: 11px;
    }

    .glow-icon {
        position: relative;
        max-height: 25px;
        left: 71px;
        top: -61px;
    }

    .glow-icon-end {
        position: relative;
        max-height: 25px;
        left: 263px;
        top: -61px;
    }

    .glow-icon-sec {
        position: relative;
        max-height: 25px;
        left: 21px;
        top: -39px;
    }

    .core-values-title,
    .join-mission-title {
        font-size: 24px;
    }

    .card-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .center-icon {
        width: 35px;
    }

    .corner-icon {
        width: 50px;
    }

    .card-number {
        font-size: 18px;
    }

    .card-number-1, .card-number-3 {
        bottom: -13px;
        right: 92px;
    }

    .card-number-2 {
        top: 21px;
        right: 5px;
    }

    .card-number-4 {
        top: -12px;
        right: 183px;
    }

    .btn-primary,
    .btn-warning {
        font-size: 14px;
        padding: 10px 25px;
    }

    .looking-forward-list li {
        padding-left: 35px;
    }

    .looking-forward-list li::before {
        width: 25px;
        height: 25px;
        top: 2px;
    }
}