.header-logo {
    filter: brightness(3) saturate(0);
    width:200px;
}

/* --- Fix input + append alignment --- */
.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group .form-control {
  flex: 1;
  border-radius: 0.5rem 0 0 0.5rem;
  height: 45px;
  line-height: 45px;
  font-size: 0.95rem;
}

.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-append .btn {
  border-radius: 0 0.5rem 0.5rem 0;
  height: 45px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #6a5eff, #7a73ff);
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 0 10px rgba(100, 90, 255, 0.25);
  transition: all 0.2s ease;
}

.input-group-append .btn:hover {
  box-shadow: 0 0 18px rgba(120, 110, 255, 0.5);
}

/* --- Compact captcha wrapper --- */
.captcha-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  gap: 0.5rem;
}

.captcha-wrapper img {
  height: 45px; /* Match input height */
  width: auto;
  border-radius: 0.25rem;
  object-fit: contain;
}

.captcha-wrapper input {
  height: 45px;
  width: 60px;
  border: none;
  border-bottom: 2px solid #6d72ff;
  background: transparent;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  outline: none;
}


.gallery-right-img-top-wrap,
.gallery-right-single-img-top-wrap,
.gallery-right-single-img-bottom-wrap,
.gallery-right-img-buttom-wrap {
  flex: 1; /* makes each section scale to fill equal vertical space */
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes the image fill without distortion */
  filter: blur(3px); /* keeps your blur */
  transform: scale(1.1); /* optional: gives the zoomed look */
  display: block;
}

.event-img {
  height:130px;
}

@media screen and (min-width:994px) {
    .hero-title {
        font-size:48px;
    }

    .hero-countdown-wrapper {
        justify-content:space-around;
    }

    .hero-countdown-item {
        transform: scale(1.5);
    }

    .hero-right-item {
        justify-content:space-around;
    }
}