:root {
  --primary-color: #f1232e;
  --secondary-color: #00a74d;
  --accent-color: #fe5d37;
  --purple-color: #a12290;
  --text-dark-color: #363d49;
  --gradient-rainbow: linear-gradient(
    135deg,
    #f1232e,
    #fe5d37,
    #00a74d,
    #a12290
  );
  --gradient-primary: linear-gradient(135deg, #f1232e, #fe5d37);
  --gradient-secondary: linear-gradient(135deg, #00a74d, #f1232e);
  --shadow-colorful: 0 10px 30px -5px rgba(241, 35, 46, 0.3);
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-slide-in {
  animation: slideIn 0.8s ease-out;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-rainbow {
  background: var(--gradient-rainbow);
}

.shadow-colorful {
  box-shadow: var(--shadow-colorful);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-rainbow {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift:hover {
  transform: translateY(-8px);
}

/* Hero Section */
.hero-section {
  min-height: 85vh !important;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../../src/assets/img/carousel-1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  transition: opacity 1s ease-in-out;
}

/* Program Cards */
.program-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-colorful);
}

.program-card img {
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: -32px auto 16px;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
}

.program-card button {
  color: #363d49;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  background-color: #fafafa !important;
}

.program-card .list-unstyled {
  color: var(--text-dark-color);
}

.program-card .list-unstyled li {
  line-height: 26px !important;
}

.program-card .text-primary {
  color: var(--primary-color) !important;
}

.program-card:hover .program-icon {
  transform: scale(1.1);
}

/* Extra Hover Animation for Card */
.program-card:hover {
  transform: translateY(-10px) scale(1.03);
  /* lift + slight zoom */
  box-shadow: var(--shadow-colorful);
  transition: all 0.4s ease-in-out;
}

/* Image animation on hover (already exists, but smoother) */
.program-card:hover img {
  transform: scale(1.1) rotate(1deg);
  /* zoom + subtle tilt */
  transition: transform 0.4s ease-in-out;
}

/* "Learn More" Button turns red on Card hover */
.program-card:hover .btn-outline-primary {
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-colorful);
  background-color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

#activities .card-body {
  height: 190px !important;
}

/* Activity Cards */
.activity-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-colorful);
}

.activity-card img {
  height: 192px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover img {
  transform: scale(1.1);
}

/* Testimonial Section */
.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 1rem;
}

/* Gallery */
.gallery-item {
  /* border-radius: 1rem; */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-colorful);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 5px !important;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

/* Custom Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-colorful);
}

.btn-secondary {
  background: var(--gradient-secondary);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background: white !important;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

.delay-600 {
  animation-delay: 600ms;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: var(--secondary-color) !important;
}

.text-dark-color {
  color: var(--text-dark-color) !important;
}

.max-w-4xl {
  max-width: 56rem;
}

#gallery .btn-outline-primary {
  color: #363d49;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  background-color: #fafafa !important;
}

#gallery .btn-outline-primary:hover {
  background-color: var(--accent-color) !important;
  color: #e5e7eb !important;
}

footer .list-unstyled li {
  line-height: 30px !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 10px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 4px 13px;
  font-size: 28px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .hero-section {
    min-height: 108vh !important;
  }
}


/** GLOBAL CSS START **/
.rounded-circle {
  border: 1px solid #999;
}
/** GLOBAL CSS END **/ 

