:root {
  --primary: #008753;
  --primary-light: #00A86B;
  --primary-dark: #006B42;
  --gold: #ffc710;
  --gold-light: #E8C257;
  --gold-dark: #B8941F;
  --dark: #0F1A1C;
  --dark-light: #1A2A2E;
  --light: #F8F9FA;
  --gray: #8A9CA1;
  --gray-light: #E1E8EB;
  --white: #FFFFFF;
  --accent: #00A896;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. The Loading Wheel Styling */
.loader_wheel {
    border: 4px solid #f3f3f3;       /* Light grey background */
    border-top: 4px solid #2e7d32;   /* Blue spinning boundary */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;                   /* Hidden by default */
    margin-top: 10px;
}

/* 2. The Spinning Animation Logic */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

/* Ensure the icon scales well */
.whatsapp-icon {
    margin-top: 0;
}

/* Responsive adjustment for mobile screens */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}




/* Hero Carousel System Layout */
.hero-gallerys {
  height: 80vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.hero-gallerys::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  opacity: 0.15;
  animation: bgZoom 15s ease-in-out infinite;
  transform-origin: center center;
}

@media (min-width: 768px) {
    .hero-gallerys h1 {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-gallerys p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

.hero-gallerys h1 {
  /* font-size: 4.5rem;
  margin-bottom: 1.5rem; */
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-gallerys p {
  /* font-size: 1.25rem;
  margin-bottom: 2rem; */
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

#registration-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 6rem 0;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 200%; /* Because we have 2 slides */
}

.carousel-slides {
  flex: 0 0 50%; /* Each slide occupies exactly 1 viewport width (100% / number of slides) */
  width: 50%;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.carousel-slides.active {
  opacity: 1;
}



/* Carousel Control Arrows */
.carousel-ctrl {
  display: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 135, 83, 0.4);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.carousel-ctrl:hover {
  background: var(--primary);
  border-color: var(--gold);
}

.carousel-ctrl.prev {
  left: 20px;
}

.carousel-ctrl.next {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-ctrl{
    display: none;
  }
}

/* Carousel Dots Indicator */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.indicator-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.form-button {
  padding: 10px 20px;
  font-size: 17px;
  color: var(--white);
  background-color: var(--primary-light);
  border: 1px solid var(--primary-light);
  border-radius: 3px;
  transition: .5s;
}

.form-button:hover {
  transform: translate(-2px, -5px);
  box-shadow: 5px 5px 5px #83a2876a;
}

.form-button:active {
   transform: translate(0, 0);
  box-shadow: none;
}