/* --- General Body and Layout Styling --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    /* Use the font from Adobe Typekit, with fallbacks */
    font-family: "transducer-extended", "transducer", sans-serif;
    display: flex;
    flex-direction: column;
    color: #fff;
}

main.content-area {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

/* --- Header and Tabs Layout --- */
.top-bar {
    display: flex;
    background-color: #1a1a1a;
    flex-shrink: 0;
}

.tabs-container {
    box-sizing: border-box;
    width: 70%;
    display: flex;
    flex-shrink: 0;
    padding-left:14px;
    overflow:visible;
}

.button-container {
    box-sizing: border-box;
    width: 30%;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right:15px;
}

/* --- Tab Button Styling --- */
.tab-link {
    font-family: inherit;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 20px;
    cursor: pointer;
    background-color: #055160;
    color: #e3e3e3;
    border: none;
    outline: none;
    transition: color 0.3s;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    width: 50%;
    transform: skew(-30deg);
}

.tab-link .tab-text {

    display: inline-block;
    transform: skew(30deg);
    transition: color 0.3s;
    letter-spacing: 0.03em;
}

.tab-link:hover {
    color: #ccc;
}

.tab-link.active {
    color: #073342;
    background:aqua;
}

/* --- View More Button Styling --- */
.view-more-btn {
    transform: skew(-30deg);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #00FFFF, #00FFCA, #fff, #00FFCA, #00FFFF);
    border-radius: 2px;
    transition: all .4s ease-in-out;
}

.view-more-btn:hover {
    background-position: 100% 0;
}

.view-more-btn span {
    /* Counter-skew the text to make it straight */
    display: inline-block;
    transform: skew(30deg);
    /* Font and padding styles */
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.03em;
    color: #073342;
    padding: 3px 10px;
}


/* --- Tab Content and Iframe Styling --- */
.tab-content {
    display: none;
    width: 100%;
    height: 100%;
}

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

.tab-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer "Powered by" Styling --- */
footer#banner-dataworks {
    background-color: #073342; /* Updated background */
}

header.elementor-location-footer {
    margin-bottom: 40px;
}


#button-backtotop {
    bottom: 50px;
}

#banner-dataworks {
    left: 0;
    bottom: 0;
    right: 0;
}
#banner-dataworks .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
}
#banner-dataworks .wrapper p {
    color: white;
    padding: 0;
    margin: 0;
    font-size: 80%;
    font-weight: 500;
    margin-right: 0;
}
#banner-dataworks .wrapper a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    transition: transform .2s;
}
#banner-dataworks .wrapper a:hover {
    transform: scale(1.02);
}
#banner-dataworks .wrapper lottie-player {
    width: 38px;
    height: 20px;
    margin-top: 1px;
    margin-right: 3px;
}
#banner-dataworks .wrapper img {
    width: 100px;
}

@media (min-width: 768px) {
    header.elementor-location-footer {
        margin-bottom: 53px;
    }
    #button-backtotop {
        bottom: 65px;
    }

    #banner-dataworks .wrapper p {
        font-size: 90%;
        margin-right: 5px;
    }
    #banner-dataworks .wrapper lottie-player {
        width: 60px;
        height: 33px;
        margin-top: 1px;
        margin-right: 3px;
    }
    #banner-dataworks .wrapper img {
        width: 155px;
    }
}