@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


/* Reset font styles to avoid Bootstrap font interference */
body, .container, .wrapper, .tab-content, .nav-tabs, .nav-link, .tab-pane, a {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    text-decoration: inherit !important;
}

a{
    text-decoration: none;
}
h4{
    font-size: 18px;
}


/* ____________NAVBAR________________ */
.sec-1{
    padding-top: 10px;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    padding: 0px 10px 0 0  !important; 
    height: 80px;


    background-color: rgba(255, 255, 255, 0.621);
}
.nav-main{
    display: flex;
    align-items: center;
    gap: 100px;
}
/*______ LOGO_____ */
.logo img{
    width: 200px;
   
}
.logo a{
    color: black;
}
/*____MENU ITEMS_________ */
nav ul{
    display: flex;
    align-items: center;
    gap: 30px;
}
nav ul li a{
color: #000000;
}
nav ul li a:hover{
    color: #295782;
    
}
.arrow{
    color: #000000;
}
#dropdown-item:hover .arrow{
    color: #295782;
}
.nav-span{
    width: 0px;
    height: 3px;
    background-color: #295782;
    border: none;
    border-radius: 5px;
}
nav ul li:hover .nav-span{
width: 100%;
transition: 0.4s;
}
#home{
    font-weight: bold;
}

/* _______NAV BUTTONS__________ */
.nav-buttons{
display: flex;
align-items: center;
gap: 15px;
}
.nav-buttons a{
padding: 10px 15px;
background-color: #295782;
border-radius: 10px;
color: rgb(255, 255, 255);
}
.nav-buttons a:hover{
    background-color: transparent;
    border: 1px solid #295782;
    color: #295782;
    transition: 0.5s;
}

/* DROPDOWN */



.dropdown{
    display: none;
    top: 62px;
    padding: 20px;
    right: 50px;
    flex-direction: column;
    position: absolute !important;
    background-color: rgb(255, 255, 255);
    z-index: 1;
    width: 280px;
    max-width: 280px;
    gap: 10px;
    border-radius: 10px;
}
#drop-down{
    justify-content: space-around;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}
#drop-down li{
    width: 100%;
}
#dropdown a{
    color: #295782;
}
#drop-down1{
    justify-content: space-around;
    gap: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}


#drop-down1 li:hover #drop-down1 li a{
    color: white !important;
}

#drop-down1 li{
    width: 100%;
}
#drop-down1 li a:hover{
    font-weight: bolder;
} 
#dropdown-item:hover .dropdown{
    display: flex;
}

/* HAMBURGER */
.hamburger{
    display: flex;
    align-items: center;
   gap: 25px;
    flex-direction: column;
position: absolute ;
top: 0;
left: 0;
background-color: #EAF4FE;

height: 100vh;
width: 100%;
display: none;
padding-top: 30px;
}
.hamburger a {
    color: #295782;
}
.nav-buttons a{
    color: white;
}
.open{
    display: none;
}


/* __________________________SECTION 1________________ */
.sec-1{
    
    background-image: url(https://i.pinimg.com/736x/24/30/f0/2430f0496b5753ce53e420bd9a3d0559.jpg);
    background-size: cover;
    background-position: top;
   

}
.sec-1 h1{
    color: white;
    text-align: center;
    padding-top: 100px;
    font-size: 55px;
    padding-bottom: 60vh;
}

@media screen and (min-width: 767px) and (max-width:1170px)  {
    .open{
        display: inline-block;

    }
    .hide-on-mob{
        display: none;
    }
    #hide-on-mob{
        display: none;
}
.sec-1{
    
    background-position: fixed;
}
.sec-1 h1{
    padding-bottom: 30vh;
    background-position: top;
    background-size: cover ;
}
}

@media screen and (max-width: 767px){
    .sec-1 h1{
        padding-bottom: 30vh;
        background-position: top;
        background-size: cover ;
    }
    .open{
        display: inline-block;

    }
    .hide-on-mob{
        display: none;
    }
    #hide-on-mob{
        display: none;
}  
}



/* _________________SECTION 2_______________- */
.sec-2{
    padding-top: 50px;
    padding-bottom: 50px;
   
}


.sec-2-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 100px;
}

.sec-2-div2 img{
    width: 100%;
    height: 100%;
    
}

.sec-2-div1{
    display: flex;
    flex-wrap: wrap;
    
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
}

.sec-2-div2{
  
    width: 450px;
    max-width: 450px;
    height: 479px;
}

.sec-2-div3{
  
    width: 550px;
    max-width: 550px;
}
.sec-2-div3 h1{
    font-size: 50px;
    text-align: left;
    padding-bottom: 20px;
    text-align: center;
}
.sec-2-div3 p{
    width: 520px;
    font-size: 19px;
    font-weight: 400;
   text-align: center;
    line-height: 28px;
}


.sec-2-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec-2-btn a{
    background-color: rgba(48, 71, 236, 1);
    padding: 10px 30px;
    color: white;
}

#sec-2-p6{
    width: 530px;
    padding-bottom: 0px;
}

.sec-2-ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    padding-top: 30px;
    
}
.sec-2-ul li{
    list-style: circle;
    font-size: 20px;
    font-weight: 400;
}


/* ______TAB SECTION_____ */

  
  .wrapper {
     
    
      width: 100%;
      border-radius: 5px;
   
  }
  
  .tab-content {
      padding: 10px 20px;
  }
  .nav-tabs a {
      border: 0!important;
      background-color: transparent!important;
  }
  .nav-tabs li.active {
      border-bottom: 2px solid #5453d2;
  }
  .nav-tabs li {
      border-bottom: 2px solid transparent;
  }
  .nav-tabs li a {
      width: 100%;
      text-align: center;
  }
  ul.nav.nav-tabs {
      display: flex;
      justify-content: space-around;
      align-items: center;
      overflow: hidden;
  }
  .nav-tabs li {
      flex-basis: 90px;
      min-width: 90px;
      display: flex;
      align-items: flex-start;
      margin: 0!important;
  }
  .tabs-wrapper{
      position: relative;
  }
  span.left, span.right {
      position: absolute;
    
      height: 30px;
      width: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color:#5453D2;
      border-radius: 50%;
      left: -50px;
      top: 8px;
      cursor: pointer;
      color: #ffffff;
  }
  span.right{
   right: -50px;
   left:unset;
  
  }
  .scroller-btn.inactive {
      opacity: 0.3;
      pointer-events: none;
  }
  .nav-link a{
    color: black;
  }


  @media screen and (max-width:983px){
    ul.nav.nav-tabs{
        justify-content: center !important;
    }
  }

@media screen and (max-width:660px) {
    ul.nav.nav-tabs{
        justify-content: start !important;
    }
  
.sec-2-div3 h1{
    width: 300px;
    font-size: 45px;
    margin: 0 auto;
}
.sec-2-div3 p{
    width: 60%;
    margin: 0 auto;
}
#sec-2-p{
    width: 60%;

}
.sec-2-div2{
    width: 400px;
    max-width: 400px;
}



}
@media screen  and (max-width:570px) and (min-width:330px) {
.sec-2 .container{
    padding: 0;
}
    .sec-2-div1{
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
    max-width: 100%; 
    align-items: center;
}
.sec-2-content{
    flex-wrap: nowrap;
    gap: 50px;
}
.sec-2-div3{
    width: 100%;
    max-width: 100%;
}
.sec-2-div2{
    max-width: 340px;
    max-height: 400px;
}
.sec-2-div3 h1{
    font-size: 35px;
}
.sec-2-div3 p{
    width: 310px;
}
#sec-2-p{
    width: 310px;
}
    
}


@media screen and (max-width:991px) {
    .nav-tabs{
        justify-content: center;
        gap: 60px !important;
    }
}
@media screen and (max-width:482px) {
    .nav-tabs{
        justify-content: start !important;
        flex-wrap: wrap !important;
    }
}




/* __________________SECTION 3_________________________ */
.sec-3{
    margin: 10px;
    border-radius: 7px;
}
.sec-3-text h1{
    text-align: center;
    padding-bottom: 40px;
    font-size: 55px;
}

.sec-3-div1{
    
    width: 420px;
    max-width:420px ;
    transition: 0.4s;
  
    box-shadow: 0px 1px 2px 3px rgba(0, 0, 0, 0.25);


padding: 20px;

}
.sec-3-div1 p{
    width: 330px;
    max-width: 330px;
}
.sec-3-img{
    text-align: center;
}
.sec-3-img img{
    width: 50%;
    border-radius: 50%;
}
.sec-3-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
    gap: 30px;
}
.sec-3-div1:hover {
    transform: translateY(0px); 
  box-shadow: 0px 0px 3px 6px rgba(0, 0, 0, 0.2) ;
    background-color: rgba(48, 71, 236, 1);
    z-index: 1;
    width: 420px; 
    max-width: 420px;
    
    color: white;
    
}
.sec-3-div1:hover .sec-3-link a{
    color: white;
}


.sec-3-img h2{
    padding-top: 10px;
    padding-bottom: 10px;
}
.sec-3-img h3{
    padding-bottom: 10px;
}
.sec-3-link{
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
.sec-3-link a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: black;

}
.sec-3-link a img{
    width: 28px;
}

@media screen and (min-width: 767px) and (max-width:1170px) {
    .sec-3-div1{
        width: 350px;
    }
}
@media screen  and (max-width:570px) and (min-width:330px){
    .sec-3-div1{
        width: 350px;
    }
    .sec-3-div1:hover{
        width: 330px;
    }
    .sec-3-text h1{
        font-size: 35px;
    }
    .sec-3-div1 p{
        width: 250px;
        text-align: center;
        margin: 0 auto;
    }
  
}
@media screen and (max-width:389px){
    .sec-3-div1{
     max-width:320px ;
    } 
 }


/* _________________________SECTION 4___________________ */
/* _____________________________SECTION 4________________________ */
.sec-4-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 230px;
}
.sec-4-text h1{
    text-align: center;
    font-size: 35px;
    width: 700px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.sec-4-div1{
    display: flex;
   flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.sec-4-div2{
width: 480px;
max-width: 480px;
}
.sec-4-div2 img{
    width: 100%;
}

#sec-4-div3{
    display: flex;
    flex-direction: column;
    position: absolute;
    transform: translateY(180px);
}

@media screen and (max-width:1009px) {
    #sec-4-div3{
position: static;
transform: translateY(0px);
align-items: center;

    }
    .sec-4-text h1{
        width: 250px;
    }
    .sec-4-content{
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 590px) {
   
    .sec-4-div2{
        width: 75%;
    }
}
@media screen and (max-width:400px) {
    .sec-4-div2{
        width: 300px;
    }
}

/* FACULTY SEC 2 */
.faculty-sec2{
    margin: 10px;
    border-radius: 7px;
    background-color: #f1f1f1;
}

/* _____________________SEC 5_________________________ */
.sec-5{
    background-color: rgba(43, 86, 124, 1);
    padding-top: 40px;
    color: white;
    padding-bottom: 40px;
}
.sec-5-text h1{
    font-size: 55px;
    text-align: center;
}
.sec-5-text p{
    font-size: 28px;
    text-align: center;
    width: 1000px;
    max-width: 1000px;
    line-height: 45px;
    margin: 0 auto;
    padding-top: 20px;
    
}

@media screen and (min-width: 600px) and (max-width:1170px){
    .sec-5-text p{
        width: 600px;
    }
}
@media screen  and (max-width:600px) and (min-width:330px){
    .sec-1-text h1{
        font-size: 35px;
    }
    .sec-5-text p{
        width: 340px;
        line-height: 35px;
        font-size: 18px;
    }
}




/*________________________- FACULTY SECTION___________________________ */
.faculty-sec{
    padding-top: 50px;
    padding-bottom: 50px;
   
}
.faculty-text h1{
    font-size: 35px;
    text-align: center;
    padding-bottom: 40px;
}
.faculty-div1{
    width: 350px;
    max-width: 350px;
   
    text-align: center;
}
.faculty-content-main{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}
.faculty-content{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.faculty-img{
    width: 120px;
    max-width: 120px;
    padding: 5px;
    border-radius: 50%;
    background-color: #295782;
    margin: 0 auto;
    
   
   
}

.faculty-img img{
    width: 100%;
    border-radius: 50%;
}
.faculty-div1 h4{
    padding-top: 10px;
    padding-bottom: 10px;
}
.faculty-div1 a{
    color: black;
}
.faculty-div1 a img{
    width: 25px;
}
@media screen and (max-width:359px) {
    .sec-1-div1{
        max-width: 320px;
    }
    .faculty-div1{
        max-width: 310px;
    }
   
}








/* ______________________FOOTER_______________________ */
/* ______________________FOOTER_______________________ */
footer{
    background-color: rgba(217, 217, 217, 1);
    padding-top: 30px;
    padding-left: 50px;
    padding-bottom: 30px;
   
}
.footer-content{
    display: flex;
    justify-content: space-between;
 
    
}
.footer-div1 p{
    width: 250px;
padding-bottom: 10px;
    max-width: 250px;
}
.footer-btn1{
    padding: 10px 10px;
    background-color: #295782;
    color: white;
    border-radius: 10px;
    border: none;
    transition: 0.4s;
}
.footer-btn1:hover{
    background-color: transparent;
    border: 1px solid #295782;
    color: #295782;
}

.footer-div2 ul{
    display: flex;
gap: 20px;
flex-direction: column;
padding: 0px !important;

}
.footer-div2 ul li:first-child{
    padding-bottom: 5px;
}
.footer-div2 a{
    color: black;
transition: 0.4s;
}
.footer-div2  a:hover{
    color: #295782;
}

.footer-div2 h4{
    font-size: 14px;
    width: 100px;
    max-width: 100px;
}
.footer-icons{
    display: flex;
 align-items: center;  
 
    gap: 5px;
}
.footer-div3 p{
    padding-top: 10px;
    width: 345px;
    margin: 0 !important;
   
}
.footer-icons-2{
    display: flex;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 994px) {
    #footer{
        padding-left: 50px !important;
    .footer-content{
        gap: 40px;
        
    }
}
    
}
@media screen and (max-width: 871px) {
    #footer{
        padding-left: 50px !important;
       
    }
    .footer-content{
        flex-wrap: wrap;
        gap: 10px;
        justify-content: initial !important;
        
        
        
        
    }
    @media screen and (max-width: 799px) { 
        #footer{
            padding-left: 30px !important;
        }
        .footer-content{
       
           
        }

        .footer-div3 h5{
            text-align: center;
            margin: 0 auto;
        }
    }
    

    .footer-div2{
        display: flex;
        align-items: center;
        justify-content: start;
        
    }
    #footer p, #footer h4, #footer h5{
        text-align: left;
    }
    #footer .logo{
        text-align: center;
    }
    .footer-btn1{
       display: flex;
       align-items:none;
       justify-content: center;
    }
}
@media screen and (max-width: 418px) {
    .footer-div3 p{
        width: 280px;
    }
}