/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}
s
/* Scroll Progress Bar */
.scroll-progress-container {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    position: relative;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.scroll-progress-container.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-progress-bar {
    height: 100%;
    background: #12044B;
    width: 0%;
    transition: width 0.2s ease-out;
    overflow-y: auto;
    background: #ffffff;
    
    /* Smooth scrolling on mobile */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Parallax Layers */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Will be updated by JavaScript */
    height: 100vh;
    pointer-events: none;
}

/* Background Layer (slowest horizontal parallax) */
.background-layer {
    z-index: 1; /* Base layer */
    background-image: url('./Assets/background-layers/Background.png');
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
}

/* Middle Layer (normal horizontal parallax) */
.middle-layer {
    z-index: 5; /* Above background layer */
    background-image: url('./Assets/background-layers/Main.png');
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    pointer-events: auto; /* Allow interactions with elements in this layer */
}

/* Foreground Layer (fastest horizontal parallax) */
.foreground-layer {
    z-index: 10; /* Above middle layer but below interactive elements */
    background-size: cover;
    background-image: url('./Assets/background-layers/Road.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    /* Add foreground elements here - they'll move fastest */
}

/* Unified Stop Sign Styles */
.stop-sign, .stop-sign1, .stop-sign2, .stop-sign3, .stop-sign4, .stop-sign5, .stop-sign6, .stop-sign7, .stop-sign8 {
    position: absolute;
    bottom: 11%;
    width: 0.45%;
    height: auto;
    pointer-events: none;
    opacity: 0.3;
    z-index: 20; /* On top of middle layer */
    transition: opacity 0.5s ease-in-out;
}

/* Individual positioning - only left property differs */
.stop-sign { left: 3.4%; }  /* stop-sign1 */
.stop-sign2 { left: 21.62%; }

.cyber-plaza1 {
    position: absolute;
    left: 2.36%;
    bottom: 53%;
    width: 4.4%;
    height: auto;
    pointer-events: auto;
    opacity: 0;
    z-index: 25;
    transition: transform 0.3s ease, opacity 0.5s ease-in-out, border 0.3s ease;
    transform: scale(1);
}

.cyber-plaza1.active {
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
    opacity: 1;
}


.cyber-plaza2 {
    position: absolute;
    left: 3.91%;
    bottom: 39%;
    width: 4.4%;
    height: auto;
    pointer-events: auto;
    opacity: 0;
    z-index: 25;
    transition: transform 0.3s ease, opacity 0.5s ease-in-out, border 0.3s ease;
    transform: none;
}

.cyber-plaza2.active {
    box-shadow: 0 0 15px #ff6b00;
    opacity: 1;
}

.cyber-plaza2:hover {
    transform: scale(1.15);
}

/* Bus poster styles */
/* Unified Bus Poster Styles */
.bus-poster1, .bus-poster2, .bus-poster3, .bus-poster4, .bus-poster5, .bus-poster6 {
    position: absolute;
    bottom: 42%;
    width: 0.45%;
    height: auto;
    pointer-events: auto;
    opacity: 0;
    z-index: 25;
    transition: transform 0.3s ease, opacity 0.5s ease-in-out, border 0.3s ease;
    transform: scale(1);
    border: 3px solid transparent;
    border-radius: 8px;
    display: inline-block;
}

/* Individual positioning - only left property differs */
.bus-poster1 { left: 20.84%; }
.bus-poster2 { left: 21.43%; }
.bus-poster3 { left: 22.02%; }
.bus-poster4 { left: 22.61%; }
.bus-poster5 { left: 23.2%; }
.bus-poster6 { left: 23.8%; }

/* Unified image styles */
.bus-poster1 img, .bus-poster2 img, .bus-poster3 img, .bus-poster4 img, .bus-poster5 img, .bus-poster6 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Unified hover effect */
.bus-poster1:hover, .bus-poster2:hover, .bus-poster3:hover, .bus-poster4:hover, .bus-poster5:hover, .bus-poster6:hover {
    transform: scale(1.15);

}

/* Individual active border colors */
.bus-poster1.active {
        border: 2px solid #ff0000;

}

.bus-poster2.active {
    border: 2px solid #00ffff;

}

.bus-poster3.active {
        border: 2px solid #ff0000;

}

.bus-poster4.active {
    border: 2px solid #00ffff;

}

.bus-poster5.active {
        border: 2px solid #ff0000;

}

.bus-poster6.active {
    border: 2px solid #00ffff;
}



/* Make the anchor a positioned box so pseudo-element border can wrap it */
.image-link {
    position: absolute; /* position is already used on plaza classes, anchors inherit placement */
    display: inline-block;
    width: 0.8%;
    bottom: 53%;
    pointer-events: auto;
}

.image-link img {
    display: block;
    width: 100%;
    height: auto;
}

/* Scale images when expanded */
.image-link.expanded {
    transform: scale(1.4);
    transition: transform 0.5s ease-in-out;
}

.image-link.cyber-plaza1.expanded {
    transform: scale(1.4); /* maintain horizontal flip */
}

/* Unified expanded styles for all bus posters */
.bus-poster1.expanded, .bus-poster2.expanded, .bus-poster3.expanded, .bus-poster4.expanded, .bus-poster5.expanded, .bus-poster6.expanded {
    transform: scale(1.2); /* unified scale when expanded */
    opacity: 1;
}

/* Modal styles for expanded images */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.expanded-image {
 /*   max-width: 150%;
   */
    object-fit: contain;
    /*border: 4px solid white;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);*/
     max-height: 650px;
    width: 90%;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    transform: scale(1.1);
}

.stop-sign-btn {
position: absolute;
    left: 4.91%;
    bottom: 44%;
    z-index: 21;
    padding: 2em 3.8em;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

.stop-sign-btn2 {
    position: absolute;
    left: 19.82%;
    z-index: 21; /* Above stop sign, on top of middle layer */
    bottom: 42%;
    padding: 2em 3.8em;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn2:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

.stop-sign-btn2b {
    position: absolute;
    left: 24.68%;  /* Positioned to the right of original */
    z-index: 21; /* Above stop sign, on top of middle layer */
    bottom: 42%;
    padding: 2em 3.8em;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn2b:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

/* Unified active state for all stop signs */
.stop-sign.active, .stop-sign1.active, .stop-sign2.active, .stop-sign3.active, .stop-sign4.active, .stop-sign5.active, .stop-sign6.active, .stop-sign7.active, .stop-sign8.active {
    opacity: 1;
}

/* Blue arrow gif - First set */
.blue-arrow {
    position: absolute;
    left: 5.08%;
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22; /* On top of middle layer */
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

/* Blue arrow gif - Second set */
.blue-arrow2 {
    position: absolute;
    left: 20%;
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22; /* On top of middle layer */
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow2.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

/* Blue arrow gif - Second set duplicate */
.blue-arrow2b {
    position: absolute;
    left: 24.85%;  /* Positioned to the right of original */
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22; /* On top of middle layer */
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow2b.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

/* Bobbing animation: move up from current bottom and return */
@keyframes blueArrowBob {
    0% {
        transform: translateY(0) ;
    }
    50% {
        transform: translateY(-12px) ;
    }
    100% {
        transform: translateY(0) ;
    }
}
/* Truck composite styling */
.truck {
    position: fixed;
    bottom: 20%;
    left: 50px;
    width: 30%;
    height: auto;
    aspect-ratio: 591 / 349;
    z-index: 1000;
    pointer-events: none;
    /* Truck entrance animation */
    animation: truckEntranceFromLeft 2s ease-out;
}

/* Truck entrance animation from left */
@keyframes truckEntranceFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.truck-body {
    position: absolute;
    left: 0%;
    bottom: 10%;
    width: 100%;
    height: auto;
}

.truck-left-wheel {
    position: absolute;
    left: 16%;
    bottom: 5%;
    width: 18%;
    height: auto;
}

.truck-right-wheel {
    position: absolute;
    left: 70%;
    bottom: 5%;
    width: 18%;
    height: auto;
}

/* Scroll prompt styling - follows truck pattern */
.scroll-prompt {
    position: fixed;
    top: 30%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: clamp(200px, 25vw, 400px);
    height: auto;
    z-index: 1001;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-prompt.fade-out {
    opacity: 0;
    transform: translate(-50%, -60%);
}

/* Base layer - static background using actual image */
.scroll-base {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: 1;
    display: block;
}

/* Mouse layer - animated using actual image with masking to show only mouse part */
.scroll-mouse {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: auto;
    z-index: 2;
    display: block;
    /* Mask to show only the mouse/scroll indicator part */
    animation: scrollMouseBob 2s ease-in-out infinite;
}

/* Bobbing animation for scroll mouse */
@keyframes scrollMouseBob {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.stop-sign3 { left: 38.05%; }



/* Vendor Poster Styles - Following bus-poster pattern */
.vendor-poster1, .vendor-poster2, .vendor-poster3, .vendor-poster4, .vendor-poster5, .vendor-poster6 {
    position: absolute;
    bottom: 42%;
    width: 0.3%;
    height: auto;
    pointer-events: auto;
    opacity: 0;
    z-index: 25;
    transition: transform 0.3s ease, opacity 0.5s ease-in-out, border 0.3s ease;
    transform: scale(1);
    border: 3px solid transparent;
    border-radius: 8px;
    display: inline-block;
}

/* Individual positioning for vendor posters - only left property differs */
.vendor-poster1 { left: 36.43%; }
.vendor-poster2 { left: 36.85%; }
.vendor-poster3 { left: 38.05%; }
.vendor-poster4 { left: 38.46%; }
.vendor-poster5 { left: 40%; }
.vendor-poster6 { left: 40.4%; }

/* Unified image styles for vendor posters */
.vendor-poster1 img, .vendor-poster2 img, .vendor-poster3 img, .vendor-poster4 img, .vendor-poster5 img, .vendor-poster6 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Unified hover effect for vendor posters */
.vendor-poster1:hover, .vendor-poster2:hover, .vendor-poster3:hover, .vendor-poster4:hover, .vendor-poster5:hover, .vendor-poster6:hover {
    transform: scale(1.15);
}

/* Individual active border colors for vendor posters */
.vendor-poster1.active {
    border: 2px solid #ff0000;
}

.vendor-poster2.active {
    border: 2px solid #00ffff;
}

.vendor-poster3.active {
    border: 2px solid #ff0000;
}

.vendor-poster4.active {
    border: 2px solid #00ffff;
}

.vendor-poster5.active {
    border: 2px solid #ff0000;
}

.vendor-poster6.active {
    border: 2px solid #00ffff;
}

/* Unified expanded styles for vendor posters */
.vendor-poster1.expanded, .vendor-poster2.expanded, .vendor-poster3.expanded, .vendor-poster4.expanded, .vendor-poster5.expanded, .vendor-poster6.expanded {
    transform: scale(1.2);
    opacity: 1;
}

/* Third stop sign buttons */
.stop-sign-btn3 {
    position: absolute;
    left: 35.5%;
    z-index: 21;
    bottom: 42%;
    padding: 2em 3.8em;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn3:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

.stop-sign-btn4 {
    position: absolute;
    left: 41.11%;    
    z-index: 21;
    bottom: 42%;
    padding: 2em 3.8em;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn4:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

/* Blue arrow gif - Third set */
.blue-arrow3 {
    position: absolute;
    left: 35.68%;
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow3.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

/* Blue arrow gif - Fourth set */
.blue-arrow4 {
    position: absolute;
    left: 41.3%;
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow4.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

.stop-sign4 { left: 50.1%; }



/* Cyber Info Plaza Styles - Following bus-poster pattern */
.cyber-info-plaza1, .cyber-info-plaza2, .cyber-info-plaza3, .cyber-info-plaza4 {
    position: absolute;
    bottom: 56.5%;
    width: 0.42%;
    height: auto;
    pointer-events: auto;
    opacity: 0;
    z-index: 25;
    transition: transform 0.3s ease, opacity 0.5s ease-in-out, border 0.3s ease;
    transform: scale(1);
    border: 3px solid transparent;
    border-radius: 8px;
    display: inline-block;
}

/* Individual positioning for cyber info plaza - only left property differs */
.cyber-info-plaza1 { left: 49.92%; }
.cyber-info-plaza2 { left: 50.55%; }
.cyber-info-plaza3 { left: 51.14%; }
.cyber-info-plaza4 { left: 51.28%; }

/* Unified image styles for cyber info plaza */
.cyber-info-plaza1 img, .cyber-info-plaza2 img, .cyber-info-plaza3 img, .cyber-info-plaza4 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Unified hover effect for cyber info plaza */
.cyber-info-plaza1:hover, .cyber-info-plaza2:hover, .cyber-info-plaza3:hover, .cyber-info-plaza4:hover {
    transform: scale(1.4);
}

/* Individual active border colors for cyber info plaza */
.cyber-info-plaza1.active {
    border: 3px solid #afa1a1;
}

.cyber-info-plaza2.active {
    border: 3px solid #afa1a1;
}

.cyber-info-plaza3.active {
    border: 3px solid #afa1a1;
}

.cyber-info-plaza4.active {
    border: 3px solid #afa1a1;
}

/* Unified expanded styles for cyber info plaza */
.cyber-info-plaza1.expanded, .cyber-info-plaza2.expanded, .cyber-info-plaza3.expanded, .cyber-info-plaza4.expanded {
    transform: scale(1.3);
    opacity: 1;
}

/* Fourth stop sign button */
.stop-sign-btn5 {
    position: absolute;
    left: 52.29%;
    bottom: 42%;
    padding: 2em 3.8em;
    z-index: 21;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn5:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

/* Fourth stop sign button */
.stop-sign-btn6 {
    position: absolute;
left: 85.7%;
    bottom: 42%;
    padding: 2em 3.8em;
    z-index: 21;

    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn6:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

.stop-sign-btn6b {
    position: absolute;
    left: 83.14%;  /* Positioned to the right of original */
    bottom: 42%;
    padding: 3.8em 2.5em;
    z-index: 21;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.stop-sign-btn6b:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}
/* Blue arrow gif - Fifth set */
.blue-arrow5 {
    position: absolute;
    left: 52.45%;
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow5.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

.stop-sign5 { left: 61.4%; }
.stop-sign6 { left: 70.9%; }

/* Seventh Stop Sign Styles */
.stop-sign7 {
    left: 83.9%;
}

.stop-sign7.active {
    opacity: 1;
}

.stop-sign8 {
    left: 95%;
}

.stop-sign8.active {
    opacity: 1;
}

/* Blue arrow gif - Sixth set (for stop sign 7) */
.blue-arrow6 {
    position: absolute;
    left: 85.85%;
    bottom: 56%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow6.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}

/* Blue arrow gif - Sixth set duplicate */
.blue-arrow6b {
    position: absolute;
    left: 83.23%;  /* Positioned to the right of original */
    bottom: 64%;
    width: 0.2%;
    height: auto;
    opacity: 0;
    z-index: 22;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.blue-arrow6b.active {
    opacity: 1;
    animation: blueArrowBob 1.6s ease-in-out infinite;
}
/* Sticker Image linked to stop-sign6 */
.sticker-image-stop6 {
    position: absolute;
left: 82.92%;
    bottom: 49%;
    width: 0.8%;
    height: auto;
    opacity: 0;
    z-index: 25;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    transform: scale(1.2);
    border-radius: 8px;
}

.sticker-image-stop6.active {
    opacity: 1;
}

.sticker-image-stop6:hover {
    transform: scale(1.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid #FFD700;
}

/* Video Element linked to stop-sign6 */
.video-element-stop5 {
    position: absolute;
    left: 60.66%;
    bottom: 60%;
    width: 1.3%;
    height: 25%;
    opacity: 0;
    z-index: 25;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
   /* border-radius: 12px;*/
    overflow: hidden;
   /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);*/
}

.video-element-stop5.active {
    opacity: 1;
    transform: scale(1.2);
}

.video-element-stop5:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
   /* border: 2px solid #00ffff;*/
}

.video-element-stop5 video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.video-overlay {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-title {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    padding: 0 0.5rem;
}

/* End page buttons - Social media buttons */
.social-btn1, .social-btn2, .social-btn3, .social-btn4, .social-btn5 {
    position: absolute;
    bottom: 62%;
    padding: 1em 1em;
    z-index: 21;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.social-btn1 { left: 96.58%; }
.social-btn2 { left: 96.82%; }
.social-btn3 { left: 97.05%; }
.social-btn4 { left: 97.28%; }
.social-btn5 { left: 97.5%; }

/* Home button */
.home-btn {
    position: absolute;
    left: 94.78%;
    bottom: 65%;
    padding: 2em 2em;
    z-index: 21;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: transparent;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

/* Hover effects for all end page buttons */
.social-btn1:hover, .social-btn2:hover, .social-btn3:hover, .social-btn4:hover, .social-btn5:hover, .home-btn:hover {
    background: transparent;
    color: transparent;
    opacity: 1;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}
.brand-logos img { width: 150px;}
.form input, .form textarea {
    height: 35px;
    width:90%;
}
   
    label { display: block; margin-top: 5px; }
    input, textarea { width: 100%; padding: 8px; margin-top: 5px; }
    button { margin-top: 15px; padding: 10px 15px; }
    #response { margin-top: 10px; padding: 10px; }
    .terms-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 15px;
}

/* hide the default checkbox */
.terms-wrapper input[type="checkbox"] {
  display: none;
}

/* slider */
.terms-wrapper .slider {
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
}

/* circle inside slider */
.terms-wrapper .slider::before {
  content: "";
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.3s;
}

/* checked state */
.terms-wrapper input[type="checkbox"]:checked + .slider {
  background: #2196F3;
}
.terms-wrapper input[type="checkbox"]:checked + .slider::before {
  transform: translateX(20px);
}

.label-text {
  font-weight: bold;
}

.terms-note {
  font-size: 14px;
  margin: 5px 0 15px 48px; /* align with toggle */
}
.form{transition: transform 0.6s 
ease-out, opacity 0.6s 
ease-out;
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
    width: 25vw;
    min-width: 320px;
    background: #fff;
    z-index: 2000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    visibility: visible;
    transition: all 2s 
cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    top: 10% !important;
    right: 25% !important;
    z-index:9999999999999 !important;
    display:none;
}

/*akash css*/


form {
    max-width: 400px !important;
    margin: 0px 30px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 70%;
}
@media only screen and (max-width: 1100px) {
 .brand-logos img { width: 50px;}
.hero-title {
    font-family: 'geom graphic';
    font-weight: 700;
    color: #12044B;
    margin-bottom: 10px !important;
    font-size: 25px;
}
.hero-text {
    font-family: 'geom graphic';
    font-size: 0.7rem!important;
    color: #666;
 
}
.expanded-image {  max-height: 350px;}
a.close-modal1, a.download-poster,a.download-bundle {  width: 100% !important;}
.dynamic-text { font-size: 0.8rem !important;}
.hero-image { left: 56%!important;}
.navbar-brand img{width:65px;}
button.navbar-toggler { margin-top: 0px;}
navbar-toggler-icon { width: 1.1em;   height: 1.1em;}
.navbar-brand-1{width:40% !important;}
.navbar-brand-1 img{width:100%;}
.hero-section{ top: 5% !important;   margin-top: 35px !important;height:95vh !important;}
.hero-button{padding: 0.5rem 0.5rem;}
.form{right:55% !important; width:52vw !important;max-width:500px !important;}
.form input, .form textarea

 {
    height: 27px !important;
    width: 90%;
}
.form .thank-you-container{padding: 0 !important;}

.terms-note {
    font-size: 14px !important;
    margin: 2px 0 0px 0px !important;
    width: 100% important;
}
#response {
    margin-top: 10px;
    padding: 0px;
}
label {
    display: block;
    margin-top: 5px;
    font-size: 12px !important;
}
}
@media (min-width: 1100px) and (max-width: 2100px) {
  .brand-logos img { width: 90px;}

}
div#navbarNav {
    visibility: hidden;
}

#response a{
    margin-left: 2%;
    margin-top: 0px;
    padding: 10px;
    background-color: #12044B;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
}



