.Service-category h4 {
   font-size: 24px;
   font-weight: bold;
   margin-bottom: 20px;
   text-align: center;
   color: #333;
 }

 
/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
      margin-bottom: 25px;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

  .activity-img {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin-top: 20px;
            border-radius: 10px;
        }
        .activity-img:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .no-bullet {
            list-style: none;
            padding-left: 0;
        }
@media (max-width: 992px) {
    .Service-category h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .activity-img {
        max-width: 100%;
        margin-top: 15px;
    }
    
    .service-item {
        padding: 15px;
                margin-bottom: 15px;

    }
}

@media (max-width: 480px) {
    .Service-category h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .activity-img {
        max-width: 100%;
        margin-top: 10px;
    }
    
    .service-item {
        padding: 10px;
                margin-bottom: 15px;

    }



}
   .btn-social {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: 10px;
  margin-right: 10px;
}

.btn-social:hover {
  opacity: 0.8;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    background: #120f2d !important;
    color: white !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: #1e1a4d !important;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .btn-social {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center !important;
  margin-bottom: 30px;
  color: #0d6efd;
}




.activity-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.activity-card img {
  width: 50%;
  height: 300px;
  object-fit: cover;

}
.activity-card-body {
  padding: 20px;
}
.activity-card-body h5 {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.activity-card-body p {
  font-size: 0.95rem;
  color: #555;
}

li {
  list-style-type: none;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  text-align: center;
    box-sizing: content-box !important;
}
.hero-row .col {
  flex: 1;
  min-width: 280px;
}

ul.bullets {
  padding-left: 0;
  margin-top: 10px;
}
ul.bullets li {
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .header-jumbo {
    padding: 50px 12px;
  }
  .activity-card img {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
  .activity-card-body {
    padding: 15px;
  }
  .activity-card img {
    height: 150px;
  }
}
.activity-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.activity-card.show {
  opacity: 1;
  transform: translateY(0);
}
