
/*--------------------------------------------------------------
# Four Divisioncard Box CSS - 1
--------------------------------------------------------------*/

#divisioncard:hover {
    cursor: pointer;
    
}
 .card-img-top {
    height: auto;
    object-fit: cover;
  
}
.card{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.02);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);   
}


/*--------------------------------------------------------------
# Category Box CSS - 2
--------------------------------------------------------------*/
.category {
    background: white; 
    width: 300px; 
    padding: 10px; 
    margin: 10px; 
    border-radius: 5px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border: 1px solid #ddd; 
    transition: color 0.3s ease; 
}

/* Change text color when hovered */
.category:hover {
    color: #059100;
    cursor: pointer;
}

/* Category Image Styling */
.category img {
    width: 50px;
    height: 50px;
    object-fit: contain; 
    transition: transform 0.3s ease-in-out; 
}

/* Rotate and enlarge image when hovered */
.category:hover img {
    transform: rotate(5deg) scale(1.1);
}


/*--------------------------------------------------------------
# FAQ Section CSS - 3
--------------------------------------------------------------*/
.faq-section {
    margin-top: 30px; 
}

.faq-question {
    font-weight: bold; 
}

.faq-answer {
    margin-bottom: 20px;
}

/* Card Header Styling */
.card-header {
    background-color: #0d6efd; 
    color: white; 
}

/*--------------------------------------------------------------
# Testimonials CSS - 4
--------------------------------------------------------------*/
.testimonial-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.testimonial-section h2 {
  margin-bottom: 2rem;
}

.testimonial-card {
  background: white;
  border-left: 4px solid #85b6fe;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #85b6fe;
  margin-bottom: 1rem;
}

.carousel-item {
  padding-top: 0;
  padding-bottom: 0;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0.75rem;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #ffffff;
  font-size: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-control-prev-icon::before {
  content: '◀';
}

.carousel-control-next-icon::before {
  content: '▶';
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #000;
  color: #1eff00;
}


/*--------------------------------------------------------------
#  Upcoming Event CSS - 5
--------------------------------------------------------------*/

.countdown-wrapper {
    color: white;
    padding: 20px;
    width: 90%;
    margin: auto;
  }
  .countdown {
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    justify-content: center;
  }
  .time-box {
    background: rgb(0, 9, 255);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgb(0, 4, 255);
    min-width: 80px;
    text-align: center;
  }
  .time-label {
    font-size: 12px;
    font-weight: 400;
  }
  @media (max-width: 400px) {
    .countdown {
      font-size: 18px;
    }
    .time-box {
      padding: 8px;
      min-width: 50px;
    }
    .countdown-title {
      font-size: 20px;
    }
  }
/*--------------------------------------------------------------
#  Next CSS - 5
--------------------------------------------------------------*/