/* Vision, Mission & Benefits Section Styling */


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #777;
}

.card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.icon i {
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.card-text, .list-unstyled li {
  font-size: 1rem;
  color: #555;
}

.list-unstyled li {
  margin-bottom: 10px;
}

.list-unstyled li i {
  margin-right: 10px;
}

/* CSS Styling */
#awards-gallery {
  background-color: #f9f9f9;
}
#awards-gallery .card {
  border: none;
  transition: transform 0.3s;
}
#awards-gallery .card:hover {
  transform: translateY(-10px);
}
#awards-gallery .card-img-top {
  height: 200px;
  object-fit: cover;
}

.newspaper{
    width: 50%; 
    margin-left: 25%;
}

@media (max-width: 768px) {
    .newspaper {
        width: 90%;
        margin-left: 5%;
    }
    .mobilenone{
      display: none;
    }
    .centered-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.centered-list li {
    margin: 5px 0; /* Add spacing between items if needed */
    color: black !important;
    background-color: rgb(202, 224, 245);

}
}

.de-flex-col {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}


 .animated-image {
    width: 60%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
    margin-bottom: 50px !important;
  }

  .animated-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  @media screen and (max-width: 768px) {
    .animated-image {
      max-width: 90%;
    }
  }