*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

:root {
	--text-primary: #534545; 
	--text-secondary: #141414; 
	--text-terniary: #33d9b2; 
	--text-fourth: #34e7e4; 
    --text-fifth: #f7d794; 
    --bg-body: #ebf5fc;
	--bg-primary: #ffffff; 
    --bg-secondary: #dfe1e2;
    --font-family-pr: 'Noto Serif', serif;
}

body{
    /* background: rgb(255, 255, 255);
    background: #ebf5fc; */
    background: url(NseImage.jpg);
    	/* Full height */
  	height: 100%;

  	/* Center and scale the image nicely */
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
    /* background-color: white; */
	color: #fff;
	line-height: 1.6;
	height: 100vh;
	/* overflow: hidden;   */
	
	padding: 0px;
    margin: 0px;

    font-family: var(--font-family-pr);
    /* background-size: cover; */
}


/***************Customised ScrollBar***************/


::-webkit-scrollbar {
	width: 0.7rem;
}

::-webkit-scrollbar-track {
	background: linear-gradient(180deg, #5572f1, #8cfcfc);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #e3eff0, #eef3ee);
    border-radius: 5px;
}

/***************Smooth-Scroll-Sections***************/
.container {
	width: 100%;
    height: 100vh;
    overflow: hidden;

	/*CSS Smooth Scroll */
	/*overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory; */
    justify-content: center;
    position: absolute;
}

.container#blur.active{
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
}


/************************Nav Bar ***********************/

.nav {
    margin: 0px;
    padding: 0;
    height: 8vh;
    width: 100%;
    /* background: rgba(98, 18, 248, 0.4); */
    background-color: var(--bg-primary);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;  
    /* flex-wrap: wrap; */
    /* box-shadow: 5px 5px 5px rgb(206, 206, 218); */
    z-index: 100;
    /* border-bottom: 3px solid rgb(248, 44, 89); */

}
.nav .homeIcon{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    margin: 30px;
    padding-left: 0px;
   
    
}

.homeIcon:hover{
      color: turquoise;
}

.homeIcon img{
    display: inline-block;
    height: 6.4vh; 
} 


.nav ul {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    line-height: 35px;

}

.nav ul li {
    list-style-type: none;
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav ul li a {
    text-decoration: none;
    text-rendering: geometricPrecision; 
    position: relative;
    display: block;
    width: auto;
    height: 100%;
    padding: 0px 30px;
    line-height: 35px; 
    /* color: rgb(252, 250, 250); */
    color: var(--text-primary);
    /* font-family: 'Noto Serif', serif; */
    font-family: var(--font-family-pr);
    font-weight: bold;
    font-size: 13px;
    /* transition: transform .4s cubic-bezier(0.55, 0, 0.55, 0.2) , background-color .4s cubic-bezier(0.55, 0, 0.55, 0.2) ease-in; */
    transition: background-color 0.6s ease-out, color 0.5s ease, font-size 1s ease ;
    transform-origin: 50% 30%;
}

.nav ul li a:hover {
    color: white;
    background-color: rgb(248, 42, 76);  
    font-size: 14px;
    transform: scale(1);
}

.nav ul li .logout{
    padding-right: 40px;
    margin-right: 0.5rem;
    /* padding-top: 0.5rem; */
    /* color: white; */
    color: var(--text-primary);
    font-weight: bolder;
   
}

.nav ul li a i{
    padding: 0;
    padding-top: 0.4rem;
    /* color: white; */
    color: var(--text-primary);
    font-weight: bolder;
    width: 0.0rem;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: rgb(245, 187, 132);
}

 .nav ul li .logout:hover {
    background: none; 
}

.submenu {
    display: none;
    height: auto;
    width: 15rem;
    right: 0.8rem;
    border: 2px solid red;
}

.submenuE{
    display: none;
    height: auto;
    width: 15rem;
    border: 2px solid red;
    /* right: 0.8rem; */
}




.nav ul li:hover .submenu, 
.nav ul li:hover .submenuE{
    display: block;
    position: absolute;
    /* background-color: rgb(142, 75, 250); */
    background-color: var(--bg-primary) ;
    color: var(--text-primary);
    margin-top: 0;
    /* margin-left: -250px; */
}
 

.nav ul li:hover div .submenUlS{
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin: 10px;
}

.nav ul li div ul li{
   /* border-bottom: 1px solid grey; */
   /* left: 50%; */
   text-align: left;

}

.submenuP {
    display: none;
    height: auto;
    /* width: 50rem;    */
    background-color: #cf8484;
    right: 2rem;
    border: 1px solid red;
}

.submenUlP{
    display: flex;
    justify-content: space-around;
    align-items: flex-start; 
    width: 60rem;
    height: auto;
    background-color: #FFF;
    border: 1px solid red;
    padding-top: 0.5rem;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
    padding-bottom: 0.5rem;
}

.nav ul li:hover .submenuP{
    display: block;
    position: absolute;
    /* background-color: rgb(142, 75, 250); */
    background-color: var(--bg-primary) ;
    color: var(--text-primary);
    margin-top: 0;
}

.submenu3Anchor{
    /* border-bottom: 1px solid red; */
    text-transform: uppercase;
    letter-spacing: 3px;
    word-spacing: 5px;
    text-align: left;
}

.nav ul li .submenu3Anchor:hover{
    background: none;
    color: var(--text-primary);
    cursor: auto;

}


.nav ul li .submenu4Anchor {
    color: rgb(117, 161, 241);
    font-size: 14px;
    transform: scale(1);
    text-align: left;
}

.line{
    border-left: 0.5px solid rgb(173, 167, 167,0.6);
    height: 40vh;
}



.nav label{
    margin: 0 30px 0 0;
    font-size: 27px;
    line-height: 50px;
    color: rgb(247, 35, 88);
    display: none;
    width: 26px;
}

.nav ul li .login{
    border: 2px solid red;
    color: red;
    margin-right: 50px;
    border-radius: 5px;
}



#toggle{
    display: none;
}

@media only screen and (max-width: 600px){
    .nav label{
        display: block;
        cursor: pointer;
    }

    .nav ul{
        /* text-align: center; */
        /* width: 100%; */
        border: 1px solid #EAEAEB;
        border-collapse: collapse;
        margin: 0;
        display: none;
    }

    .nav ul li{
        /* display: inline; */
        text-align: center;
        width: 100%;
        border: 1px solid #EAEAEB;
        border-collapse: collapse;
        margin: 0;
    } 

    #toggle:checked + .menu{
        display: block;
    }


}

/*****************************************Login Form *******************************/
.loginForm{
    width: 50%;
    /* height: 90vh; */
    background-color: #34e7e4;
    position: absolute;
    z-index: 1000;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    display: grid;
    /* grid-template-columns: 1fr 1.2fr; */
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;

}

.imge{
    background-color: rgb(248, 246, 114);
    background: url(pen_paper.png);
    background-size: cover;
    filter: blur(px);
    
}



.logn{
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    align-items: center;
    /* border:  1px solid grey; */
    padding: 30px;
    margin: 0px;
    position: relative;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
   /*  background: rgb(0,1,1,0.3); */
    box-shadow: 2px 2px 5px 3px rgb(247, 245, 245, 0.5);
    /* border-radius: 10px; */
    /* background-color: white; */
} 

.logn .inputbox {
    position: relative;
}



.greenbox{
    padding: 0px;
    margin: 20px;
    min-width: 20rem;
    height: 1.2rem;
    /* border-radius: 5px; */
    border: 0.5px solid rgb(135, 138, 138);
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: solid;
    background-color: azure;
    color: rgb(82, 80, 80);
    font-family: cursive;
    top: 0rem;
    left: 0rem;
    background: transparent;
    outline: none;
}


.logn .inputbox  label{
    padding: 10px;
    margin: 10px;
    position: absolute;
    top: -10%;
    left: 0;
    color: rgb(100, 94, 94);
    pointer-events: none;
    transition: 0.5s;
    font-family: 'Times New Roman', Times, serif;

}



.logn .inputbox input:focus ~ label,
.logn .inputbox input:valid ~ label
{
    top: -23px;
    color: rgb(58, 61, 245);
    font-size: 0.85rem;
}

.logn .inputbox input:focus,
.logn .inputbox input:valid
{
    border-bottom: 0.5px solid rgb(93, 129, 250);
}

.logn .err{
    padding: 10px;
    margin: 10px;
    min-width: 25rem;
    border-radius: 5px;
    background-color: rgb(248, 101, 101);
    color: white;
    border-left-style: hidden;
    font-family: cursive;
    /* text-align: right; */
}



.redbox::placeholder{
	color: red;
	/* text-align: right; */
}



.logn h1{
  color:  rgb(57, 77, 252);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-top: 50px;
  margin-bottom: 50px;
}

.logn a{
    align-self: stretch;
    position: relative;
    left: 38%;
    text-decoration: none;
    color: blue;
    margin-bottom: 50px;
  }

.logIn{
    background-color: #fa4c3f; /* Red */
   
	width: auto;
	color: white;
	padding: 7px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	/* //font-size: 25px; */
    margin: 4px 2px;
    margin-right: 20px;
	cursor: pointer;
    border-radius: 5px;  
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    outline: none;
    border: 2px solid #fa4c3f;
}

.Cancel{
    background-color: #17a17f; /* Red */
	width: auto;
	color: white;
	padding: 7px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	/* font-size: 25px; */
	margin: 4px 2px;
	cursor: pointer;
    border-radius: 5px;  
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    outline: none;
    border: 2px solid #17a17f;
}

#popup.active{
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}


/*************************** Start Image Slider *****************************/

/*
.imgslider{
    overflow: hidden; 
    background-color: black;
    height: 100%;
    width: 100%;

}

.imgfigure{
    /* position: relative; */
/*    height: 100%;
    width: 500%;
    background-color: blanchedalmond;
    margin: 0;
    padding: 0;
    animation: slider infinite 20s 2s;    
}

.imgdiv{*/
    /* position: relative; */
    /* text-align: center; */
   /* color: red;
    width: 20%;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    
}
.textbox{
    margin-left: 50px ;
    animation: textup 8s linear infinite;
    transform: translateY(150px);
    opacity: 0;
    /* background-color: black; 
    width: 50%;
}*/
/*
.imgdiv:nth-child(1){
    background: url(Slider7.jpg);
    height: 100%;
    background-size: cover;
}
.imgdiv:nth-child(2){
    background: url(Slider1.jpg);
    height: 100%;
    background-size: cover;
}
.imgdiv:nth-child(3){
    background: url(Slider7.jpg);
    height: 100%;
    background-size: cover;
}
.imgdiv:nth-child(4){
    background: url(Slider1.jpg);
    height: 100%;
    background-size: cover;
} 

.imgdiv:nth-child(5){
    background: url(Slider7.jpg);
    height: 100%;
    background-size: cover;
} 

@keyframes slider{

    12.5%{
        margin-left: -100%;
    }
    25%{
        margin-left: -100%;
    }
    37.5%{
        margin-left: -200%;
    }
    50%{
        margin-left: -200%;
    }
    62.5%{
        margin-left: -300%;
    }
    75%{
        margin-left: -300%;
    }
    87.5%{
        margin-left: -400%;
    }
    100%{
        margin-left: -400%;
    }

}

@keyframes textup{
    10%{
        transform: translateY(0px);
        opacity: 1;
    }
    100%{
        transform: translateY(10px);
        opacity: 1;
    }

}



.textbox1{
    animation-delay: 0s;
}

.textbox2{
    animation-delay: 3s;
}

.textbox3{
    animation-delay: 8s;
}

.textbox4{
    animation-delay: 12s;
}

.textbox5{
    animation-delay: 16s;
}

*/

/*************************** Image Slider - Zoom out *****************************/


.banner1, .banner2, .banner3, .banner4{
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.banner1 img, .banner2 img , .banner3 img, .banner4 img{
    width: 120%;
    height: 120%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: zoom-out 8s linear infinite;
}

@keyframes zoom-out{
    100%{
        width: 100%;
        height: 100%;
    }
}

.text-box{
    width: 50%;
    position: absolute;
    top: 200px;
    left: 5rem;
    color: black;
    animation: textup 16s linear infinite;
    transform: translateY(100px);
}



.banner1{
    animation: slide1 32s linear infinite;
}

.banner2{
    animation: slide2 32s linear infinite;
}

.banner3{
    animation: slide3 32s linear infinite;
}

.banner4{
    animation: slide4 32s linear infinite;
}

@keyframes slide1{
    0%{
        visibility: visible;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }

}

@keyframes slide2{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: visible;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: hidden;
    }

}

@keyframes slide3{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }

}

@keyframes slide4{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }

}

/* @keyframes textup{
    10%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(0px);
    }
} */

.text-box1{
    animation-delay: 0s;
}
.text-box2{
    animation-delay: 8s;
}
.text-box3{
    animation-delay: 16s;
}
.text-box4{
    animation-delay: 24s;
}



/********text part******/
.text-box h1{
    color: #fa2424;
    text-shadow: #141414;
    font-size: 2rem;
    display: inline-block;
    background-color: var(--bg-body);
    background: linear-gradient(135deg,white, rgb(224, 222, 222));
    /* border-bottom: 3px solid rgb(223, 66, 255); */
    padding: 15px 25px;
    box-shadow: -6px -6px 10px rgb(255, 255, 255, 1),
                6px 6px 10px rgb(0, 0, 0, 0.5);
    border-radius: 5px;
}

.text-box p{
    margin-top: 30px;
    color: #181f5f;
    text-shadow: #141414;
    font-size: 1rem;
}

.text-box button{
    margin-top: 40px;
    padding: 15px 25px;
    border: 2px solid rgb(67, 85, 252);
    color: rgb(67, 85, 252);
    border-radius: 50px;
    font-family: var(--text-primary);
    font-weight: bold;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
}

/***************************End Image Slider *****************************/


/************************Bottom*****************************/
.bttm{
    position: relative;
    bottom: 0;
    background: #e7e7f7;
    width: 100%;
    top: 100%;
    height: 40%; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.aboutNSE{
    width: 100%;
    height: 100%;
    /* background-color: cornflowerblue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 80px;

}
.aboutMP{
    width: 100%;
    height: 100%;
    /* background-color: cornsilk; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 80px;
}

.followUs{
    width: 100%;
    height: 100%;
    /* background-color: darkcyan; */
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.bttm p{
    font-size: 20px;
    color:rgb(9, 9, 117);
    font-weight: bold;

}

.bttm a{
    font-size: 13px;
    text-decoration: none;
    color: rgb(52, 52, 80);
}

.bttm a:hover{
    color: orange;
} 

.bttm  i{
    font-size: 12px;
    text-decoration: none;
    background-color: rgb(9, 9, 117);
    color: rgb(255, 255, 255);
    padding: 12px;
    border-radius: 50px;
}

.bttm  i:hover{

    background-color: rgb(250, 167, 73);
    color: rgb(245, 241, 241);

}

.bttm .followUs p{
    font-size: 15px;
    color:rgb(224, 137, 22);
    margin-bottom: 10px;
    font-weight: bold;

}










