/* CSS for section section:ClassSelection */
#section-class-selection {
    padding: 40px 20px;
    position: relative;
    z-index: 5;
}

.class-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 25px;
    max-width: 1715px;
    margin: 0 auto;
    color: #000;
}

.tabs-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.tab {
    flex: 1;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    transition: transform .15s ease;
}

.tab.active {
    color: #000;
    transform: translateY(-2px);
}

.tab:not(.active) {
    color: #000; /* Design shows black text for all */
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: all 0.25s ease;
}

.tab-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 40px;
}

.class-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.class-column {
    display: flex;
    flex-direction: column;
}

.class-item {
    padding: 20px;
    border-radius: 15px;
    transition: .32s cubic-bezier(.16,1,.3,1);
}

.class-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.class-item p {
    font-size: 18px;
    line-height: 1.4;
}

.active-item {
    background-color: #db2d28;
    border: 3px solid #000;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
    border-radius: 30px;
    color: #fff;
    animation: pop .22s ease;
}

@keyframes pop {
    0% { transform: scale(.98); }
    100% { transform: scale(1); }
}

.section-label {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    border-bottom: 3px solid #000;
    display: inline-block;
    padding-bottom: 5px;
}

.mt-large {
    margin-top: 40px;
}

/* hide non-active tabs */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


@media (max-width: 1450px) {
    .class-grid {
        grid-template-columns: 1fr;
    }
    .tabs-header {
        flex-direction: column;
        gap: 20px;
    }
}

/*################################################################################################################*/
/* CSS for section section:ShockTrooper */
#section-shock-trooper {
    padding: 60px 20px;
    color: #fff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.trooper-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.title-line {
    height: 2px;
    background-color: #fff;
    flex: 1;
    max-width: 400px;
}

.trooper-title {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.trooper-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.trooper-img {
    width: 512px;
    height: auto;
}

.intro-text {
    text-align: center;
    font-size: 24px;
    max-width: 1200px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

.break-section-bottom {
    margin-bottom: 80px;
}

.break-section-top {
    margin-top: 80px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.two-col-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    max-width: 600px;
}

.col h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.col ul, .col p {
    font-size: 20px;
    line-height: 1.6;
}

.quote-line {
    text-align: center;
    margin-top: 40px;
}

.quote-line p {
    font-size: 20px;
    margin-bottom: 20px;
}

.divider-line {
    height: 1px;
    background-color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    border: 4px solid #ffffff;
    border-radius: 25px;
    padding: 40px;
    max-width: 1566px;
    margin: 0 auto;
}

.box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.box-cell h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.box-cell p, .box-cell li {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}

.progression {
    border: 3px solid #fff;
    border-radius: 9px;
    font-size: 24px;
    text-align: center;
    margin: auto;
    line-height: 45px;
}

.progression tr td {
    border-bottom: 2px solid #fff;
}

.progression tr td:last-child {
    border-left: 2px solid #fff;
}

.asib-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.asi-buttons {
    margin: auto;
    display: flex;
    gap: 15px;
}

.asi-buttons button {
    background-color: #db2d28;
    padding: 15px;
    border: 0px solid;
    border-radius: 10px;
    transition: transform .2s;
}

.asi-buttons button:hover {
    transform: scale(1.07);
    background-color: #911317;
}

.asi-buttons button a {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .trooper-title {
        font-size: 40px;
    }
    .two-col-grid {
        flex-direction: column;
        gap: 40px;
    }
    .box-grid {
        grid-template-columns: 1fr;
    }
    .trooper-img {
        width: 100%;
        max-width: 400px;
    }
    .asi-buttons {
        display: grid;
    }
}