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

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

/*speak*/
.team-flex-container {
  padding: 10px 0px;
  gap: 2rem;
  justify-content: center;
}

.profile-card {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
  transition: all 100ms ease-in-out;
}

.profile-placeholder img {
  object-position: center;
  width: 100%;
  height: 25vh;
  object-fit: cover;
}

.profile-content {
  text-align: start;
  padding: 10px;
}

.profile-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.profile-position {
  font-size: 0.9rem;
  color: #666;
}

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

.view-all-btn {
  background: white;
  color: #000;
  border: 2px solid #6c6c6c;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #000;
  color: white;
  transform: translateX(5px);
}

.section-title {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}

/*program*/
.program-section {
  background-color: #f8f8f8;
  color: #000000;
  padding: 60px 0 80px;
}
.program-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.text-primary-pinasthika {
  color: #fab415;
}
.program-description {
  color: #666666;
  font-size: 20px;
}
.program-flex-container {
  padding: 10px 0px;
  gap: 1.5rem;
  justify-content: center;
}
.program-card {
  flex: 0 0 auto;
  padding: 10px;
  width: 305px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
}

.program-placeholder {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.program-icon {
  color: #000;
  padding: 5px 10px;
  width: fit-content;
  background-color: #fab415;
  border-radius: 100%;
}

.program-content {
  text-align: start;
  padding: 10px;
}

.program-card-description {
  text-align: start;
  color: #c2c2c2;
  font-size: 15px;
}

/*event*/
.event-section {
  background-color: #fab415;
  padding: 50px 0;
}

.event-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.event-main-title {
  font-size: 100px;
  font-weight: 900;
  color: #000;
  margin: 0;
}

.event-buy-ticket-btn {
  background-color: #2d2d2d;
  color: #fab415;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.event-buy-ticket-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.event-tabs-section {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.event-stage-tab {
  background-color: transparent;
  border: 2px solid #2d2d2d;
  color: #2d2d2d;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.event-stage-tab.active {
  background-color: white;
  color: #2d2d2d;
}

.event-stage-tab:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #2d2d2d;
}

.event-event-date-selector {
  margin-left: auto;
}

.event-date-select {
  border: 2px solid #2d2d2d;
  border-radius: 8px;
  background-color: white;
  font-weight: 600;
}

.event-schedule-card {
  background-color: #000000;
  border-radius: 15px;
  padding: 30px;
  color: white;
}

.event-stage-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.event-schedule-item {
  background-color: #212121;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-radius: 10px;
  margin: 10px 0;
  border-bottom: 1px solid #404040;
}

.event-schedule-item:last-child {
  border-bottom: none;
}

.event-time-slot {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  min-width: 120px;
}

.event-details {
  flex: 1;
  text-align: right;
}

.event-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4a261;
  margin-bottom: 2px;
}

.event-subtitle {
  font-size: 0.85rem;
  color: #cccccc;
  font-style: italic;
}

.highlight-event .event-title {
  color: #e76f51;
}

.break-event .event-title {
  color: #ffd60a;
}

/*testimoni*/
.testimonial-section {
  background: white;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.testimonial-title {
  flex: 1;
}

.testimonial-title h2 {
  font-size: 100px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.testimonial-title h2 .festival {
  color: #000;
}

.testimonial-title h2 .testimonials {
  color: #f4a524;
  display: block;
}

.testimonial-description {
  flex: 1;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 30px;
}

.testimonial-content-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

.testimonial-content {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.quote-icon {
  color: #f4a524;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: Georgia, serif;
  margin-bottom: -40px;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #333;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h4 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: #666;
  z-index: 10;
}

.nav-button:hover {
  border-color: #f4a524;
  color: #f4a524;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 165, 36, 0.3);
}

.nav-button.active {
  background: #f4a524;
  border-color: #f4a524;
  color: white;
}

.nav-button.side-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-button.prev {
  left: 0px;
}

.nav-button.next {
  right: 0px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

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

.dot.active {
  background: #f4a524;
  transform: scale(1.2);
}

/*gallery*/
.gallery-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-container-header {
  max-width: 1000px;
}

.gallery-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.gallery-header-section p {
  font-size: 20px;
}

.gallery-main-title {
  font-size: 100px;
  font-weight: 900;
  color: #000;
}
.gallery-section {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.gallery-row {
  margin-bottom: 30px;
}

.gallery-container {
  display: flex;
  gap: 20px;
  width: max-content;
}

.gallery-container.scroll-left {
  animation: scroll-left 30s linear infinite;
}

.gallery-container.scroll-right {
  animation: scroll-right 30s linear infinite;
}

.gallery-container:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex: 0 0 auto;
  width: 400px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

@keyframes scroll-left {
  0% {
    transform: translateX(-23%);
  }
  100% {
    transform: translateX(-130%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(-23%);
  }
}

/*partners*/
.partners-container {
  background-color: #121212;
  color: white;
  padding: 80px 0;
  min-height: 100vh;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-title {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.partners-title span {
  color: #ffc107;
}

.partners-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.partners-logo-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.partners-logo-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partners-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-logo img {
  width: 150px;
}

.partners-cta-banner {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.partners-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.partners-cta-content {
  position: relative;
  z-index: 2;
}

.partners-cta-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.partners-cta-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 0;
  color: #666666;
  font-style: italic;
}

.partners-cta-button {
  background: #1a1a1a;
  color: #ffc107;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.partners-cta-button:hover {
  background: #000;
  color: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.partners-agency-section {
  text-align: center;
  margin-top: 80px;
}

.partners-agency-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0.9;
}

.partners-agency-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}

.partners-agency-logo {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-agency-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
}

/* Responsiveness */
@media (max-width: 1024px) {
  .main-navbar .nav-links {
    padding: 0 115px 0 0;
  }
  .festival-speak-title {
    font-size: 70px;
  }
  .festival-speak-number {
    font-size: 42px;
  }
  .team-flex-container {
    max-width: 100%;
  }
  .profile-placeholder img {
    width: 25vh;
    height: 25vh;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 991.98px) {
  .custom-carousel-controls-desktop {
    display: none !important;
  }
  .testimonial-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-title {
    font-size: 2.5rem;
  }
}

@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-speak-item {
    padding: 20px 15px;
  }
  .festival-speak-title {
    font-size: 50px;
  }
  .festival-speak-description {
    font-size: 16px;
  }
  .festival-speak-number {
    font-size: 36px;
  }
  .festival-speak-icon {
    height: 35px;
  }
  .festival-speak-text {
    font-size: 14px;
  }
  .program-item {
    padding: 20px 15px;
  }
  .program-title {
    font-size: 50px;
  }
  .program-description {
    font-size: 16px;
  }
  .program-number {
    font-size: 36px;
  }
  .program-icon {
    height: 35px;
  }
  .program-text {
    font-size: 14px;
  }
  .event-main-title {
    font-size: 2rem;
  }

  .event-header-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .event-tabs-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .event-event-date-selector {
    margin-left: 0;
    margin-top: 10px;
  }

  .event-schedule-item {
    text-align: end;
    flex-direction: row;
    text-align: center;
    gap: 15px;
  }
  .event-stage-tab {
    background-color: transparent;
    border: 0px solid #2d2d2d;
    color: #2d2d2d;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
  }
  .event-stage-tab:hover {
    background-color: #2d2d2d;
    border-radius: 0px;
    color: #fff;
  }
  .testimonial-section {
    padding: 30px 5px;
  }
  .testimonial-title h2 {
    margin: 0px auto;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0px;
  }

  .testimonial-description {
    flex: 1;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 400px;
    margin-top: -20px;
  }
  .testimonial-text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 500px;
  }
  .testimonial-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
  }
  .gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-main-title {
    font-size: 50px;
    font-weight: 900;
    color: #2d2d2d;
    margin: 0;
  }
  .gallery-header-section p {
    font-size: 15px;
  }

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

  .partners-cta-banner {
    padding: 30px 20px;
  }

  .partners-cta-title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  .festival-speak-section {
    padding: 40px 10px 60px;
  }
  .festival-speak-item {
    min-height: 120px;
  }
  .festival-speak-number {
    font-size: 28px;
  }
  .festival-speak-icon {
    height: 30px;
  }
  .festival-speak-title {
    font-size: 40px;
  }
  .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 320px;
  }
  .partners-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 250px;
  }
}
@media screen and (max-width: 320px) {
  .festival-speak-item {
    min-height: 135px;
  }
  .festival-speak-number {
    font-size: 22px;
  }
  .festival-speak-icon {
    height: 25px;
  }
}
