/*==========================*/
@import url("https://fonts.googleapis.com/css2?family=Protest+Riot&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  src:
    url("../fonts/Norwester-Regular.woff2") format("woff2"),
    url("../fonts/Norwester-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* Already optimized here */
  font-family: "Norwester";
}

/*==========================
ROOT
==========================*/
:root {
  --bg-black: #000;
  --bg-light: #121212;
  --white: #ffffff;
  --black: #000000;
  --border: #666666;
  --transition: 0.4s ease;
  --bg-dardred: #792229;
  --yellow: #f59e0b;
  --font-family: "Poppins";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--white);
}

a {
  text-decoration: none;
  color: var(--bg-black);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

ul,
li {
  list-style: none;
}

p,
span {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black);
}

strong {
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
}

/* Applying content-visibility for large below-fold sections to boost initial load */
.food_stall_sc,
.sponsor_sec,
.faq_sec,
.footer_sec,
.about_sec_second,
.spaces_sec,
.our_artist_sec {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
  /* Provides layout hint */
}

/*==========================
ABOUT GALLERY — RESPONSIVE FIX (scoped only)
==========================*/
.about_sec_second .about_gallery {
  padding: 0 clamp(15px, 4vw, 40px) clamp(20px, 5vw, 40px) 0;
}

.about_sec_second .about_img_big img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about_sec_second .about_img_small {
  width: clamp(120px, 32vw, 300px);
  max-height: none;
  /* let aspect-ratio control height instead */
  bottom: clamp(-20px, -3vw, 0px);
}

.about_sec_second .about_img_small img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: auto;
}

.about_sec_second .about_days {
  width: clamp(55px, 8vw, 90px);
  height: clamp(55px, 8vw, 90px);
  left: clamp(-15px, -2vw, -30px);
  top: clamp(-15px, -2vw, -30px);
}

.about_sec_second .about_days h2 {
  font-size: clamp(18px, 3vw, 35px);
}

.about_sec_second .about_days p {
  font-size: clamp(9px, 1.2vw, 14px);
}

.about_sec_second .shape_circle {
  width: clamp(120px, 20vw, 220px);
  height: clamp(120px, 20vw, 220px);
  bottom: clamp(-25px, -4vw, -40px);
  left: clamp(-40px, -6vw, -70px);
}

.about_sec_second .about_content {
  padding-left: clamp(0px, 4vw, 40px);
}

/* Extra safety for very small phones */
@media screen and (max-width: 380px) {
  .about_sec_second .about_img_small {
    width: 38%;
  }

  .about_sec_second .about_days {
    left: 0px;
    top: -15px;
  }
}

/*==========================
WATCH LIVE BUTTON — highlighted state
==========================*/
.watch_live_wrap {
  animation: watchLiveFadeIn 0.6s ease both;
}

.watch_live_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e63946, #ff4d4d);
  border-color: transparent;
  box-shadow:
    0 0 0 0 rgba(230, 57, 70, 0.6),
    0 8px 25px rgba(230, 57, 70, 0.35);
  animation: watchLivePulse 2s ease-in-out infinite, bannerFadeUp 1s ease 0.6s both;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.watch_live_btn:hover {
  background: linear-gradient(135deg, #ff4d4d, #e63946);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 0 rgba(230, 57, 70, 0.6),
    0 12px 30px rgba(230, 57, 70, 0.45);
}

.watch_live_btn .live_dot {
  width: 10px;
  height: 10px;
  margin-right: 4px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: liveDotBlink 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.watch_live_wrap.live_now {
  margin-top: 10px;
}

.watch_live_wrap.live_now .watch_live_btn {
  padding: 18px 45px;
  font-size: 18px;
}

@keyframes watchLivePulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(230, 57, 70, 0.55),
      0 8px 25px rgba(230, 57, 70, 0.35);
  }

  70% {
    box-shadow:
      0 0 0 14px rgba(230, 57, 70, 0),
      0 8px 25px rgba(230, 57, 70, 0.35);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(230, 57, 70, 0),
      0 8px 25px rgba(230, 57, 70, 0.35);
  }
}

@keyframes liveDotBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes watchLiveFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cooming_soon_sec_second .site_btn--outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.cooming_soon_sec_second .site_btn--outline:hover {
  background: #ffffff;
  color: var(--bg-dardred);
}

/* Buttons */
.site_btn {
  background-color: var(--bg-dardred);
  color: var(--white);
  border-color: var(--bg-dardred);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  animation: bannerFadeUp 1s ease 0.6s both;
  display: inline-block;
}

.site_btn:hover {
  background-color: var(--yellow);
  color: var(--white);
}

/* Typography */
.sec_title,
.sec_title span {
  font-family: "Norwester";
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.sec_label {
  display: inline-block;
  color: var(--bg-dardred);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
}

.sec_title span {
  display: block;
  color: var(--yellow);
  font-size: 30px;
  font-weight: 400;
}

/*==========================
EVENT MARQUEE
==========================*/
.event_marquee {
  position: relative;
  overflow: hidden;
  z-index: 12;
  background: var(--bg-dardred);
}

.event_marquee__wrap {
  overflow: hidden;
  padding: 17px 0;
}

.event_marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 60s linear infinite;
  will-change: transform;
}

.event_marquee__track:hover {
  animation-play-state: paused;
}

.event_marquee__list {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  flex-shrink: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

.about_sec_img img {
  width: 100%;
  position: relative;
  z-index: 2;
  max-height: 440px;
  object-fit: cover;
}

.event_marquee__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.event_marquee__list li span {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0px;
  display: inline-block;
  color: var(--white);
}

.event_marquee__list li span:last-child {
  color: var(--white);
}

.event_marquee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--bg-dardred);
  border-radius: 50%;
  font-size: 12px;
  color: var(--bg-dardred);
  flex-shrink: 0;
  animation: marqueePulse 2s ease-in-out infinite;
}

.event_marquee__list li:nth-child(3) .event_marquee__badge {
  animation-delay: 0.4s;
}

.event_marquee__list li:nth-child(5) .event_marquee__badge {
  animation-delay: 0.8s;
}

.event_marquee__sep {
  color: var(--yellow);
  font-size: 10px;
  opacity: 0.7;
  animation: marqueeSpin 6s linear infinite;
  display: flex;
  align-items: center;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.event_marquee::before,
.spaces_sec::before,
.cooming_soon_sec_second::before,
.food_stall_sc::before,
.faq_sec::before,
.story_sec .container::before {
  position: absolute;
  content: "";
  height: 13px;
  width: 100%;
  background: url("../img/arrow-white.webp") center center / 9px;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.event_marquee::after,
.spaces_sec::after,
.cooming_soon_sec_second:after,
.food_stall_sc::after,
.faq_sec::after,
.story_sec .container::after {
  position: absolute;
  content: "";
  height: 13px;
  width: 100%;
  background: url("../img/arrow-white.webp") center center / 9px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

/*==========================
HEADER css
==========================*/
.site-header {
  transition: box-shadow 0.3s, background-color 0.3s;
  background-color: var(--bg-dardred);
  padding: 10px 0px 28px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  isolation: isolate;
}

.site-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.site-header.sticky {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  /* padding: 5px 0 24px 0; */
}

.site-header .site-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  line-height: 1.1;
}

.site-header .site-logo img {
  max-width: 85px;
  transition: all 0.3s;
}

header.site-header.sticky .site-logo img {
  max-width: 70px;
}

.site-header .site-logo:hover {
  color: var(--white);
  opacity: 0.9;
}

.site-header .menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-header .menu-toggle span {
  display: block;
  width: 32px;
  height: 1.5px;
  background-color: var(--white);
  transition: var(--transition);
}

.site-header .menu-toggle span:nth-child(2) {
  width: 40px;
}

.site-header .menu-toggle:hover span {
  opacity: 0.8;
}

.site-header .site-menu {
  background-color: var(--bg-dardred);
  color: var(--white);
  width: 400px;
  z-index: 1060;
}

.site-header .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
}

.site-header .offcanvas-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-header .offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 30px;
}

.site-header .site-menu__list li {
  margin-bottom: 20px;
}

.site-header .site-menu__list a {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 5px 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.site-header .site-menu__list a:hover {
  color: var(--white);
  opacity: 0.75;
  padding-left: 8px;
}

.site-header .social__list ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .social__list li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: var(--white);
}

.site-header .social__list h5 {
  padding-bottom: 20px;
  border-top: 1px solid #822430;
  padding-top: 20px;
}

.site-header .social__list li a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.header_right_mian {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_social ul {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
}

.header_social ul li a {
  color: var(--white);
  font-size: 25px;
  padding: 0 5px;
  margin: 0 5px;
  position: relative;
  line-height: 1;
}

.header_social ul li a:hover {
  color: var(--yellow);
}

.header_social ul li.facebokk-cover a {
  font-size: 24px;
}

.site-header::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 100%;
  background: url("../img/arrow-white.webp") center center / 9px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

/*==========================
BANNER SEC
==========================*/
.banner_sec {
  position: relative;
  width: 100%;
  background: var(--bg-dardred);
  overflow: hidden;
}

.banner_sec:before {
  display: none;
}

/* Media should determine banner height */
.banner_sec__media {
  position: relative;
  width: 100%;
  /* aspect-ratio: 16 / 5; */
  /* background: var(--bg-dardred); */
  overflow: hidden;
}

.banner_sec__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* .banner_sec__media:hover::after {
  background: rgba(0, 0, 0, 0.15);
} */

/* Image */
.banner_sec__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--bg-dardred);
}

/* Video */
.banner_sec__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--bg-dardred);
}

/* Banner desktop/mobile image visibility */
.banner-desktop {
  display: block;
}

.banner-mobile {
  display: none;
}

/* Embla */
.banner_embla {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner_embla__container {
  display: flex;
  width: 100%;
}

.banner_embla__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  background: var(--bg-dardred);
}

.banner_placeholder {
  min-height: 320px;
}

.banner_placeholder__inner {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.04) 100%);
  animation: bannerShimmer 1.5s infinite;
}

@keyframes bannerShimmer {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

@keyframes bannerVideoZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.banner_sec__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

/* .banner_sec__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(
    0deg,
    rgb(0 0 0) 0%,
    rgb(116 11 25 / 60%) 100%
  );
} */

.banner_sec__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  pointer-events: none;
}

.banner_sec__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
}

h1.banner_sec__title,
h1.banner_sec__title span {
  font-family: Norwester;
  font-size: 50px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--white);
  padding-bottom: 20px;
  line-height: 1;
  letter-spacing: 3px;
}

h1.banner_sec__title span {
  color: var(--yellow) !important;
}

p.banner_sec__subtitle {
  font-size: 18px;
  color: var(--white);
  padding-bottom: 20px;
  font-weight: 400;
}

.banner_sec a.site_btn {
  background: var(--white);
  color: var(--black);
}

/* .banner_sec a.site_btn:hover {
  background: var(--bg-dardred);
  color: var(--white);
} */

/*==========================
coming soon SEC
==========================*/
.cooming_soon_sec_second {
  padding: 80px 0;
  background-color: var(--bg-dardred);
  text-align: center;
  position: relative;
}

.cooming_soon_sec_second .container {
  position: relative;
  z-index: 2;
}

.cooming_soon_sec_second h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cooming_soon_sec_second p {
  color: #ececec;
  max-width: 700px;
  margin: auto;
  line-height: 1.3;
}

.cooming_soon_sec_second .coming_counter {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cooming_soon_sec_second .time_box {
  width: 100%;
  height: 110px;
  max-width: 170px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 120, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}

.cooming_soon_sec_second .time_box:hover {
  transform: translateY(-8px);
  border-color: #f5c15c;
}

.cooming_soon_sec_second .sec_label {
  color: var(--white);
}

.cooming_soon_sec_second .time_box span {
  font-family: Norwester;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.cooming_soon_sec_second .time_box small {
  margin-top: 10px;
  color: #fbfbfb;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* food section css */
.festival_view_all_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.food_stall_sec {
  background: #fffff4;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.food_stall_sec .container,
.events_sec {
  position: relative;
  z-index: 1;
}

.events_main {
  overflow: visible;
  padding: 40px 0 0 0;
  overflow-x: hidden;
}

.events_main .swiper-wrapper {
  transition-timing-function: linear !important;
}

.events_main .swiper-slide {
  transition: 0.45s;
}

.events_main .event_card {
  border-radius: 20px;
  overflow: hidden;
  background:
    url("../img/red-logo.webp") center center / 70% auto no-repeat,
    /* url("../img/pattern-bg.webp") center center / cover no-repeat, */
    #fffff4;
  transition: all 0.3s;
  height: 100%;
}

.events_main img,
.events_main video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  /* aspect-ratio: 16/9; */
}

.events_sec h2.sec_title {
  margin: 0px;
}

.events_main .event_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

/*==========================
faq section css
==========================*/
.faq_sec {
  background: var(--bg-dardred);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq_sec .faq_main span.sec_label,
.faq_sec .faq_main h2.sec_title {
  color: var(--white);
}

.faq_sec .faq_accordion .accordion-item {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq_sec div#faqAccordion {
  max-width: 700px;
  margin: 0 auto;
}

.faq_sec .faq_main {
  position: relative;
  z-index: 1;
}

.faq_sec .faq_accordion .accordion-button {
  background: var(--white);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 19px;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.faq_sec .faq_accordion .accordion-button:not(.collapsed) {
  background: var(--white);
  color: #000;
}

.faq_sec .faq_number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #f5c15c;
  color: var(--bg-dardred);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-weight: 700;
  font-size: 14px;
}

.faq_sec .faq_accordion .accordion-body {
  color: var(--black);
  padding: 0 20px 11px 75px;
  font-size: 16px;
  line-height: 1.2;
}

.faq_sec .faq_accordion .accordion-button::after {
  background-image: none;
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: none;
}

.faq_sec .faq_accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background-image: none;
}

.faq_sec .faq_accordion .accordion-button:focus {
  box-shadow: none;
}

.faq_sec .faq_heading {
  padding-bottom: 10px;
}

/* sponsor css */
.sponsor_sec {
  padding: 100px 0 100px;
  background: #fffff4;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.pointer-event-none {
  cursor: none;
}

.sponsor_sec .section_heading {
  text-align: center;
  margin-bottom: 70px;
}

.section_heading img {
  max-width: 130px;
  margin: 0 auto;
}

.sponsor_sec .sponsor_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sponsor_sec .sponsor_card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 45px 10px 20px;
  text-align: center;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.sponsor_sec .sponsor_card:hover {
  box-shadow: 0 0px 35px rgb(0 0 0 / 16%);
}

.sponsor_sec .sponsor_tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dardred);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--bg-dardred);
}

.sponsor_sec .sponsor_logo {
  flex-wrap: wrap;
  row-gap: 15px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor_sec .sponsor_logo img {
  max-width: 150px;
  padding: 0 15px;
  transition: all 0.3s;
}

.sponsor_sec .sponsor_logo img:hover {
  transform: scale(1.07);
}

.sponsor_sec .sponsor_grid_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* about css start */
.about_sec_second {
  position: relative;
  background: #fffff4;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.about_sec_second .about_gallery {
  position: relative;
  padding: 0px 40px 40px 0px;
}

.about_sec_second .about_img_big {
  overflow: hidden;
}

.about_sec_second .about_img_big img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.about_sec_second .about_content {
  padding-left: 40px;
}

.about_sec_second .about_img_small {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 300px;
  overflow: hidden;
  max-height: 300px;
}

.about_sec_second .about_img_small img {
  width: 100%;
  display: block;
  border: 3px solid var(--white);
  border-radius: 10px;
}

.about_sec_second .about_days {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  background: var(--bg-dardred);
  border-radius: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--white);
  z-index: 1;
}

.about_sec_second .about_days h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
}

.about_sec_second .about_days p {
  margin: 0;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.about_sec_second .shape_circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(116, 11, 25, 0.15);
  border-radius: 50%;
  bottom: -40px;
  left: -70px;
}

.about_sec_second .about_content>p {
  color: #333333;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 20px;
}

.about_sec_second .about_legacy {
  background: #eee1da;
  border-left: 3px solid var(--bg-dardred);
  padding: 15px 20px;
  border-radius: 20px;
}

.about_sec_second .about_legacy h5 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--black);
}

/* spaces css */
.spaces_sec {
  padding: 100px 0 100px 0;
  background: var(--bg-dardred);
  overflow: hidden;
  position: relative;
}

.spaces_sec .section_heading {
  text-align: center;
  padding-bottom: 20px;
}

.spaces_sec .section_heading span.sec_label {
  color: var(--white);
}

.spaces_sec .section_heading h2.sec_title {
  color: var(--white);
}

.spaces_sec .space_item {
  display: flex;
  align-items: center;
  position: relative;
}

.spaces_sec .space_img {
  width: 58%;
  min-height: 450px;
  overflow: hidden;
}

.spaces_sec .space_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  min-height: inherit;
}

.spaces_sec .space_content {
  width: 48%;
  margin-left: -90px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  padding: 82px 50px 50px;
  border-radius: 10px;
  box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.spaces_sec .space_no {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 80px;
  font-weight: 800;
  color: rgb(153 153 153 / 8%);
}

.spaces_sec .space_content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-family: Norwester;
}

.spaces_sec .space_content p {
  line-height: 1.4;
  color: #333333;
  margin-bottom: 40px;
}

.spaces_sec .spaces_navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.spaces_sec .space_prev,
.spaces_sec .space_next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--bg-dardred);
  cursor: pointer;
  transition: 0.4s;
}

.spaces_sec .space_prev:hover,
.spaces_sec .space_next:hover {
  background: var(--yellow);
  color: var(--white);
}

.spaces_sec .spaces_dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 8px;
}

.spaces_sec .spaces_dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #d7d7d7;
  transition: 0.3s;
  padding: 0;
  display: inline-block;
}

.spaces_sec .spaces_dot.active {
  width: 36px;
  border-radius: 20px;
  background: var(--yellow);
}

/* Artist Section */
.our_artist_sec {
  padding: 100px 0;
  background: #fffff4;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.our_artist_sec .artist_card {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

/* .artist_card .artist_img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 4/3;
} */
.artist_card.artist_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: auto;
  /* Removes the forced aspect ratio that caused the zoom */
}

/* Food Stall SC */
.food_stall_sc {
  padding: 100px 0;
  background: var(--bg-dardred);
  overflow: hidden;
  position: relative;
}

.food_stall_sc .stall_content {
  color: var(--white);
}

.food_stall_sc .stall_content>p {
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 30px;
}

.food_stall_sc .stall_box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.food_stall_sc .stall_icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  color: var(--bg-dardred);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.food_stall_sc .stall_box h4 {
  font-size: 20px;
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.food_stall_sc .stall_box p {
  margin: 5px 0 0;
  color: #ddd;
  font-size: 14px;
}

.food_stall_sc .stall_image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.food_stall_sc .stall_image img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  min-height: 540px;
}

.food_stall_sc .stall_image:hover img {
  transform: scale(1.08);
}

.food_stall_sc .stall_form {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 82%;
  background: #1818183d;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

.food_stall_sc .stall_form h4 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}

.food_stall_sc .stall_form input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 18px;
  margin-bottom: 10px;
  outline: none;
  background: #ffffff;
  color: #111111;
}

.food_stall_sc .stall_form input::placeholder {
  color: #555555;
}

.food_stall_sc .stall_form button.site_btn {
  border: 0px;
  margin-top: 10px;
}

.food_stall_sc h2.sec_title span {
  display: block;
  margin: 0px;
}

/* Footer section css */
.footer_sec {
  background: #fffff4;
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 30px 50px 220px 50px;
  position: relative;
  overflow: hidden;
}

.footer_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg2.webp") center no-repeat;
  background-size: cover;
  opacity: 0.03;
}

.footer_sec::after {
  background: url("../img/ahd.webp");
  position: absolute;
  content: "";
  left: 0;
  bottom: 64px;
  width: 100%;
  height: 177px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 
.footer-contact-info p{
  margin-bottom: 12px;
} */

.footer_sec .footer_logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer_sec .footer_logo img {
  max-width: 120px;
}

.footer_sec.sec_title {
  margin-bottom: 20px !important;
}

.footer_cta_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer_sec .footer_content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer_sec .footer_content h2 {
  margin-bottom: 20px;
}

.footer_sec .footer_social {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer_sec .footer_social span {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
}

.footer_sec .footer_social ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
}

.footer_sec .footer_social ul li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-dardred);
  color: var(--white);
  font-size: 20px;
  transition: 0.4s;
}

.footer_content h6 {
  font-size: 30px;
  margin-bottom: 20px;
}

.footer_sec .footer_social ul li a:hover {
  background: var(--yellow);
}

.footer_sec .footer_social .footer-contact-info p {
  margin: 0 0 15px 0;
  text-align: center;
}

.footer_sec .footer_social .footer-contact-info h4 {
  margin-bottom: 10px;
}

.footer_sec .footer_social .footer-contact-info a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.footer_sec .footer_social .footer-contact-info a:hover {
  color: var(--yellow);
}

.footer_sec span.footer_sub_heading {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 5px;
  font-family: Norwester;
  font-size: 20px;
}

.jc-logo h6 {
  font-weight: normal;
  font-family: "Norwester";
  padding: 0px 0 10px;
  font-size: 20px;
  margin: 0px;
}

.jc-logo ul {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
}

.jc-logo ul li {
  padding: 10px 15px;
  display: inline-block;
}

.jc-logo ul li img {
  height: 85px;
}

.footer_sec .footer_social .footer-contact-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 20px;
  gap: 5px;
}

/*==========================
coming soon SEC sticky
==========================*/
.cooming_soon_sec_new {
  padding: 7px 0;
  background-color: var(--bg-dardred);
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 20px #0000004d;
}

.cooming_soon_sec_new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg2.webp) center no-repeat;
  background-size: cover;
  opacity: 0.09;
}

.cooming_soon_sec_new h2 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 30px;
}

.tiler_head {
  text-align: left;
}

.cooming_soon_sec_new .container {
  display: grid;
  align-items: center;
  gap: 180px;
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
}

.cooming_soon_sec_new h2 span {
  font-size: 20px;
  margin: 0px;
  display: inline-block;
}

.cooming_soon_sec_new .coming_counter {
  margin-top: 0px;
  display: flex;
  justify-content: end;
  gap: 10px;
  flex-wrap: nowrap;
}

.cooming_soon_sec_new .time_box {
  width: 100%;
  height: 100%;
  max-width: 80px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 120, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
  padding: 8px;
}

.cooming_soon_sec_new .time_box span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  font-family: "Norwester";
}

.cooming_soon_sec_new .time_box small {
  margin-top: 2px;
  color: #fbfbfb;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1;
}

.cooming_soon_sec_new .start_time_main {
  display: grid;
  grid-template-columns: 300px auto;
  align-items: center;
}

/* Thank You Modal */
#thankYouModal .modal-dialog {
  max-width: 500px;
}

#thankYouModal .modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fffff4;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

#thankYouModal .modal-body {
  position: relative;
  padding: 50px 30px 30px;
  text-align: center;
}

#thankYouModal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

#thankYouModal .modal-body::before {
  content: "✓";
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: green;
  color: #fff;
  font-size: 24px;
  outline: 1px solid green;
  outline-offset: 2px;
}

.modal-backdrop {
  z-index: -1 !important;
}

/* book now sticky section */
.book_now_mian .container {
  display: grid;
  grid-template-columns: 330px auto;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.book_now_mian {
  padding: 7px 0;
  background-color: var(--bg-dardred);
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 20px #0000004d;
}

.book_now_mian .site_btn img {
  max-width: 102px;
}

.book_now_mian .btn_grp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.book_now_mian .site_btn:last-child {
  border: 1px solid #ffffff;
  background: transparent;
}

.book_now_mian .site_btn:last-child:hover {
  background-color: #ffffff;
  color: #000000;
}

.book_now_mian .site_btn:first-child {
  padding: 5px 20px;
}

.book_now_mian .site_btn:first-child:hover {
  background-color: #8201fb;
}

.book_now_mian .booking_text h2.sec_title {
  margin: 0px;
  color: #ffffff;
  font-size: 24px;
  text-align: left;
}

.book_now_mian .booking_text h2.sec_title span {
  font-size: 22px;
  display: inline;
}

.sponsor_card_reliance {
  box-shadow: 0 0px 35px rgb(0 0 0 / 16%);
  background: var(--white);
  border-radius: 20px;
  padding: 40px 10px 40px;
  text-align: center;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  max-width: 400px;
  margin: 0 auto;
}

.sponsor_sec h2.sec_title.rimg {
  margin-bottom: 30px;
}

.about_legacy p {
  margin: 0px;
}

.spaces_sec .space_content p:last-child {
  margin-bottom: 0px;
}

.jc-logo ul {
  padding: 0;
  margin: 0;
}

.copyright_main {
  border-top: 1px solid #dcdcdc;
  margin-top: 10px;
  padding-top: 20px;
  margin-bottom: 60px;
}

.copyright_main a:hover {
  color: var(--yellow);
}

.copyright_main p a {
  font-weight: 600;
  color: var(--bg-dardred);
}

.copyright_main p,
.copyright_main p a {
  text-transform: capitalize;
  font-size: 6px;
}

/*----------- responsive css start--------------- */

@media screen and (max-width: 1360px) {

  .about_sec_second,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 80px 0;
  }

  h1.banner_sec__title,
  h1.banner_sec__title span {
    font-size: 45px;
  }
}

@media screen and (max-width: 1200px) {
  .spaces_sec .space_img {
    width: 57%;
    min-height: 400px;
  }

  .festival_view_all_btn {
    padding-top: 25px;
  }

  .spaces_sec .space_content {
    width: 53%;
    padding: 40px 25px 30px;
  }

  .spaces_sec .space_content p {
    line-height: 1.3;
    margin-bottom: 22px;
  }

  .events_main img,
  .events_main video {
    min-height: 350px;
  }

  .about_sec_second .about_img_small {
    width: 220px;
    max-height: 220px;
  }

  .sec_title,
  .sec_title span {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .spaces_sec .space_prev,
  .spaces_sec .space_next {
    width: 45px;
    height: 45px;
  }

  .about_sec_second .about_content {
    padding-left: 20px;
  }

  .about_sec_second .about_content>p {
    line-height: 1.3;
  }

  .spaces_sec .space_no {
    right: 20px;
    top: 20px;
    font-size: 55px;
  }

  .food_stall_sc .stall_icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }

}

@media screen and (max-width: 1024px) {
  .spaces_sec .spaces_dots {
    margin: 0px;
    gap: 6px;
  }

  .sec_title,
  .sec_title span {
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  h1.banner_sec__title,
  h1.banner_sec__title span {
    font-size: 38px;
  }

  .about_sec_second .container {
    max-width: 100% !important;
  }

  .about_sec_second .about_img_small {
    width: 230px;
    max-height: 230px;
  }

  .cooming_soon_sec_second .coming_counter {
    gap: 10px;
  }

  .cooming_soon_sec_second .time_box span {
    font-size: 32px;
  }

  .cooming_soon_sec_second .time_box {
    max-width: 170px;
    border-radius: 15px;
    padding: 18px 10px;
    height: auto;
  }

  .sponsor_sec .section_heading {
    margin-bottom: 50px;
  }

  .sponsor_sec .sponsor_logo img {
    padding: 0 8px;
  }

  .book_now_mian .container {
    max-width: 100%;
  }

  .header_social ul li.facebokk-cover a {
    font-size: 20px;
  }

}







@media screen and (max-width: 991px) {
  .about_sec_second .about_content {
    padding-left: 0px;
  }

  .about_sec_second .about_img_small {
    width: 220px;
    max-height: 220px;
  }

  .sponsor_sec .sponsor_tag {
    padding: 4px 10px;
    font-size: 14px;
  }

  .sponsor_sec .sponsor_logo img {
    max-width: 110px;
  }

  .spaces_sec .container {
    max-width: 100%;
  }

  .events_main {
    padding: 25px 0 0 0;
  }

  .sponsor_sec h2.sec_title.rimg {
    margin-bottom: 25px;
  }


}

@media screen and (max-width: 800px) {
  .about_sec_second .about_img_small {
    width: 170px;
    max-height: 170px;
  }
}




@media screen and (max-width: 767px) {
  .stall_box_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }

  .food_stall_sc .stall_form {
    border-radius: 12px;
  }

  .banner-mobile {
    display: block;
  }

  /* .banner-desktop {
    display: none;
  } */

  .about_sec_second,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 60px 0;
  }

  .sponsor_sec .sponsor_grid_row {
    row-gap: 30px;
  }

  .sponsor_sec .sponsor_grid {
    gap: 10px;
    margin-top: 25px;
  }

  .spaces_sec .space_item {
    flex-direction: column;
  }

  .footer_sec span.footer_sub_heading {
    font-size: 18px;
    padding-bottom: 2px;
  }

  .footer_sec .footer_social span {
    font-size: 16px;
    word-break: inherit;
  }

  .spaces_sec .space_img {
    min-height: 300px;
    width: 100%;
  }

  .spaces_sec .space_content {
    width: calc(100% - 30px);
    margin: -30px 0 0 0;
  }

  .cooming_soon_sec_second .time_box {
    max-width: 130px;
    padding: 14px 10px;
  }

  .cooming_soon_sec_second .coming_counter {
    margin-top: 22px;
  }





}

@media screen and (max-width: 575px) {
  .stall_box_inner {
    grid-template-columns: 1fr;
  }

  .about_sec_second .about_img_big {
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .about_sec_second .about_img_small {
    display: flex;
    justify-content: space-evenly;
  }

  .about_sec_second .about_img_big img {
    width: 70%;
    display: block;
    border-radius: 10px;
    padding: 1%;
  }

  .about_sec_second,
  .Information_sec,
  .our_artist_sec,
  .cooming_soon_sec_second,
  .food_stall_sc,
  .food_stall_sec,
  .spaces_sec,
  .sponsor_sec,
  .faq_sec {
    padding: 40px 0;
  }

  .site-header {
    padding: 6px 0 12px;
  }

  h1.banner_sec__title,
  .inner_banner_title,
  h1.banner_sec__title span {
    font-size: 30px;
    padding-bottom: 0;
    margin: 0;
  }

  .header_social ul li.facebokk-cover a {
    font-size: 17px;
  }

  .header_social ul li a {
    font-size: 19px;
    padding: 0 4px;
    margin: 0 4px;
  }

  .header_social ul {
    margin: 0;
  }

  .site_btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  .site-header .site-logo img {
    max-width: 75px;
  }

  p.banner_sec__subtitle {
    font-size: 16px;
    color: var(--white);
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .about_sec_second .about_days {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    left: 10px;
  }

  .about_sec_second .about_img_small {
    width: 200px;
  }

  .about_sec_second .about_days h2 {
    font-size: 24px;
  }

  .sec_title,
  .sec_title span {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .sec_label {
    font-size: 16px;
  }

  .sec_title span {
    font-size: 22px;
  }

  .about_sec_second .about_content>p {
    line-height: 1.2;
    font-size: 15px;
  }

  .about_sec_second .about_legacy {
    padding: 15px 10px;
    border-radius: 10px;
  }

  .about_sec_second .about_legacy p {
    line-height: 20px;
  }

  .spaces_sec .space_content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .spaces_sec .space_prev,
  .spaces_sec .space_next {
    width: 40px;
    height: 40px;
  }

  .our_artist_sec h2.sec_title {
    margin-bottom: 6px;
  }

  .events_main {
    padding: 20px 0 0;
  }

  p,
  span,
  strong {
    font-size: 15px;
    line-height: 20px;
  }

  .artist_card .artist_img img {
    border-radius: 10px;
    width: 100%;
  }

  .cooming_soon_sec_second h2 {
    margin-bottom: 0;
  }

  .cooming_soon_sec_second .coming_counter {
    gap: 10px;
  }

  .cooming_soon_sec_second .time_box {
    height: 80px;
    max-width: calc(50% - 6px);
    border-radius: 8px;
  }

  .cooming_soon_sec_second .time_box span {
    font-size: 30px;
  }

  .food_stall_sc .stall_content>p {
    line-height: 1.2;
  }

  .food_stall_sc .stall_box {
    gap: 12px;
    padding: 10px;
  }

  .food_stall_sc .stall_box h4 {
    font-size: 16px;
  }

  .food_stall_sc .stall_icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 10px;
    gap: 10px;
  }

  .food_stall_sc .stall_image img {
    min-height: 380px;
  }

  .food_stall_sc .stall_form {
    width: 90%;
    padding: 20px 15px;
  }

  .food_stall_sc .stall_form h4 {
    font-size: 22px;
  }

  .food_stall_sc .stall_form input {
    height: 40px;
    font-size: 14px;
  }

  .sponsor_sec .sponsor_card {
    padding: 35px 10px 20px;
  }

  .sponsor_sec .sponsor_logo img {
    max-width: 130px;
    padding: 0 12px;
  }

  .sponsor_sec .sponsor_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .sponsor_sec .section_heading {
    margin-bottom: 40px;
  }

  .faq_sec .faq_accordion .accordion-button {
    padding: 10px 12px;
  }

  .faq_sec .faq_accordion .accordion-body {
    font-size: 15px;
    padding: 0 20px 11px 54px;
  }

  .faq_sec .faq_number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-weight: 600;
    font-size: 13px;
    margin-right: 10px;
  }

  .footer_sec .footer_logo img {
    max-width: 100px;
  }

  .footer_sec .footer-contact-info li h4 {
    margin: 0;
  }

  .footer_sec .footer-contact-info li h4 span {
    font-size: 14px;
    margin-bottom: 0;
  }

  .footer_sec .footer_social {
    gap: 10px;
  }

  .footer_sec .footer_social .footer-contact-info {
    gap: 0px;
    padding-left: 0;
    list-style: none;
    align-items: center;
  }

  .footer_sec .footer_social .footer-contact-info a {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    /* color: var(--bg-dardred); */
    font-size: 16px;
    display: inline;
  }

  .footer_sec .footer_social .footer-contact-info a:hover {
    color: var(--yellow);
  }

  .cooming_soon_sec_new .start_time_main {
    display: grid;
    grid-template-columns: 75px auto;
    align-items: center;
  }

  .cooming_soon_sec_new .coming_counter {
    gap: 5px;
  }

  .cooming_soon_sec_new h2,
  .cooming_soon_sec_new h2 span {
    font-size: 13px;
  }

  .cooming_soon_sec_new .time_box {
    padding: 5px;
    max-width: max-content;
    border-radius: 8px;
  }

  .cooming_soon_sec_new .time_box span {
    font-size: 16px;
    font-weight: 400;
  }

  .cooming_soon_sec_new .time_box small {
    font-size: 10px;
  }

  .cooming_soon_sec_new .start_time_main {
    display: grid;
    align-items: center;
  }



  .footer_sec:after {
    left: 0;
    bottom: 53px;
    width: 100%;
    height: 104px;
    background-position: center center;
  }

  .footer_sec:after {
    left: 0;
    bottom: 53px;
    width: 100%;
    height: 104px;
    background-position: center center;
  }

  .footer_sec {
    padding: 40px 0 155px;
  }

  .banner_sec {
    min-height: 100%;
  }

  .about_sec_second .about_days p {
    letter-spacing: 0px;
    font-size: 11px;
  }

  .section_heading img {
    max-width: 110px;
    margin: 0 auto;
  }

  .sponsor_card_reliance {
    padding: 45px 10px 45px;
  }

  .copyright_main p,
  .copyright_main p a {
    margin-bottom: 0px;
  }

  .events_main img,
  .events_main video {
    height: 280px;
    object-fit: cover;
  }

  .cooming_soon_sec_second .time_box {
    max-width: calc(50% - 6px);
  }

  .sponsor_sec .sponsor_grid,
  .sponsor_sec .sponsor_grid_row {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .food_stall_sc .stall_form {
    width: 90%;
    padding: 20px 15px;
  }

  .spaces_sec .space_content {
    width: calc(100% - 40px);
    margin-top: -40px;
    padding: 30px 16px 20px;
  }

  .start_time_main {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }


  .footer_sec::after {
    bottom: 53px;
    height: 104px;
  }

  .cooming_soon_sec_new .start_time_main {
    grid-template-columns: 75px auto;
    align-items: center;
  }

  .cooming_soon_sec_new .time_box {
    padding: 5px;
    border-radius: 8px;
  }
}

.food_stall_sc .stall_content h2.sec_title {
  color: var(--white);
}

.mobile-no {
  font-size: 20px !important;
  font-weight: 600 !important;
  /* display: none !important; */
  background: none !important;
  color: #000 !important;
  white-space: nowrap !important;
}

/* Instagram Gallery */
.instagram_gallery_wrap {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.instagram_gallery_wrap::-webkit-scrollbar {
  display: none;
}

.instagram_reel_card {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  height: 560px;
  background: var(--bg-dardred) url("../img/pattern-bg.webp") center / cover no-repeat;
}

.instagram_reel_card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =========================================================
   RESPONSIVE HEADER
   Does not change desktop design
   ========================================================= */

/* Keep the current desktop layout */
.header-row {
  align-items: center;
}

.header-logo-col {
  display: flex;
  align-items: center;
}

.header-tagline-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-social-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_right_mian {
  width: 100%;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 991px) {

  .header-tagline-col {
    flex: 1.5;
  }

  .site-tagline {
    font-size: 14px;
    line-height: 18px;
  }

  .header_social ul li a {
    font-size: 20px;
    padding: 0 3px;
    margin: 0 2px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

  .site-header .container {
    width: 100%;
  }

  .header-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }

  /* Logo */
  .header-logo-col {
    flex: 0 0 auto;
    width: auto;
  }

  .site-header .site-logo img {
    max-width: 70px;
    height: auto;
  }

  /* Tagline takes remaining space */
  .header-tagline-col {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .site-tagline {
    line-height: 16px;
    white-space: normal;
    text-align: center;
  }

  /* Social */
  .header-social-col {
    flex: 0 0 auto;
    width: auto;
  }

  .header_right_mian {
    width: auto;
  }

  .header_social ul {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .header_social ul li a {
    font-size: 18px;
    padding: 0 3px;
    margin: 0;
  }

  .header_social ul li.facebokk-cover a {
    font-size: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 575px) {
  .header_social ul {
    padding-left: 0px;
  }

  .site-header {
    padding: 6px 0 22px;
  }

  .header-row {
    flex-wrap: nowrap;
    margin: 0px;
  }

  header.site-header.sticky .site-logo img {
    max-width: 50px;
  }

  .site-header .site-logo img {
    max-width: 62px;
  }

  .site-header.sticky {
    padding: 5px 0 22px 0;
  }

  .header-tagline-col {
    padding-left: 5px;
    padding-right: 5px;
  }

  .site-tagline {
    font-size: 12px;
    line-height: 13px;
  }

  .header_social ul li a {
    font-size: 16px;
    padding: 0 2px;
  }

  .header_social ul li.facebokk-cover a {
    font-size: 16px;
  }

  .book_now_mian .booking_text h2.sec_title,
  .book_now_mian .booking_text h2.sec_title span {
    font-size: 18px;
  }

  .book_now_mian .site_btn:last-child {
    padding: 8px 15px;
  }

  .book_now_mian .btn_grp {
    justify-content: center;
  }

  .book_now_mian .container {
    grid-template-columns: 1fr;
    gap: 10px;
    display: flex;
  }

  .book_now_mian .site_btn img {
    max-width: 70px;
  }

  .about_sec_second .about_img_small img {
    width: 65%;
  }

  .about_sec_second .about_img_small {
    right: 40px;
  }

  .jc-logo ul li img {
    height: 65px;
  }

  .copyright_main {
    margin-bottom: 0;
    padding-top: 10px;
  }

  .jc-logo h6 {
    font-size: 18px;
  }

  .footer_content h6 {
    font-size: 20px;
  }

  .mobile-no {
    font-size: 16px !important;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media screen and (max-width: 380px) {

  .site-header .site-logo img {
    max-width: 55px;
  }

  .header-tagline-col {
    padding-left: 3px;
    padding-right: 3px;
  }

  .header_social ul li a {
    font-size: 14px;
    padding: 0 1px;
  }

  .header_social ul li.facebokk-cover a {
    font-size: 14px;
  }

  .about_sec_second .about_img_small {
    width: 160px;
  }

  .about_sec_second .about_img_small {
    right: -15px;
  }

  .about_sec_second .about_img_small img {
    width: 60%
  }
}