*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    user-select: none;
}
body {
  font-family: "Roboto", sans-serif;;
  font-size: 20px;
  
}

h1, h2, h3 {
  font-weight: 700; /* Bold for headings */
}

p {
  font-weight: 400; /* Normal for text */
}

.emphasis {
  font-style: italic; /* Use Roboto italic */
}

/* Sider Style ********************************************/
.mainSideBody{
  background-color: rgb(228, 228, 228);
  position: fixed;
  left: 0;
  width: 250px;
  height: 100%;
}
.logoSection{
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px;
}
.logo{
  width: 70px;
}
.logoName{
  width: 120px;
}
.discover, .library{
  padding: 20px;
  }
.discover a, .library a{
  margin-top: 15px;
  text-decoration: none;
  color: black;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
}


/* MainBody Style ***********************************************************/
.mainBody{
  width: auto;
  margin-left: 250px;
  height: auto;
  padding: 35px;
  padding-top: 10px;
}
/* Header***** */
.headerDiv{
  width: auto;
  height: 50px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px 0 10px;
}
.menuOpt{
  display: none;
  align-items: center;
}
/* search** */
.search-box {
      display: flex;
      align-items: center;
      border: 2px solid #696969;
      border-radius: 25px;
      padding: 5px 10px;
      flex: 1;
      height: 42px;
      margin-left: 100px;
      margin-right: 100px;
    }

    .search-box input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 16px;
      padding: 8px;
    }

    .search-box button {
      background: none;
      border: none;
      cursor: pointer;
    }

    .search-box img {
      
      height: 20px;
    }
    .profileLogo img{
      width: 45px;
    }

/* Scholars *************/
.ScholarList{
  display: flex;
  flex-wrap: wrap;
  
  justify-content: space-between;
  padding: 15px;
  margin-top: 10px;
}
.ScholarList div{
  width: 160px;
  transition: transform 0.3s ease-in-out; /* smooth animation */
  cursor: pointer;
}
.ScholarList img{
  width: 150px;
  height: 200px;
   object-fit: cover;
  border-radius: 10px;
  
}
.ScholarList div:hover {
  transform: scale(1.05); /* zoom in 20% */
}
.ScholarList div:active {
  transform: scale(1);
}
/* Mobile Responsiveeeeeeeeeeeeeeeeeeeeee */
@media (max-width: 800px) {
  .menuOpt{
    display: flex;
  }
  .search-box {
    margin: 5px 5px 0px 5px;
  }
  .ScholarList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0; /* remove extra padding */
    margin: 0 auto;
    box-sizing: border-box;
  }
  .ScholarList div {
    flex: 1 1 calc(50% - 20px); /* two columns */
    margin: 10px;
    width: auto;
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    padding: 10px;
    box-sizing: border-box; /* includes padding & border in width */
  }
  .mainSideBody{
    display: none;
    z-index: 999;
    height: 100vh;
    background-color: rgba(34, 33, 33, 0.096);
    backdrop-filter: blur(25px);
  }
  .mainBody{
  margin-left: 0px;
  height: auto;
  width: auto;
  padding: 0px;
  }
  
}

  

/* Footerrrrrrrrrrr */


.footerBody{
  padding: 50px;
  width: auto;
  height: auto;
  background-color: black;
  margin-left: 250px;
  
}
.ftTop{
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.ft{
  display: flex;
  flex-direction: column;
  align-items:flex-start;
}
.footerBody a{
  font-family: "SUSE Mono", sans-serif;
  margin: 10px;
  color: white;
  font-size: 15px;
}
.footerBody p{
  font-family: "SUSE Mono", sans-serif;
  color: white;
  font-size: 15px;
}
.fa-brands,.fa-solid{
  background-color: white;
  color: black;
  padding: 10px;
  font-size: 25px;
  border-radius: 50%;
}
.ftBotm {
  display: flex;
  flex-direction: column;   
  gap: 10px;
  align-items: center;      
  justify-content: center;  
  text-align: center;       
  padding: 15px ;
}

.contactIcons {
  display: flex;
  justify-content: center;
  gap: 15px;                
  margin-bottom: 10px;      
}

.contactIcons a {
  color: #000;             
  font-size: 20px;          
  text-decoration: none;
  transition: transform 0.3s;
}

.contactIcons a:hover {
  transform: scale(1.1);    
}

@media (max-width: 800px) {
  .footerBody{
    padding: 0;
    margin: 0;
    
  }
  .ftTop{
    padding: 0;
 justify-content: center;  
}
.ftBotm{
  padding: 0;
  padding-bottom: 40px;
}
.contactIcons{
  gap: 4px;
}
  
}