/* Campus Facilities Section */
.campus-life {
  padding: 60px 0;
}

/* Heading */
.campus-life .lead {
  font-size: 17px;
  text-align: center;
}

.mini-blog {
  background-color: rgba(255, 255, 255, 0.171);
  padding: 2rem;
}

.carousel-item img {
  object-fit: cover;
}

/* Paragraph Styling */
.paragraph-content {
  font-size: 17px;
  color: #555;
  /* Dark Grey */
  margin-bottom: 20px;
}

/* For responsive design */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .paragraph-content {
    font-size: 1rem;
  }
}

.kiht-section {
  background-image: url(../images/campus/facilities/shadow.jpg);
}

.list-group-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.list-group-item strong {
  font-weight: 600;
}

.text-justify {
  font-size: 17px;
}

.strong-text {
  color: #3652A5;
  letter-spacing: 1px;
  font-size: 17px;
  cursor: pointer;
}

.list-group-item {
  border: none;
  /* Remove border */
}

.list-group-item .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fas {
  transition: transform 0.3s ease-in-out;
}

.collapse {
  font-size: 17px;
  padding-top: 5px;
}

.collapse.show+.fas {
  transform: rotate(180deg);
  /* Rotate the arrow when expanded */
}


