/* default-styles.css */
html {
    scroll-behavior: smooth;
}


/* Scrolling links */
.scrolling-links {
    height: 450px;
    overflow: hidden;
    position: relative;
}

    /*.scrolling-links .new {
        position: absolute;
        animation: none;
        will-change: transform;
    }*/

    .scrolling-links .new {
        font-size: 14px;
        padding: 30px;      
        opacity: 1;
        /*transition: opacity 0.5s ease-in-out;*/
        animation-play-state: running;
        position: absolute;
        animation: scroll 9s linear infinite;
    }

.scrolling-links .new p:hover {
    background-color: #cce7ff;
}
    .scrolling-links:hover .new {
        animation-play-state: paused;
    }
@keyframes scroll {
    0% {
        top: 100%;
    }
    100% {
        top: -100%;
    }
}





.zoomed {
    transform: scale(2);
}



.custom-header > h2 {
    font-size: 20px;
}

.video-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius:20px;
}

.video-container video {
    width: 100%;
    height: 100%;
    /*border-radius: 0 0 30px 30px;*/
    object-fit: cover;
}

/* Home page layout */
.home-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 20px;
}

.home-section {
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.whats-new-section {
    background-color: white;
    color: #0088c3;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 450px;
}

/* Footer links */

.links-container {
    display: flex;
    justify-content: space-between;
    margin: 10px 103px 5px 50px;
    color: blue;
    text-decoration: none;
    font-size: large;
}

.karnataka-glance {
    border: 2px solid #0088c3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.karnataka-title {
    background-color: #0088c3;
    color: white;
    border-radius: 5px 0 0;
    font-size: 10px;
    margin: 0 0;
    text-align: center;
    width: 100%;
}

.karnataka-image {
    width: 100%;
    height: 170px;
}

.toll-free-container {
    display: flex;
    justify-content: center;
}

.toll-free-box {
    background-color: #0088c3;
    color: white;
    border-radius: 10px;
    text-align: center;
    padding: 10px 40px;
    margin: 5px;
}


/* Popup styles for the second popup */




#poster13 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.popup-name {
    color: black;
    font-size: 16px;
    text-align:center;
}

.popup-images-container {
    overflow-y: auto;
    max-height: 80vh;
}

.popup-images {
    margin: 40px;
}

.centered-popup {
    margin-left: 24%;
}
.address-left {
    text-align: justify;
    margin-top: 17px;
    margin-left: 20px;
}
.address-right{
    text-align:right;
}
/* === SCROLL FIX === */
html, body {
    height: auto;
    min-height: 100%;
    /*overflow-y: auto;*/
}

/*.new{
    padding: 20px;
    animation-play-state: running;
    position: absolute;
    animation: scroll 14s linear infinite;
}*/



/* prevent popup from locking page */
div.pop {
    position: fixed;
    max-height: 100vh;
    overflow-y: auto;
}

.address-row{
    height:115px;
}
