body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background-color: #fff;
}

footer {
  background-color: #000000;
}

.overflow-hidden {
  overflow: hidden;
}

.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;
}

/*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;
}

/*Winning*/
.winning-container {
  background: #fff;
  padding: 60px 0;
}

.winning-header {
  text-align: center;
  margin-bottom: 50px;
}

.winning-title {
  font-size: 80px;
  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: 500px;
  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: 350px;
  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-slide.prev {
  transform: translateX(-380px) scale(1);
  z-index: 2;
  filter: blur(0px);
  opacity: 1;
}

.winning-slide.next {
  transform: translateX(380px) scale(1);
  z-index: 2;
  filter: blur(0px);
  opacity: 1;
}

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

.winning-slide-image img {
  width: 100%;
  height: 200px;
  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;
  margin-bottom: 15px;
  line-height: 1.3;
}

.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;
}

/* Award */
.award-container {
  background: #f8f8f8;
  padding: 60px 0;
}

.award-header {
  text-align: center;
  margin-bottom: 50px;
}

.award-toptitle {
  font-weight: 600;
  font-style: italic;
  font-size: 1rem;
  color: #f39c12;
}
.award-title {
  font-size: 100px;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.award-category {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.award-category ion-icon {
  background-color: #fab415;
  padding: 10px;
  border-radius: 100%;
  font-weight: bold;
  font-size: 30px;
}
.award-category p {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.award-section {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  margin: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.award-section-header {
  border: none;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.award-section-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.award-section-icon {
  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;
}
.award-section-icon.active {
  background-color: #fab415;
  border: 1px solid#000;
}

.award-icon {
  transition: all 300ms ease-in-out;
}

.award-icon.rotate {
  transform: rotate(-90deg);
}
.award-content {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
}
.award-left-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.award-description {
  font-style: italic;
  color: #666666;
}

.award-download {
  font-weight: 600;
  background-color: #fab415;
  border-radius: 50px;
  border: 1px solid #000;
  padding: 0 15px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 300ms ease-in-out;
}
.award-download:hover {
  background-color: #fa9e15;
}

.award-download p {
  margin-top: 17px;
  font-size: 1rem;
}

.award-right-container {
  min-width: 50%;
  background-color: #eaeef5;
  padding: 10px;
  border-radius: 10px;
  column-count: 2;
  column-gap: 2rem;
  padding-left: 1.5rem;
}
.award-right-container ul li {
  list-style-type: decimal;
  color: #666666;
}

/* 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;
}

/* 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;
}

/*Winner*/
.winner-container {
  background: #fff;
  padding: 60px 0;
}

.winner-header {
  text-align: center;
  margin-bottom: 50px;
}

.winner-title {
  font-size: 100px;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.winner-content {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
}

.winner-section {
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 300ms;
}

.winner-img {
  position: relative;
}

.winner-img img {
  transition: all 300ms;
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.winner-img p {
  font-size: 0.7rem;
  color: #fff;
  padding: 5px 10px;
  background-color: #00000080;
  border-radius: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.winner-text-container {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.winner-desc {
  max-width: 85%;
}

.winner-desc-title {
  font-weight: bold;
  font-size: 1.5rem;
}
.winner-desc-subtitle {
  font-size: 0.9rem;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-button {
  border: 1px solid #000;
  width: 40px;
  height: 40px;
  background: #fab415;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.winner-button ion-icon {
  font-size: 1.2rem;
  transform: rotate(-50deg);
}

.winner-section:hover .winner-button {
  transform: scale(1.1);
}

.winner-section:hover .winner-img p {
  background-color: #fab415;
  color: #000;
}
.winner-section:hover .winner-img img {
  filter: brightness(70%);
}
.winner-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/*Testimonial*/
.testimonial-container {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 0px;
}

.testimonial-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: start;
}

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

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

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

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

.testimonial-slide {
  position: absolute;
  width: 350px;
  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;
}

.testimonial-slide.active {
  transform: translateX(0) scale(1);
  z-index: 3;
  filter: blur(0);
  opacity: 1;
}

.testimonial-subtitle {
  font-size: 1rem;
}

.testimonial-slide.prev {
  transform: translateX(-280px) scale(0.85);
  z-index: 2;
  filter: blur(2px);
  opacity: 0.7;
}

.testimonial-slide.next {
  transform: translateX(280px) scale(0.85);
  z-index: 2;
  filter: blur(2px);
  opacity: 0.7;
}

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

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

.testimonial-slide-content {
  padding: 25px;
  position: relative;
}

.testimonial-slide-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
}

.testimonial-slide-description {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.5;
  position: relative;
}

.testimonial-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);
}

.testimonial-nav-btn:hover {
  background: #fab415;
}

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

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

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

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

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

.testimonial-subtitle-and-nav {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.testimonial-subtitle {
  max-width: 600px;
  text-align: right;
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-nav-btn-group {
  display: flex;
  gap: 10px;
}
.testimonial-nav-btn {
  position: static;
  transform: none;
}

.testimonial-slide-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-slide-person img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.testimonial-slide-info h1 {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-slide-info p {
  font-size: 0.8rem;
}
.quote-icon {
  color: #f4a524;
  font-size: 4rem;
  font-weight: bold;
  font-family: Georgia, serif;
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.karya-bg {
  background: url("/assets/image/awards/karya-bg.jpg") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.karya-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.karya-bg > * {
  position: relative;
  z-index: 1;
}
.karya-bg .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  margin: 0 auto;
}

.karya-bg .hero-title {
  font-size: 100px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.karya-bg .hero-subtitle {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

.karya-bg .hero-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.karya-bg .btn-submit {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.karya-bg .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
}

.karya-bg .btn-submit:active {
  transform: translateY(0);
}

/* 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;
  }
  .winner-section {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 300ms;
  }
}

@media (max-width: 991.98px) {
  .custom-carousel-controls-desktop {
    display: none !important;
  }
  .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.prev {
    transform: translateX(-280px) scale(0.85);
    z-index: 2;
    filter: blur(2px);
    opacity: 0.7;
  }

  .winning-slide.next {
    transform: translateX(280px) scale(0.85);
    z-index: 2;
    filter: blur(2px);
    opacity: 0.7;
  }

  .winning-slide.hidden {
    transform: scale(0.7);
    opacity: 0;
    z-index: 1;
  }
  .award-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 0;
  }
  .testimonial-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 50px;
  }
  .winner-section {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 300ms;
  }
}

@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;
  }
  .jury-title {
    font-size: 3rem;
  }
  .jury-members-grid {
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: start;
    overflow-x: scroll;
  }
  .winning-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .winning-subtitle {
    font-size: 1rem;
  }
  .award-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .award-toptitle {
    font-size: 0.7rem;
  }
  .award-subtitle {
    font-size: 1rem;
  }
  .winner-section {
    max-width: 80%;
  }
  .winner-img img {
    height: 150px;
  }
  .testimonial-title {
    font-size: 2rem;
    text-align: center;
  }
  .testimonial-subtitle-and-nav {
    align-items: center;
  }
  .testimonial-subtitle {
    text-align: center;
  }
  .winner-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .faq-content {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .faq-left .faq-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
  }
  .faq-left {
    text-align: center;
    flex: 1;
    max-width: 100%;
  }

  .faq-right {
    flex: 1;
    max-width: 100%;
  }
}

@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;
  }
}
@media screen and (max-width: 375px) {
  .winner-section {
    max-width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .festival-stat-item {
    min-height: 135px;
  }
  .festival-stat-number {
    font-size: 22px;
  }
  .festival-stat-icon {
    height: 25px;
  }
}
