﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.main-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#toggleVideoBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}


.overlay-content {
    width: 100%;
    padding: 0 5%;
    z-index: 1;
}

.banner-content {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    max-width: 580px;
    padding: 3.5rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
    background: linear-gradient( 90deg, #7378F9 0%, #a63dac 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .main-banner {
        height: 90vh;
        min-height: 400px;
        align-items: flex-start;
    }

    .overlay-content {
        padding: 0;
    }

    .banner-content {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        backdrop-filter: blur(15px);
    }

        .banner-content h1 {
            font-size: 2rem;
        }

        .banner-content p {
            margin-bottom: 1.5rem;
        }
}

.business-trans-tile2 {
    background-image: url(/en/empower-tomorrows-innovators/Images/trans-tech_tile1.png);
}

.trans-tech_tile1 {
    background-image: url(/en/empower-tomorrows-innovators/Images/trans-tech_tile1.png);
    background-size: cover;
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

h2, h3, h4, h5, h6, li, p, span, div, img {
    transition-delay: 0.5s;
}

._mobileview {
    display: none;
}

._webview {
    display: none;
}

/*@media (max-width: 820px) {
    ._mobileview {
        display: block;
    }

    ._webview {
        display: none;
    }
}*/

@media (min-width: 821px) {
    ._mobileview {
        display: none;
    }

    ._webview {
        display: block;
    }
}

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    section.visible {
        opacity: 1;
        transform: translateY(0);
    }
.bg_light_blue {
    background: #89C6E8;
}

.bg-light-blue-primary {
    background: #0167B8;
}

.bg_light_green {
    background: #93E89A;
}

:root {
    --ring-size: 88px;
    --ring-stroke: 8;
}

.countdown {
    display: flex;
    background:#fff;
    color:#000;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom:20px;
}

.ring {
    width: var(--ring-size);
    height: var(--ring-size);
    position: relative;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--text);
}

    .ring svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
        display: block;
    }

.value {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    user-select: none;
}

.num {
    font-size: 1.05rem;
}

.label {
    font-size: 0.55rem;
    color: var(--muted);
    margin-top: 4px;
}

.ring circle.bg {
    fill: none;
    stroke: rgba(7,20,45,0.06);
    stroke-width: var(--ring-stroke);
}

.ring circle.fg {
    fill: none;
    stroke-linecap: round;
    stroke-width: var(--ring-stroke);
    transition: stroke-dashoffset 0.4s linear;
}

.ring.days circle.fg {
    stroke: #1fbf9a;
}

.ring.hours circle.fg {
    stroke: #1768f2;
}

.ring.minutes circle.fg {
    stroke: #6fbbff;
}

.ring.seconds circle.fg {
    stroke: #22c1c3;
}
@media (min-width:951px) {
    .countdown {
        float: left;
     }
    }
@media (max-width:420px) {
    :root {
        --ring-size: 72px;
    }

    .countdown {
        gap: 14px;
    }
}

@@media (prefers-reduced-motion:reduce) {
    .ring circle.fg {
        transition: none;
    }
}
