:root {
  --primary: #00eaff;
  --dark: #000;
  --white: #fff;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.ticket-btn,
.btn-primary-custom,
.btn-outline-custom {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* =========================
   HEADER
========================= */

.custom-navbar {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  padding: 16px 0;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease;
  z-index: 999;
}

.custom-navbar.scrolled {
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 231, 255, .10);
  padding: 8px 0;
}

.navbar-brand img {
  height: 56px;
}

.navbar-nav .nav-link {
  color: #d7d7d7;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px solid;
}

.ticket-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: .4s;
}

.ticket-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--primary);
}

/* =========================
   HERO
========================= */

.hero-section {
  min-height: 100vh;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Background Image */

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/hero-img.jpg') center center/cover no-repeat;
  z-index: -2;
}

/* Dark Overlay */

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .45),
      rgba(0, 0, 0, .65),
      rgba(0, 0, 0, .95));
  z-index: -1;
}

/* Rating Box */

.rating-box {
  background: rgb(0 0 0 / 45%);
  padding: 24px 32px;
  margin-bottom: 25px;
}

.rating-stars {
  color: var(--primary);
  font-size: 12px;
  line-height: 1;
}

.rating-text,
.rating-divider {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: .5px;
}

.rating-quote {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  max-width: 100%;
}

/* Heading */

.hero-title {
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  text-shadow:
    0 0 10px var(--primary),
    0 0 25px rgba(0, 234, 255, .5);
  animation: glowHero 2s infinite alternate;
}

@keyframes glowHero {
  from {
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
  }

  to {
    text-shadow:
      0 0 20px rgba(0, 217, 255, 0.8),
      0 0 40px rgba(0, 217, 255, 0.5);
  }
}

.hero-subtitle {
  color: #d8d8d8;
  font-size: 20px;
  margin: 15px 0 35px;
}

/* Buttons */

.btn-primary-custom {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .4s;
}

.btnWidth {
  max-width: 300px;
}

.btn-primary-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--primary);
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 13px 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .4s;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--dark);
}

/* Scroll Icon */

.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 28px;
  animation: bounce 2s infinite;
  text-decoration: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .4);
}

.scroll-down:hover {
  color: var(--white);
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 12px);
  }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 100px 0;
  background: var(--dark);
}

.about-section h2 {
  font-weight: 700;
  margin-bottom: 25px;
}

.about-section p {
  max-width: 100%;
  color: #bcbcbc;
  line-height: 1.8;
}

/* =========================
   OFFCANVAS
========================= */

.offcanvas {
  background: var(--dark);
}

.offcanvas .nav-link {
  color: var(--white);
  margin: 10px 0;
  text-transform: uppercase;
}


/* =========================
   Instagram Section
========================= */

.kinetic-section {
  background: var(--dark);
  overflow: hidden;
}

.section-title {
  color: var(--white);
  font-size: 38px;
  font-weight: 400;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  height: 460px;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card video {
  background: var(--dark);
}


.instagram-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
}

.media-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
}

.controls {
  margin-bottom: 56px;
  padding-right: 56px;
}

.nav-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}

.nav-btn:hover {
  color: #00f7ff;
}

.event-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  background: #00f7ff;
  border-radius: 4px;
  box-shadow:
    0 0 10px #00f7ff,
    0 0 20px #00f7ff;
  transition: .3s;
}

.event-btn:hover {
  transform: translateY(-3px);
}



/* =========================
   Upcoming Concerts Section
========================= */


.event-card {
  position: relative;
  overflow: hidden;
  height: 520px;
  cursor: pointer;
  transition: all .4s ease;
}

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

.event-image {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: auto;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.08);
}

/* Center Card Highlight */
.active-card {
  transform: scale(1.05);
  z-index: 5;
}

.active-card:hover {
  transform: scale(1.08);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .95) 10%,
      rgba(0, 0, 0, .6) 40%,
      transparent 100%);
  z-index: 9;

  padding: 30px;

  opacity: 0;
  transition: .4s ease;
}

.event-card:hover .event-overlay {
  opacity: 1;
}

.event-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 15px;
}

.event-tag i {
  margin-right: 8px;
  font-size: 12px;
  vertical-align: middle;
}

.event-overlay h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.event-overlay p {
  color: #d9d9d9;
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-overlay .btn {
  width: 100%;
  padding: 12px 25px;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: .4s;
  z-index: 2;
}

.event-card:hover::before {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 234, 255, .5);
}

.event-item {
    transition: all 0.6s ease;
}

.fade-in-card {
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   EXPERIENCE SECTION
=========================== */

.experience-section {
  background: var(--dark);
}

.experience-card {
  position: relative;
  height: 750px;
  overflow: hidden;
  cursor: pointer;
}

/* Background Image */

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.2s ease;
}

/* Dark Overlay */

.experience-card .overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .92) 15%,
      rgba(0, 0, 0, .55) 50%,
      rgba(0, 0, 0, .30) 100%);

  z-index: 1;
}

/* Content */

.experience-card .content {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 56px;
  z-index: 2;

  color: var(--white);

  transform: translateY(25px);
  transition: .6s ease;
}

.sub-title {
  display: block;
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.experience-card h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.experience-card p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  margin-bottom: 25px;
}

/* Button */

.custom-btn {

  padding: 12px 32px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: .4s ease;
}

.custom-btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* Hover Effects */

.experience-card:hover img {
  transform: scale(1.12);
}

.experience-card:hover .content {
  transform: translateY(0);
}

/* ===========================
  CTA SECTION
=========================== */

.cta-section {
  background: var(--dark);
  overflow: hidden;
}

/* Main Box */
.cta-box {
  position: relative;
  padding: 40px 50px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.50),
      rgba(0, 0, 0, 0.55)),
    url('../images/bg-cta.jpg') center center/cover no-repeat;

  box-shadow:
    0 0 8px rgba(0, 234, 255, .5),
    0 0 20px rgba(0, 234, 255, .2);

  animation: fadeUp 1s ease forwards;
  transition: all .4s ease;
}

/* Glow Hover */
.cta-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 15px rgba(0, 234, 255, .8),
    0 0 35px rgba(0, 234, 255, .4);
}

/* Top Light Glow */
.cta-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary);
}

/* Heading */
.cta-content h2 {
  color: var(--primary);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Text */
.cta-content p {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 0;
  max-width: 700px;
}

/* Button */
.cta-btn {
  padding: 16px 48px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--dark);
  background: var(--primary);
  position: relative;
  overflow: hidden;
  transition: .4s ease;
}

/* Button Shine */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .5),
      transparent);
  transition: .6s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 234, 255, .8);
}

/* Entrance Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================
   BLOG SECTION
========================== */

.latest-blog-section {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.section-heading .sub-title {
  color: #00f0ff;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* ==========================
   BLOG CARD
========================== */

.blog-card {
  position: relative;
  background: #050505;
  border: 1px solid var(--primary);
  overflow: hidden;
  transition: all .4s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 0 12px rgba(0, 234, 255, .5),
    0 0 30px rgba(0, 234, 255, .3);
}

/* Image */

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 1s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* Content */

.blog-content {
  padding: 25px;
}

.blog-tag {
  display: inline-block;
  background: #00f0ff;
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.blog-content h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  transition: .3s;
}

.blog-card:hover h3 {
  color: #00f0ff;
}

.blog-content p {
  line-height: 1.4;
  margin-bottom: 25px;
  font-size: 14px;
}

/* Author */

.author-box img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box h6 {
  color: var(--white);
  margin: 0;
  font-size: 14px;
}

.author-box span {
  color: var(--white);
  font-size: 12px;
}

/* ==========================
   VIEW ALL BUTTON
========================== */

.view-all-btn {
  width: 180px;
  height: 60px;
  background: #00f0ff;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: .4s;
  box-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
}

.view-all-btn:hover {
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow:
    0 0 20px rgba(0, 240, 255, .7),
    0 0 40px rgba(0, 240, 255, .4);
}

/* Shine Effect */

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .6),
      transparent);
  transition: .8s;
}

.view-all-btn:hover::before {
  left: 100%;
}

/* ==========================
   ANIMATION
========================== */

@keyframes glowPulse {

  0% {
    box-shadow:
      0 0 10px rgba(0, 234, 255, .5),
      0 0 20px rgba(0, 234, 255, .3);
  }

  50% {
    box-shadow:
      0 0 18px rgba(0, 234, 255, .9),
      0 0 45px rgba(0, 234, 255, .6),
      0 0 70px rgba(0, 234, 255, .3);
  }

  100% {
    box-shadow:
      0 0 10px rgba(0, 234, 255, .5),
      0 0 20px rgba(0, 234, 255, .3);
  }
}

/* ════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq {
  background: var(--dark);
  padding: 70px 0 60px;
}

.faq-label {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
}

.accordion-item {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 16px !important;
}

.accordion-button {
  background: #1a1a1a !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  box-shadow: none !important;
  padding: 24px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: rgba(0, 229, 255, .04) !important;
}

.accordion-button::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(150deg)
}

.accordion-body {
  color: var(--white) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  padding: 24px !important;
  background: #1a1a1a !important;
}

/* ════════════════════════════════════════
   Contact Form
═══════════════════════════════════════════ */


.contact-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 15px;

  /* Replace with your image */
  background: url("../images/contact-bg.jpg") center center/cover no-repeat;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, .55),
      rgba(0, 0, 0, .65));
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  background: rgba(20, 20, 20, .45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, .15);
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    0 0 40px rgba(0, 255, 255, .08);
}

.contact-subtitle {
  color: rgba(255, 255, 255, .9);
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.custom-label {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 1px;
}

.custom-input {
  min-height: 60px;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  border-radius: 0;
  transition: .4s;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.custom-input:focus {
  background: rgba(0, 0, 0, .55);
  color: var(--white);
  border-color: var(--primary);
  box-shadow:
    0 0 15px rgba(0, 234, 255, .35);
  outline: none;
}

.custom-textarea {
  min-height: 180px;
  resize: none;
  padding-top: 18px;
}

.counter {
  color: #ddd;
  margin-top: 10px;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--primary);
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: .4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(21, 227, 243, .4);
}

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
}



.footer-logo img {
  max-width: 170px;
  transition: .4s;
}

.footer-logo:hover img {
  transform: scale(1.08);
}

/* Contact Area */

.icon-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  min-width: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;

  color: var(--primary);

  transition: .4s ease;
}

.info-box:hover .icon-circle {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 234, 255, .4);
  border-color: var(--primary);
}

.info-box span {
  display: block;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.info-box h6 {
  color: #E5E2E3;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* Divider */

.footer-divider {
  margin: 45px 0;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

/* Social */

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  transition: .4s ease;
}

.social-icons a:hover {
  transform: translateY(-6px) rotate(10deg);

  box-shadow:
    0 0 25px rgba(0, 234, 255, .6);
}

/* Bottom */

.copyright {
  color: #c7c7c7;
  margin: 0;
  font-size: 13px;
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  letter-spacing: 1px;
  transition: .3s;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Entrance Animation */

.footer-top {
  animation: fadeUp .8s ease forwards;
}

.footer-bottom {
  animation: fadeUp 1.2s ease forwards;
}


/* Event-list Main Banner */

.Eventlist-banner {
  position: relative;
  min-height: 650px;
  background: url('../images/eventlist-banner.jpg') center center/cover no-repeat;
}

.overlay-eventSec {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .5),
      rgba(0, 0, 0, .95));
}

.eventList-content {
  position: absolute;
  z-index: 4;
  bottom: 80px;
}

.eventList-content h1 {
  font-size: 48px;
}

.eventList-text {
  margin: auto;
}


/* Event info */

.event-infobg {
  position: relative;
  min-height: 650px;
  background: url('../images/event-info-bg.jpg') center center/cover no-repeat;
  padding-bottom: 80px;
}

/* ===== EVENT CARD ===== */

.event-wrapper {
  max-width: 1020px;
  margin: auto;
  background: rgb(95 95 95 / 20%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* ===== POSTER ===== */

.poster-box {
  height: 100%;
}

.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT ===== */

.event-content {
  padding: 0 24px;
}

.event-taginfobadge {
  display: inline-block;
  background: #00f0ff45;
  border: 1px solid #00eaff8f;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
}

.event-title {
  font-size: 40px;
}

.event-description {
  line-height: 1.8;
}

/* Filter Button */

.filter-select-wrapper {
  position: relative;
  display: inline-block;
}

.filter-select-wrapper .form-select {
  padding: 8px 16px 8px 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--dark);
  color: var(--white);
}

.filter-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
}

/* Gallery Page */

.gallery-banner {
  position: relative;
  min-height: 650px;
  background: url('../images/bg3.jpg') center center/cover no-repeat;
  padding-bottom: 80px;
}

.masonry-grid {
  column-count: 4;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s ease;
}

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

/* Different Heights */
.gallery-item.small {
  height: 180px;
}

.gallery-item.medium {
  height: 280px;
}

.gallery-item.large {
  height: 380px;
}

.gallery-item.tall {
  height: 500px;
}

.gallery-item:nth-child(3n+1) {
  height: 180px;
}

.gallery-item:nth-child(3n+2) {
  height: 300px;
}

.gallery-item:nth-child(3n+3) {
  height: 450px;
}

.gallery-item:nth-child(3n+4) {
  height: 250px;
}

/* gallery modal */

#modalImage {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity .35s ease-in-out;
  opacity: 1;
}

/* Fade animation */
#modalImage.fade-out {
  opacity: 0;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99999;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  color: var(--white);
  z-index: 999;
  cursor: pointer;
}

.prev-btnGallery {
  left: 20px;
}

.next-btnGallery {
  right: 20px;
}

.gallery-nav:hover,
.gallery-close:hover {
  background: var(--dark);
}

.modal-content {
  background: transparent !important;
}

/* Careers Page */

.careers-banner {
  position: relative;
  min-height: 650px;
  background: url('../images/careers-bg.jpg') center center/cover no-repeat;
  padding-bottom: 80px;
}

.application-section{
    padding:80px 0;
}

/* ===== LABELS ===== */

.form-label{
    font-size:13px;
    color:var(--white);
    margin-bottom:10px;
    font-weight:500;
}

/* ===== INPUTS ===== */

.career-input{
    background:transparent;
    border:1px solid #00eaff57;
    border-radius:0;
    color:var(--white);
    min-height:48px;
    font-size:14px;
}

.career-input:focus{
    background:transparent;
    border-color:var(--primary);
    box-shadow:none;
    color:var(--white);
}

.career-input::placeholder{
    color:#777;
}

/* ===== SELECT ===== */

.form-select.career-input{
    background-color:transparent;
    color:var(--white);
}

.form-select:focus{
    box-shadow:none;
}

/* ===== TEXTAREA ===== */

textarea.career-input{
    resize:none;
    padding-top:15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
    -webkit-text-fill-color:var(--white) !important;
    transition:background-color 5000s ease-in-out 0s;
}

select.selectCareer {
    width: 100%;
    height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Custom Arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300d8ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 20px !important;
}

select.selectCareer option {
    background: var(--dark);
    color: var(--white);
}