
/* HERO */
.cl-hero {
  color: #fff;
  text-align: center;
  height: 450px;
  background: url('../assets/images/Campus Life.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-hero .tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  backdrop-filter: blur(6px);
}

.cl-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cl-hero p {
  max-width: 650px;
  margin: auto;
  opacity: 0.9;
  font-size: 16px;
}

/* GRID SYSTEM */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* FEATURES */
.cl-features {
  padding: 40px 0;
  background: #f4f6fb;
}

.card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.card h3 {
  margin-bottom: 8px;
  color: #b71c1c;
}

.card p {
  color: #555;
  font-size: 14px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* GALLERY */
.gallery-sec {
  padding: 40px 0;
}

.gallery-head {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-head h2 {
  font-size: 30px;
  color: #1f1f1f;
}

.gallery-head p {
  color: #666;
  margin-top: 5px;
}

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

.tab {
  padding: 8px 18px;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.tab.active {
  background: #b71c1c;
  color: #fff;
}

/* GALLERY GRID */
.gallery-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid.active {
  display: grid;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.04);
}

/* ACTIVITIES */
.cl-activities {
  padding: 40px 0;
  background: #fafafa;
}

.title1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1f1f1f;
}

.act {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.act h3 {
  color: #b71c1c;
  margin-bottom: 8px;
  font-size: 20px;
}

.act p {
  color: #555;
}

.act:hover {
  transform: translateY(-8px);
}

/* QUOTE */
.cl-quote {
  padding: 40px 20px;
  background: linear-gradient(135deg, #b71c1c, #ff9800);
  color: #fff;
  text-align: center;
}

.cl-quote h2 {
  font-size: 26px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:992px) {

  .grid-4,
  .grid-3,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cl-hero h1 {
    font-size: 34px;
  }
}

@media(max-width:600px) {

  .grid-4,
  .grid-3,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
.cl-hero p {
    max-width: 650px;
    margin: auto;
    opacity: 0.9;
    font-size: 12px;
}
.act p {
    color: #555;
    font-size: 14px;
}
.cl-quote h2 {
    font-size: 15px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

.gallery-head h2 {
    font-size: 21px;
    color: #1f1f1f;
}
.gallery-head p {
    color: #666;
    margin-top: 5px;
    font-size: 13px !important;
}
  .cl-hero {
    padding: 50px 15px;
  }

  .cl-hero h1 {
    font-size: 19px;
  }
  .cl-hero {
  color: #fff;
  text-align: center;
  height: 250px;
  background: url('../assets/images/Campus Life.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
}