.login {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 2px;
  min-height: 50px;
  line-height: 50px;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.body {
  background: #ffd1b3;
  font-family: 'Arial', sans-serif !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

 footer {
        line-height: 50px;
        min-height: 50px;
        font-family: calibri;
    }

   @media screen and (max-width: 480px) {
        .w3-text-white {
            font-size: 16px;
        }
    }

@media all and (max-width: 600px) {
        .w3-col {
            padding: 10px;
        }
    }

    @media all and (min-width: 599px) and (max-width: 1000px) {
        .w3-col {
            padding: 10px;
        }
    }

    .container {
        background: #ffd1b3;
    }

    .row {
        margin: 55px 0;
    }
    marquee {
        min-height: 382px;
    }

    .new {
        width: 20px;
    }

    .ad {
        max-width: 100%;
    }

    .new_1 {
        width: 30px;
    }

    a {
        text-decoration: none;
    }
	
	
	 

 

  /* Style the tab */
  .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }

  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ffd1b3;
  }

  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ffd1b3;
  }

  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }

  

  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
  }
  .faculty {
    cursor: pointer;
  }
  
  
/* Style the tab */
.tab2 {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 50%;
  height: 300px;
}  
  
  
  /* Style the buttons inside the tab */
.tab2 button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab2 button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab2 button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent2 {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 50%;
  border-left: none;
  height: 300px;
}
 
  
  
.navbar {
  overflow: hidden;
  background-color: black;  
 # position: fixed;
 # bottom: 0;
  width: 100%;
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  z-index: 999;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.navbar a.active {
  background-color: #04AA6D;
  color: white;
}

.navbar .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    bottom:0;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}
header .header{
  z-index: 999;
}


 /* Header Section */
 .pre-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  background-color: #333;
  color: white;
  position: relative;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  background-color: #333;
  color: white;
  position: relative;
  z-index: 999;
}

/* Logo and Institute Name */
.header .logo-container {
  display: flex;
  align-items: center;
}

.header .logo-container img {

  height: 70px;
  margin-right: 15px;

}

.header .logo-container h1 {
  margin-top: 10;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.header .institute-name {
  font-size: 16px;
  color: #fff; 
  margin-top: 5px;
}


.header .buttons-container {
  display: flex;
  gap: 20px;
}

.header .buttons-container a {
  color: white;
  padding: 12px 20px;
  background-color:rgb(160, 117, 54);
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.header .buttons-container a:hover {
  background-color:rgba(158, 60, 4, 0.719);
}


.header .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-size: cover;
  background-position: center;
  filter: brightness(50%);
  z-index: -1;
}


@media screen and (max-width: 768px) {
  .header {
      flex-direction: column;
      text-align: center;
  }

  .header .logo-container {
      margin-bottom: 20px;
  }

  .header .buttons-container {
      flex-direction: column;
      gap: 10px;
  }

  .header .logo-container h1 {
      font-size: 22px;
  }

  .header .institute-name {
      font-size: 16px;
  }
}


@media screen and (max-width: 480px) {
  .header .logo-container img {
      width: 50px;
      height: 50px;
  }

  .header .logo-container h1 {
      font-size: 20px;
  }

  .header .buttons-container a {
      padding: 10px 15px;
  }
}