@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(199, 244, 255), rgba(92, 108, 255, 0.616));
}

/* 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;
}

.section-1{
    width: 100%;
    padding: 30px 10%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.slider {
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
    }

.slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slides img {
    width: 1280px;
    height: 720px;
    flex-shrink: 0;
    object-fit: cover;
}

/*.next-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 3px;
    border-radius: 6px;
    cursor: pointer;
}*/

.events {
    padding-top: 2rem;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.eventh2{
    font-size: 2rem;
    color: #004cda;
    /*text-align: center;
    background: linear-gradient(90deg, #ae00ff, #0066ff);
    background-clip: text;
    color: transparent;
    display: inline-block;
    */
}

.sstxt{
    color: rgb(0, 10, 146);
    font-family: "Epunda Slab", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: bol;
}

#box1{
    width: 100%;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.box2{
    width: 350px;
    height: 400px;
}

.box2 li {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 16px;
}

.ss1{
    background-color: orange;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.5s ease;
}

.ss1:hover{
    background-color: rgb(255, 145, 0);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.ss1 a{
    color: #000000;
    font-weight: 600;
}

.ss12{
    background-color: pink;
}

/* Services */
    .services { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        padding: 2rem; 
        background: #f4f4f4; }
    .service { 
        width: 450px; 
        margin: 2rem 0; 
        background: white; 
        padding: 1.5rem; 
        border-radius: 8px; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* Contact */
.contact {
    padding: 2rem;
    background: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #004cda;
    /*text-align: center;
    background: linear-gradient(90deg, #ae00ff, #0066ff);
    background-clip: text;
    color: transparent;
    display: inline-block;*/
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact input{
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact textarea{
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 1rem 2rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.8s;
}

.contact button:hover{
    background: #2a3fff;
}


/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.social{
    width: 150px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social a{
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.4s ease-in-out;
}

.social a:hover{
    color: rgb(12, 177, 199);
    font-size: 1.8rem;
    font-weight: 600;
}

@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;
    }

    .section-1{
        width: 100%;
        padding: 10px;
    }

    .slides img {
        width: 100%;
        height: auto;
    }
    .slider {
        max-width: 100%;
    }
    
    .box2 li {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    }

    /* Services */
    .services { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: space-around; 
        padding: 2rem; 
        background: #f4f4f4; }
    .service { 
        width: 80%; 
        margin: 1rem 0; 
        background: white; 
        padding: 1.5rem; 
        border-radius: 8px; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
}

@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;
    }

    .nav-links.active {
        height: 900px;
        opacity: 1;
        padding: 15px 30px;
    }

    .h1textgrad{
        font-size: 20px;
        text-align: center;
        background: linear-gradient(90deg, #c64cff, #1d52a2);
        background-clip: text;
        color: transparent;
        display: inline-block;
    }
}