*{ 
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(360_F_298890723_gxZy7ljKF1pvZcGTpxxUEKPmVXoF2eCZ.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;

}
nav img{
    width: 75px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.visit-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size:13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.visit-btn:hover{
    border: 1px solid #f37d10;
    background: #f37d10;
    transition: 1s;
}

nav .fa{
    display: none;
}


@media(max-width:700px){
    .text-box h1{
        font-size: 20px;
    }   
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

.classes{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.h1{
    font-size: 36px;
    font-weight: 600;


}

p{
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
}

.classes-col{
    flex-basis: 31%;
    background-color: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0,5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.classes-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 9px;
    margin-bottom: 27px;
    position: relative;
    overflow: hidden;
    margin-left: 20%;
    
}
.campus-col img{
    width: 75%;
    display: block;
   
    


}
.entrance{
    background:transparent;
    height: 100%;
    width: 75%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;


}

.entrance h3{
    width: 100%;
    font-weight: 500;
    color: #ffffff;
    font-size: 30px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.5s;

}
.entrance:hover h3 {

   bottom: 49%;
   opacity: 1;
   


}.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .col-md-4 {
  flex-basis: 33.33%;
  margin-bottom: 20px;
}

.footer h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #ccc;
}

.footer .fas, .footer .fab {
  margin-right: 10px;
}

.copyright {
  background-color: #444;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}


/*---------faculty----------*/
.sub-header{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(forfaculty.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.sub-header h1{
    margin-top: 100px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #4286f4;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .programs-grid,
  .achievements-grid,
  .faculty-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .programs-item,
  .achievements-item,
  .faculty-members-item {
    background-color: #fff;
    padding: 16px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .programs-item:hover,
  .achievements-item:hover,
  .faculty-members-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 15px rgba(118, 118, 118, 0.4);
  }
  
  .faculty-members-image {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  
  .faculty-members-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .faculty-members-title {
    margin-bottom: 16px;
  }
  
  .achievements-item-title {
    font-size: 56px;
    font-weight: 700;
    color: #4286f4;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .achievements-item-text {
    font-size: 18px;
    text-align: center;
  }
  
  

  
  @media (max-width: 768px) {
    .header-nav-link {
      padding: 8px 12px;
    }
  }


  /* Facilities */

  .facilities-col img {
    height: 200px;
  }
  .campus-col1{
    flex-basis: 32%;
    border-radius: 9px;
    margin-bottom: 27px;
    position: relative;
    overflow: hidden;
    margin-left: 0%;
    border-radius: 1cm;
    
}
.campus-col1 img{
    width: 100%;
    display: block;
  }
  .classes1{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.h1{
    font-size: 36px;
    font-weight: 600;


}

p{
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row1{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
}

.classes-col1{
    flex-basis: 31%;
    background-color: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0,5s;
}
.facilities-col:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}

@media(max-width: 700px){
  .row1{
      flex-direction: column;
  }
}
.Location{
  width: 80%;
  margin:  auto;
  padding: 80px 0;

}
.Location iframe{
  width: 100%;
  
}
.contact1{
  background: #ffffff;
  border-width: 50%;
  margin-left: 35%;
  
  
}