/* Custom CSS with unique class names */

.vtiu-hero-carousel {
  height: 80vh;
}

.vtiu-hero-carousel .carousel-item {
  height: 80vh;
  position: relative;
}

.vtiu-hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vtiu-hero-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.vtiu-hero-caption h1 {
  color: #fff;
  font-size: 3rem;
}

.vtiu-hero-caption p {
  color: #fff;
  font-size: 1.5rem;
}

.vtiu-section-padding {
  padding: 5rem 0;
}

.vtiu-course-card {
  transition: transform 0.3s ease;
}

.vtiu-course-card:hover {
  transform: translateY(-10px);
}

.vtiu-why-choose-accordion .accordion-button {
  font-weight: bold;
}

.vtiu-testimonial-carousel .carousel-item {
  text-align: center;
  padding: 2rem;
}

.vtiu-testimonial-carousel blockquote {
  font-style: italic;
  color: #555;
}

.vtiu-contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

/* New components styles */

.vtiu-stats-counter {
  font-size: 3rem;
  font-weight: bold;
  color: #007bff;
}

.vtiu-stats-item {
  text-align: center;
  padding: 2rem;
}

.vtiu-faculty-card {
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.vtiu-faculty-card:hover {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.vtiu-blog-carousel .carousel-item {
  padding: 1rem;
}

.vtiu-blog-card {
  height: 100%;
}

.vtiu-faq-accordion .accordion-item {
  margin-bottom: 1rem;
}

.vtiu-gallery-item {
  position: relative;
  overflow: hidden;
}

.vtiu-gallery-item img {
  transition: transform 0.5s ease;
}

.vtiu-gallery-item:hover img {
  transform: scale(1.1);
}

.vtiu-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtiu-gallery-item:hover .vtiu-gallery-overlay {
  opacity: 1;
}

/* Hidden feature: Easter egg */

.vtiu-easter-egg {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.vtiu-easter-egg.show {
  display: block;
}

/* Newsletter animation */

.vtiu-newsletter-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.vtiu-newsletter-btn {
  transition: background-color 0.3s ease;
}

.vtiu-newsletter-btn:hover {
  background-color: #0056b3;
}

