*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html{
    scroll-behavior: smooth;
    font-family: montserrat;
    overflow-x: hidden;
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
    /* ********************************************************************* */
#about{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding:0 0 50px 0;
  /* background-color: purple; */
}
.about-texts{
  margin-top: 25vh;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 55vw;
  align-items: center;
  justify-content: center;
  padding: 30px;
  /* background-color: grey;   */
}

 
.about-texts h1{
  font-size: 35px;
  font-weight: 800;
  color: rgb(19,82,245);
  text-align: center;   
}

.about-texts p{
  text-align: center;
  padding-top: 10px;
  font-size: 18px;
  color: rgb(19,82,245);
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* Student-pro Section */
.student-pro {
    padding: 4rem 2rem;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: 10px;
    justify-content: space-between;
    background: linear-gradient(-45deg, rgb(19,82,245), white, rgb(19,82,245));
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite; 
}

.student-item{
    display: flex;
    width: 100%;
    height: 70vh;
    padding: 3rem;
    gap: 50px;
    justify-content: space-evenly;
    align-items: center;  
    background: linear-gradient(-5deg, rgb(245, 19, 19), white, rgb(245, 19, 19));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;

}


/* ****************************************************    */
.value{
  display: flex;
  flex-direction: column;
  width: 55%;
  height: 90%;
  gap: 1.7rem;
  color: rgb(19,82,245);
}
.value h1{
  font-size: 27px;
}
.value p{
  color: black;
  line-height: 1.8rem;
}
  .stack {
    position: relative;
    width: 30%;
    height: 80%;
    display: grid;
    border-radius: 20%;
    place-items: center;
    color: rgb(19,82,245);
    background-color: rgb(19,82,245);
  }

  /* Square image on top */
  .photo {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20%;
    z-index: 1;
  }
  .photo img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: top;
    display: block;
  }
/* * &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */ 
/* slide animation style  */
/* Sliding animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Initially hide all student items */
.student-item {
    opacity: 1;
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
 
  #believes{
    display: flex;
    flex-direction:column;
    width:100vw;
    height: 85vh; 
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, rgb(19,82,245), white, rgb(19,82,245));
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
  }

  .belief-container {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    height: 60vh;
    justify-content: space-evenly;
    align-items: center;
    overflow-y: hidden;
    overflow-x: hidden;

  }

  .belief-each {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 28vw;
    height: 55vh;
    padding: 25px;
    gap: 20px;
    box-shadow: 10px 10px rgb(19,82,245);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;

  }
  
  .belief-each.visible {
    animation: slideIn 1s ease forwards;
  }
  @keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
   
  .belief-each h1 {
    font-family: montserrat;
    font-weight: 800;
    font-size: 27px;
    text-align: center;
    color: rgb(19,82,245);
  }

  .belief-each i{
     font-size: 2.5rem;
    color: red;
    margin-bottom: 1.5rem;
  }
  
  


