
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  font-family: 'Segoe UI', Roboto, Tahoma, Geneva, Verdana, sans-serif;
}


.webnavbar {
  position: fixed;
  width: 100%;
  background-color: #4070f4;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content:space-between;
  z-index: 1000;
}

.container{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 500px){
  .webnavbar{
    padding: 0;
  }

  .container{
    width: 50%;
    padding: 0;
    left: 0;
  }
}

.logo{
  display: flex;
  width: 26rem;
  align-items: center;
  justify-content: space-between;
}


.flag {
  width: 100px; 
  height: 60px;
  margin-right: 0;
}


.ceas {
  width: 100px; 
  height: 60px;
  margin-left: 10px;
}

@media (max-width: 500px){
  .logo{
    scale: 0.8;
    width: 30rem;
  }
}

.navname {
  margin: 0;
  font-family: poppins;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 500px){
  .navname{
    font-size: 1rem;
    display: none;
  }
}

.main_menu{
position: relative;
left: -5rem;
display: flex;
justify-content: space-between;
list-style: none;
}

.show_sidemenu{
  position: absolute;
  left: 11rem;
  display: none;
}

@media (max-width: 500px){
  .hideOnMobile{
    display: none;
  }

  .show_sidemenu{
    display: block;
  }

}


.side_menu{
  position: fixed;
  top: -1rem;
  right: 0;
  height: 90vh;
  width: 250px;
  padding-left: 0;
  z-index: 999;
  background-color: #3f35f952;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  list-style: none;
}

.side_menu li{
  margin-top: 10px;
  width: 100%;
  position: relative;
}


.side_menu li a{
  display: block;
  width: 100%;
  font-family: poppins;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.side_menu li a:hover {
  width: 100%;
  color: #570689;
  background-color: #ffffff46;
}

.side_menu .menu_icon{
  width: 100%;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  color: #fff;
}

.side_menu .menu_icon:hover {
  width: 100%;
  color: #570689;
  background-color: #ffffff46;
}

.side_login {
  background-color:#b903cd;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-top: 2rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  left: 1rem;
}


.side_login:hover {
  background-color: #ff7426;
}



.main_menu li {
  margin-right: 1.5rem; 
  
}


.main_menu li a:hover {
  color: #570689;
  background-color: #ffffff46;
}

.main_menu li a {
  font-family: poppins;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  position: relative;
  padding: 0.5rem;
  margin: 0;
  border-radius: 10px;
}

@media (max-width: 500px){
  .main_menu li a:hover{
    background-color: transparent;
    -webkit-tap-highlight-color: transparent; 
    user-select: none; 
    outline: none;
  }
}

.drop{
  
  z-index:3000;
  margin: 0;
  position: absolute;
  
}

.drop1{
  
  z-index:3000;
  margin: 0;
  position: absolute;
  
}

.drop .drop_menu{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.drop1 .drop_menu1{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.drop_menu {
  display: none;
  position: absolute;
  top: 2rem;
  left: 25rem;
  margin: 0;
  background-color: #4070f4; 
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  list-style: none;
  z-index: 1;
  padding-left: 0.5rem;
  opacity: 0;  
}

.drop_menu1 {
  display: none;
  position: relative;
  top: 0rem;
  left: 0rem;
  margin: 0;
  background-color: #c0bdfb06;
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  list-style: none;
  z-index: 1;
  padding-left: 0;
  opacity: 0;  
}

.drop_menu.show {
  display: block; 
  opacity: 1; 

}

.drop_menu1.show {
  display: block; 
  opacity: 1; 

}

.drop_menu li {
  margin-top:0.5rem;
  margin-bottom:0.5rem;
}

.drop_menu1 li {
  margin-top:0.1rem;
  margin-bottom:0.1rem;
  padding: 0;
  font-size: 0.9rem;
}

.drop_menu a {
  color: white;
  display: block;
  text-align: left;
}

.drop_menu1 a {
  padding: 0;
  color: white;
  display: block;
  text-align: left;
}

.drop_menu a:hover {
  color: #570689;
  background-color: #ffffff46;
}

.drop_menu1 a:hover {
  color: #570689;
  background-color: #ffffff46;
}

.main_menu .drop:hover .drop_menu{
  display: block;
}

.side_menu drop1:hover .drop_menu1{
  display: block;
}

.nav-menu a:hover {
  background-color: #555;
}


.login {
  background-color:#b903cd;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-right: 2rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  top: 0.8rem;
}

@media (max-width: 500px){
  .login{
    display: none;
  }
}

.login:hover {
  background-color: #ff7426;
}


.content1{
  height: 38rem;
  margin-bottom: 1rem;
}

@media (max-width: 500px){
  .content1{
    height: 37rem;
    width: 100%;
  }

}


.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire div */
  z-index: -1;
}

.playbtn{
  position: relative;
  left: 65rem;
  top: -3rem;
  background: transparent;
  color: #ff7426;
  border: solid 2px #ff7426;
  padding: 15px 18px;
  border-radius: 60px;
}


.slidetext{
  position: relative;
  top: 10rem;
  left: 3rem;
  font-family: poppins;
  font-weight: bold;
  font-size: 3rem;
  width: 40rem;
  color: #ff7426;

}

@media (max-width: 500px){
  .slidetext{
    width: 90%;
    font-size: 1.8rem;
    left: 1rem;
    top: 4rem;
  }

}


.slidetext2{
  color: #fff;
  
  
}

.slidetext3{
  color: #fff;
  
}

.slidetext4{
  color: #ff7426;
  
}
.slidetext5{
  color: #fff;
  
}


.cp{
  margin-bottom: -0.5rem;
}

.central{
  font-size: 4.2rem;
}

@media (max-width: 500px){
  .central{
    font-size: 2rem;
  }
}


.smart{
  position: relative;
  top: 1.5rem;
  font-size: 1.9rem;
  color: rgb(100, 3, 117);
}

@media (max-width: 500px){
  .smart{
  font-size: 1rem;
  top: 0.5rem;
  }
}


.swiper{
  position: relative;
  top: -10rem;
  left: 50%;
}


@media (max-width: 500px){
  .swiper{
    position: absolute;
    top: 10rem;
    left: 0;
  }
}


.content2{
  width: 100%;
  height: 25rem;
  background-color: #f6e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 500px){
  .content2{
    height: 40rem;
  }
}

.servicetitle{
  font-family: poppins;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 1rem;
  position: relative;
  top: 1rem;
}


.servicetitle1{
  color: #ff7426;
}

.containerservice{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 12rem;
  background-color: rgb(110, 3, 129);
  padding-bottom: 4rem;
  padding-top: 0.5rem;
  position: relative;
  top: 1rem;
}

@media (max-width: 500px){

  .servicetitle{
    font-size: 1.5rem;
    margin: 0;
  }

  .containerservice{
    flex-direction: column;
    height: 25rem;
  }
}


.service1{
  
  display: flex;
  align-items: center;
  justify-content: left;
  width: 30%;
  margin-right: 30px;
  
}


.service2{

  display: flex;
  align-items: center;
  justify-content: left;
  width: 28%;
  
}

.service3{

  display: flex;
  align-items: center;
  justify-content: left;
  width: 28%;
  margin-right: 10px;
  
}

.statistics{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-family: poppins;
  font-weight: bold;
  color: #352961;
}

@media (max-width: 500px){

  .service1{
    width: 100%;
  }

  .service2{
    width: 100%;
  }

  .service3{
    width: 100%;
  }

  .statistics{
    font-size: 1rem;
  }
}

.numbers{
  width: 90%;
  display: flex;
  justify-content: space-between;
  font-size: 2.5rem;
  font-family: poppins;
}

@media (max-width: 500px){
  .numbers{
    flex-direction: column;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
  }
}


.counter{
  color: #b903cd;
  margin-right: 0.5rem;
}

.sch_count{
  display: flex;
  margin-right: 2rem;
}

.teach_count{
  display: flex;
  margin-right: 2rem;
}

.stu_count{
  display: flex;
  margin-right: 2rem;
}

.cardtitle{
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.card{
  width: 19rem;
  color: #fff;
  background: none;
  border: none;
  font-size: 1.3rem;
}

@media (max-width: 500px){

  .cardtitle{
    font-size: 1rem;
    margin: 0;
  }

  .card{
    width: 100%;
    font-size: 1rem;
  }
}

.card-text{
  width: 100%;
  margin-top: 0.5rem;
}

.card1{
  margin-left: -20px;
  width: 340px;
  
}

.servicebutton{
  width: 7rem;
  height: 3cap;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background-color: #4070f4;
  padding: 0.5rem 0.7rem;
}

.teachimg{
 margin-top: 3rem;
 
}

.shareimg{
  margin-top: 3rem;
  margin-right: 1rem;
  
 }

 .resimg{
  margin-right: 1rem;
  
 }
 

 @media (max-width: 500px){

  .servicebutton{
    width: 4rem;
    font-size: 1rem;
  }

  .teachimg{
    margin: 0;
  }

  .shareimg{
    scale: 0.9;
  }

  .resimg{
    margin: 0;
    scale: 0.8;
  }

 }

  
.content3{
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: center;  
}

@media (max-width: 500px){
  .content3{
    flex-direction: column;
    height: 15rem;
  }
}

.birthlist{
  position: relative;
  width: 82%;
  overflow: hidden;
}

.birth_text{
  position: relative;
  top: 0;
  left: 1rem;
  width: 12%;
  font-family: Poppins;
  font-weight: bold;
  font-size: 3rem;
  margin: 0;

}

@media (max-width: 500px){
  .birth_text{
    font-size: 1.5rem;
    left: 5%;
    width: 60%;
  }
}

.birth_text2{
  color: #ff7426;
}


.content4{
  width: 100%;
  height: 32rem;
  background-color: #f6e5e5;
  padding-top: 0.5rem;
}


@media (max-width: 500px){
  .content4{
    height: 70rem;
  }
}

.news_container{
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 2rem;
  margin-right: 2rem;
}


.newsbar_title{
  position: relative;
  top: 0;
  left: 1rem;
  width: 40%;
  font-family: Poppins;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsbar_title2{
  color: #ff7426;
}

@media (max-width: 500px){

  .news_container{
    display: flex;
    flex-direction: column;
  }

  .newsbar_title{
    font-size: 1.5rem;
    width: 80%;
  }

}

.newsbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_card{
  border-radius: 10px;
  width: 25rem;
  height: 25rem;
  background: rgb(110, 3, 129);
  color: #fff;
  overflow: hidden;
}

@media (max-width: 500px){

  .news_container{
    width: 100%;
    margin: 0;
  }
  
  .news_card{
    width: 22rem;
    height: 22rem;
    margin-bottom: 0.5rem;
  }
}


.news_image{
  width: 90%;
  height: 60%;
}

.news_body{
  padding-left: 1rem;
  padding-bottom: 0;
}

.news_title{
  font-size: 1.2rem;
  margin: 10px 0;
}

.news_text{
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.1rem;
}

.news_btn{
  align-items: center;
  background-color: #4070f4;
  text-decoration: none;
  color: #fff;
  padding:10px;
  border-radius: 10px;
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 500px){
  .news_title{
    font-size: 1rem;
  }

  .news_text{
    font-size: 0.9rem;
  }

}


.content5{
  width: 100%;
  height: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
   
}

@media (max-width: 500px){
  .content5{
    height: 75rem;
  }
}

.charts{
  width: 95%;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.charts_title{
  font-family: poppins;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 2rem;
}

.charts_title1{
  color: #ff7426;
}



.highcharts-legend .highcharts-no-tooltip{
  position: relative;
  top : 1rem;
}

.ol_chart{
  width: 30%;
}

.al_chart{
  width: 30%;
}

.schol_chart{
  width: 30%;
}

@media (max-width: 500px){
  .charts{
    flex-direction: column;
  }

  .charts_title{
    font-size: 1.5rem;
  }

  .ol_chart{
    width: 100%;
  }

  .al_chart{
    width: 100%;
  }

  .schol_chart{
    width: 100%;
  }
}



.webfooter{
  display: flex;
  background-color: rgb(110, 3, 129);
  align-items: center;
  flex-direction: column;
}



.quick{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}


.quick1{

  font-family: poppins;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  margin-top: 0.5rem;
  width: 40rem;
  padding-left: 2rem;
  position: relative;
  right: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social{
  width: 12rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
}



.quick2{

  font-family: poppins;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  margin-top: 2rem;
  position: relative;
  width: 25rem;
  padding-left: 2rem;

}

.quicklinks a{
  
  color: #fff;
  text-decoration: none;
}

.quicklinks a:hover{
  color: #f405f4;
  text-decoration: none;
  transform: scale(1.2);
}



.quick2 .quicklinks3{
  font-size: 1rem;
  margin-bottom: 1rem;
}


.quick3{

  font-family: poppins;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  margin-top: 2rem;
  position: relative;
  width: 20rem;
  padding-left: 2rem;
  
}

.quick4{

  font-family: poppins;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  margin-top: 2rem;
  position: relative;
  width: 20rem;
  
}

@media (max-width: 500px){

  .quick{
    flex-direction: column;
  }

  .quick1{
    width: 100%;
    font-size: 0.8rem;
    height: 4rem;
    right: 0;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .quick2{
    width: 80%;
    font-size: 0.8rem;
    margin-top: 1rem;
    padding: 0;
    margin-left: 0;
  }

  .quick3{
    width: 100%;
    font-size: 0.8rem;
  }


  .quick2 .quicklinks3{
    font-size: 0.8rem;
    margin: 0;
    width: 90%;
  }

  .social{
    position: relative;
    top: -3rem;
  }

  .quick4{
    margin: 0;
    font-size: 0.5rem;
    left: 2rem;
    width: 80%;
  }

  .quicklinks2{
    display: none;
  }

  .quicklinks5{
    font-size: 0.8rem;
    margin-top: 0;
  }
  
}

.quick3 .quicklinks{
  font-size: 1rem;
  margin:  0;
}

.quick3 .quicklinks1{
  font-size: 1rem;
  margin-left: 3rem;
}


.quick4 .quicklinks{
  font-size: 1rem;
  margin-top:  1rem;
  display: flex;
  align-items: center;
}

.quick4 .quicklinks1{
  font-size: 1rem;
  margin-left: 1.8rem;
  margin-bottom: 0;
}

.quick4 .quicklinks2{
  font-size: 1rem;
  margin-bottom: -0.8rem;
  margin-left: 1.8rem;
}

.copy{
  margin-top: 0.8rem;
  font-family: poppins;
  font-size: 0.8rem;
  color: #fff;

}

@media (max-width: 500px){
  .copy{
    font-size: 0.6rem;
  }
}