.bg-primary-pinasthika {
  background-color: #fab415
}

footer {
  background-color: #000000;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background-color: #f0f0f0;
}
.desktop-nav-links .nav-links .nav-item.active {
  color: #fab415;
}

/* FAQ */
.faq-container {
  background: #f8f8f8;
  padding: 3rem 0;
}

.faq-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: #fab415;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.faq-icon ion-icon {
  color: #000;
  font-size: 1.2rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #333;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question-text {
  font-size: 1rem;
  margin: 0;
}

.faq-toggle {
  border: 1px solid #000;
  width: 28px;
  height: 28px;
  background: #eaeef5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq-toggle i {
  color: #000;
  font-size: 0.875rem;
}

.faq-toggle.active {
  transform: rotate(-90deg);
  background: #fab415;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: #666;
  line-height: 1.6;
  display: none;
  font-style: italic;
}

.faq-answer.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-bottom {
  background: #f8f8f8;
}

.faq-content {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.faq-left {
  flex: 1;
  max-width: 33.3333%;
}

.faq-right {
  flex: 2;
  max-width: 66.6666%;
}
.faq-left .faq-title {
  font-size: 5rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.faq-left .faq-subtitle {
  margin: 15px 0px;
}
.faq-left button {
  background-color: #fab415;
  border-radius: 30px;
  border: 1px solid #000;
  font-weight: bold;
  padding: 10px 15px;
}

/* Untuk Navigasi Mobile */
.mobile-nav-links li a.active {
  color: #fab415;
}

.main-navbar {
  background-color: #1a1a1a;
  padding: 15px 0;
  color: #fff;
}
.main-navbar .container {
  max-width: 1400px;
}
.main-navbar .logo img {
  height: 40px;
}
.main-navbar .nav-links {
  list-style: none;
  margin: 0;
  padding: 0 180px 0 0;
  display: flex;
}
.main-navbar .nav-links li {
  margin-right: 30px;
}
.main-navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-navbar .nav-links a:hover {
  color: #fab415;
}
.main-navbar .btn-partnership {
  background-color: #fab415;
  color: #1a1a1a;
  border: none;
  padding: 10px 25px;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.main-navbar .btn-partnership:hover {
  background-color: #e0991c;
}
.navbar-toggler {
  border: none;
  color: #fff;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  display: flex;
  justify-content: flex-end;
}
.mobile-nav-overlay.show {
  right: 0;
}
.mobile-nav-content {
  background-color: #1a1a1a;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}
.mobile-nav-content .close-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 12px;
  background: #fff;
  border: none;
  color: #000000;
  border-radius: 50%;
  cursor: pointer;
}
.mobile-nav-content .close-btn span {
  font-size: 30px;
  padding-top: 1px;
  display: ruby-text;
}
.mobile-nav-content .logo-mobile {
  position: absolute;
  left: 12px;
}
.mobile-nav-content .logo-mobile img {
  width: 92px;
}
.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 80px 0 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-nav-links li {
  margin-bottom: 25px;
}
.mobile-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.mobile-nav-links a:hover {
  color: #fab415;
}
.btn-partnership-mobile {
  background-color: #fab415;
  color: #1a1a1a;
  border: none;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
}
.btn-partnership-mobile:hover {
  background-color: #e0991c;
}
.copyright-mobile {
  color: #fff;
  font-size: 14px;
  margin-top: auto;
  padding-bottom: 15px;
}

/* slider */
.slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.custom-carousel-counter-dekstop {
  position: absolute;
  bottom: 25px;
  left: 30px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.custom-carousel-counter-dekstop .slide-counter {
  color: #000;
  font-size: 20px;
  margin: auto;
}

.custom-carousel-controls-desktop {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 5px 15px;
  z-index: 10;
}

.custom-carousel-controls-desktop .carousel-control-prev,
.custom-carousel-controls-desktop .carousel-control-next {
  position: static;
  width: auto;
  opacity: 1;
  margin: 0 5px;
  height: 50px;
  width: 50px;
  background-color: #fab415;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-carousel-controls-desktop .carousel-control-prev-icon,
.custom-carousel-controls-desktop .carousel-control-next-icon {
  background-image: none;
  filter: none;
  width: auto;
  height: auto;
}
.custom-carousel-controls-desktop .carousel-control-prev-icon::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1a1a1a;
  font-size: 18px;
}

.custom-carousel-controls-desktop .carousel-control-next-icon::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1a1a1a;
  font-size: 18px;
}
.carousel-control-prev.mobile-control,
.carousel-control-next.mobile-control {
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #fab415;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.carousel-control-prev.mobile-control {
  left: 20px;
}
.carousel-control-next.mobile-control {
  right: 20px;
}
.carousel-control-prev.mobile-control .carousel-control-prev-icon,
.carousel-control-next.mobile-control .carousel-control-next-icon {
  background-image: none;
  width: 25px;
  height: 25px;
  filter: none;
}
.carousel-control-prev.mobile-control .carousel-control-prev-icon::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000;
  font-size: 14px;
}
.carousel-control-next.mobile-control .carousel-control-next-icon::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000;
  font-size: 14px;
}

/* festival stats */
.festival-stats-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0 80px;
}
.festival-stats-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.festival-stats-description {
  color: #c2c2c2;
  font-size: 20px;
}
.festival-stat-item {
  border-radius: 20px;
  background-color: #1a1a1a;
  padding: 25px 20px;
}
.festival-stat-item:hover {
  background-color: #303030;
}
.festival-stat-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.festival-stat-text {
  text-align: left;
  font-size: 16px;
  font-style: italic;
  color: #c2c2c2;
  margin-bottom: 0;
}
.text-primary-pinasthika {
  color: #fab415;
}
.festival-stat-number {
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}
.festival-stat-icon {
  height: 40px;
  width: auto;
}

/* future-creatives */
.future-creatives-section {
  background-color: #F8F8F8;
  color: #fff;
  padding: 60px 0 80px;
}
.future-creatives-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.future-creatives-description {
  color: #666666;
  font-size: 20px;
}

/* honoring */
.honoring-section {
  background-color: #F8F8F8;
  color: #fff;
  padding: 60px 0 80px;
}
.honoring-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  /* margin-bottom: 15px; */
  max-width: 90%;
  margin: 15px auto;
}
.text-primary-pinasthika {
  color: #fab415;
}
.honoring-description {
  color: #666666;
  font-size: 20px;
  margin-bottom: 25px;
}
.honoring-award-title, .honoring-competition-title {
  color: #121212;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.honoring-award .card-award {
  width: 100%;
  border-radius: 20px;
  background-color: #121212;
  padding: 20px;
}
.honoring-competition img {
  max-height: 200px;
  object-fit: cover;
}
.honoring-card-wrapper h5 {
  font-size: 24px;
  color: #121212;
  font-weight: 600;
}
.honoring-card-wrapper p {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}

.honoring-competition .card-competition {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
/* jury lineup */
.jury-lineup-section {
  background-color: #FFFFFF;
  color: #fff;
  padding: 60px 0 80px;
}
.jury-lineup-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.jury-lineup-description {
  color: #666666;
  font-size: 20px;
}

/* toggle */
.custom-switch {
  width: 190px;
  height: 50px;
  background-color: #111;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  box-sizing: border-box;
  font-family: sans-serif;
}

.custom-option {
  flex: 1;
  text-align: center;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.custom-option.left {
  color: #000;
}

.custom-option.right {
  color: #aaa;
}

.custom-switch.active .left {
  color: #aaa;
}

.custom-switch.active .right {
  color: #000;
}

.custom-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 90px;
  height: 46px;
  border-radius: 9999px;
  background-color: #f8ac1c;
  transition: transform 0.3s ease;
  z-index: 1;
}

.custom-switch.active .custom-handle {
  transform: translateX(94px); 
}

.jury-lineup-section .card {
  height: 320px;
  width: 100%;
  max-width: 240px;
  min-width: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.jury-lineup-section .card img {
  border-radius: 20px;
  width: 100%;
  height: 70%;
  object-fit: cover;
}

/* Scrollbar styling (optional) */
.jury-lineup-scroll {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.jury-lineup-scroll .card {
  scroll-snap-align: start;
}

.jury-lineup-section .card h5 {
  color: #121212;
  font-weight: 600;
}
.jury-lineup-section .card p {
  font-weight: 500;
  color: #666666;
}

/*Jury*/
.jury-container {
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  min-height: 100vh;
}

.jury-title {
  font-size: 100px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.jury-title .jury-highlight {
  color: #fab415;
}

.jury-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.jury-tabs {
  margin: 0 auto;
  width: fit-content;
  border-radius: 30px;
  padding: 3px 3.5px;
  background-color: #000;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.jury-tab {
  background: #000;
  border: 2px solid #000;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #fff;
}

.jury-tab:hover {
  background: #333;
  border-color: #333;
}

.jury-tab.active {
  background: #fab415;
  border-color: #fab415;
  color: #fff;
}

.jury-dropdown #categorySelect {
  width: fit-content;
  background: #fab415;
  font-weight: 700;
}

.jury-category-section {
  margin-bottom: 40px;
}

.jury-category-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.jury-category-icon {
  background: #333;
  color: #ffc107;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.jury-members-container {
  padding: 5px;
  overflow: hidden;
  position: relative;
}

.jury-members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.jury-members-scroll {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jury-members-scroll::-webkit-scrollbar {
  display: none;
}

.jury-member-card {
  flex: 0 0 240px;
  width: 240px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jury-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.jury-member-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jury-member-info {
  padding: 15px;
}

.jury-member-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  font-size: 1rem;
}

.jury-member-role {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.jury-view-all {
  text-align: center;
  margin-top: 40px;
}

.jury-view-all-btn {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.jury-view-all-btn:hover {
  border-color: #ffc107;
  color: #333;
  text-decoration: none;
}

.jury-scroll-btn {
  display: none;
}

.jury-content-tab {
  display: none;
}

.jury-content-tab.active {
  display: block;
}

/* Timelin */
.timeline-container {
  background: #f8f8f8;
  padding: 3rem 0;
}

.timeline-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: #fab415;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.timeline-icon ion-icon {
  color: #000;
  font-size: 1.5rem;
}

.timeline-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.timeline-card {
  background: #212121;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.timeline-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.timeline-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.timeline-card-icon ion-icon {
  color: #fab415;
  font-size: 1.8rem;
}

.timeline-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

.timeline-card-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.timeline-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fab415;
  margin: -1.5rem -1.5rem -1.5rem -1.5rem;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.timeline-deadline-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

.timeline-deadline-date {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}
/* celebrate */
.celebrate-section {
  background-color: #F8F8F8;
  color: #fff;
  padding: 60px 0 80px;
}
.celebrate-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.celebrate-description {
  color: #666666;
  font-size: 20px;
}

.celebrate-section .card {
  width: 100%;
  background-color: #121212;
  border-radius: 20px;
  overflow: hidden;
}
/* .celebrate-section .card img {
  border-radius: 20px;
  width: 100%;
  height: 70%;
  object-fit: cover;
} */
.celebrate-section .card h5 {
  color: #FFFFFF;
  font-weight: 600;
}
.celebrate-section .card p {
  font-weight: 500;
  color: #C2C2C2;
}

/* speakers */
.speakers-section {
  background-color: #F8F8F8;
  color: #fff;
  padding: 60px 0 80px;
}
.speakers-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.speakers-description {
  color: #666666;
  font-size: 20px;
}

.speakers-section .card {
  height: 330px;
  width: 100%;
  max-width: 240px;
  min-width: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.speakers-section .card img {
  border-radius: 20px;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

/* Scrollbar styling (optional) */
.jury-lineup-scroll {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.jury-lineup-scroll .card {
  scroll-snap-align: start;
}

.speakers-section .card h5 {
  color: #121212;
  font-weight: 600;
}
.speakers-section .card p {
  font-weight: 500;
  color: #666666;
}

/* advisors */
.advisors-section {
  background-color: #121212;
  padding: 60px 0 80px;
  color: #fff;
}
.advisors-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.advisors-description {
  color: #C2C2C2;
  font-size: 20px;
}
.advisors-section .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px;
  width: 100%;
  max-width: 320px;
  min-width: 280px;
  border-radius: 20px;
  overflow: hidden;
}

.advisors-section .card img {
  width: 100%;
  height: 65%;
  border-radius: 20px;
  object-fit: cover;
}

.advisors-section .card-body {
  padding: 1rem;
}


/* advisors */
.advisors-scroll {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.advisors-scroll .card {
  scroll-snap-align: start;
}

.advisors-section .card h5 {
  color: #121212;
  font-weight: 700;
}
.advisors-section .card p {
  font-weight: 500;
  color: #666666;
}

.advisors-section .card h6 {
  font-weight: 500;
  color: #666666;
}

/* trusted */
.trusted-section {
  background-color: #121212;
  padding: 60px 0 80px;
  color: #fff;
}
.trusted-title {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}

.trusted-section .logo-img {
  object-fit: contain; 
}


/*Winning*/
.winning-container {
  padding: 30px 0;
  font-family: "Arial", sans-serif;
}

.winning-header h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.winning-title .highlight {
  color: #f39c12;
}

.winning-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.winning-slider {
  position: relative;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winning-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winning-slide {
  position: absolute;
  width: 600px;
  height: fit-content;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  overflow: hidden;
}

.winning-slide.active {
  transform: translateX(0) scale(1);
  z-index: 3;
  filter: blur(0);
  opacity: 1;
}
.winning-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.winning-subtitle {
  font-size: 1rem;
}

.winning-slide.prev1 {
  transform: translateX(-120px) scale(0.85);
  z-index: 2;
  filter: blur(1px);
  opacity: 1;
}

.winning-slide.next1 {
  transform: translateX(120px) scale(0.85);
  z-index: 2;
  filter: blur(1px);
  opacity: 1;
}
.winning-slide.prev2 {
  transform: translateX(-200px) scale(0.7);
  z-index: 1;
  filter: blur(2px);
  opacity: 0.5;
}

.winning-slide.next2 {
  transform: translateX(200px) scale(0.7);
  z-index: 1;
  filter: blur(2px);
  opacity: 0.5;
}

.winning-slide.hidden {
  transform: scale(0.7);
  opacity: 0;
  z-index: 1;
}

.winning-slide-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.winning-slide-content {
  padding: 25px;
}

.winning-slide-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-align: center;
  padding: 15px 5px;
}

.winning-slide-description {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.5;
}

.winning-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.winning-nav-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.winning-prev-btn {
  left: 20px;
}

.winning-next-btn {
  right: 20px;
}

.winning-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.winning-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.winning-dot.active {
  background: #f39c12;
}




/* Responsiveness */
@media (max-width: 1024px) {
  .main-navbar .nav-links {
    padding: 0 115px 0 0;
  }
  .festival-stats-title {
    font-size: 70px;
  }
  .festival-stat-number {
    font-size: 42px;
  }

  /* future creatives */
  .future-creatives-title {
    font-size: 70px;
  }
  /* honoring */
  .honoring-title {
    font-size: 70px;
  }
  .honoring-award-title, .honoring-competition-title {
    font-size: 28px;
  }
    /* jury lineup */
  .jury-lineup-title {
    font-size: 70px;
  }
    /* celebrate */
  .celebrate-title {
    font-size: 70px;
  }
   /* speakers */
  .speakers-title {
    font-size: 70px;
  }
    /* advisors */
  .advisors-title {
    font-size: 70px;
  }
}

@media (max-width: 991.98px) {
  .custom-carousel-controls-desktop {
    display: none !important;
  }
   .scroll-x-wrapper {
    overflow-x: auto;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-x-wrapper .card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 250px;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .desktop-nav-links {
    display: none !important;
  }
  .navbar-toggler {
    display: block !important;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
  }
  .carousel-control-prev.mobile-control,
  .carousel-control-next.mobile-control {
    width: 32px;
    height: 32px;
  }
  .festival-stat-item {
    padding: 20px 15px;
  }
  .festival-stats-title {
    font-size: 50px;
  }
  .festival-stats-description {
    font-size: 16px;
  }
  .festival-stat-number {
    font-size: 36px;
  }
  .festival-stat-icon {
    height: 35px;
  }
  .festival-stat-text {
    font-size: 14px;
  }

  /* future creatives */
  .future-creatives-title {
    font-size: 50px;
  }
  .future-creatives-description {
    font-size: 16px;
  }
  /* honoring */
  .honoring-title {
    font-size: 50px;
  }
  .honoring-description {
    font-size: 16px;
  }
  .honoring-card-wrapper img {
    max-height: 200px;
    object-fit: cover;
  }

  .honoring-competition img {
    max-height: 200px;
    object-fit: cover;
  }

    /* jury lineup */
  .jury-lineup-title {
    font-size: 50px;
  }
  .jury-lineup-description {
    font-size: 16px;
  }

    /* celebrate */
  .celebrate-title {
    font-size: 50px;
  }
  .celebrate-description {
    font-size: 16px;
  }
  .celebrate-section .card h5 {
    font-size: 16px;
  }
  .celebrate-section .card p {
    font-size: 12px;
  }
  .celebrate-subtitle {
    font-size: 16px;
  }

  /* speakers */
  .spekaers-title {
    font-size: 50px;
  }
  .spekaers-description {
    font-size: 16px;
  }
    /* advisors */
  .advisors-title {
    font-size: 50px;
  }
  .advisors-description {
    font-size: 16px;
  }

  /*2024 Roadshow Gallery*/
  .winning-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .winning-slide {
    width: 350px;
  }
  .winning-slide-image img {
    height: 200px;
  }
}

@media screen and (max-width: 575px) {
  .festival-stats-section {
    padding: 40px 10px 60px;
  }
  .festival-stat-item {
    min-height: 120px;
  }
  .festival-stat-number {
    font-size: 28px;
  }
  .festival-stat-icon {
    height: 30px;
  }
  .festival-stats-title {
    font-size: 34px;
  }

  /* future creatives */
  .future-creatives-section {
    padding: 40px 10px 60px;
  }
  .future-creatives-title {
    font-size: 34px;
  }
  /* honoring */
  .honoring-section {
    padding: 40px 10px 60px;
  }
  .honoring-title {
    font-size: 34px;
  }
  .honoring-award-title, .honoring-competition-title {
    font-size: 20px;
  }
  .honoring-competition .card-competition {
    border-radius: 10px;
  }
    /* jury lineup */
  .jury-lineup-section {
    padding: 40px 10px 60px;
  }
  .jury-lineup-title {
    font-size: 34px;
  }
  .jury-lineup-section .card {
    height: 300px;
    width: 30%;
  }

.jury-lineup-section .card img {
  border-radius: 20px;
  width: 100%;
  height: 60%;
  object-fit: cover;
}
  .honoring-card-wrapper h5 {
    font-size: 16px;
  }
  .honoring-card-wrapper p {
    font-size: 12px;
  }

  /* celebrate */
  .celebrate-section {
    padding: 40px 10px 60px;
  }
  .celebrate-title {
    font-size: 34px;
  }
    .celebrate-section .card h5 {
    font-size: 16px;
  }
  .celebrate-section .card p {
    font-size: 12px;
  }
  .celebrate-subtitle {
    font-size: 12px;
  }
    /* speakers */
  .speakers-section {
    padding: 40px 10px 60px;
  }
  .speakers-title {
    font-size: 34px;
  }
  .speakers-description {
    font-size: 16px;
  }

    /* advisors */
  .advisors-section {
    padding: 40px 10px 60px;
  }
  .advisors-title {
    font-size: 34px;
  }
  .advisors-description {
    font-size: 16px;
  }

  .winning-container {
  padding: 0 0;
  font-family: "Arial", sans-serif;
}
}
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
  .festival-stat-item {
    min-height: 135px;
  }
  .festival-stat-number {
    font-size: 22px;
  }
  .festival-stat-icon {
    height: 25px;
  }
}
