/* css for campus main page  */
.campus-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}
.campus-box:hover {
  transform: translateY(-10px); 
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);  */
  background: rgba(0,0,0,0.2);

}

.campus-box img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  transition: all 0.4s ease;
}

/* Overlay effect */
/* .campus-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 10px;
} */

/* .campus-box:hover .campus-overlay {
  opacity: 1;
} */

/* View Button */
/* .campus-overlay a {
  background: #ffc107;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
} */

/* .campus-overlay a:hover {
  background: #fff;
  color: #000;
} */


/* css for campus sub  pages  */
.btn-cl {
    position: absolute;
    top: -15%;
    right: -13%;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.96);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;  
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cl:hover {
    background: #ffcc00;
    color: #fff;
}

/* Mobile Adjustment */
@media (max-width: 480px) {
    .btn-cl {
        top: -28%;
        right: 0%;
    }
}
.video-thumb {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;      
    border: 8px solid #fff;  
    border-radius: 15px;   
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.play-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    background: rgba(0,0,0,0.5); 
    padding: 10px 20px; 
    border-radius: 10px;
    top: 42%;
    left: 35%
}
@media (max-width: 769px) {
    .play-overlay {
        left: 30% !important;
    }
}

.play-overlay:hover {
    transform: scale(1.05);
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.custom-list li {
    position: relative;
    padding-left: 25px; 
    margin-bottom: 15px;
}

.custom-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff9900; 
}

