*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.a{
    text-decoration: none;
    transition: 0.3e;
}

body{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/*Global tags*/

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35,35,85)
}

span{
    font-size: 9rem;
    color: #757373
}

h6{
    font-size: 1.1rem;
    color: rgb(24,24,49)
}


/*pop up*/

.popup {
  display: none;  /* Start hidden */
  position: fixed;
  z-index: 1200;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content img{
  position: relative;
  max-width: 50%;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow:inherit; 
   
}

.popup-content img {
  width: 100%;    
  height: auto;  
} 

.close-button {
  position:absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: black;
}


/*Navigations*/

nav{
    position: fixed;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1vw 5vw;
    align-items: center;
    box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.15);
    z-index: 1000; /*added*/
}
nav img{
    width: 80px;
    cursor: pointer;
}

nav .navigation ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

nav .navigation ul li{
    list-style: none;
    margin-left: 10px;
    position: relative;
}

nav .navigation ul li a{
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    float: left;/*new*/
}

.sub-menu-1:hover,/*new*/
nav .navigation ul li a:hover{
      color:lightseagreen; 
}


/*Drop-down*/


.sub-menu-1{
    display: none;
    position: absolute;
    z-index: 100;
}
/*.sub-menu-1 li{

}*/
.sub-menu-1 a{
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 4px;
  margin-bottom: 10px;
}

.navigation ul li:hover .sub-menu-1{
    display:block;
    position: absolute;
    background: rgb(252, 252, 252);
    margin-top: 15.2px;
    margin-left: -2px;
}

.navigation ul li:hover .sub-menu-1 ul{
    display: block;
    margin: 15px; 
} 

.navigation ul li:hover .sub-menu-1 ul li{
    width: 150px;
    padding: 10px;  
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 100%;
    text-align:start;
    padding-bottom: 10px;
}





.navigation ul li:hover .sub-menu-1 ul li:hover{
    color:lightseagreen;
    float: none;
}  

/*news scroll effect*/

.scroll-up {
  overflow: hidden;
  height: 1.5em; 
  animation: scroll-up  5s linear infinite; 
}

@keyframes scroll-up {
  0% {
      transform: translateY(100%);
  }
  100% {
      transform: translateY(-80%);
  }
}

/* button*/


#features .fea-base .btn{
    margin-top: 30px;
    padding: 5px;
    justify-items: center;
}

#features .fea-base .btn a{
text-decoration: none;
font-size: 0.9rem;
padding: 13px 40px;
background-color: white;
font-weight: 600;
border-radius: 5px;
}

#home a.blue{
color: white;
background-color: rgb(21, 21, 100);
transition: 0.3s ease;
}

#features .fea-base .btn a.blue{
    color: white;
    background-color: rgb(21, 21, 100);
    transition: 0.3s ease;
}

#features .fea-base .btn a.blue:hover{
    color: rgb(21, 21, 100);
    background-color: white;
}
/*NEWS ADMISSION BUTTON*/

#home a.blue:hover{
    color: rgb(21, 21, 100);
    background-color: white;
}

#home a.yellow{
    color: white;
    background-color: #fdc93b;
    transition: 0.3s ease;
}
    
 #home a.yellow:hover{
   color: rgb(21, 21, 100);
   background-color: white; 
}

/*achiever section*/
  .wrapper {
    justify-content: center;
    background: linear-gradient(to left top, #080da0,#c4c4c4);
    display: flex;
    padding: 0 35px;
    align-items: center;
    min-height: 60vh;
    max-width: 70vx;
    width: 100%;
    position:static;
    
  }
  .wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    z-index: 10; /*added*/
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
    left: -22px;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
  }
  .carousel .card .img {
    background: #8B53FF;
    height: 150px;
    width: 150px;
    border-radius: 50%;
  }
  .card .img img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
  }
  .carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 20px 0 5px;
  }
  .carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
    text-align: center;
  }
  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  }


/*marquee*/
.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  background-color: rgb(32, 32, 102); 
  padding: 10px 0;
  z-index: 10; /*added*/
}

.marquee-text {
  animation: marquee-slide 30s linear infinite;
  color: white;
  font-size: 20px; 
  font-weight: 200;
}

@keyframes marquee-slide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


/*welcome to mvn*/
/*news and admission*/

#features{
    padding: 5vw 8vw 0 8vw;
    text-align: center;
    
}

#features .fea-base{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
    text-align: center;
}

#features .fea-box{
    background:#f2f3f4;
    text-align: center;
    padding: 20px;
    
}

#features .fea-box i{
    font-size: 2.3rem;
    color: rgb(44, 44, 80);
    
}

#features .fea-box h3{
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(46, 46, 59);
    padding: 13px 5px 7px 0;
    text-align: center;
}

#features .fea-box p{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70,70,87);
    align-items: center;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
    
}

/*creative*/

#creative{
    padding: 5vw 8vw 8vw 8vw;
    text-align: center;
    
}

#creative .creative-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
    text-align: center;
}


#creative .creatives{
    text-align: center;
    /*background-color: #f9f9ff;*/
    height:fit-content;
    
}

#creative .creatives img{
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
    border-radius: 10%;
}

/*Message*/

#experts{
    padding: 5vw 8vw 0vw 8vw;
    text-align: center;
}

#experts .expert-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#experts .expert-box .profile {
    background-color: #f2f3f4;
    padding: 30px 10px;
}

#experts .profile img{
    border-radius: 5%;
    width: 400px;
    height:500px;
    
}

/*footer*/

footer{
    padding: 2vw;
    background-color: #101c32;
    display: flex;
    justify-content: space-between;
   
    
}

footer .footer-col{
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 10px;
}

footer h3{
    color: rgb(241, 240, 245);
    font-weight: 600;
    padding-bottom: 5px;
}

footer li{
    list-style: none;
    color: #fefefe;
    padding: 5px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

footer li:hover{
    color:rgb(241, 240, 245) ;
}

footer p{
    color: #dcdddf;
}

footer .copyright p{
    color: white;
}
footer a{
    color: #1da9c0;
}

footer a i{
    background-color: white;
    text-align: center;
    margin: 5px;
    border-radius: 50px;
    height: 35px;
    width: 35px;
    box-shadow: 1px 2px 1px 2px;
    transition: all 0.3s linear;
}

/*About us*/

.hero{
    background-color: #f8f8f8;
    overflow: hidden;
}
.heading h1{
    color: #101c32;
    font-size: 45px;
    text-align: center;
    margin-top: 35px;

}
.hero .container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}

.hero-content{
    flex: 1;
    width: 600px;
    margin: 0px 25px;
}

.hero-content h2{
    font-size: 38px;
    margin-bottom: 20px;
    color: #fdc93b;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.0;
    margin-bottom: 40px;
    color: rgb(28, 30, 48);
    text-align: justify;
}

.hero-image{
    flex: 1;
    width: 600px;
    margin: auto;
    
}

.hero img{
    width: 100%;
    padding:20px;
    border-radius: 40px;
    height: 700px;
}

/*gallery*/

.img-gallery{
    width: 80%;
    margin: 50px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 15px;
    /* position:inherit; */
    font-family:sans-serif;

}
.img-gallery img{
    width: 100%;
    cursor: pointer;
    transition: 0.4s;
}

.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68,77,136, 0.2);
}

.full-img{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img{
   width: 90%;
   max-width: 500px;
}

.full-img span {
    position:relative;
    padding:10px;
    
    font-size: 30px;
    color: white;
    cursor: pointer;
    
}

/*the legends*/

.table-box{
    margin: 50px auto;
    text-align: center;
    font-size: 20px;
}
.table-row{
    display: table;
    width: 80%;
    margin: 10px auto;
    font-family: sans-serif;
    background: transparent;
    padding: 10px 0;
    color:#555;
    font-size: 13px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 50, 0.3);
}

.table-cell{
    display: table-cell;
    width: 20%;
    text-align: center;
    padding: 4px 0;
    border-right: 1px solid #d6d4d6;
    vertical-align: middle;
}
.table-head{
    background: #8665f7;
    box-shadow: none;
    color: #fff;
    font-weight: 600;
}


/*labs*/

.container{
    width: 100%;
    /*min-height: 100vh;*/
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 0px 20px;*/
}
.content-section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-section .card{
    flex: 1;
    margin: 20px 20px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.content-section .card img{
    width: 100%;
    height: 100%;
}
.content-section .card h2{
    margin: 15px 0px;
    font-size: 28px;
    color: #1662a1;
    font-family: sans-serif;
}
.content-section .card p{
    font-size: 20px;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px){
    .content-section{
        flex-direction: column;
    }
}
/*admissions*/

.box{
    padding: 20px;
}
.box h2{
    padding: 10px;
}
.b1{
    background-color:#d6d4d6;
    padding: 30px;
}
.b2{
    background-color: #f8f8f8;
    padding: 30px;
}
.b3{
    background-color: #d6d4d6;
    padding: 30px;
}

ul{
    font-size: 1.09rem;
    margin-bottom: 5px;
    
}
.b1 ul li{
    display: list-item;
    text-align: inherit;
    margin-top: 5px;
}
.b2 ul li{
    display: list-item;
    text-align: inherit;
    margin-top: 5px;
}
.b3 ul li{
    display: list-item;
    text-align: inherit;
    margin-top: 5px;
}

/*contact us*/


 .section {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
    position: static;
  }
  
  .contain {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    
  }
  
  .section-header {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .section-header h2 {
    color: black;
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .section-header p {
    color: navy;
  }
  
  .row  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .contact-info {
    width: 50%;
  }
  
  .contact-info-item {
    display: flex;
    margin-bottom: 30px;
  }
  
  .contact-info-icon {
    height: 70px;
    width: 70px;
    background-color: whitesmoke;
    text-align: center;
    border-radius: 50%;
  }
  
  .contact-info-icon i {
    font-size: 30px;
    line-height: 70px;
  }
  
  .contact-info-content {
    margin-left: 20px;
  }
  
  .contact-info-content h4 {
    color: #1da9c0;
    font-size: 1.4em;
    margin-bottom: 5px;
  }
  
  .contact-info-content p {
    color: navy;
    font-size: 1em;
  }

  .contact-form {
    background-color:#1da9c0;
    padding: 40px;
    width: 45%;
    padding-bottom: 20px;
    padding-top: 20px;
    
  }
  
  .contact-form h2 {
    font-weight: bold;
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    color: white;
  }

  iframe{
   
    /* filter: invert(100%); */
    padding: 20px;
    
  }
  
  
  @media (max-width: 991px) {
    .sec{
      padding-top: 50px;
      padding-bottom: 50px;
    }
    
    .row {
      flex-direction: column;
    }
    
    .contact-info {
      margin-bottom: 40px;
      width: 100%;
    }
    .contact-form {
        width: 100%;
      }
    
  }
   /*inquiry form*/

#inquiryForm {
  background-color: rgb(75, 161, 178);
  padding: 20px;
  max-width: 800px; /* Adjust width as needed */
  margin: 0 auto; /* Center the form */
  color: white;
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* Style for form labels */
#inquiryForm label {
  display: block;
  margin-bottom: 1px;
}

/* Style for form inputs */
#inquiryForm input[type="text"],
#inquiryForm input[type="email"],
#inquiryForm textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
}

/* Style for form submit button */
#inquiryForm button[type="submit"] {
  background-color: white;
  color: rgb(27, 27, 72);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 auto; 
}
/* Style for form submit button on hover */
#inquiryForm button[type="submit"]:hover {
  background-color: lightgray;
}


  /*slc*/

.dta {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border: 1px solid #c4c0c0;
    
}
.contentwrapper {
    width: 920px;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    background:white!important;
    background:white;
    border-radius: 10px;
    font-size: 12px;
    color: #000!important;
    text-align: center;
}
table {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}
table {
    width: 100%!important;
    border-collapse: collapse!important;
    table-layout: auto!important;
    vertical-align: top!important;
    margin-bottom: 15px!important;
    border: 1px solid #CCC!important;
}

