.platform-section {
    position: relative;
    padding-top: 110px;
    overflow: hidden;
    padding-bottom: 60px;
    background-color: var(--bg-color, #f5f9ff);
}

.platform-section:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 210px;
    background-color: #ffffff;
}

.platform-section .auto-container {
    position: relative;
}

.platform-section .triangle-icon {
    position: absolute;
    right: -100px;
    bottom: 150px;
    border-top: 100px solid var(--accent-color, #32c788);
    border-right: 100px solid transparent;
}

.platform-section .platform-tabs {
    position: relative;
    margin-top: 50px;
    padding-bottom: 35px;
}

.platform-section .platform-tabs .tab-btns {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}

.platform-section .platform-tabs .tab-btns .tab-btn {
    position: relative;
    display: block;
    margin: 0px 20px;
    font-size: 16px;
    background: none;
    color: #19274d;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 500ms ease;
    text-transform: capitalize;
}

/* Line connecting active tab */
.platform-section .platform-tabs .tab-btns .tab-btn:before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -70px;
    width: 149px;
    height: 67px;
    opacity: 0;
    transition: all 500ms ease;
    background: url(../../images/icons/line-1.png) no-repeat; /* Path might need adjustment */
    pointer-events: none;
}

.platform-section .platform-tabs .tab-btns .tab-btn .icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: var(--accent-color, #32c788);
    font-size: 30px;
    line-height: 80px;
    text-align: center;
    margin: 0px 10px 20px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ffffff;
    transition: all 500ms ease;
}

/* Rotate line for right side items */
.platform-section .platform-tabs .tab-btns .tab-btn.right-side:before {
    left: auto;
    right: 50%;
    transform: rotateY(180deg);
}

.platform-section .platform-tabs .tab-btns .tab-btn:hover .icon,
.platform-section .platform-tabs .tab-btns .tab-btn.active-btn .icon {
    color: #ffffff;
    background-color: var(--accent-color, #32c788);
}

.platform-section .platform-tabs .tab-btns .tab-btn.active-btn::before {
    opacity: 1;
}

.platform-section .platform-tabs .tabs-content {
    position: relative;
    padding-left: 100px;
    min-height: 400px; /* Ensure height when empty */
}

.platform-section .platform-tabs .tabs-content .tab {
    position: relative;
    display: none;
}

.platform-section .platform-tabs .tabs-content .tab.active-tab {
    display: block;
    animation: fadeIn 0.5s;
}

.platform-section .platform-tabs .tabs-content .image {
    position: relative;
    z-index: 1;
}

.platform-section .platform-tabs .tabs-content .image img,
.platform-section .platform-tabs .tabs-content .image-two img {
    max-width: 100%;
    height: auto;
    display: block;
}

.platform-section .platform-tabs .tabs-content .image-two {
    position: absolute;
    right: 110px;
    bottom: -40px;
    z-index: 2;
}

.platform-section .platform-tabs .tabs-content .image:before {
    position: absolute;
    content: '';
    left: -110px;
    bottom: -90px;
    width: 305px;
    height: 305px;
    z-index: -1;
    border-radius: 50%;
    background-color: var(--accent-color, #32c788);
}

/* Responsive */
@media only screen and (max-width: 1140px) {
    .platform-section .platform-tabs .tab-btns .tab-btn:before {
        display: none;
    }
    .platform-section .platform-tabs .tabs-content {
        padding-left: 0px;
    }
    .platform-section .platform-tabs .tabs-content .image-two {
        right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .platform-section .platform-tabs .tabs-content .image-two {
        display: none; /* Hide second image on small screens based on responsive.css line 1557 */
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
