@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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&family=Syncopate:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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&family=Syncopate:wght@400;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.loader__container{
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    background-color: #fff;
    z-index: 9999;
    display: grid;
    place-content: center;
}

.loader__circle{
    width: 100px;
    height: 100px;
    border: 5px solid #ffffff;
    border-top-color: #FF9700;
    border-radius: 50%;
    animation: rotate 1.5s infinite linear;
    position: relative;

}

.preloader__position{
    width: 100px;
    height: 100px;
    position: relative;
}

.loader img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: 0;

}

@keyframes rotate {
    to{transform: rotate(1turn)}
}


/* Header styel */

.header__container{
    position: sticky;
    inset: 0;
    z-index: 99;
    background-color: #fff;
}

.header__logoImg{
    width: 170px;
    height: 68px;
}

.header__logoImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

nav ul li a{
    font-size: 16px;
    font-weight: 600;
    color: #2A2A2A;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}



nav ul li a.active {
    color: #FF9700;
}


.header__btn button{
    width: 134px;
    height: 40px;
    background-color: #FF9700;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2A2A2A;
    font-family: "Inter", sans-serif;
}

.nav__btn{
    font-size: 32px;
    font-weight: 800;
    color: #000000;
}

.socialMedia__link{
    width: 60px;
    height: fit-content;
    background-color: #002147;
    border-radius: 8px 0px 0px 8px;
    position: fixed;
    bottom: 20%;
    right: 0;
    z-index: 1;
    padding: 12px;
}

.fa-brands{
    display: block;
    font-size: 28px;
    color: #FF9700;
    margin: 12px 0px;
}

.fa-youtube{
    font-size: 24px;
} 

@media only screen and (max-width: 767px) {
    .socialMedia__link{
        width: 40px;
    }
    .fa-brands{
        font-size: 18px;
    }
    .fa-youtube{
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width:1024px) {
    .socialMedia__link{
        width: 50px;
    }
    .fa-brands{
        font-size: 22px;
    }
    .fa-youtube{
        font-size: 18px;
    }
}

@media only screen and (max-width:640px) {
    .header__logoImg{
        width: 110px;
        height: 40px;
    }
}

@media (min-width:641px) and (max-width: 1280px) {
    .header__logoImg{
        width: 120px;
        height: 48px;
    }
    
    .header__logoImg img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width:767px) {
    .mobileNav{
        width: 100%;
        height: 100vh;
        min-height: 670px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background-color: #000000;
        padding: 40px;
    }

    .mobileNav nav ul li a{
        color: #ffffff;
        margin: 16px 0px;
        position: relative;
        width: 150px;
        display: inline-block;
    }
    .mobileNav nav ul li a::after{
        content: "";
        width: 0%;
        position: absolute;
        pointer-events: none;
        height: 3px;
        left: 0;
        bottom: -10px;
        background-color: #FF9700;
        transition: all 0.5s ease-in-out;
    }

    .mobileNav nav ul li a:hover::after{
        width: 70%;
        transform: translateX(10%);
        pointer-events: none;
        transition: all 0.5s ease-in-out;
    }

    nav ul li a.active {
        color: #FF9700;
    }


    .fa-xmark{
        color: #FF9700;
        font-size: 24px;
    }

    .header__btn button{
        width: 118px;
        height: 36px;
        margin-top: 40px;
    }
}

/* service Main Style */

.serviceMain__section{
    background-color: #002147;
}

.serviceMain__img{
    width: 564px;
    height: 452px;
    overflow: hidden;
    border-radius: 8px;
    transition: .5s ease-in-out;
}

.serviceMain__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.serviceMain__img img:hover{
    transform: scale(1.1);
    transition: .5s ease-in-out;
}

.serviceMain__title{
    font-size: 30px;
    font-weight: 800;
    color: #FF9700;
    font-family: "Lato", sans-serif;
}

.fa-circle-check{
    color: #FF9700;
}

.serviceMain__para{
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
}

.about__mainBtn button{
    width: 130px;
    height: 40px;
    background-color: #FF9700;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    color: #2A2A2A;
}

.serviceAdmission{
    font-size: 16px;
    font-weight: 600;
    color: #2A2A2A;
    font-family: "Inter", sans-serif;
}

@media (min-width:1024px) and (max-width:1280px) {
    .serviceMain__img{
        width: 464px;
        height: 402px;
        border-radius: 8px;
    }
    .serviceMain__img img{
        width: 100%;
        height: 100%;
        border-radius: 8px;
    } 
}

@media only screen and (max-width:600px) {
    .serviceMain__img{
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }
    .serviceMain__img img{
        width: 100%;
        height: 100%;
        border-radius: 8px;
    } 
}

/* popup style */

.popup{
    width: 100%;
    height: 100vh;
    min-height: 670px;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.popup__container{
    width: 520px;
    border-radius: 16px;
    background-color: #fff;
    position: relative;
}

.popup__closeIcon{
    position: absolute;
    right: 20px;
    top: 20px;
}

.popup__title{
    font-size: 32px;
    font-weight: 800;
    color: #FF9700;
    font-family: "Inter", sans-serif;
}

.input__content input{
    width: 100%;
    height: 40px;
    border: 1px solid #C9C9C9 !important;
    outline: none;
    box-shadow: #19213D14;
    font-size: 12px;
    color: #6D758F;
    font-weight: 400;
    padding: 0px 12px;
    border-radius: 8px;
}

.input__content label, .input__textarea label{
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.input__textarea textarea{
    width: 100%;
    height: 90px;
    border: 1px solid #C9C9C9;
    padding: 12px;
    border-radius: 8px;
    outline: none;
    box-shadow: #19213D14;
    font-size: 12px;
    color: #6D758F;
    font-weight: 400;
    border: 1px solid #C9C9C9 !important;
}

.popup__close{
    font-size: 22px;
}

.popup__close:hover{
    color: #FF9700;
    cursor: pointer;
}

.popup__container form button{
    width: 150px;
    height: 40px;
    border-radius: 6px;
    background-color: #FF9700;
    font-size: 14px;
    font-weight: 600;
    color: #2A2A2A;
    font-family: "Inter", sans-serif;
}

.popup__icon {
    display: none;
    position: fixed;
    bottom: 30%;
    right: 20px;
    background-color: #002147;
    color: #FF9700;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    padding: 12px 15px;
    cursor: pointer;
    z-index: 1001;
}

input:invalid, textarea:invalid {
    border-color: red;
}

input:invalid:focus, textarea:invalid:focus {
    outline: none;
    border-color: red;
    box-shadow: 0 0 5px red;
}

input:valid, textarea:valid {
    border-color: green;
}

@media only screen and (max-width:640px) {
    .popup__title{
        font-size: 22px;
    }
    .popup__close i{
        font-size: 18px;
    }


}

@media only screen and (max-width:540px) {
    .popup__container{
        width: 100%;
    }
}

/* Sign up style */

.signUp__img{
    position: relative;
    border-radius: 8px;
}

.signUpimg__content{
    position: absolute;
    inset: 0;
}

.signUp__letter{
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
}

.signUp__btn{
    width: 147px;
    height: 40px;
    border-radius: 8px;
    background-color: #FF9700;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #2A2A2A;
    font-family: "Inter", sans-serif;
}

@media only screen and (max-width: 1024px) {
    .signUp__btn{
        height: 36px;
    }
}

@media only screen and (max-width: 425px) {
    .signUp__letter{
        font-size: 16px;
    }
    .signUp__img img{
        height: 150px;
    }
    .signUp__btn{
        height: 36px;
    }
}

@media (min-width: 426px) and (max-width:768px) {
    .signUp__letter{
        font-size: 22px;
    }
    .signUp__img img{
        height: 150px;
    }
    .signUp__btn{
        height: 36px;
    }
}

@media (min-width: 768px) and (max-width:1280px) {
    .signUp__letter{
        font-size: 22px;
    }
}


/* Footer Styel */

.footerAdd__content{
    border-radius: 8px;
    background-color: #002147;
    width: 250px;
    height: 154px;
    padding: 24px;
}

.footerAdd__contentTitle{
    font-size: 16px;
    font-size: 500;
    color: #FF9700;
    font-family: "Inter", sans-serif;
}

.footerAdd__contentPara{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
}

.footer__logo{
    width: 180px;
    height: 88px;
}

.footer__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.footer__last{
    background-color: #002147;
    height: 60px;
}

.footer__copy{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
}

.branlet{
    color: #FFD113;
}