@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*Montserrat*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Epunda Slab", serif;*/
@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

a{
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    color: blue;
    font-weight: 700;
}

li{
    font-family: "Montserrat", sans-serif;
    list-style: none;
}

html{
    font-size: 14px;
}

body{
    width: 100vw;
    min-height: 100vh;
    position: relative;
    background-image: linear-gradient(to right, rgb(238, 92, 243), rgba(22, 117, 155, 0.842));
}

/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ddd;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

nav{
    width: 100%;
    background: #002569;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    height: 80px;
    padding: 30px 10%;
}

.repsponsive-nav-links{
    opacity: 0;
    overflow: hidden;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.logo p{
    font-size: 20px;
    font-weight: 600;
}
.logo img{
    padding: 2px;
    width: 55px;
    height: 55px;
    margin-right: 20px;
    border-radius: 5px;
    background-color: #fff;
}
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    transition: all 0.3s ease-in-out;
}
.nav-links li a {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s;
}
.nav-links li a:hover{
    color: orange;
}

.menu-toggle,
.menu-close {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.gallerycontainer{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gallerycontainer > h1{
    font-size: 2.2rem;
}
















@media (max-width: /*768*/ 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links{
        display: none;
    }
    .repsponsive-nav-links {
        border-top: 2px solid orange;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 300px;
        background-color: #000f92e5;
        backdrop-filter: blur(15px);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        transition: all 0.3s ease;
    }

    .repsponsive-nav-links.active {
        max-height: 300px;
        opacity: 1;
        padding: 10px;
    }
        .repsponsive-nav-links li{
        text-align: center;
        padding: 15px;
        font-size: 15.5px;
    }

    .repsponsive-nav-links li a{
        padding: 5px;
        font-size: 15.5px;
        color: #ffffff;
        font-weight: 500;
    }
    
    .menu-close {
        display: block;
        align-self: flex-end;
        font-size: 24px;
        margin-bottom: 10px;
        color: #ccc;
    }
}

@media screen and (max-width: 400px){

    .logo img{
    padding: 2px;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
    background-color: #fff;
    }

    .logo p{
        font-size: 19px;
        font-weight: 600;
    }
}