/************************************/
/***  Header Section css    ***/
/************************************/
:not(body).home {
  padding-top: 100px;
}

@media (max-width: 992px) {
  :not(body).home {
    padding-top: 90px;
  }
}

:not(body).home header.main-header, header.main-header .header-sticky.active {
  background: #231F20;
}

/* Hide logo by default when header is transparent */
body.home header.main-header .navbar-brand img {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show logo when sticky class is applied */
body.home header.main-header .header-sticky.active .navbar-brand img {
  opacity: 1;
  visibility: visible;
}

.main-menu ul li a{
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  padding: 8px 10px !important;
}

.main-menu ul li.active > a {
  color: #D33161;
  font-weight: 800;
}

.main-menu ul li.submenu ul li.active > a {
  color: var(--black-color);
  font-weight: bold;
}

/* Shift logo closer to Home link on desktop only */
@media (min-width: 992px) {
  .main-menu .navbar-nav {
      align-items: center;
  }
}

/* Volunteer nav link default style */
.navbar-nav .nav-item.vol .nav-link {
  position: relative;
  background: var(--primary-color);
  color: var(--black-color) !important;
  font-weight: bolder;
  padding: 8px 18px;
  border-radius: 4px;
  display: inline-block;
  z-index: 1;
  transition: all 0.3s ease;
}

.navbar-nav .nav-item.vol .nav-link span {
  display: inline-block;
}

.navbar-nav .nav-item.vol.active .nav-link {
  background-color: #3A675B;
  color: var(--primary-color) !important;
}

/* Hover effect for volunteer nav link: black background, var(--primary-color) text */
.navbar-nav .nav-item.vol .nav-link:hover {
  background: #231F20;
  color: #D33161 !important;
}

/* Volunteer nav link effects on mobile and desktop */
@media (max-width: 991px) {
  .navbar-nav .nav-item.vol {
      margin-top: 10px;
  }
}

/* Mobile nav */
.slicknav_nav .slicknav_row, .slicknav_nav li a {
  position: relative;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_menu {
  background: #231F20;
}

/* Btn for header */
.header-btn .btn-default {
  font-size: 13px;
}

/************************************/
/***  Page header/breadcrumb css ***/
/************************************/

.breadcrumb-item+.breadcrumb-item::before {
  content: "|" !important;
}

.page-header {
  position: relative;
  background: url('../images/about-2.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 150px 0 50px;
}

/************************************/
/***  Hero section css ***/
/************************************/

/* Hero under header */
.hero {
  overflow: hidden;
  padding: 150px 0 150px;
  /* min-height: 50vh; */
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2828289c;
  z-index: 1;
}

/* Hero content image */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-main-image {
  max-width: 200px;
  height: auto;
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  animation: zoomRotateFade 1.8s ease-out forwards;
  animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .hero {
    overflow: hidden;
    padding: 170px 0 120px;
    /* min-height: 50vh; */
  }
  
  .hero-main-image {
    max-width: 205px;
    height: auto;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    animation: zoomRotateFade 1.8s ease-out forwards;
    animation-delay: 0.5s;
}
}

@keyframes zoomRotateFade {
  0% {
      opacity: 0;
      transform: scale(0.8) rotate(-5deg);
  }
  50% {
      opacity: 1;
      transform: scale(1.05) rotate(2deg);
  }
  100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
  }
}

/* Motto Section Styles */
.motto-section {
  background-color: #100F0F;
  padding: 30px 15px;
}

.motto-text {
  font-family: var(--accent-font);
  font-size: 2.1rem;
  color: #FAF5E3;
  margin: 0;
  line-height: 1.4;
}

/* Motto text for mobile screen */
@media (max-width: 768px) {
  .motto-text {
      font-size: 1.2rem;
  }

  .welcome-to-text {
    font-size: 3rem;
  }
}

/* Welcome to section */
.welcome-to-section {
  background-color: var(--accent-tertiary-color);
  padding: 15px 15px;
}

.welcome-to-text {
  font-family: var(--accent-font);
  font-size: 3.8rem;
  color: #FAF5E3;
  margin: 0;
}

.media-title {
  font-size: 3.7em;
  font-family: var(--accent-font);
  color: var(--primary-color);
}

.media-social a {
  color: #FAF5E3;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.media-social a:hover {
  color: var(--black-color);
}

/* Welcome to text for mobile screen */
@media (max-width: 768px) {
  .welcome-to-text {
    font-size: 2.5rem;
  }

  .media-title {
    font-size: 2.2em;
  }

  .media-social a {
    font-size: 1.6rem;
  }
}


/* Ensure clean clipping for line reveals */
.js-reveal-title {
  /* optional: improves rendering on some GPUs */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.js-reveal-title .word {
  /* display: inline-block; */
  overflow: hidden; /* gives each word its own mask */
  vertical-align: bottom;
}

.js-reveal-title .char {
  display: inline-block;
  will-change: transform, opacity;
}

/************************************/
/***  About Section css ***/
/************************************/
.about-us {
  position: relative;
  background: url('../images/about/fan-6.jpg') center/cover no-repeat;
  color: var(--primary-color);
  overflow: hidden;
}

.about-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #231F20;
  opacity: 0.85;
  z-index: 0;
}

.stars-wrapper {
    position: relative;
}

.stars-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
}


.about-content-wrapper {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.about-content-wrapper .section-title-content-btn h3 {
  font-size: 2.7em;
  font-family: var(--accent-font);
  color: #FAF5E3;
  line-height: 3rem;
}

.about-content-wrapper .section-title-content-btn h2 {
  font-size: 1.5em;
  font-family: var(--defaultmedium-font);
  color: var(--accent-color);
  line-height: 2.1rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-content-wrapper .section-title-content-btn h3 {
    font-size: 2.2em;
  }

  .about-content-wrapper .section-title-content-btn h2 {
    font-size: 1.5em;
    line-height: 1.7rem;
  }
}

.zigzag {
  margin: 0;
  max-width: 90px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--defaultregular-font);
  font-size: 16px;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 2px dotted var(--primary-color);
  padding-bottom: 3px;
  position: relative;
}

@media (max-width: 768px) {
  .read-more-btn {
    font-size: 14px; 
  }
}

.arrow-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.arrow-text {
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.arrow-circle {
  position: absolute;
  right: -6px;
  top: 1px;
  width: 14px;
  height: 14px;
  background-color: var(--accent-tertiary-color);
  border-radius: 50%;
  z-index: 1;
}


.read-more-btn:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.read-more-btn:hover .arrow-circle {
  transform: translateX(3px);
  background-color: var(--accent-tertiary-color);
  transition: all 0.3s ease;
}

.read-more-btn:hover .arrow-text {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}


/* Red stripe and black with marquee */
.red-stripe {
  background: var(--accent-tertiary-color);
  color: var(--primary-color);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  z-index: 3;
}

.black-stripe {
  background: #231F20;
  color: var(--primary-color);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  z-index: 3;
  border-bottom: 2px solid var(--accent-tertiary-color);
}

.red-stripe .marquee, .black-stripe .marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.red-stripe-bottom .marquee, .black-stripe-bottom .marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 50s linear infinite;
  -webkit-animation: marquee 50s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  margin: 0 15px;
  font-weight: 400;
  font-size: 1rem;
  font-family: var(--accent-font);
}

.marquee-plus {
  font-family: var(--header-font) !important;
}

/* Animation keyframes */
@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title-content-btn h2 {
      font-size: 1.8rem;
  }
  .marquee span {
      font-size: 0.85rem;
      margin: 0 20px;
  }
}

/* Welcome  text */
.welcome-text {
  font-family: var(--accent-font);
  text-transform: uppercase;
  font-size: 4em;
  font-weight: 500;
  color: #FAF5E3;
}

.welcome-heading img {
  width: 200px;
  height: auto;
  transform: scale(0.8) rotate(-5deg);
  animation: zoomRotateFade 10s ease-in-out forwards;
  animation-delay: 10s;
  -webkit-animation: zoomRotateFade 10s ease-in-out forwards;
}

.welcome-logo img {
  min-width: 160px;
}

.welcome-logo span {
  font-size: 2.8rem;
  font-family: var(--accent-font);
  font-weight: 500;
  line-height: 0.9;
  color: #FAF5E3;
}

.decade-text {
  font-family: var(--header-font);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 10px 0;
  color: var(--accent-color);
  text-shadow: 3px 5px 3px var(--accent-tertiary-color);
}
.event-desc {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--header-font);
  max-width: 800px;
  text-transform: uppercase;
  margin: 0 auto 20px;
}

/* Zigzag Icons */
.zigzag-icon {
  width: 70px;
  vertical-align: middle;
}
.welcome-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.b-ticket {
  background-color: #06B049;
  border: transparent;
  font-family: var(--defaultmedium-font);
  color: var(--primary-color);
  font-size: 25px;
  padding: 3px 35px;
  border-radius: 2px;
  transform: scale(0.8) rotate(-5deg);
  animation: zoomRotateFade 1.8s ease-out forwards;
  animation-delay: 0.5s;
}

.b-ticket:hover {
  background-color: var(--accent-tertiary-color);
  border: transparent;
  font-family: var(--defaultmedium-font);
  color: var(--primary-color);
}


/* About CTA button */
.brutalist-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  /* width: 150px; */
  height: 30px;
  background-color: var(--accent-secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  border: 3px solid transparent;
  outline: 3px solid transparent;
  box-shadow: 6px 6px 0 var(--accent-tertiary-color);
  transition: all 0.1s ease-out;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.brutalist-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.8), transparent );
  z-index: 1;
  transition: none;
  opacity: 0;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.brutalist-button:hover::before {
  opacity: 1;
  animation: slide 2s infinite;
}

.brutalist-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--accent-secondary-color);
  background-color: var(--accent-tertiary-color);
  color: var(--primary-color);
  border: 3px solid transparent;
  outline: 3px solid transparent;
}

.brutalist-button:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0 var(--accent-tertiary-color);
  background-color: var(--primary-color);
  color: var(--black-color);
  border-color: var(--black-color);
}

.button-text {
  display: flex;
  font-family: var(--defaultbold-font);
  flex-direction: column;
  line-height: 1.2;
  transition: transform 0.2s ease-out;
  position: relative;
  z-index: 1;
}

.brutalist-button:hover .button-text {
  transform: skew(-5deg);
}

.brutalist-button:active .button-text {
  transform: skew(5deg);
}

.button-text span {
  text-transform: uppercase;
  font-size: 16px;
}

@media (max-width: 768px) {
  .welcome-text {
    font-family: var(--accent-font);
    text-transform: uppercase;
    font-size: 3.6em;
  }

  .welcome-heading img {
    width: 150px;
  }

  .welcome-logo img {
    min-width: 90px;
  }

  .welcome-logo span {
    font-size: 2.5rem;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 0.9;
  }

  .b-ticket {
    background-color: #06B049;
    border: transparent;
    font-family: var(--defaultmedium-font);
    color: var(--primary-color);
    font-size: 16px;
    padding: 4px 30px;
    border-radius: 2px;
  }

  .decade-text {
    font-size: 1.1rem !important;
  }

  .event-desc {
    font-size: 0.7rem !important;
  }

  .button-text span {
    font-size: 11px;
  }

  .brutalist-button {
    padding: 15px 15px;
  }
}

@media (max-width: 578px) {
  .home-root span {
    font-size: 35px;
  }
}


.festival-bg-wrapper {
  background: url('../images/hand.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 20%
}

.lineup-section,
.countdown-section,
.previous-festival-section {
  background: transparent;
}


/************************************/
/***  Line Up Section css ***/
/************************************/
.lineup-section {
  color: var(--primary-color);
}

.section-header .section-title {
  font-family: var(--accent-font);
  font-size: 55px;
  color: #FAF5E3;
  font-weight: normal;
  padding-top: 0px;
}

@media (max-width: 768px) {
  .section-header .section-title {
    font-family: var(--accent-font);
    font-size: 40px;
  }
}

.artist-card {
  background: var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.artist-img-wrapper {
  width: 100%;
  height: 300px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0,0,0,0.1);
  border-top: 4px solid rgba(0,0,0,0.64);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
} */

.artist-meta {
  padding-top: 0.6rem;
}

.meta-heading .zigzag-icon {
  width: 23px;
}

.artist-meta .meta-heading .artist-perform {
  font-family: var(--defaultregular-font);
  text-transform: uppercase;
  font-size: 17px;
  color: var(--primary-color)
}

.artist-name {
  font-size: 2.8rem;
  font-family: var(--accent-font);
  color: #FAF5E3;
  transition: color 0.3s ease;
  font-weight: normal;
}

/* Hover effect from artist card */
.artist-card:hover ~ .artist-meta .artist-name {
  color: #C93131;
  cursor: pointer;
}

/* Hover effect from artist meta */
.artist-meta:hover .artist-name {
  color: #C93131;
  cursor: pointer;
}

@media (max-width: 768px) {
  .artist-meta .meta-heading .artist-perform {
    font-family: var(--defaultregular-font);
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary-color)
  }

  .artist-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 578px) {
  .artist-meta .meta-heading .artist-perform {
    font-size: 12px;
  }
}
/************************************/
/***  Countdown Section css ***/
/************************************/
.countdown-section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
  color: var(--primary-color);
  font-family: 'Quicksand', sans-serif;
}

.countdown-section .container {
  position: relative;
  z-index: 2;
}

.countdown-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.black-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.info-heading {
  text-transform: uppercase;
  font-family: var(--accent-font);
  color: var(--accent-tertiary-color);
}

.parent {
  width: 100%;
  perspective: 1000px;
}

.countdown-card {
  height: auto;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  transform-style: flat;
  padding: 50px 20px;
  background-color: #FAF5E3;
  box-shadow: rgba(5, 71, 17, 0) 40px 50px 25px -40px,              rgba(5, 71, 17, 0.2) 0px 25px 25px -5px;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.countdown-card .glass {
  position: absolute;
  inset: 8px;
  border-radius: 35px;
  background: #FAF5E3;
  transform: translate3d(0px, 0px, 25px);
  border-left: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

/* Countdown heading/subtitle inside card */
.countdown-heading {
  font-family: var(--accent-font);
  font-size: 5.5rem;
  color: var(--black-color);
  transform: translate3d(0, 0, 26px);
}

.countdown-subtitle {
  font-family: var(--defaultregular-font);
  font-size: 35px;
  color: #333353;
  transform: translate3d(0, 0, 26px);
  text-transform: uppercase;
}

/* Timer box styles */
.countdown-wrapper {
  transform: translate3d(0, 0, 26px);
}

.countdown-box {
  background-image: url('../images/countdown-num.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 130px;  
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.count-num {
  font-size: 2.3rem;
  font-weight: normal;
  color: var(--primary-color);
  display: block;
  font-family: var(--accent-font);
  margin-bottom: 12px;
  margin-top: 10px;
}

.count-label {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--defaultregular-font);
  text-transform: uppercase;
  color: var(--primary-color)
}

/* Hover effect for 3D rotation */
.parent:hover .countdown-card {
  transform: rotate3d(1, 1, 0, 25deg);
  box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px,
              rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

@media (max-width: 768px) {
  .countdown-section {
    padding-bottom: 30px;
  }
  
  .countdown-box {
    min-width: 65px;
    padding: 10px;
    width: 100px;  
    height: 100px;
  }

  .countdown-heading {
    font-family: var(--accent-font);
    font-size: 3rem;
    color: var(--black-color);
    transform: translate3d(0, 0, 26px);
  }

  .countdown-subtitle {
    font-family: var(--defaultregular-font);
    font-size: 25px;
  }
  .count-num {
    font-size: 1.7rem;
  }

  .count-label {
    font-size: 0.9rem;
  }
}

/************************************/
/***  Previous Year Section css ***/
/************************************/
.previous-festival-section {
  color: var(--primary-color);
}

.festival-cards {
  position: relative;
  min-height: 300px; /* increased to fit taller portrait style */
  margin-top: 90px;
  margin-bottom: 90px;
}

.festival-card {
  position: absolute;
  top: 0;
  width: 800px;
  height: auto;
  background-color: transparent;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  overflow: hidden;
  transition:
    left 0.9s cubic-bezier(0.22,0.61,0.36,1),
    transform 0.9s cubic-bezier(0.22,0.61,0.36,1),
    opacity 0.9s ease;
  will-change: left, transform, opacity;
}

.festival-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* Active center card */
.active-card {
  z-index: 3;
  transform: translateX(-50%) scale(1.3);
  left: 50%;
  width: 820px;
  height: auto;
}

/* Left card */
.left-card {
  left: calc(50% - 40px);
  transform: translateX(-100%) scale(1.2);
  z-index: 2;
}

/* Right card */
.right-card {
  left: calc(50% + 40px);
  transform: translateX(0) scale(1.2);
  z-index: 2;
}


/* Tablet adjustments */
@media (max-width: 992px) {
  .festival-cards {
    position: relative;
    min-height: 200px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .festival-card {
    width: 100%;
    height: auto;
  }
  .active-card {
    width: 100%;
    height: auto;
    transform: translateX(-50%) scale(1);
  }

  .festival-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
  }

  /* Left card */
  .left-card {
    left: calc(50% - 40px);
    transform: translateX(-100%) scale(0.8);
    z-index: 2;
}
  /* Right card */
  .right-card {
    left: calc(50% + 10px);
    transform: translateX(0) scale(0.8);
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .previous-festival-section {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 578px) {
  .festival-cards {
    position: relative;
    height: 100px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

/* Arrow buttons */
.festival-controls {
  margin-top: 13rem;
}

.festival-control-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.festival-control-btn .arrow-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.festival-control-btn .arrow-text {
  font-size: 1.8rem;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.festival-control-btn .arrow-circle {
  width: 32px;
  height: 32px;
  background-color: var(--accent-tertiary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.festival-control-btn.prev-btn .arrow-circle {
  right: 8px;
}
.festival-control-btn.next-btn .arrow-circle {
  right: -13px;
}

.festival-control-btn:hover .arrow-text {
  transform: translateX(4px);
  transition: 0.3s ease;
}

/* everything else */
.inactive-card {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .festival-controls {
    margin-top: 2rem;
  }
}

/************************************/
/***  The Experience section css ***/
/************************************/
.experience-section {
  background-image: url('../images/about/countdown.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--primary-color);
}

.experience-card {
  height: 80vh;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #FAF5E3;
  cursor: pointer;
}

.experience-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: #FAF5E3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.experience-title {
  font-weight: normal;
  font-size: 2.5rem;
  color: #121010;
  text-transform: uppercase;
  font-family: var(--accent-font);
}

.experience-link {
  border-radius: 50%;
  width: 36px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .experience-card {
    height: 60vh;
  }
  
  .experience-title {
    font-size: 2.5rem;
    line-height: 1;
  }
}


/************************************/
/***  About BHIM Festival Page css ***/
/************************************/
.about-bg-wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 40% 65%;
  width: 100%;
  padding: 5px 0 0 0;
  min-height: 60vh;
}

.about-bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #353333ed;
  opacity: 0.6;
  z-index: 1;
}

.about-bg-wrapper > * {
  position: relative;
  z-index: 2; /* ensures your content stays above overlay */
}

/* Make individual sections transparent */
.about-intro-section,
.our-journey,
.experience{
    background: transparent !important;
}

.about-intro-section .container,
.our-journey .container,
.experience .container {
    background: rgba(98, 94, 94, 0.04); /* optional overlay for contrast */
    border-radius: 12px;
    padding: 30px;
}

.about-intro-section {
  margin: 30px auto;
}

.about-intro-section .container {
  padding: 0 40px;
}

.about-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  margin: 0;
  min-height: 450px;
}

/* remove bootstrap column padding to kill the white gap */
.about-card > [class*="col-"] {
  padding: 0;
  margin: 0;
}

.about-title {
  font-size: 5.5rem;
  font-family: var(--accent-font);
  z-index: 2;
  text-align: center;
  line-height: 6rem;
  padding: 0px 60px;
  color: #FAF5E3;
}

.about-red {
  background-color: var(--accent-tertiary-color);
  position: relative;
}

/* Zigzag decorations */
.about-card .zigzag {
  position: absolute;
  width: 80px;
  opacity: 0.9;
}
.about-card .zigzag-top {
  top: 15PX;
  left: 20px;
}
.zigzag-bottom {
  bottom: 0;
  right: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-intro-section { 
      margin: 40px auto;
    }
  .about-intro-section .container {
    padding: 0 20px;
  }

  .about-card {
    height: auto;
  }
}

@media (max-width: 767px) {
  .about-intro-section {
    margin: 30px auto;
  }
  .about-intro-section .container { 
    padding: 0 15px; 
  }
  .about-card {
    height: auto;
  }
  .about-title { 
    font-size: 2.5rem; 
    line-height: 3rem;
  }
}

.our-journey {
    background-color: transparent;
    position: relative;
}

.our-journey .container {
  padding: 0px 60px;
}

.journey-title {
    font-size: 3.6rem;
    font-family: var(--accent-font);
    line-height: 1.1;
    position: relative;
    z-index: 2;
    color: #FAF5E3;
}

.journey-title .highlight {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.our-journey .zigzag-small {
    width: 50px;
    position: absolute;
    top: 0;
    left: -45px;
    z-index: 1;
}

.our-journey .zigzag-big {
  width: 180px;
  opacity: 1;
  z-index: 1;
  transform: translate(-200%,-25%) !important;
  -webkit-transform: translate(-200%,-25%) !important;
  -moz-transform: translate(-200%,-25%) !important;
  -ms-transform: translate(-200%,-25%) !important;
  -o-transform: translate(-200%,-25%) !important;
}

.journey-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.journey-divider {
    border: none;
    border-top: 1px solid var(--primary-color);
    width: 100%;
    max-width: 90%;
    margin: 3rem auto 2rem auto;
    opacity: 1;
}


.journey-text p {
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.zigzag-text {
  position: absolute;
  right: 0;
  top: 150px;
  width: 200px;
  opacity: 1;
  z-index: 1;
}


/* Tablet adjustments */
@media (max-width: 991.98px) {
    .our-journey .container {
    padding: 0px 20px;
    }

    .journey-title {
      font-size: 2.5rem;
      /* text-align: center; */
    }
    .our-journey .zigzag-small {
        display: none;
    }

    /* .journey-text {
        text-align: center;
    } */

    .journey-text p {
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
    .journey-title {
        font-size: 2rem;
    }
    .our-journey .zigzag-big {
        width: 180px;
    }
}

/* Experience Section Styling */
.experience .section-title {
    font-size: 4rem;
    line-height: 1;
}

.experience .lead {
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--accent-color);
}

/* Make section header responsive */
@media (max-width: 991.98px) {
    .experience .container {
      padding: 0px 20px;
    }

    .experience .section-header {
        text-align: center;
    }
    .experience .section-header img.zigzag {
        display: none; /* Hide zigzag on mobile/tablet */
    }
    .experience .section-title {
        font-size: 2rem;
    }
}


/************************************/
/***  Volunteer Page css ***/
/************************************/
/* Volunteer Wrapper with Overlay */
.volunteer-bg-wrapper {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 40% 24%;
    width: 100%;
    padding: 5px 0;
    z-index: -1;
}

.volunteer-bg-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(56, 94, 85, 0.85); /* overlay color */
    z-index: 1;
}

.volunteer-bg-wrapper > * {
    position: relative;
    z-index: 1;
}

.volunteer-info-section {
  /* margin: 30px auto; */
  margin-top: 30px;
  z-index: 100;
}

.volunteer-info-section .container {
  padding: 0 40px;
}


.volunteer-card > [class*="col-"] {
  padding: 0;
  margin: 0;
}


/* Volunteer Info Card */
.volunteer-card {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  margin: 0;
  min-height: 450px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.volunteer-title {
  font-size: 5.5rem;
  font-family: var(--accent-font);
  line-height: 1.1;
  text-align: center;
  padding: 0 90px;
  z-index: 2;
}

.volunteer-red {
  background-color: var(--accent-tertiary-color);
  position: relative;
}

.volunteer-card .zigzag {
  position: absolute;
  width: 80px;
  opacity: 0.9;
}
.volunteer-card .zigzag-top {
  top: 15px;
  left: 20px;
}
.volunteer-card .zigzag-bottom {
  bottom: 15px;
  right: 30px;
}

/* Join Section */
.join {
    background-color: transparent;
    position: relative;
}

.join .container {
  padding: 0px 60px;
}

.join-title {
    font-size: 4.8rem;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.join-title .highlight {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

/* Big faded zigzag background */
.zigzag-big {
    width: 160px;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
    z-index: 0;
}

/* Left zigzag above heading */
.zigzag-left {
  width: 170px;
  position: absolute;
  top: -120px;
  left: -50px;
  z-index: 1;
  opacity: 1;
}

/* Right zigzag above paragraph */
.zigzag-right {
  width: 40px;
  position: relative;
  top: 45px;
  left: 0;
  z-index: 1;
}

.join-divider {
  border: none;
  border-top: 1px solid var(--primary-color);
  width: 100%;
  max-width: 95%;
  margin: 0.5rem auto 2rem auto;
  opacity: 1;
}

.join-text p {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Tablet adjustments */
@media (max-width: 991.98px) {
  .volunteer-info-section {
    margin: 30px auto;
  }
  .volunteer-info-section .container { 
    padding: 0 15px; 
  }
  .volunteer-card {
    height: auto;
  }
  
  .volunteer-title { 
    font-size: 2.2rem; 
    line-height: 2.4rem;
  }
  
  .join .container {
  padding: 0;
  }

  .join-title {
    font-size: 1.8rem;
    /* text-align: center; */
  }
  .zigzag-small, .zigzag-right {
      display: none;
  }

  /* .join-text {
      text-align: center;
  } */

  .join-divider {
  border: none;
  border-top: 1px solid var(--primary-color);
  width: 100%;
  max-width: 95%;
  margin: 0rem 0px 0px 13px;
}

  .join-text p {
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .join-title {
      font-size: 2.5rem;
  }
}

/* Volunteer Roles Section Styling */
.volunteer-roles-section {
  position: relative;
  z-index: 1;
  color: var(--primary-color);
}

.zigzag-bg {
  position: absolute;
  right: 7%;
  top: 60%;
  width: 150px;
  opacity: 1;
  z-index: -1;
  transform: translateY(-50%);
}

.volunteer-roles-section .section-header .zigzag-icon {
  width: 35px;
  height: auto;
}

.volunteer-roles-section .section-header {
  margin-bottom: 2rem;
}

/* Role Card */
.role-card {
  background: #FAF5E3;
  border-radius: 8px;
  height: 170px;
  width: 170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.role-icon {
  width: 70%;
  height: auto;
  margin-top: 3px;
}


.role-divider {
    border: none;
    border-top: 1px solid var(--primary-color);
    width: 100%;
    max-width: 70%;
    margin: 1rem auto 2rem auto;
    opacity: 1;
}

/* Title + Description outside the card */
.role-title {
  font-size: 1.5rem;
  font-family: var(--accent-font);
  font-weight: 400;
  margin-top: 15px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.role-desc {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-top: 3px;
  font-weight: 500;
}

@media (max-width: 768px) {
  /* Title + Description outside the card */
  .role-card {
    height: 150px;
    width: 150px;
  }
  
  .role-title {
    font-size: 1.2rem;
    font-family: var(--accent-font);
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
}

  .role-desc {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.3;
  }

  .volunteer-roles-section .section-header .zigzag-icon {
    width: 28px;
    height: auto;
  }
}

@media (max-width: 578px) {
  .role-card {
    height: 100px;
    width: 100px;
  }
}

/* What You Get Section Styling */
.what-you-get-section {
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  background-color:#385B52E3;
  overflow: hidden;
  padding-bottom: 100px;
}

/* Big Zigzag Left */
.what-you-get-section .zigzag-bg {
  position: absolute;
  left: 0;
  top: 30%;
  width: 200px;
  opacity: 1;
  z-index: 0;
  transform: translateY(-50%);
}

/* Faded Bhim Logo (Bottom Left) */
.what-you-get-section .bhim-logo-bg {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 120px;
  opacity: 0.08;
  z-index: 0;
}

/* Section Header Zigzags */
.what-you-get-section .section-header .zigzag-icon {
  width: 35px;
  height: auto;
}

.get-card {
  background: #FAF5E3;
  border-radius: 8px;
  height: 160px;
  width: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.get-icon {
  width: 45%;
  height: auto;
}

.get-desc {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-top: 3px;
  font-weight: 500;
}

/* Volunteer Apply Button */
.apply-button {
  margin-top: 80px;
}

/* About CTA button */
.apply-button .brutalist-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  /* width: 150px; */
  height: 40px;
  background-color: var(--accent-tertiary-color);
  color: var(--primary-color);
  text-decoration: none;
  border: 3px solid transparent;
  outline: 3px solid transparent;
  box-shadow: 6px 6px 0 var(--primary-color);
  transition: all 0.1s ease-out;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.apply-button .brutalist-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.8), transparent );
  z-index: 1;
  transition: none;
  opacity: 0;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.apply-button .brutalist-button:hover::before {
  opacity: 1;
  animation: slide 2s infinite;
}

.apply-button .brutalist-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--accent-secondary-color);
  background-color: var(--accent-tertiary-color);
  color: var(--primary-color);
  border: 3px solid transparent;
  outline: 3px solid transparent;
}

.apply-button .brutalist-button:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0 var(--accent-tertiary-color);
  background-color: var(--primary-color);
  color: var(--black-color);
  border-color: var(--black-color);
}

.apply-button .button-text {
  display: flex;
  font-family: var(--defaultbold-font);
  flex-direction: column;
  line-height: 1.2;
  transition: transform 0.2s ease-out;
  position: relative;
  z-index: 1;
}

.apply-button .button-text span {
  font-size: 22px;
}

.apply-button .brutalist-button:hover .button-text {
  transform: skew(-5deg);
}

.apply-button .brutalist-button:active .button-text {
  transform: skew(5deg);
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .zigzag-bg { 
    width: 100px; 
    left: 3%; 
  }
  .what-you-get-section .bhim-logo-bg { 
    width: 100px; 
    bottom: 10px; 
    left: 10px; 
  }

  .get-card {
    height: 150px;
    width: 150px;
  }
  .get-desc { 
    font-size: 0.8rem; 
  }
  .what-you-get-section .section-header .zigzag-icon { 
    width: 28px; 
  }

  .apply-button {
    margin-top: 40px;
  }

  .apply-button .button-text span {
    font-size: 15px;
  }
}

@media (max-width: 578px) {
  .get-card {
    height: 100px;
    width: 100px;
  }
}

/* Terms and conditions section */
.terms-section {
  background-color: #5a7f75;
  color: var(--accent-color);
  padding: 30px 0;
  /* margin-bottom: 100px; */
}

.terms-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/************************************/
/***  Volunteer Application Page css ***/
/************************************/
.volunteer-apply {
  background-color: #F8FAF9; /* light neutral like PDF */
}

.volunteer-apply .section-title {
  font-size: 4.5rem;
  font-family: var(--accent-font);
  color: var(--black-color);
  margin-bottom: 5px;
}

.volunteer-apply .section-subtitle {
  font-size: 1.2rem;
  font-family: var(--defaultregular-font);
  color: #3A675B;
}

.volunteer-apply-card {
  background-color: var(--primary-color);
  padding: 15px 0 0 0;
  border-radius: 12px;
  box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-apply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.volunteer-apply-role {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--black-color);
  font-family: var(--accent-font);
}

.volunteer-apply-content {
  padding: 15px 20px 15px 15px;
  background: #3A675B;
  border-radius: 0px 0px 10px 12px;
  color: var(--primary-color);
  font-size: 0.7rem;
  line-height: 1.1;
  margin: 0;
  font-family: var(--defaultregular-font);
}

.volunteer-apply-card a.btn-link {
  font-weight: 500;
  text-decoration: none;
}

.volunteer-role-card {
  display: flex;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  background-color: transparent;
}

.volunteer-role-image {
  width: 50%;              /* half the card */
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
}

.volunteer-role-content {
  width: 50%;              /* other half */
  background-color: #3A675B;
  color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.volunteer-role-content h5 {
  font-size: 1.2rem;
  font-family: var(--accent-font);
  color: #FAF5E3;
}

.volunteer-role-content p {
  font-size: 0.65rem;
  line-height: 1.1;
  color: #FAF5E3;
}

.pill {
  display: inline-flex;
  padding: 0 6px;
  border-radius: 50px;
  margin-left: 1px;
  font-family: var(--defaultregular-font);
  font-weight: 600;
  font-size: 0.5rem;
  text-wrap: nowrap;
}

.pill-fast {
  background-color: #FAF5E3;
  color: #7D5714;
}

.pill-new {
  background-color: #C58FF9;
  color: var(--primary-color);
}

.commitment {
  background: var(--primary-color);
  position: relative;
  padding: 50px 0;
  background-color: #F8FAF9;
}

.commitment .container { 
  padding: 0 30px;
}

/* Supporters Card */
.commitment-card {
  background: var(--primary-color);
  padding: 15px 0 0 0;
  border-radius: 10px;
  box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.3);
}

.commitment-title {
  font-size: 3rem;
  margin-bottom: 8px;
  color: var(--black-color);
  font-family: var(--accent-font);
}

.commitment-content {
  background: #3A675B;
  padding: 20px 30px 7px 15px;
  border-radius: 0px 0px 10px 12px;
}

.commitment-content h4{
  color: #FAF5E3;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
  font-family: var(--accent-font);
}

.commitment-content ul li {
  color: #FAF5E3;
  font-size: 1rem;
  line-height: 1.1;
  margin: 0;
  font-family: var(--defaultregular-font);
}


/* Volunteer apply section */
.volunteer-green-section {
  background-color: #F8FAF9;
}

.volunteer-green-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.volunteer-green-header {
  background-color: #3A675B;
  padding: 15px 20px;
}

.volunteer-green-header h3 {
  font-family: var(--accent-font);
  font-size: 3rem;
  color: #FAF5E3;
}

.volunteer-green-subtitle {
  background-color: #F2F2F2;
  padding: 20px;
  font-size: 1rem;
  color: #2d2c2c;
  font-weight: 700;
}

.volunteer-green-form,
.volunteer-green-content {
  background-color: #fff;
}

.volunteer-green-form .form-label {
  font-size: 0.6rem;
  font-weight: 890;
  color: #2d2c2c;
}

.privacy-note {
  background-color: #f9f4dc; /* light gold */
  color: #333;
  border-radius: 4px;
  font-size: 0.65rem;
  text-align: center;
}

.volunteer-green-content h4 {
  font-family: var(--defaultbold-font);
  color: var(--black-color);
  font-size: 1.5rem;
}
.volunteer-green-content h5 {
  font-family: var(--defaultbold-font);
  color: var(--black-color);
  font-size: 1.1rem;
}
.volunteer-green-content h6 {
  font-family: var(--defaultbold-font);
  color: var(--black-color);
  font-size: 0.7rem;
}

.volunteer-green-content p, .volunteer-green-content ul li {
  font-family: var(--defaultregular-font);
  color: #2d2c2c;
  font-size: 0.75rem;
  line-height: 1.3;
}
.volunteer-green-content ul {
  padding-left: 12px;
}

.volunteer-green-header .text-content {
  flex: 1; /* allow text to take remaining space */
}

.volunteer-green-header img {
  flex-shrink: 0; /* keep the image at its size */
}


/* responsive: stack image above content on small screens */
@media (max-width: 991px) {
  .volunteer-role-image,
  .volunteer-role-content {
    width: 100%;
  }

  .volunteer-role-content p {
    font-size: 0.85rem;
    line-height: 1.1;
    margin-bottom: .5rem;
  }

  .volunteer-green-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .volunteer-apply .section-title {
    font-size: 2rem;
  }

  .volunteer-apply .section-subtitle {
    font-size: 1rem;
  }

  .commitment-title {
    font-size: 2rem;
  }

  .commitment-content h4{
    font-size: 1rem;
  }

  .commitment-content ul li {
    font-size: 0.8rem;
  }

  .volunteer-green-header h3 {
    font-size: 2rem;
  }

  .volunteer-green-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 578px) {
  .volunteer-role-content p {
    font-size: 0.55rem;
  }

  .commitment-content {
    padding: 15px 20px 3px 10px;
  }
}

/************************************/
/***  2025 Edition Page css ***/
/************************************/
/* Section Background */
.edition-section {
  /* background-color: #F1C866; */
  padding: 20px;
}

/* Card Container */
.edition-card {
  min-height: 450px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 2;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

/* Left Side */
.edition-left {
  background-color: #3A675B; /* Green background */
  color: var(--primary-color);
  padding-left: 60px;
  position: relative;
}

.edition-title {
  font-size: 5.5rem;
  font-family: var(--accent-font);
  line-height: 1;
  margin-top: 150px;
}

.edition-logo-text {
  margin-top: 25px;
}

.edition-logo-text .bhim-logo {
  width: 200px;
  height: auto;
}

.creative-theme span {
  /* display: block; */
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.7;
}

/* Right Side */
.edition-right {
  background-color: #3A675B; /* Green background */
  padding: 10px;
  position: relative;
}

.edition-right-card {
  border: 1px dashed var(--primary-color); /* White dashed border */
  overflow: hidden;
  height: 100%;
  padding: 10px;
}

.edition-right-card img {
  width: 100%;
}

/* Zigzag decorations */
.edition-card .zigzag {
  position: absolute;
  width: 95px;
  opacity: 0.9;
}

.zigzag-top {
  top: 20px;
  left: 55px;
}

.zigzag-bottom {
  bottom: 30px;
  right: 45px;
}

/* Zigzag that sits behind the card */
.zigzag-under {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 150px;
  z-index: 0;
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .edition-left {
    padding: 0;
    text-align: center;
  }
  
  .edition-title {
    font-size: 3.5rem;
    margin-top: 15px;
  }

  .edition-logo-text {
    margin-top: 0;
  }

  .edition-logo-text .bhim-logo {
    width: 80px;
    display: none;
  }

  .creative-theme {
    display: none;
  }

  .zigzag-under {
    width: 70px;
    bottom: -10px;
    left: 12px;
  }
}

.edition-bg-wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 40% 10%;
  width: 100%;
  padding: 5px 0;
  min-height: 60vh;
  z-index: 1;
}

.edition-bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #353333ed;
  opacity: 0.6;
  z-index: 1;
}

.edition-bg-wrapper > * {
  position: relative;
  z-index: 2; /* ensures your content stays above overlay */
}

.root-section {
    background-color: transparent;
    position: relative;
}

.root-section .container {
    padding: 0px 60px;
}

.root-title {
    font-size: 4rem;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 0.3;
    position: relative;
    z-index: 2;
}

.root-title .highlight {
    position: relative;
    display: inline-block;
    color: #FAF5E3;
}

.root-details p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1.2;
}

.root-text {
    position: relative;
    margin-bottom: 6.5rem;
}

.root-text p {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--accent-color);
    font-weight: 500;
}

/* Root Card */
.root-card {
  border: 1px dashed var(--primary-color);
  overflow: hidden;
  position: relative;
  max-width: 800px;
  background-color: transparent;
  z-index: 2;
  padding: 0;
}

.root-card img {
  opacity: 0.9;
}

.root-card-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.root-card-slide {
  flex: 0 0 100%;
  width: 100%;
}


.root-card-slide img {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  display: block;
  object-fit: cover;
}

/* nav buttons */
.root-prev-btn,
.root-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 5;
}
.root-prev-btn { left: 15px; }
.root-next-btn { right: 15px; }

/* Zigzag behind card */
.zigzag-root-under {
    position: absolute;
    bottom: 150px;
    right: -1px;
    width: 200px;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.root-divider {
    border: none;
    border-top: 1px solid var(--primary-color);
    width: 100%;
    max-width: 90%;
    margin: 3rem auto 2rem auto;
    opacity: 1;
}

@media only screen and (min-width: 1400px) {
  .root-card {
    border: 1px dashed var(--primary-color);
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    background-color: transparent;
    z-index: 2;
    padding: 0;
  }
}

/* Tablet adjustments */
@media (max-width: 991.98px) {
    .root-section .container {
      padding: 0px 20px;
    }

    .root-title {
      font-size: 1.8rem;
      /* text-align: center; */
    }

    .root-title .highlight {
      position: relative;
      color: #FAF5E3;
    }

    .root-text {
      /* text-align: center; */
      margin-bottom: 1.8rem;
    }

    .root-text p {
      font-size: 0.9rem;
      line-height: 1.1;
    }

    /* .root-details p {
      text-align: center;
    } */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .root-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .root-text {
      margin-bottom: 1.5rem !important;
    }

    .root-details p {
      font-size: 0.9rem;
      /* text-align: center; */
    }
}


/* Flow Section Styling */

.zigzag-flow {
    width: 40px;
    height: auto;
}

/* Activities list */
.flow-activities ul li {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
}

.zigzag-flow-text {
  position: absolute;
  left: 0;
  top: 150px;
  width: 250px;
  opacity: 1;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .flow .container {
        padding: 0px 20px;
    }

    .flow .section-header {
        text-align: center;
    }
    .flow .section-header img.zigzag-flow {
      width: 25px;
    }
    .flow .section-title {
        font-size: 2rem;
    }
  .flow-activities ul li {
    font-size: 0.8rem;
  }
}

/* Special Features for 2025 Section css  */
.special-features-section {
  position: relative;
  z-index: 1;
  background-color: #3A5E54;
  color: var(--primary-color);
  padding: 60px 0;
}

.zigzag-bg-special {
  position: absolute;
  right: 0%;
  top: 50%;
  width: 180px;
  opacity: 1;
  z-index: 10000;
  transform: translateY(-50%);
}

.special-features-section .section-header .zigzag-icon {
  width: 40px;
  height: auto;
}

.special-features-section .section-header {
  margin-bottom: 2rem;
}

.special-wrapper {
  padding: 0 180px;
}

/* Feature Card */
.feature-card {
  background: #FAF5E3;
  border-radius: 8px;
  height: 160px;
  width: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 45%;
  height: auto;
}

/* Title + Description outside the card */
.feature-title {
  font-size: 1.1rem;
  font-family: var(--accent-font);
  font-weight: 500;
  margin-top: 15px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--accent-color);
  margin-top: 3px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .special-features-section .section-header .section-title {
    font-size: 28px;
  }

  .special-wrapper {
    padding: 0;
  }
  
  .feature-title {
    font-size: 1rem;
  }

  .feature-card {
    height: 150px;
    width: 150px;
  }
  .feature-desc {
    font-size: 0.8rem;
  }
  .special-features-section .section-header .zigzag-icon {
    width: 26px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    height: 100px;
    width: 100px;
    margin: auto;
  }
}

/* Lineup announcement */
.lineup-announcement-section {
  background-color: #EDC564;
  color: #000;
  padding: 35px 0;
  /* margin-bottom: 100px; */
  position: relative;
  overflow: hidden;
}

.lineup-announcement-text {
  font-size: 1rem;
  font-family: var(--default-font);
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #000;
  position: relative;
  z-index: 2;
}

/* Bhim Logo background */
.lineup-announcement-section .bhim-logo-bg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  opacity: 0.15;
  z-index: 1;
}

.lineup-announcement-section .section-header .zigzag-icon {
  width: 40px;
  height: auto;
}

.lineup-announcement-text p strong {
  font-family: var(--defaultbold-font) !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .lineup-announcement-text {
    font-size: 0.8rem;
  }
  .lineup-announcement-section .bhim-logo-bg {
    width: 60px;
    right: 2%;
    opacity: 0.15;
  }

  .lineup-announcement-section .section-header .zigzag-icon {
    width: 30px;
  }
}

/************************************/
/***  CSR & Impact Page css ***/
/************************************/

/* Background Wrapper */
.csr-bg-wrapper {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 40% -2%;
    width: 100%;
    padding: 30px 15px;
    padding-bottom: 60px;
}

.csr-bg-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(56, 94, 85, 0.85); /* overlay */
    z-index: 0;
}

.csr-bg-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Section */
.csr-section {
  padding: 0px 40px;
  position: relative;
}

/* Card */
.csr-card {
  min-height: 450px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 2;
}

/* Left Side */
.csr-left {
  background-color: var(--accent-tertiary-color);
  color: var(--primary-color);
  padding-left: 60px;
  position: relative;
}

.csr-title {
  font-size: 5.5rem;
  font-family: var(--accent-font);
  line-height: 1;
  margin-top: 150px;
  color: #FAF5E3;
}

.csr-logo-text {
  margin-top: 25px;
}

.csr-logo-text .bhim-logo {
  width: 180px;
  height: auto;
}

/* Right Side */
.csr-right {
  background-color: var(--accent-tertiary-color);
  padding: 10px;
  position: relative;
}

.csr-right-card {
  border: 1px dashed #FAF5E3;
  overflow: hidden;
  height: 100%;
  padding: 10px;
}

/* Zigzags */
.csr-card .csr-zigzag {
  position: absolute;
  width: 95px;
  opacity: 0.9;
}

.csr-zigzag-top {
  top: 20px;
  left: 55px;
}

.csr-zigzag-bottom {
  bottom: 40px;
  right: 50px;
}

/* Behind card */
.csr-zigzag-under {
  position: absolute;
  bottom: -220px;
  left: 0;
  width: 150px;
  z-index: 0;
  opacity: 0.9;
}

.join .stage-title {
  font-size: 4.5rem;
  font-family: var(--accent-font);
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  color: #FAF5E3;
}

/* Responsive */
@media (max-width: 991px) {
  .csr-bg-wrapper {
    padding: 0 15px;
  }


  .csr-section {
    padding: 40px 0;
    position: relative;
  }
  
  .csr-left {
    padding: 0;
    text-align: center;
  }

  .csr-title {
    font-size: 3.5rem;
    margin-top: 15px;
  }

  .csr-logo-text {
    margin-top: 0;
  }

  .csr-logo-text .bhim-logo { 
    display: none;
  }

  .csr-zigzag-under {
    width: 70px;
    bottom: -10px;
    left: 12px;
  }

  .join .stage-title {
    font-size: 2rem !important;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 2;
  }
}



/************************************/
/***  Creative Expo Page css ***/
/************************************/
.expo-bg-wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 20% 43%;
  width: 100%;
  padding-top: 5px;
  min-height: 60vh;
}

.expo-bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #353333ed;
  opacity: 0.6;
  z-index: 1;
}

.expo-bg-wrapper > * {
  position: relative;
  z-index: 2; /* ensures your content stays above overlay */
}

.bhim-bottom-logo {
  position: absolute;
  width: 180px;
  opacity: 0.9;
}

.bhim-bottom {
  bottom: 20px;
  left: 20px;
}

/* Reserve Expo Section */
.reserve-expo {
    background: transparent;
    position: relative;
    margin-top: 60px;
}

.reserve-expo .container {
    padding: 0px 60px;
}

/* Title */
.reserve-expo-title {
    font-size: 4.1rem;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    color: #FAF5E3;
}
.reserve-expo-title .highlight {
    color: var(--primary-color);
}

/* Date & Venue */
.reserve-expo-details p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1.2;
}

/* Paragraph */
.reserve-expo-text p {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Zigzags */
.zigzag-reserve-expo-small {
    width: 50px;
    position: absolute;
    top: 0;
    left: -25px;
    z-index: 1;
}
.zigzag-reserve-expo-big {
    width: 160px;
    opacity: 1;
    z-index: 0;
    transform: translate(-220%, -50%) !important;
}
.zigzag-reserve-expo-right {
    position: relative;
    top: 45px;
    left: 0;
    width: 40px;
    z-index: 1; /* sits on top of text */
    opacity: 0.9;
}
.zigzag-reserve-expo-under {
    position: absolute;
    bottom: 150px;
    right: 0;
    width: 200px;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

/* Dashed Card */
.reserve-expo-card {
    border: 1px dashed var(--primary-color);
    overflow: hidden;
    position: relative;
    max-width: 100%;
    background: transparent;
    z-index: 2;
    padding: 10px;
}
.reserve-expo-card img {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991.98px) {
    .reserve-expo .container {
        padding: 0px 20px;
    }
    .reserve-expo-title {
        font-size: 2rem;
        text-align: center;
    }
    .reserve-expo-details,
    .reserve-expo-text {
        text-align: center;
        font-size: 0.85rem;
    }
    .zigzag-reserve-expo-small,
    .zigzag-reserve-expo-right {
        display: none;
    }

    .reserve-expo-details p {
      font-size: 1rem
    }
}
@media (max-width: 575.98px) {
    .reserve-expo-title {
        font-size: 2.3rem;
    }

    .reserve-expo-details p, .reserve-expo-text p {
      font-size: 0.85rem;
    }
    .zigzag-reserve-expo-big {
        width: 180px;
    }
}

/************************************/
/***  Expo Ticket Pages css ***/
/************************************/
.main-expo {
  position: relative;
  background-color: #FAF5E3;
}

.expo-heading {
  padding: 45px 0 15px;
}

.expo-heading-box {
  z-index: 1;
  color: #3A675B;
}

.expo-heading-box h1 {
  font-size: 80px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #3A675B;
  font-family: var(--accent-font);
}

.expo-heading-box p {
  font-size: 1rem;
  font-weight: 500;
  color: #3A675B;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .expo-heading {
    padding: 30px 0 25px;
  }

  .expo-heading-box {
    z-index: 1;
    color: #3A675B;
  }

  .expo-heading-box h1 {
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #3A675B;
  }

  .expo-heading-box p {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3A675B;
  }
}

/* Creative Expo Ticket Card */
.expo-ticket-card {
  border: 0.1rem dashed #3a675b;
  background: #FAF5E3;
  padding: 40px 50px;
}

.previous-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--defaultregular-font);
  font-size: 13px;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 2px dotted var(--primary-color);
  padding-bottom: 3px;
  position: relative;
}

@media (max-width: 768px) {
  .previous-page-btn {
    font-size: 11px; 
  }
}

.p-arrow-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.p-arrow-text {
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.p-arrow-circle {
  position: absolute;
  left: -6px;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: #0DC9EF;
  border-radius: 50%;
  z-index: 1;
}


.previous-page-btn:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.previous-page-btn:hover .p-arrow-circle {
  transform: translateX(3px);
  background-color: var(--accent-tertiary-color);
  transition: all 0.3s ease;
}

.previous-page-btn:hover .p-arrow-text {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

.ticket-inner-card {
  background: #3A675B;
}

.ticket-inner-card h2 {
  font-size: 4rem;
  font-family: var(--accent-font);
  color: #FAF5E3;
  line-height: 1;
}

.exp img {
  height: 55px;
}

.ticket-divider {
    border: none;
    border-top: 1px solid var(--primary-color);
    width: 100%;
    max-width: 93%;
    margin: 1rem auto 2rem auto;
    opacity: 1;
}

.ticket-form {
  background-color: var(--primary-color);
}

.ticket-form h6 {
  color: #494949;
  font-size: 1.3rem;
  font-family: var(--defaultmedium-font);
}

.ticket-inner-card .form-label {
  font-weight: 500;
  color: #494949;
  font-size: 10px;
  font-family: var(--defaultregular-font);
}

.ticket-inner-card input {
  border-radius: 3px;
  border: 1px solid #000;
  padding: 5px;
}

/* Disclaimer */
.ticket-inner-card h5 {
  color: #fff;
  font-weight: 700;
}

.ticket-inner-card p{
  font-size: 1rem;
  line-height: 1.4;
  color: #FAF5E3;
}

.form-check label  {
  font-size: 0.8rem;
  font-family: var(--defaultregular-font);
  color: #494949;
}

.disclaimer h5 {
  color: #000;
  font-family: var(--defaultbold-font);
  font-size: 0.8rem;
}

.disclaimer p {
  font-size: 0.7rem;
  color: #494949;
}

.disclaimer ul li  {
  font-size: 0.7rem;
  color: #494949;
  font-family: var(--defaultregular-font);
  line-height: 1.2;
}

.reserve-btn {
  font-size: 1rem;
  color: var(--primary-color);
  font-family: var(--defaultbold-font);
}

.mascot-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mascot-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: scale(0.3) translateY(-50px);
  }
  50% {
      opacity: 0.8;
      transform: scale(1.1) translateY(-10px);
  }
  100% {
      opacity: 1;
      transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .expo-ticket-card {
    padding: 20px 25px;
  }

  .exp img {
    height: 25px;
  }
  
  .ticket-inner-card h2 {
    font-size: 1.9rem;
  }

  .ticket-form h6 {
    font-size: 1.1rem;
  }

  .form-check label {
    font-size: 0.7rem;
    line-height: 1;
  }

  .reserve-btn {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-family: var(--defaultbold-font);
  }
}




/************************************/
/***  News and Updates Page css ***/
/************************************/
/* News Brewing Section */
.news-brewing {
  background: #FAF5E3;
  position: relative;
  padding: 60px 0;
}
.news-brewing .container, .news-subscribe .container { 
  padding: 0 60px;
}

/* Zigzag Decoration */
.zigzag-news-brewing {
  position: absolute;
  top: 0;
  left: -50px;
  width: 60px;
  z-index: 1;
}

/* Left Column */
.news-brewing-title {
  font-size: 4.2rem;
  font-family: var(--accent-font);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px; /* tighter to make room for details */
  color: #3A675B;
}

/* Date & Venue (new) */
.news-brewing-details {
  margin: 6px 0 18px;
}
.news-brewing-details p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3A675B;
  line-height: 1.3;
  font-family: var(--defaultmedium-font);
  margin: 0;
}

/* Body paragraph */
.news-brewing-details .latest {
  font-size: 0.95rem;
  line-height: 1.1;
  color: #3A675B;
  font-weight: 500;
  font-family: var(--defaultregular-font);
  /* text-align: justify; */
}

/* Right Card */
.news-brewing-card {
  background: #F1C866;
  padding: 30px 0 0 0 ;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.news-brewing-card .card-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #3a675b;
  font-family: var(--accent-font);
}
.news-list {
  list-style: disc;
  padding: 10px 35px 10px 35px;
  background: #3A675B; 
  border-radius: 0px 0px 10px 12px;
  color: var(--primary-color);
  font-size: 0.9rem;
  line-height: 1.2;
  margin: 0;
  font-family: var(--defaultregular-font);
}
.news-list li { 
  margin-bottom: 2px; 
}

/* Responsive */
@media (max-width: 991.98px) {
  .news-brewing .container, .news-subscribe .container {
    padding: 0 20px;
  }
  .news-brewing-title {
    font-size: 2.2rem; 
    /* text-align: center; */
  }
  .news-brewing-content p,
  .news-brewing-details {
    text-align: left;
  }
  .zigzag-news-brewing {
    display: none;
  }
  .news-brewing-details p {
    font-size: 1.1rem;
  }
  .news-list {
    list-style: disc;
    padding: 10px 35px 10px 35px;
    background: #3A675B; 
    border-radius: 0px 0px 10px 12px;
    color: var(--primary-color);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
  }
}

/* Subscribe for update section */
.news-subscribe {
  background: var(--primary-color);
  position: relative;
  padding: 60px 0;
  /* margin-bottom: 100px; */
}

/* Right Card - News Subscribe */
.news-subscribe-card {
  background: #3A675B; /* Green background */
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: var(--primary-color);
}

.news-subscribe-card .card-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-family: var(--accent-font);
}

/* Form Styling */
.news-subscribe-form .form-label {
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--primary-color);
  font-family: var(--defaultregular-font);
}

.news-subscribe-form .form-control {
  border-radius: 3px;
  padding: 7px 8px;
  font-size: 0.65rem;
  font-family: var(--defaultregular-font);
  border: 1px solid var(--primary-color);
  background-color: transparent;
}

.news-subscribe-form .form-control::placeholder {
  color: #d1cbcb;
}

/* Subscribe Button */
.btn-subscribe {
  background: #FAF5E3;
  color: #3A675B;
  font-weight: 800;
  font-family: var(--defaultmedium-font);
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 4px;
  border: none;
  transition: 0.3s;
  font-size: 13px;
}

.btn-subscribe:hover {
  background: #F1C866;
  color: #3a675b;
}

/* Responsive */
@media (max-width: 991.98px) {
  .news-subscribe-card { margin-top: 20px; }
  .news-subscribe-card .card-title { text-align: center; }
  .btn-subscribe { width: 100%; }
}


/************************************/
/***  Partners and Sponsors Page css ***/
/************************************/
.page-heading {
    position: relative;
    padding: 80px 0 70px;
}

.page-heading-box {
    z-index: 1;
    color: var(--primary-color);
}

.page-heading-box h1 {
  font-size: 80px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  color:#FAF5E3;
  font-family: var(--accent-font);
}

.page-heading-box p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

@media (min-width: 1400px) {
  .page-heading .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-heading {
    position: relative;
    padding: 50px 0 30px;
  }

  .page-heading-box {
      z-index: 1;
      color: var(--primary-color);
  }

  .page-heading-box h1 {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-color);
  }

  .page-heading-box p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
  }
}

.supporters-preview {
  background: var(--primary-color);
  position: relative;
  padding-bottom: 25px;
}

.supporters-preview .container { 
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Supporters Card */
.supporters-preview-card {
  background: var(--primary-color);
  padding: 40px 0 25px 0;
  /* border-radius: 12px; */
  box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.3);
}

.supporters-preview-title {
  font-size: 3.5rem;
  margin-bottom: 8px;
  color: var(--black-color);
  font-family: var(--accent-font);
}

.supporters-preview-content {
  padding: 10px 35px 7px 25px;
  background: #2FF4C5;
  border-radius: 0px 0px 10px 12px;
  color: var(--black-color);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  font-family: var(--defaultregular-font);
}

.supporters-preview-content p {
  margin-bottom: 12px;
}

/* Dashed Card */
.supporters-preview-dashed {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  background-color: transparent;
  z-index: 2;
  /* padding: 20px; */
}

.supporters-preview-dashed img {
  opacity: 0.9;
}

/* Responsive */
@media (min-width: 1400px) {
  .supporters-preview .container {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .supporters-preview-title {
    font-size: 1.7rem; 
    /* text-align: center; */
  }
  .supporters-preview-content {
    /* text-align: center; */
    font-size: 0.8rem;
  }
}

/* Sponsors logo */
/* Section Background */
.sponsors-section {
  background: var(--primary-color);
}

.sponsors-section .container {
  padding: 0 60px;
}

/* Sponsor Tier Card (based on supporters-preview-card) */
.sponsor-tier-card {
  background: var(--primary-color);
  padding: 10px 0 0 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 45px;
  box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.3);
}

/* Title (Sponsor Tier) */
.sponsor-tier-title {
  font-size: 3rem;
  color: #FAF5E3;
  font-family: var(--accent-font);
  text-transform: uppercase;
}

/* Content (Tier Name e.g. Platinum Partners) */
.sponsor-tier-content {
  padding: 10px 18px;
  background: #4F5999;
  border-radius: 0px 0px 10px 12px;
  color: var(--primary-color);
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0;
}

.sponsor-tier-content h5 {
  font-family: var(--defaultbold-font);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 991.98px) {
  .sponsor-tier-title {
    font-size: 2rem;
    text-align: center;
  }
  .sponsor-tier-content {
    text-align: center;
  }
  .sponsor-tier-content h5 {
    font-size: 1rem;
  }
}

/* Sponsor Cards */
.sponsor-card {
  position: relative;
  background-color: #141F35;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* both images stacked */
.sponsor-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* show default image initially */
.sponsor-card .logo-default {
  opacity: 1;
  position: relative;
}

/* hover state */
.sponsor-card:hover {
  background-color: #fff;
}

.sponsor-card:hover .logo-default {
  opacity: 0;
}

.sponsor-card:hover .logo-hover {
  opacity: 1;
  transform: scale(1.05);
}


/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Stagger Animation */
.sponsor-tier .sponsor-card:nth-child(1) { 
  animation-delay: 0s; 
}
.sponsor-tier .sponsor-card:nth-child(2) { 
  animation-delay: 0.3s; 
}
.sponsor-tier .sponsor-card:nth-child(3) { 
  animation-delay: 0.6s; 
}
.sponsor-tier .sponsor-card:nth-child(4) { 
  animation-delay: 0.9s; 
}

.sponsor-name h4 {
  font-family: var(--accent-font);
  color: #141F35;
  font-size: 1.6rem;
}

/* Become a Sponsor Section */
.become-sponsor {
  background: var(--primary-color);
}

@media (min-width: 1400px) {
  .become-sponsor .container {
    max-width: 100%;
  }
}

.become-sponsor-notice {
  background: #C0F2E5;
  color: var(--primary-color);
  padding: 40px 150px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.become-sponsor-notice p {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: var(--defaultregular-font);
  margin: 0;
  color: var(--black-color);
}

@media (max-width: 768px) {
  .sponsors-section .container {
    padding: 0 30px;
  }

  .become-sponsor-notice {
    padding: 40px 15px;
  }
  .become-sponsor-notice p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .sponsor-name h4 {
  font-family: var(--accent-font);
  color: #141F35;
  font-size: 1.1rem;
  }

  .become-sponsor .brutalist-button {
    font-size: 1rem !important;
  }
}
/* Brutalist Button (PDF style) */
.become-sponsor .brutalist-button {
  display: inline-block;
  background: #4F5999;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 1.4rem;
  box-shadow: 6px 6px 0 var(--accent-tertiary-color);
  transition: all 0.2s ease-in-out;
  height: 40px;
}

.become-sponsor .brutalist-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent-tertiary-color);
  color: var(--primary-color);
}


/************************************/
/***  Become a Sponsor Page css ***/
/************************************/
.partners-tier-card {
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partner-tier-header {
  background-color: #141F35;
  padding: 15px 20px;
}

.partner-tier-header h3 {
  font-family: var(--accent-font);
  font-size: 3rem;
  color: #FAF5E3;
}

.tier-pill {
  display: inline-block;
  background-color: #FAF5E3;
  color: #7D5714;
  padding: 6px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.partner-tier-subtitle {
  background-color: #BBEBDF;
  padding: 15px 20px;
  font-size: 0.8rem;
  color: #000;
}

.partner-tier-content {
  background-color: #fff;
}

.partner-tier-content ul {
  list-style: disc;
  padding-left: 0;
  margin: 0 0 0 0.60rem;
  line-height: 1.6;
  flex-grow: 1;
}

.partner-tier-content ul li {
  font-size: 0.9rem;
  font-family: var(--defaultmedium-font);
  color: #141f35;
}

.tier-note {
  background-color: #2FF4C5;
  color: #141F35;
  font-weight: 500;
  border-top: 1px dashed #141F35;
  border-bottom: 1px dashed #141F35;
  font-size: 0.85rem;
  min-height: 130px;
}

.btn-partner {
  display: inline-block;
  background-color: #3A675B;
  color: #FAF5E3;
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-partner:hover {
  background-color: #2e5046;
  color: #fff;
}

/* same height across cards */
.partners-tier-card .partner-tier-content {
  flex: 1;
}

.inquiry {
  background: #F5F0DF;
}

.inquiry-card {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  margin: 0 1rem;
}

/* only the last card overlaps the next section */
.card-4{
  margin-bottom: -60px; /* adjust this to how much you want it to overlap */
  position: relative;
  z-index: 2; /* keep it above the next section */
}

.inquiry .section-title {
  color: #141f35;
  font-family: var(--accent-font);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.inquiry-list {
  list-style: disc;
  padding-left: 1rem;
  margin: 0;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.inquiry-list li {
  font-size: 1rem;
  font-family: var(--defaultmedium-font);
  color: #141f35;
  margin-bottom: 0.5rem;
}

.inquiry-cta {
  border: 1px dashed #141f35;
  border-radius: 4px;
}

.inquiry-cta p {
  color: #141f35;
  font-size: 1.1rem;
  font-family: var(--defaultmedium-font);
}

.inquiry-btn {
  background-color: #141F35;
  color: var(--primary-color);
  font-family: var(--defaultmedium-font);
  padding: 8px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.3rem;
}

.inquiry-btn:hover {
  background-color: #2FF4C5;
  color: #141f35;
}

.co-branding-card {
  background-color: var(--primary-color);
  padding: 15px 0 0 0;
  border-radius: 12px;
  box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #141F35;
  height: 100%;
}

.co-branding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.co-branding-role {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #FAF5E3;
  font-family: var(--accent-font);
  /* background-color: #141F35; */
}

.co-branding-content {
  padding: 15px 20px 15px 15px;
  background: var(--primary-color);
  border-radius: 0px 0px 10px 12px;
  color: #141F35;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  font-family: var(--defaultmedium-font);
  flex-grow: 1;
}

/* CSR - Co-Branding Table */
.table-bordered.csr-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.csr-table thead th {
  background-color: #C0F2E5;
  color: #141F35;
  text-align: left;
  font-family: var(--defaultbold-font);
  font-size: 1.2rem;
  border-color: #4F5999;
  border-style: solid;
  border-width: 0 0 1px 0;
  padding-top: 18px;
  padding-bottom: 18px;
}

.csr-table tbody td {
  font-size: 1.1rem;
  font-family: var(--defaultregular-font);
  color: #141F35;
  vertical-align: middle;
  border-color: #4F5999;
  border-style: solid;
  border-width: 1px 0 0 0;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
}

.csr-table tbody td:first-child {
  text-align: left;
}

.table-bordered.csr-table thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.table-bordered.csr-table thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

/* responsive */
@media (max-width: 767px) {
  .partner-tier-header h3 {
    font-size: 2.2rem;
  }
  .partner-tier-subtitle {
    font-size: 0.7rem;
  }
  .tier-pill {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
  .partner-tier-content ul li {
    font-size: 0.8rem;;
  }
  .tier-note {
    font-size: 0.75rem;
  }
  
  .inquiry-card {
    margin: 0;
  }

  .inquiry .section-title {
    font-size: 2rem;
  }

  .inquiry-list li, .inquiry-cta p {
    font-size: 0.8rem;
  }

  .inquiry-btn {
    font-size: 0.9rem;
  }
  .co-branding-role {
    font-size: 1.8rem;
  }
  .co-branding-content {
    font-size: 0.9rem;
  }
}

/************************************/
/***  Media Gallery section css ***/
/************************************/
.gallery-bg-wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 60vh;
  padding: 40px 0;
}

.gallery-bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #353333;
  opacity: 0.6;
  z-index: 1;
}

.gallery-bg-wrapper > * {
  position: relative;
  z-index: 2;
}

.gallery-intro-section {
  background: transparent !important;
}

.gallery-intro-section .section-title {
  font-size: 6.5rem;
  color: #FAF5E3;
  text-transform: uppercase;
  font-family: var(--accent-font);
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 2.4rem;
  color: #FAF5E3;
  font-family: var(--defaultbold-font);
}

.section-text {
  margin-top: 10px;
  color: #FAF5E3;
  font-family: var(--defaultmedium-font);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 5px;
}

/* Zigzag styles */
.gallery-intro-section .section-header .zigzag-icon {
  width: 100px;
  height: auto;
}

/* Root Card */
.gallery-card {
  border: 1px dashed var(--primary-color);
  overflow: hidden;
  position: relative;
  max-width: 100%;
  background-color: transparent;
  z-index: 2;
  padding: 10px;
}

/* Video fills container */
.gallery-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Play button styling */
.play-button-overlay {
  z-index: 5;
  cursor: pointer;
}

.play-btn {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-intro-section .section-title {
    font-size: 2.1rem;
    margin-right: 12px !important;
  }

  .gallery-intro-section .section-header .zigzag-icon {
    width: 24px;
    height: auto;
  }
  .section-subtitle {
    font-size: 1.1rem;
  }
  .section-text {
    font-size: 0.9rem;
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

/* Media sections */
.media-cards {
  position: relative;
  z-index: 1;
  color: #fff;
}

.media-cards-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 0;
}

/* Cards */
.media-card img {
  border-radius: 4px;
  display: block;
}

/* Footer content under each card */
.media-card-footer {
  align-items: center;
}

/* Title */
.media-card-title {
  font-size: 1rem;
  font-family: var(--accent-font);
  color: #FAF5E3;
}

/* Side text and vertical line */
.media-card-side {
  display: flex;
  align-items: center;
}

.media-card-side .red-line {
  width: 0.05rem;
  height: 40px;
  background: #F00018;
  margin-right: 10px;
  flex-shrink: 0;
}

.media-card-side .side-text {
  font-size: 0.8rem;
  color: var(--accent-tertiary-color);
  font-family: var(--defaultmedium-font);
  line-height: 1;
  text-align: left;
}

.explore-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--defaultregular-font);
  font-size: 12px;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 2px dotted var(--primary-color);
  position: relative;
}

.explore-more-btn .arrow-circle {
  position: absolute;
  right: -3px;
  top: 3px;
  width: 10px;
  height: 10px;
  background-color: var(--accent-tertiary-color);
  border-radius: 50%;
  z-index: 1;
}

.explore-more-btn .arrow-text {
  font-size: 10px;
}


.explore-more-btn:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.explore-more-btn:hover .arrow-circle {
  transform: translateX(3px);
  background-color: var(--accent-tertiary-color);
  transition: all 0.3s ease;
}

.explore-more-btn:hover .arrow-text {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

/* Grid responsiveness */
@media (max-width: 767px) {
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .explore-more-btn {
    font-size: 10px; 
  }

  .explore-more-btn .arrow-circle {
    right: -4px;
    top: 2px;
  }

  .media-card-side .red-line {
    width: 1px;
    height: 35px;
  }
}

/* View Full Gallery CTA button */
.gallery-cta {
  background-color: transparent;
  padding-top: 60px;
  padding-bottom: 30px;
}

.gallery-btn, .gallery-btn-1 {
  font-family: var(--defaultbold-font);
  font-size: 1.1rem;
  padding: 10px 60px;
  border-radius: 2px;
  color: var(--primary-color);
  background: #3A675B;
  transition: all 0.3s ease;
  border: transparent;
}

.gallery-btn:hover {
  background: #f1f1f1;
  color: #3A675B; /* darker green */
}
.gallery-btn-1:hover {
  background: var(--primary-color) !important;
  color: var(--accent-tertiary-color);
}

.gallery-logo {
  opacity: 0.2;
  position: absolute;
  bottom: 10px;
  right: 90px;
  width: 110px;
}

@media (max-width: 768px) {
  .gallery-cta .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.gallery-type-section .section-title {
  font-size: 4.5rem;
  color: #FAF5E3;
  text-transform: uppercase;
  font-family: var(--accent-font);
  margin-bottom: 0;
}

/* Zigzag styles */
.gallery-type-section .section-header .zigzag-icon {
  width: 60px;
  height: auto;
}

.media-cards .cards-title {
  font-family: var(--defaultbold-font);
  font-size: 1.6rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.card-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
  grid-auto-flow: column;
}

.card-types > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

/* Hover zoom effect */
.card-types > img:hover {
  transform: scale(1.08);
  filter: brightness(85%);
}

/* Tall images (1 column wide, 2 rows tall) */
.card-types > .img-1x2 {
  grid-row: span 2;
  grid-column: span 1;
}

/* Square images */
.card-types > .img-1x1 {
  grid-row: span 1;
  grid-column: span 1;
}

/* Responsive: on mobile */
@media (max-width: 992px) {
  .card-types {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    grid-auto-flow: dense;
  }
}


@media (max-width: 768px) {
  .gallery-type-section .section-title {
    font-size: 2.0rem;
    margin-right: 12px !important;
  }

  .gallery-type-section .section-header .zigzag-icon {
    width: 26px;
    height: auto;
  }

  .media-cards .cards-title {
    font-size: 1.2rem;
  }

  .card-types {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    grid-auto-flow: dense;
  }
}

/* Social Wall css */
/* Wrapper */
.social-wall-input {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  background: var(--primary-color);
  padding: 10px;
  border-radius: 3px;
}

/* Textarea */
.message-box {
  border-radius: 3px;
  border: 1px solid #ecebeb;
  padding: 15px;
  font-size: 1rem;
  font-family: var(--defaultregular-font);
  resize: none;
}

/* Input with Send button */
.send-message-box .form-control {
  border-radius: 2px 0 0 2px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 0.7rem;
  font-family: var(--defaultregular-font);
}

.send-message-box .btn-send {
  background-color: var(--black-color);
  color: #fff;
  border: none;
  border-radius: 0 2px 2px 0;
  padding: 0px 15px;
  font-weight: 600;
  transition: background 0.3s ease;
  font-size: 0.7rem;
}

.send-message-box .btn-send:hover {
  background-color: var(--accent-secondary-color);
}

/* Artist Interview */
.more-interviews .container {
  margin: 0 auto;
  padding: 0 120px;
}

.more-interviews .interview-card {
  border: 1px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  background: #272727;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  margin: 0 auto;
}

.more-interviews .interview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.more-interviews .interview-video {
  background: #353535;
  height: 200px;
  overflow: hidden;
}

.more-interviews h3 {
  font-size: 1.5rem;
  font-family: var(--defaultbold-font);
  margin-bottom: 2rem;
}

.interview-footer h5 {
  font-family: var(--defaultbold-font);
  font-size: 1.2rem;
  color: #F4D632;
}

.interview-footer p {
  font-family: var(--defaultmedium-font);
  font-size: 0.8rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .more-interviews .container {
    margin: 0 auto;
    padding: 0 10px;
  }

  .interview-footer h5 {
    font-size: 0.9rem;
  }

  .interview-footer p {
    font-size: 0.7rem;
  }
}




/************************************/
/***  Tickets Page css ***/
/************************************/
.our-ticket {
  padding: 20px 0;
}

.our-ticket .section-title.section-title-center {
  max-width: 850px;
}

.our-ticket-nav {
  margin-bottom: 40px;
}

.our-ticket-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  border: none;
}

.our-ticket-nav ul li button {
  border: none;
}

.our-ticket-nav ul li .nav-link {
  position: relative;
  font-family: var(--defaultextra-font);
  display: inline-block;
  font-size: 16px;
  line-height: 1em;
  background: transparent;
  background-size: auto;
  background-size: 200% auto;
  color: #3a675b;
  border: 1px solid #3a675b;
  border-radius: 20px;
  padding: 12px 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.our-ticket-nav ul li .nav-link.active,
.our-ticket-nav ul li .nav-link:focus,
.our-ticket-nav ul li .nav-link:hover {
  border-color: transparent;
  background: transparent;
  color: #FAF5E3;
  border-radius: 20px;
  font-family: var(--defaultextra-font);
  font-size: 16px;
}

.our-ticket-nav ul li .nav-link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  opacity: 0;
  background: #3a675b;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.our-ticket-nav ul li .nav-link.active::before,
.our-ticket-nav ul li .nav-link:focus::before,
.our-ticket-nav ul li .nav-link:hover::before {
  left: -5px;
  right: -5px;
  opacity: 1;
}

.ticket-tab-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticket-tab-list ul li {
  position: relative;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--text-color);
  padding-left: 30px;
  margin-bottom: 15px;
}

.ticket-tab-list ul li:last-child {
  margin-bottom: 0;
}

.ticket-tab-list ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
  font-weight: 400;
  background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.main-ticket {
  border: 0.1rem dashed #834E9A;
  background: #FAF5E3;
  padding: 30px;
  border-radius: 0;
  margin-bottom: 40px;
}

.main-ticket .side-text {
  font-family: var(--accent-font);
  color: #834E9A;
  font-size: 45px;
}

.main-ticket-inner {
  background: #834E9A;
  padding: 30px;
  color: #FAF5E3;
}

.main-ticket-inner h2 {
  font-size: 3.4rem;
  font-family: var(--accent-font);
  color: #FAF5E3;
}

.main-ticket-inner h3 {
  font-size: 2.4rem;
  font-family: var(--accent-font);
  color: #FAF5E3;
}

.ticket-details small {
  font-family: var(--defaultmedium-font);
  font-size: 1.3rem;
}

.ticket-details .amount {
  font-size: 0.85rem;
  font-weight: bolder;
}

.ticket-details .full {
  font-size: 0.6rem;
}

.ticket-details span {
  font-family: var(--defaultmedium-font);
  font-size: 0.85rem;
  color: #FAF5E3;
}

.ticket-details p {
  font-size: 0.75rem;
  font-family: var(--defaultmedium-font);
  color: #FAF5E3;
}

.ticket-dash {
  border: 1px dashed #FAF5E3; 
  width: 40%; 
  opacity: 1
}

.border-dashed {
  border-top: 2px dashed #FAF5E3;
  border-bottom: 2px dashed #FAF5E3;
}

.terms-link a {
  text-decoration: none;
  color: #FAF5E3;
  font-size: 0.8rem;
}

.terms-link a:hover {
  color: #fff;
}

.terms-link .arrow-wrapper .arrow-text {
  position: relative;
  z-index: 2;
  font-size: 10px;
}

.terms-link .arrow-wrapper .arrow-circle {
  position: absolute;
  right: -5px;
  top: 2px;
  width: 11px;
  height: 11px;
  background-color: var(--accent-tertiary-color);
  border-radius: 50%;
  z-index: 1;
}


/* CSR Impact Section */
.csr-impact {
  background: #834E9A; /* Deep purple */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 100px;
}

.csr-ticket-heading {
  font-size: 2.5rem;;
  font-family: var(--accent-font);
  color: #FAF5E3;
}

.csr-ticket-text {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #FAF5E3;
}

.term-list {
  padding-left: 0.8rem;
}

.term-list li {
  font-family: var(--defaultregular-font);
  font-size: 0.8rem;
}

.left-inner-cards .inner-card {
  background: #834E9A;
  min-height: 260px;
}

/* .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ddd;
  border-top: 3px solid #3A675B;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
} */

.loading-spinner{
  z-index: 1;
  background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.spinning-container,
.spinning{
  height: 60px;
  position: relative;
  width: 60px;
  border-radius: 100%;
}

.spinning-container{
	margin: 0 auto;
}

.spinning{
	border: 2px solid transparent;
	border-color: var(--accent-color) var(--accent-tertiary-color) var(--accent-color) var(--accent-tertiary-color);
	animation: rotate-spinning 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
	-webkit-animation: rotate-spinning 1.5s linear 0s infinite normal;
}

.spinning-container:hover .spinning,
.spinning-container .spinning{
	transition: all 0.5s ease-in-out;
}

#spinning-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-spinning{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}


/* Mobile */
@media (max-width: 768px) {
  .our-ticket {
    padding: 0;
  }
  .our-ticket-nav ul li .nav-link {
    font-size: 12px;
  }

  .our-ticket-nav ul li .nav-link.active,
  .our-ticket-nav ul li .nav-link:focus,
  .our-ticket-nav ul li .nav-link:hover {
      font-size: 12px;
  }

  .main-ticket .side-text {
    font-size: 30px;
  }

  .main-ticket-inner {
    padding: 12px;
  }

  .main-ticket-inner h2 {
    font-size: 1.4rem;
  }

  .main-ticket-inner h3 {
    font-size: 1.65rem;
  }

  .ticket-details small {
    font-size: 1rem;
  }

  .ticket-details .amount {
    font-size: 0.6rem;
    font-weight: bolder;
  }

  .ticket-details span {
    font-size: 0.75rem;
  }

  .ticket-details p {
    line-height: 1.2;
  }

  .ticket-dash {
    border: 1px dashed #FAF5E3; 
    width: 60%; 
    opacity: 1
  }
  
  .tick {
    padding: 0 20px !important;
  }

  .csr-impact {
    padding: 2rem 1.5rem;
  }
  .csr-ticket-heading {
    font-size: 1.5rem;
  }
  .csr-ticket-text {
    font-size: 0.8rem;
  }
}


/************************************/
/***  Footer section css ***/
/************************************/

/* Footer exact match */
.footer-red-section {
    background-color: var(--accent-tertiary-color);
    color: var(--primary-color);
}

.footer-title {
  font-family: var(--accent-font);
  text-transform: uppercase;
  font-size: 50px;
  color: #FAF5E3;
}
.footer-title-follow {
  font-family: var(--accent-font);
  text-transform: uppercase;
  font-size: 25px;
  color: #FAF5E3;
}

.footer-subtitle {
  font-family: var(--defaultregular-font);
  line-height: 1.3em;
  font-size: 16px;
  /* text-align: justify; */
}

.small {
  font-family: var(--defaultregular-font);
  line-height: 1.3em;
  font-size: 13px;
  /* text-align: justify; */
}

.footer-red-section a {
  color: #FAF5E3;
  text-decoration: none;
}

.quick-links li {
  font-family: var(--defaultregular-font);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.quick-links li:hover {
  text-decoration: underline;
}

.footer-social a {
  color: #FAF5E3;
  font-size: 1.9rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--black-color);
}

.footer-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  border-radius: 0;
  color: #FAF5E3;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.footer-form .form-control:focus {
  border-bottom-color: #FAF5E3;
  box-shadow: none;
  outline: none;
}

.footer-form .form-label {
  font-family: var(--defaultregular-font);
  font-weight: 500;
  color: #FAF5E3;
}

.footer-form .form-control::placeholder {
  font-family: var(--defaultregular-font);
  font-weight: 600;
  font-size: 11px;
  color: #FAF5E3;
}

.footer-form button {
  font-family: var(--defaultbold-font);
}

.footer-separator {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  margin: 100px 0px 0px 0px;
  line-height: 0.7em;
}

.footer-bottom-links li {
  color: #FAF5E3;
  font-size: 14px;
  font-family: var(--defaultregular-font);
  font-weight: 500;
  line-height: 1.5;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-logo {
  max-height: 200px;
}

.footer-sponsors img {
  height: 120px;
  margin-top: 20px;
}

.footer-black-bar {
  background-color: #231F20;
  color: #FAF5E3;
  font-family: var(--defaultbold-font);
  font-size: 0.7rem;
  }

  .sponsor-subtitle {
  font-family: var(--defaultmedium-font);
  font-size: 1.3rem
  }

@media (max-width: 768px) {
  .footer-social a {
    color: #FAF5E3;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
  }

  .footer-logo {
    max-height: 170px;
  }

  .footer-sponsors img {
    height: 90px;
    margin-top: 20px;
  }

  .footer-bottom-links {
    margin: 50px 0px 0px 0px;
  }

}