*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: none; */
    /* background-clip: padding-box; */
}

body{
    line-height: 2vh;
}
section{
    position: relative;
}

/* Navbar  */



/* firstsection slider */
.firstSection{
    width: 100%;
    position: relative;
    /* overflow: hidden; */
}
.firstSection .slider{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.mySlides{
    width: 100%;
    /* height: 85vh; */
    height: 100%;
    object-fit: cover;
    filter: brightness(50%)
}


.textOnSlider {
    position: absolute;
    top: 65%;
    left: 35%;
    line-height: 1.2;
    transform: translate(-50%, -50%);
    color: white;
}
  
.textOnSlider .title {
    font-size: 5vw;
}
  
.textOnSlider .quote {
    font-size: 3vw;
}

@media only screen and (max-width: 600px) {
    .textOnSlider {
        position: absolute;
        width: 100%;
        top: 40%;
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Center horizontally */
        color: white;
        text-align: center; /* Center text */
    }
      
    .textOnSlider .title {
        font-size: 7vw; /* Responsive font size */
    }
      
    .textOnSlider .quote {
        font-size: 5vw; /* Responsive font size */
    }
}



  /* Second Section vision mission */

  .nav-tabs{
    display: flex;
    justify-content: center !important;
    font-size: 18px;
    gap: 10px;
  }
  
  .nav>li{
    width: auto;
  }
  
.cycle-tab-container {
    margin: 30px auto;
    max-width: 1200px;
    min-height: 600px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 10px 2px #ddd;
}

.cycle-tab-container a {
    color: #173649;
    font-size: 20px;
    font-family: roboto;
    text-align: center;
}

.tab-pane {
    text-align: center;
    min-height: 500px;
    height: 100%;
    padding: 30px ;
    /* max-width: 500px; */
    width: 100%;
}
.tab-pane .imagesec{
    max-width: 500px;
    height: 100%;

    width: 100%;
}
.imagesec img{
    min-height: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tab-pane .p{
    text-align: justify;
    max-width: 600px;
    width: calc(100% - 500px);
    line-height: 1.5;
    font-size: 16px;
}

.p h2{
    color:  orange;
    margin: 20px 0;
    font-weight: bold;
}
.p h4{
    color: blue;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.fade {
    opacity: 0;
    transition: opacity 4s ease-in-out;
}

.fade.active {
    opacity: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}

.cycle-tab-item {
    width: 180px;
}

.cycle-tab-item:after {
    display: block;
    content: "";
    border-bottom: solid 3px orange;
    transform: scaleX(0);
    transition: transform 0ms ease-out;
}

.cycle-tab-item.active:after {
    transform: scaleX(1);
    transition: transform 5000ms ease-in;
}

.nav-link:focus,
.nav-link:hover,
.cycle-tab-item.active a {
    border-color: transparent !important;
    color: orange !important;
}
@media screen and (max-width: 700px){
    .tab-pane{
        max-width: 100%;
        padding: 15px ;
    }
    .fade.active{
        flex-direction: column;
    }
    .nav-tabs{
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
    }
    .tab-pane .p{
        width: 100%;
    }
    .tab-pane .imagesec{
        max-width: 500px;
        height: auto;
    
        width: 100%;
    }
    .imagesec img{
        /* min-height: 500px; */
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


/* Third Section Top Recruitors */

.thirdSection{
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
    /* background-color: rebeccapurple; */
    padding: 30px 0;
    line-height: 2;
    /* height: 100vh; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    overflow: hidden;
}
.topRecruiters{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.topRecruiters .sectionTitle{
    font-size: 4rem;
    color: #0c3a72;
    font-weight: bold;
}

.topRecruiters .description{
    text-align: center;
    width: 75%;
    color: #0043fb;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    font-weight: 500;
}

@keyframes leftslider {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.logos-left{
    overflow: hidden;
    white-space: nowrap;
    margin: 70px 3%;
    position: relative;
    /* border: 2px solid #84bbff; */
    /* border-bottom: 2px solid #84bbff; */
    padding: 10px 5%;
}
.logos-left:hover .slide-left{
    animation-play-state: paused;
}
.slide-left{
    
    animation: 20s leftslider linear infinite;
    display: inline-block;
}
.slide-left img{
    height: 70px;
    margin: 0 30px;
}

.logos-left::before,.logos-left::after{
    position: absolute;
    width: 5%;
    height: 70px;
    content: '';
    z-index: 2;

}

.logos-left::before{    
    left: 0;
    background:linear-gradient(to left, rgba(255, 255, 255, 0),white);    
}
.logos-left::after{ 
    right: 0;   
    background:linear-gradient(to right, rgba(255, 255, 255, 0),white);
}

/* right slide */
.logos-right{
    white-space: nowrap;
    overflow: hidden;
    margin: 70px 3%;
    /* border: 2px solid #84bbff; */
    position: relative;
    /* border-bottom: 2px solid #84bbff; */
    padding: 10px 10%;
}
.logos-right:hover .slide-right{
    animation-play-state: paused;
}

.slide-right{
    display: inline-block;
}
.slide-right img{
    height: 70px;
    margin: 0 30px;
}
@keyframes rightSlider {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }

.slide-right{
    animation: 20s rightSlider linear infinite;
    display: inline-block;
}
.logos-right::before,.logos-right::after{
    position: absolute;
    width: 5%;
    height: 70px;
    content: '';
    z-index: 2;

}

.logos-right::before{    
    left: 0;
    background:linear-gradient(to left, rgba(255, 255, 255, 0),white);    
}
.logos-right::after{ 
    right: 0;   
    background:linear-gradient(to right, rgba(255, 255, 255, 0),white);
}

@media only screen and (max-width: 600px) {
    .thirdSection{
        margin: 20px;
    }
    .topRecruiters .sectionTitle {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .description {
        font-size: 5vw;
    }

    .logos img {
        height: 10vw;
        margin: 0 10px;
    }
}






/* Fourth Section Top ALumnis */

.fourthSection{
    /* min-height: 100vh; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    /* background-color: #0c3a72;    */
    padding: 20px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    /* background-color: #fff9e4; */
    overflow: hidden;

}
.fourthSection .sectionTitle{
    font-size: 4rem;
    color: #0c3a72;
    font-weight: bold;
    text-align: center;
}


.alumni{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.alumni .alumniDescription{
    margin-top: 20px;
    text-align: center;
    width: 70%;
    color: #0043fb;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
}

.alumniSlider{
    width: 100%;
    margin-top: 20px;
}
.slider-container{
    max-width: 90%;
    width: 100%;
    padding: 40px;
    
    overflow: hidden;

}

.slide-card{
    overflow: hidden;
    border-radius: 0 25px 25px 25px;
}

.swiper-Navtn{
    color:#668fff;
    font-size: 2px;
    overflow: hidden;
    transition: color 0.3s ease;
}
.swiper-Navtn:hover{
    color: #265DF2;
}

.swiper-button-next{
    font-size: 16px;
    right: 0;
}
.swiper-button-prev{
    left: 0;
}

.swiper-button-prev:after{
    content: 'prev';
    font-size: 28px;
}
.swiper-button-next:after {
    content: 'next';
    font-size: 28px;
}
.swiper-pagination.bullet {
    background-color: #ffffff; /* White color */
    opacity: 1;
}

.swiper-pagination.bullet-active {
    background-color: #ffffff; /* White color */
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    .fourthSection .sectionTitle{
        font-size: 2.2rem;
        line-height: 1.2;
    }

}

/* Card */
.card{
    /* width: 320px; */
    height: 350px;
    padding: -1;
    border-radius: 0 20px 20px 20px !important;
    background-color: #FFF;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    opacity: 1;
    margin-bottom: 10px;

}

.image-content, .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    row-gap: 5px;
    opacity: 1;
  

}
.image-content{
    row-gap: 5px;
    position: relative;
    padding: 25px 0;

    
}


.imgoverlay{
    /* object-fit: cover; */
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070F4;
    border-radius: 0px 20px 0 20px;
    border: none;
    /* box-sizing: border-box; */
    /* z-index: 1; */
}

/* .imgoverlay::before,
.imgoverlay::after{
    position: absolute;
    right: 0;
    bottom: -40px;
    content: '';
    height: 40px;
    width: 40px;
    background-color: #4070F4;
    
    border: none;
    padding: 0;
   
}
.imgoverlay::after{
    border-radius: 0px 20px 0px 0px;
    background-color: #FFF;
} */

.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #FFF;
    padding: 2px;

}

.card-image .card-img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4070F4;
}

.card-content .card-name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px; 
}

.card-content .description {
    font-size: 14px;
    color: #707070;
    text-align: center;
    line-height: 1.2    ;
}

.cardFullDescription{
    display: none;
    line-height: 1.2;
    border-radius: 20px;
}
.card:hover{
    .cardFullDescription{
        display: block;
        text-align: justify;
    }
    .image-content{
        display: none;
        
    }
}
/* .viewmore{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viewmore:hover{
    background-color: #265DF2;
} */



/* Fifth Section About Us */

.fifthSection{
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    /* border: 5px solid black; */
    padding-top: 20px;
    padding: 5px;
    overflow: hidden;
}

.aboutUs{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    /* row-gap: 5rem; */
}
.aboutUs .sectionTitle {
    /* height: 100px; Adjust as needed */
    text-align: center;
    padding: 25px;
    color: #0c3a72;
    font-weight: bold;
    display: inline-block;
    max-width: 100%; 
    font-size: 4rem;
  }
.aboutUsContent{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;

}
.mvplogo{
    width: 30%;
    display: flex;
    justify-content: center;

}
.mvplogo img{
    width: 300px;
    height: auto;
    border-radius: 50%;
    /* margin: 0px auto; */
}

.aboutUs .content{
    width: 70%;
    display: flex;
    flex-direction: column;

    text-align: center;
    row-gap: 1.0rem;
    padding: 20px;
    
}
.content .orgName{
    /* text-align: center; */
    margin: 5 px auto;
    color: #0c3a72;
    font-size: 2.5rem;
    height: auto;
    line-height: 1.2;
}
.content .orgDescription{
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: justify;
}



@media only screen and (max-width: 1150px){
    .aboutUs{
        width: 100%;
    }
    .mvplogo{
        width: 100%;
    }
    .aboutUs .content{
        width: 100%;
    }
}
@media only screen and(max-width: 600px){
    .aboutUs .sectionTitle{
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

/* figure styling0 */

.numfigures{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
    margin-top: 20px;

}
.figcard{
    display: flex;
    flex-direction: column;
    width: 200px;
    justify-content: center;
    align-items: center;
    row-gap: 1.3rem;

}
.figcard span{
   display: flex;
   flex-wrap: nowrap;
   align-items: center;
}
.figcard span p{
    font-size: 1.6rem;
    margin-left: 15px;
}
.figcard i{
    font-size: 4rem;
    /* font-weight: 10; */
}















/* Add this to last of the css */
/* 
.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
.cardhidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-1000%);
    transition: all 1s;
}

.figcard:nth-child(1) {
    transition-delay: 800ms;
}
.figcard:nth-child(2) {
    transition-delay: 600ms;
}

.figcard:nth-child(3) {
    transition-delay: 400ms;
}

.figcard:nth-child(4) {
    transition-delay: 200ms;
} */


/* Svg */

.spacer{
    position:absolute;
    top: 0;
    height: 100%;
    aspect-ratio: 16/9;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    overflow: hidden;
}

.layer1{
    background-image: url('./layer1.svg');
}

.layer3{
    background-image: url('./layer3.svg');
}