* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif !important;
}

/* To make scroll track transparent */
/* ::-webkit-scrollbar-track {
            background: transparent;
        }

        html {
            scrollbar-color: auto transparent;
        } */


body {
    font-family: "Sora", sans-serif;
    min-height: 100vh;
    color: white;
    background: white !important;
}

.tce-tools-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 0px;
}

.new-tce-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: fit-content;
    padding: 18px 25px;
    background-color: #f8d6fe;
    border-radius: 29px;
    margin-bottom: 15px;
    font-family: "Sora", sans-serif;
}

.back-btn>p {
    font-size: 18px;
    color: #5a0b85;
    margin-bottom: 0;
}

.new-tce-btn-primary {
    color: white;
    background-color: #5b2775;
}

.new-tce-btn-secondary {
    background: white;
    color: #7502af;
}

.new-tce-btn-outline {
    border: 2px solid white;
    color: white;
}

.heading {
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 24px;
    color: white;
    text-align: left;
    font-family: "Sora", sans-serif;
}

.sub-heading {
    font-weight: 400;
    font-size: 20px;
    max-width: 1200px;
    color: white;
    text-align: left;
    font-family: "Sora", sans-serif;
}

.sub-heading-highlight {
    color: #ffa7ff !important;
}

.section-heading {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 15px;
    color: black;
    text-align: center;
}

.section-subheading {
    font-weight: 400;
    font-size: 18px;
    color: black;
    max-width: 800px;

    margin: 0 auto;
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 700px) {
    * {
        text-align: center !important;
    }

    .heading {
        font-size: 40px;
        margin-top: 10px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .new-tce-btn {
        margin-top: 0px;
        font-size: 16px;
        padding: 10px;
    }

    .section-heading {
        font-size: 28px;
        text-align: left;
    }

    .section-subheading {
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 40px;
    padding-bottom: 0px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(30deg, #7502af 10%, #5a0b85 90%);
    margin-bottom: 50px;
    height: 680px;
    position: relative;

}

.hero-pill {
    background-color: #fff799;
    color: #8000c7;
    padding: 5px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    max-width: 200px;
    font-family: "Sora", sans-serif !important;
}


.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 56px;
    text-align: left;
    color: white;
}

.hero-subtitle {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-main {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    align-items: center;
}

.hero-main-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 550px;
}

.hero-main-right {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: end;
}

.hero-new-tce-btn {
    background-color: #ffffffcc;
    max-width: 324px;
    margin-top: 20px;
    text-decoration: none;
}

.hero-new-tce-btn:hover {
    text-decoration: underline;

}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f5f0ff;
    /* light background */
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin: auto;
    top: 0px;
    gap: 25px;
}

.stat {
    text-align: center;
    flex: 1;
    padding: 0 20px;
    position: relative;
    min-width: 200px;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 80px;
    width: 2px;
    background: #ccc;
}

.stat:nth-child(1),
.stat:nth-child(2),
.stat:nth-child(4) {
    top: -10px;
}

.stat h2 {
    font-size: 2em;
    font-weight: bold;
    color: #823da8;
    /* purple tone */
    margin: 0 0 8px;
}

.stat p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.floating-elements {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-elements:nth-child(2) {
    top: 70%;
    right: 5%;
    left: auto;
    animation-delay: -2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 1100px;
        padding: 0px 15px;
        padding-top: 50px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .hero-main {
        flex-direction: column;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-main-left{
        align-items: center;
    }
    .hero-main-right video.uni-feature-gif {
        width: 390px;
        transform: scale(1.3);
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .dashboard {
        margin: 0 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        top: 70px;
        /* flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px; */
    }

    .stat:nth-child(1),
    .stat:nth-child(2),
    .stat:nth-child(4) {
        top: 0px;
    }

    .stat:nth-child(1) {}

    .stat {
        position: relative;
    }

    .stat p {
        font-size: 16px;
    }

    .hero-new-tce-btn {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .stat:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 75px;
        left: 20%;
        width: 190px;
        height: 2px;
        background: #ccc;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


.logos-container {
    margin-top: 150px;
}

.logos-strip {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 30px auto;
    height: 150px;
    /* match logo height */
}

.logos-track {
    display: flex;
    gap: 40px;
    will-change: transform;
    /* removed absolute positioning */
}

.logos-track>div {
    flex: 0 0 auto;
    /* prevent shrinking */
}

.logos-track>div img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}


.logo-item {
    width: 200px;
    height: 150px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.fade-out {
    opacity: 0.4;
}

.fade-in {
    opacity: 1;
}

@media (max-width: 700px) {
    .logos-strip {
        margin-top: 260px;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }
}



/* Video SEction */

.gpa-video-section {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    margin-bottom: 90px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;

    /* maintains 16:9 aspect ratio (611 / 1200 ≈ 56.25%) */
    padding-top: 50%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.play-new-di-btn {
    background: #F0EAF2;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
}

.video-meta-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 5%;
    left: 50%;
    /* center horizontally */
    transform: translateX(-50%);
    /* adjust back by half width */
    text-align: center;
    color: white;
    width: 900px;
    /* prevent overflow on small screens */
}

.video-title {
    font-size: 24px;
    /* scales with screen */
    font-weight: bold;
    color: white;
}

.video-desc {
    font-size: 18px;
    color: white;
}

.video-duration {
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    position: absolute;
    right: 10px;
    top: 10px;
    align-self: center;
    /* keeps it centered under text */
}

@media (max-width: 700px) {
    .gpa-video-section {
        padding: 15px;
    }

    .video-wrapper {
        height: 300px;
    }

    .video-overlay {
        justify-content: unset;
        top: 28%;

    }

    .video-meta-data {
        top: 60%;
        width: 100%;
        padding: 0px 20px;
    }

    .video-title {
        font-size: 14px;
        text-align: center;
    }

    .video-desc {
        font-size: 12px;
        text-align: center;
        line-height: 1.9;
    }
}



/* CSS for Challange section */
.it_works--section {
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.it_works--title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.it_works--subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.it_works--cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.it_works--card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease;

}

.it_works--card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.it_works--icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 19px;
}

.it_works--card h3 {
    color: #000;
    padding-bottom: 15px;
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0px;
}


.it_works--card p {
    font-weight: 300;
    font-style: Light;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #4a5565;
}

@media (max-width: 700px) {
    .it_works--section {
        margin-top: 0px;
    }

    .it_works--card h3,
    .it_works--card p {
        text-align: left !important;
    }
}

/* Bannar */
.bannar-tce-tools-container {
    background-color: #f4e7ff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 40px auto;
}

.bannar-title {
    font-size: 24px;
    font-weight: 600;
    color: #1b1139;
    margin-bottom: 12px;
    font-family: "Sora", sans-serif;
}

.bannar-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: "Sora", sans-serif;
}

.bannar-button {
    background-color: #8000c7;
    color: #fff;
    width: fit-content;
    margin: auto;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Sora", sans-serif;
    text-decoration: none;
}

.bannar-button:hover {
    text-decoration: underline;
    color: white;
}


@media (max-width: 700px) {
    .bannar-tce-tools-container {
        margin: 0px 15px;
        margin-bottom: 25px;
    }
}

/* Smarter Feature, Faster Decision */
.decisions-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;

}

.decisions-content-wrapper {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    flex: 2;
}

.decisions-content {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    flex: 2;
    transition: opacity .3s ease-out;
}

.decisions-content-mobile {
    display: none;
}

.decisions-tabs {

    flex: 1;
    display: grid;
    justify-content: space-between;
    padding: 30px;
    padding-left: 20px;
    opacity: 1;
    max-height: 300px;
    margin-top: 60px;
    transition: opacity 0.3s ease-out;
    gap: 75px;
}

.decisions-tab {
    cursor: pointer;
    font-weight: 500;
    padding: 25px;
    font-size: 20px;
    color: #828282;
    position: relative;
    transition: color 0.3s ease;

}

.decisions-tab.decisions-active {
    color: #5b2775;
    font-weight: 800;
}

.decisions-tab:nth-child(1) {
    align-content: start;
}

.decisions-tab:nth-child(2) {

    align-content: center;
}

.decisions-tab:nth-child(3) {

    align-content: end;
}

.decisions-tab.decisions-active::before {
    content: "";
    position: absolute;
    left: -62px;
    width: 80px;
    top: 20px;
    height: 40px;
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/unnamed-file.jpeg") no-repeat center center;
    background-size: contain;
    /* scale image to fit */
}

.decisions-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    gap: 30px;
    align-items: flex-start;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.decisions-card h3 {
    margin-top: 0;
    color: #6a1b9a;
    font-weight: 600;
    font-size: 24px;
}

.decisions-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 2;
    gap: 30px;
}

.decisions-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #444;
}

.decisions-text strong {
    color: #000;
}

.decisions-image {}

.decisions-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 300px;
}

@media (max-width: 700px) {
    .decisions-section {
        padding: 0px 15px;
    }

    .decisions-content-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .decisions-card {
        padding: 15px;
        margin-top: 20px;
        gap: 15px;
    }

    .decisions-text {
        gap: 0px;
    }

    .decisions-card-tag {
        color: white;
        background-color: #5a0b85;
        padding: 20px 20px;
        border-radius: 205px;
        margin-bottom: 0px;
    }

    .decisions-card h3 {
        text-align: left !important;
    }

    .decisions-text div p {
        text-align: left !important;
    }

    .decisions-content {
        display: none;
    }

    .decisions-content-mobile {
        display: flex;
        flex-direction: column;
    }

    .decisions-tabs {
        display: none;
    }

    .decisions-tab {
        font-size: 16px;
    }

    .decisions-text {
        display: flex;
        flex-direction:column-reverse;
        gap: 20px;
    }
}



/* FAQ section */

.faq-section {
    margin: auto;
    text-align: center;
    margin-top: 100px;
    position: relative;
}

.faq-new-home-page-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    margin: 20px auto;
    margin-top: 40px;
    margin-bottom: 100px;
}



.faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faq-col:nth-child(2) {}



.faq {
    background: white;
    color: #1B1139;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;

}

.faq h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.faq h3::before {
    content: '+';
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq.active h3::before {
    content: '-';
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 8px;
    margin-bottom: 10px;
    display: none;
}

.faq-content>p {
    margin-bottom: 10px;
}

.faq.active .faq-content {
    max-height: fit-content;
    /* adjust as needed */
    opacity: 1;
    display: block;
}

.faq-content p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
    text-align: left;
    height: fit-content;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.faq-ans-list {
    list-style-type: disc;
    list-style: disc;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 30px;

}

.faq-ans-list>li {
    list-style-type: disc;
    list-style: disc;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 30px;
    color: #333;
}


@media (max-width: 700px) {
    .faq-section {
        padding: 0px 15px;
    }

    .faq-new-home-page-container {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .faq>h3 {
        font-size: 16px;
        font-weight: 500;
        text-align: left !important;
    }

    .faq-content>p {
        font-size: 12px;
        margin-left: 30px;
        text-align: left !important;
        margin-bottom: 15px;
    }

    .faq-ans-list>li {
        text-align: left !important;
    }

}