@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


nav {
    position: absolute;
    top: 0;
    width: 80%;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1100;
}



nav .logo {
    font-family: "Playwrite IS", cursive;
    font-optical-sizing: auto;
    font-size: 1.5em;
    font-weight: 700;
    
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0px;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-family: "Lato", sans-serif;
    font-style: normal;
}

nav ul li a:hover {
    color: #3498db;
}

.popup-content {
    font-family: Arial, sans-serif;
    color: #333;
}
.popup-header {
    margin: 0;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
}
.popup-body {
    padding: 10px;
}
.popup-body p {
    margin: 5px 0;
}

body {
     margin: 0;
      padding: 0; 
}
#map {
    position: absolute; 
    top: 0; 
    bottom: 0;
    width: 100%;
    }

    body {
    margin: 0;
    padding: 0;
}
    
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

#welcome-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1000;    
    transition: opacity 0.5s ease;
    font-family: 'Share Tech', sans-serif;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100vw;
    height: 100vh;
    justify-content: space-between;
    text-shadow: 8px 8px 10px #3a28288c; 
    /* background: linear-gradient(135deg, #000428, #004e92); */
    background: url('https://img.freepik.com/free-vector/futuristic-background-design_23-2148503793.jpg?w=740&t=st=1718720050~exp=1718720650~hmac=d50b2e7e5184898da070749e18e63e092a7eb5f6cf5e83335f1de032090c5b3f') no-repeat center center;
    background-size: cover;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.25' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(to right top, #343a40, #2b2c31, #211f22, #151314, #000000); */
}
#welcome-page .content {
    max-width: 50%;
    color: #fff;
    text-align: left;
}
#welcome-page h1 {
    font-family: "Lato", sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    
}

#welcome-page p {
    font-family: "Lato", sans-serif;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

#welcome-page em {
    font-family: "Playwrite IS", cursive;
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 60px;
}

.scrolling-images {
    position: relative;
    height: auto;
    overflow: hidden;
    max-width: 45%;
}

.scrolling-images img {
    width: 60%;
    
    animation: scrollUp 10s linear infinite;
    filter: brightness(40%) contrast(120%);
}

.bad {
    animation: scrollSide 10s linear infinite;
    display: block;
}

@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }
    

    100% {
        transform: translateY(-100%);
    }
}

@keyframes scrollSide {
    0% {
        transform: translateX(100%);
    }
    

    100% {
        transform: translateX(-100%);
    }
}
#welcome-page.hidden {
    opacity: 0;
    pointer-events: none;
}

#welcome-page h1 {
    font-size: 2em;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

#welcome-page p {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

#welcome-page button {
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    color: #fff;
    border: none;
    border-radius: 5px;
    animation: fadeInUp 1s;
}
.tin {
    display: none ;
}

.btnt {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
    margin-right: 60px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    
}

 button:hover {
    background-color: #2980b9;
}
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    

    @media (max-width: 768px) {
        #welcome-page {
            
        height: 100vh;
        padding: 0px;
        margin: 0px;
        flex-direction: column;
       
        align-items: center;
        background: url('https://img.freepik.com/free-vector/futuristic-background-design_23-2148503793.jpg?w=740&t=st=1718720050~exp=1718720650~hmac=d50b2e7e5184898da070749e18e63e092a7eb5f6cf5e83335f1de032090c5b3f') no-repeat center center;
        background-size: cover;
    }

   
  
    
    #welcome-page .content {
        position: absolute;
        height: auto;
        max-width: 100%;
        text-align: center;
        z-index: 1000;
    }
    #welcome-page h1 {
        position: relative;
        width: 90%;
        /* font-size: 2.3em; */
        margin-bottom: 20px;
        font-weight: 400;
        font-size: xx-large;
        padding-left: 5%;
        margin-bottom: 60px;
    }
   
    #welcome-page p {
        position: relative;
        width: 95%;
        margin-left: 2.5px;
        font-size: 1.4em;
        padding: 4px;
        font-weight: 400;
        line-height: 1.2;
    }
    
    #welcome-page em {
        display: none;
        
        
    }
    .tin {
        display: flex;
        width: auto;
        position: relative;
        color: white;
        z-index: 1000;
        bottom: 0;   
        margin-top: 100px;
        text-align: left;
        justify-content: left;
        font-family: "Playwrite IS", cursive;
        font-size: 1em;
        font-weight: 300;
        margin-bottom: 60px;

    }

 .btnt {
        display: none;
    }
  .logo {
        display: none;
    }

   nav ul {
        display: none;
        list-style: none;
        flex-direction: column;
        margin: 0px;
        padding: 0;
    }
    
    nav ul li {
        position: relative;
    }

        
        .btn {
            width: 40%;
            margin-bottom: 8px;
            margin-right: 10%;
        }

        .scrolling-images {
            position: relative;
            height: auto;
            overflow: hidden;
            max-width: 70%;
        }
        
        .scrolling-images img {
            width: 100%;
            
            animation: scrollUp 10s linear infinite;
            filter: brightness(40%) contrast(120%);
        }
        
    }