@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Margarine&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,800;1,600&display=swap');
*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'poppins';
}
.alata-regular {
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .margarine-regular {
    font-family: "Margarine", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }      
.hero{
    width: 100%;
    min-height: 100vh;
    background-image:linear-gradient(rgba(117,142,183,0.5),rgba(117,142,183,0.5)), url(img/IMG\ \(18\).jpg);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.logo{
    width: 150px;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    display: inline-block;
    list-style: none;
    padding: 8px 12px;
    position: relative;
    font-weight: 400;
}
.nav-links ul li a{
    color: rgb(3, 3, 78);
    text-decoration: none;
    font-size: 30px;
    font-style: 'Alata';
    font-weight: 600;
}
.nav-links ul li::after{
    content: '';
    width: 0% ;
    height: 2px;
    background: #ffffff;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;   
}
.content{
    text-align: center;
    position: relative;
    margin-top: 3%;
}
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.content h1{
    font-family: 'poppins';
    font-size: 150px;
    color: #030058;
    font-weight: 90;
}
.content h3{
    font-family: 'Alata';
    font-size: 70px;
    color: #fff;
    animation-delay: 0.5s;
}
.content p{
    font-family: 'Alata';
    font-size: 40px;
    font-weight: bold;
    color: rgb(0, 0, 78);
    animation-delay: 1s;
}
.log:hover{
    border-top-right-radius: 60px;
}
.nano{
    margin-top: 1%;
    display: inline-block;
    text-decoration: none;
    padding: 17px 100px;
    color: #fff;
    background-image: linear-gradient(45deg, #82CAFF, #0000ff);
    font-size: 30px;
    border-radius: 60px;
    border-top-right-radius: 0;
    transition: 0.5s;
    animation-delay: 1.5s;
}
.nano:hover{
    border-top-right-radius: 60px;
}
nav .fa{
    display: none;
}
nav .faa{
    display: none;
}
.message-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f0f0f0;
    color: #333;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    z-index: 1000;
}
@media(max-width: 700px){
    .hero{
        width: 100%;
        min-height: 100vh;
        background-image: linear-gradient(rgba(117,142,183,0.5),rgba(117, 142, 183, 0.5)),url(img/IMG\ \(18\).jpg);
    }
    .logo{
        width: 100px;
    }
    
    .content{
        margin-top: 20%;
        text-align: center;
        margin-right: 1%;
    }
    .content h1{
        color: #030058;
        font-size: 60px;
        font-weight:600 ;
    }
    .content h3{
        margin-top: 1%;
        color: #001431;
        font-size: 35px;
        font-weight: 600;
    }
    .content p{
        font-weight: bold;
        margin-top: 4%;
        font-size: 21px;
    }
    .log:hover{
        border-top-right-radius: 60px;
    }
    .nano{
        margin-top: 3%;
        display: inline-block;
        text-decoration: none;
        padding: 12px 50px;
        color: #fff;
        font-weight: 500px;
        background-image: linear-gradient(45deg, #82CAFF, #0000ff);
        font-size: 23px;
        border-radius: 60px;
        border-top-right-radius: 0;
        transition: 0.5s;
    }
    .nano:hover{
        border-top-right-radius: 60px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links ul li a{
        font-size: 18px;
        color: #fff;
        font-weight: 100;
    }
    .nav-links{
        backdrop-filter: blur(4px);
        position: absolute;
        background: #427891b9;
        height: 100vh;
        width: 200px;
        top:0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10%;
        font-size: 22px;
        cursor: pointer;
    }
    nav .faa{
        display: block;
        color: #000;
        margin-right: 5%;
        margin-top: -10%;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}
/*-----about-----*/
.about{
    font-family: 'poppins';
    width: 80%;
    margin: auto;
    padding-top: 50px;

}
.about h1{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}
.about p{
    color: #1d1d1d;
    font-size: 17px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
}
/*-----course-----*/
.course {
    font-family: 'poppins';
    width: 80%;
    margin: auto;
    padding-top: 50px;
}
.course h1{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}
.course h3{
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
    margin-top: 3px;
    margin-bottom: 4px;
}
.course p{
    font-size: 17px;
    text-align: center;
}
.row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}
.course-col{
    flex-basis: 50%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.principal{
    font-family: 'poppins';
    width: 80%;
    margin: auto;
    padding-top: 50px;
}
.principal h1{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}
.principal img{
    margin-bottom: 5%;
    margin-top: 5%;
    margin-left: 30%;
    width: 500px;
    border: 2px;
    border-style: solid;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.principal p{
    color: #1d1d1d;
    font-size: 17px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .about{
        font-family: 'poppins';
        width: 80%;
        margin: auto;
        padding-top: 50px;
    
    }
    .about h1{
        font-size: 30px;
        font-weight: 600;
        text-align: center;
    }
    .about p{
        color: #1d1d1d;
        font-size: 17px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
        text-align: justify;
    }
    /*-----course-----*/
    .course {
        font-family: 'poppins';
        width: 80%;
        margin: auto;
        padding-top: 50px;
    }
    .course h1{
        font-size: 30px;
        font-weight: 600;
        text-align: center;
    }
    .course h3{
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        margin: 10px 0;
        margin-top: 3px;
        margin-bottom: 4px;
    }
    .course p{
        font-size: 17px;
        text-align: center;
    }
    .row{
        margin-top: 1%;
        display: flex;
        justify-content: space-between;
    }
    .course-col{
        flex-basis: 50%;
        background: #fff3f3;
        border-radius: 10px;
        margin-bottom: 5%;
        padding: 20px 12px;
        box-sizing: border-box;
        transition: 0.5s;
    }
    .principal h1{
        font-size: 30px;
        font-weight: 600;
        text-align: center;
    }
    .principal img{
        margin-bottom: 5%;
        margin-top: 5%;
        margin-left: 20%;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
}

/*----footer-----*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 8px;
    margin-top: 20px;
    font-weight: 600;
}
html{
    scroll-behavior: smooth;
}