:root {
  --led-blue: #020637;
  --led-blue-2: #050b52;
  --led-blue-3: #091375;
  --led-gold: #d79b29;
  --led-gold-light: #ffe69c;
  --led-white: #ffffff;
  --led-text: #dce2ff;
  --led-green: #38a837;
  --led-orange: #f37021;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: black;
  background: var(--led-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

    .custom-container {
        padding-left: 70px;
        padding-right: 70px;
    }

/* TOPBAR */
.led-topbar {
  background: linear-gradient(90deg, #010428, #06106b, #010428);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 999;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-left span,
.topbar-right a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.topbar-left i,
.topbar-right i {
  color: var(--led-gold-light);
}

.topbar-right a:hover {
  color: var(--led-gold-light);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all 0.35s ease;
}

.top-social a:hover {
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  color: var(--led-blue);
  transform: translateY(-3px);
}

/* HEADER */
.led-header {
  position: sticky;
  top: 0;
  z-index: 998;
  background: rgba(2, 6, 55, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transition: all 0.35s ease;
}

.led-header.sticky-active {
  background: rgba(1, 4, 40, 0.98);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
}

.led-navbar {
  min-height: 100px;
  padding: 0;
}

/* HEADER TWO LOGO DESIGN */
.header-logo-group {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.led-logo,
.led-other-logo {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.led-logo img {
  width: 150px;
  max-height: 97px;
  object-fit: contain;
  /* filter: drop-shadow(0 8px 18px rgba(255, 214, 120, 0.25)); */
}

.led-other-logo {
  position: relative;
  padding: 7px 12px;
  border-radius: 14px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255, 230, 156, 0.25);
  box-shadow: inset 0 0 18px rgba(255, 230, 156, 0.08);
}

.led-other-logo img {
  width: 100px;
  max-height: 54px;
  object-fit: contain;
}

.logo-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 230, 156, 0.75),
    transparent
  );
}
.led-menu {
  align-items: center;
  gap: 3px;
}

.led-menu .nav-link {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 34px 13px !important;
  position: relative;
  letter-spacing: 0.2px;
  transition: all 0.35s ease;
}

.led-menu .nav-link::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 23px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

/* .led-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 7px;
  height: 7px;
  background: var(--led-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--led-gold-light);
  transform: translateX(-50%) scale(0);
  transition: all 0.35s ease;
} */

.led-menu .nav-link:hover,
.led-menu .nav-link.active {
  color: var(--led-gold-light);
}

.led-menu .nav-link:hover::before,
.led-menu .nav-link.active::before {
  transform: scaleX(1);
}

.led-menu .nav-link:hover::after,
.led-menu .nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
}

/* DROPDOWN */
.led-dropdown {
  position: relative;
}

.led-dropdown-menu {
  min-width: 310px;
  padding: 14px;
  border: 0;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 222, 138, 0.18), transparent 35%),
    linear-gradient(145deg, #030942, #071071);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  margin-top: 0;
  overflow: hidden;
}

.led-dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.led-dropdown-menu .dropdown-item {
  padding: 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.led-dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 230, 156, 0.16), transparent);
  transform: translateX(-100%);
  transition: all 0.35s ease;
}

.led-dropdown-menu .dropdown-item:hover::before {
  transform: translateX(0);
}

.led-dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
}

.drop-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  color: var(--led-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 10px 22px rgba(215, 155, 41, 0.28);
  position: relative;
  z-index: 1;
}

.led-dropdown-menu strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.led-dropdown-menu small {
  display: block;
  color: #c8d0ff;
  font-size: 12px;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.small-dropdown {
  min-width: 260px;
}

/* REGISTRATION BUTTON */
.visitor-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 21px;
  border-radius: 50px;
  background: linear-gradient(135deg, #fff3bd, var(--led-gold), #b97712);
  color: #020637;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(215, 155, 41, 0.35);
  transition: all 0.35s ease;
  white-space: nowrap;
}

.visitor-btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -90%;
  width: 55%;
  height: 180%;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(25deg);
  transition: all 0.55s ease;
}

.visitor-btn:hover::before {
  left: 130%;
}

.visitor-btn:hover {
  color: #020637;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 214, 120, 0.45);
}

.visitor-btn i {
  width: 28px;
  height: 28px;
  background: var(--led-blue);
  color: var(--led-gold-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE TOGGLER */
.led-toggler {
  border: 0;
  box-shadow: none !important;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.led-toggler span {
  width: 30px;
  height: 3px;
  background: var(--led-gold-light);
  border-radius: 10px;
}

/* =========================================================
   FINAL COMMON MASK BUTTON EFFECT
   Works for:
   .ledx-common-btn
   .ledx-mask-button
   .ledx-about-mask-button
========================================================= */

.ledx-common-btn {
  position: relative;
  width: fit-content;
  min-width: 220px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--led-blue);
  background: var(--led-white);
  font-family: Arial, sans-serif;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* back text layer */
.ledx-common-btn-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--led-blue);
  background: var(--led-white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* front animated layer */
.ledx-common-btn-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 101%;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--led-white);
  background: var(--led-blue);
  border: 0;
  outline: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  backface-visibility: hidden;
  transform: translateZ(0);

  -webkit-mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");

  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-animation: ledxMaskClose 0.7s steps(29) forwards;
  animation: ledxMaskClose 0.7s steps(29) forwards;
}

/* hover mask effect */
.ledx-common-btn:hover .ledx-common-btn-link{
  -webkit-animation: ledxMaskOpen 0.7s steps(29) forwards;
  animation: ledxMaskOpen 0.7s steps(29) forwards;
}

/* hover container */
.ledx-common-btn:hover {
  transform: translateY(-4px);
  border-color: var(--led-gold);
  box-shadow: 0 18px 42px rgba(2, 6, 55, 0.22);
}

/* link hover color fix */
.ledx-common-btn-link:hover {
  color: var(--led-white);
}

/* icon movement */
.ledx-common-btn i {
  transition: transform 0.35s ease;
}

.ledx-common-btn:hover i {
  transform: translateX(5px);
}

/* gold version */
.ledx-common-btn.gold {
  border-color: var(--led-gold);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
}

.ledx-common-btn.gold .ledx-common-btn-label {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
}

.ledx-common-btn.gold .ledx-common-btn-link {
  color: var(--led-blue);
  background: var(--led-white);
}

/* light version for blue section */
.ledx-common-btn.light {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.ledx-common-btn.light .ledx-common-btn-label{
  color: var(--led-gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.ledx-common-btn.light .ledx-common-btn-link {
  color: var(--led-blue);
  background: var(--led-white);
}

/* full width */
.ledx-common-btn.full {
  width: 100%;
}

.ledx-common-btn.full .ledx-common-btn-label,
.ledx-common-btn.full .ledx-common-btn-link {
  width: 100%;
}

/* mask animation */
@-webkit-keyframes ledxMaskOpen {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes ledxMaskOpen {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@-webkit-keyframes ledxMaskClose {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes ledxMaskClose {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

/* mobile */
@media (max-width: 767px) {
  .ledx-common-btn{
    width: 100%;
    min-width: 100%;
  }

  .ledx-common-btn-label,
  .ledx-common-btn-link{
    width: 100%;
  }
}

/* ==================================================
   SIMPLE OUTLINE BUTTON - NO BEFORE / AFTER ANIMATION
================================================== */

.ledx-outline-button {
  position: relative;
  width: fit-content;
  height: 58px;
}

.ledx-outline-button a {
  position: relative;
  min-width: 215px;
  height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  color: var(--led-blue);
  background: transparent !important;
  border: 1px solid rgba(2, 6, 55, 0.35);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow: none;
  transition: all 0.35s ease;
}

/* remove old before/after animation */
.ledx-outline-button a::before,
.ledx-outline-button a::after {
  display: none !important;
  content: none !important;
}

/* icon simple */
.ledx-outline-button a i {
  color: var(--led-blue);
  font-size: 14px;
  transition: all 0.35s ease;
}

/* hover only color + outline change */
.ledx-outline-button a:hover {
  color: var(--led-gold);
  background: transparent !important;
  border-color: var(--led-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(215, 155, 41, 0.18);
}

.ledx-outline-button a:hover i {
  color: var(--led-gold);
  transform: translateX(4px);
}

/* mobile */
@media (max-width: 767px) {
  .ledx-outline-button,
  .ledx-outline-button a {
    width: 100%;
  }
}
/* =========================================================
   LED EXPO HERO V3
========================================================= */

.ledx-hero-v3 {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--led-white);
}

#ledxHeroSlider,
#ledxHeroSlider .carousel-inner,
#ledxHeroSlider .carousel-item {
  width: 100%;
  height: calc(100vh - 142px);
  min-height: 690px;
}

.ledx-hero-v3-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--led-white);
}

/* Background Image */
.ledx-hero-v3-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.carousel-item.active .ledx-hero-v3-bg {
  transform: scale(1);
}

/* White Overlay */
.ledx-hero-v3-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 26%,
      rgba(255, 255, 255, 0.80) 46%,
      rgba(255, 255, 255, 0.34) 68%,
      rgba(2, 6, 55, 0.10) 100%
    );
}




/* Golden Glow */
.ledx-hero-v3-glow {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 12%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(215, 155, 41, 0.17), rgba(215, 155, 41, 0.03) 46%, transparent 70%);
  filter: blur(4px);
}

/* Left Gold Line */
.ledx-hero-v3-slide::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 18%;
  width: 7px;
  height: 190px;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(180deg, var(--led-orange), var(--led-gold-light), var(--led-gold));
  box-shadow: 0 0 35px rgba(215, 155, 41, 0.40);
}

/* Right round circle removed */
.ledx-hero-v3-slide::after {
  display: none !important;
  content: none !important;
}

.ledx-hero-v3-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: calc(100vh - 142px);
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 64px 0 108px;
}

.ledx-hero-v3-content {
  width: 100%;
  max-width: 940px;
}

/* Eyebrow */
.ledx-hero-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  padding: 7px 18px 7px 7px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(215, 155, 41, 0.40);
  box-shadow: 0 14px 35px rgba(2, 6, 55, 0.09);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-eyebrow-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--led-blue);
  background: linear-gradient(135deg, #fff2b4, var(--led-gold-light), var(--led-gold));
  box-shadow: 0 8px 18px rgba(215, 155, 41, 0.28);
}

.ledx-hero-v3-title {
  max-width: 930px;
  margin: 0 0 21px;
  color: var(--led-blue);
  font-size: 60px;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.ledx-hero-v3-title span {
  display: block;
  margin-top: 8px;
  color: var(--led-gold);
}

.ledx-hero-v3-description {
  max-width: 745px;
  margin: 0 0 27px;
  color: var(--led-blue-2);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.ledx-hero-v3-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

/* Date Time Venue */
.ledx-hero-v3-event-info {
  width: fit-content;
  max-width: 100%;
  min-height: 90px;
  padding: 10px 13px;
  border-radius: 18px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(2, 6, 55, 0.10);
  backdrop-filter: blur(15px);
  box-shadow: 0 22px 55px rgba(2, 6, 55, 0.13);
}

.ledx-event-item {
  min-width: 205px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.ledx-event-venue {
  min-width: 330px;
}

.ledx-event-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-3));
  box-shadow: 0 10px 24px rgba(2, 6, 55, 0.22);
  font-size: 17px;
}

.ledx-event-item span {
  display: block;
  margin-bottom: 5px;
  color: #777c91;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-event-item strong {
  display: block;
  color: var(--led-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.ledx-event-divider {
  width: 1px;
  margin: 12px 2px;
  background: linear-gradient(to bottom, transparent, rgba(2, 6, 55, 0.18), transparent);
}

/* Navigation */
.ledx-hero-v3-navigation {
  position: absolute;
  z-index: 25;
  left: 70px;
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ledx-slider-arrow {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(2, 6, 55, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(12px);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.ledx-slider-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: scale(0);
  transition: transform 0.35s ease;
}

.ledx-slider-arrow i {
  position: relative;
  z-index: 2;
  font-size: 15px;
}

.ledx-slider-arrow:hover {
  color: var(--led-blue);
  border-color: var(--led-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 6, 55, 0.16);
}

.ledx-slider-arrow:hover::before {
  transform: scale(1);
}

.ledx-hero-v3-indicators {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ledx-hero-v3-indicators [data-bs-target] {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  text-indent: 0;
  opacity: 1;
  color: var(--led-blue-2);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(2, 6, 55, 0.13);
  backdrop-filter: blur(12px);
  transition: width 0.35s ease, color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.ledx-hero-v3-indicators [data-bs-target] span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.ledx-hero-v3-indicators [data-bs-target]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--led-gold);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.ledx-hero-v3-indicators [data-bs-target].active {
  width: 64px;
  border-radius: 24px;
  color: var(--led-white);
  background: var(--led-blue);
  border-color: var(--led-blue);
}

.ledx-hero-v3-indicators [data-bs-target].active::after {
  width: 18px;
}

/* Slide Content Animation */
.carousel-item .ledx-hero-v3-eyebrow,
.carousel-item .ledx-hero-v3-title,
.carousel-item .ledx-hero-v3-description,
.carousel-item .ledx-hero-v3-actions,
.carousel-item .ledx-hero-v3-event-info {
  opacity: 0;
  transform: translateY(35px);
}

.carousel-item.active .ledx-hero-v3-eyebrow {
  animation: ledxContentUp 0.7s 0.15s forwards;
}

.carousel-item.active .ledx-hero-v3-title {
  animation: ledxContentUp 0.8s 0.28s forwards;
}

.carousel-item.active .ledx-hero-v3-description {
  animation: ledxContentUp 0.8s 0.40s forwards;
}

.carousel-item.active .ledx-hero-v3-actions {
  animation: ledxContentUp 0.8s 0.52s forwards;
}

.carousel-item.active .ledx-hero-v3-event-info {
  animation: ledxContentUp 0.8s 0.64s forwards;
}

@keyframes ledxContentUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-fade .carousel-item {
  transition-property: opacity;
  transition-duration: 0.95s;
}

/* ==================================================
   LED EXPO ABOUT SECTION - FINAL CSS
================================================== */

.ledx-about-section {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 155, 41, 0.12), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(2, 6, 55, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  color: var(--led-blue);
  overflow: hidden;
}

.ledx-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-about-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 90px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.22);
  pointer-events: none;
}

.ledx-about-section  {
  position: relative;
  z-index: 2;
}

.ledx-image-frame {
  position: relative;
  min-height: 560px;
  padding: 13px;
  border-radius: 42px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 155, 41, 0.70), rgba(2, 6, 55, 0.12), rgba(56, 168, 55, 0.32)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 34px 90px rgba(2, 6, 55, 0.16);
  overflow: hidden;
}

.ledx-image-frame::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 2;
  border-radius: 30px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 55, 0.22), transparent 42%),
    radial-gradient(circle at 18% 18%, rgba(255, 230, 156, 0.26), transparent 28%);
}

.ledx-image-frame::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 3;
  width: 78px;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 26px rgba(215, 155, 41, 0.42);
}

.ledx-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 534px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.ledx-image-frame:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.ledx-image-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 5;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, #ffffff 0%, var(--led-gold-light) 24%, var(--led-gold) 72%);
  color: var(--led-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  box-shadow: 0 26px 60px rgba(2, 6, 55, 0.28);
}

.ledx-image-badge::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px dashed rgba(215, 155, 41, 0.78);
  animation: ledxBadgeRotate 18s linear infinite;
}

.ledx-image-badge span {
  font-size: 50px;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -2px;
}

.ledx-image-badge small {
  max-width: 90px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 900;
  text-transform: uppercase;
}

.ledx-section-copy {
  position: relative;
  padding: 10px 0 10px 18px;
}

.ledx-section-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 76%;
  border-radius: 40px;
  background: linear-gradient(180deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.32);
}

.ledx-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 155, 41, 0.34);
  color: var(--led-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
}

.ledx-section-tag i {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  color: var(--led-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-section-copy h2 {
  max-width: 700px;
  color: var(--led-blue);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.8px;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.ledx-section-copy p {
  max-width: 720px;
  color: #545d7b;
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}



@keyframes ledxBadgeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (min-width: 1200px) {
  .led-dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownShow 0.28s ease forwards;
  }

  @keyframes dropdownShow {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1399px) {
  .ledx-hero-v3-content {
    max-width: 875px;
  }

  .ledx-event-item {
    min-width: 190px;
  }

  .ledx-event-venue {
    min-width: 290px;
  }
}

@media (max-width: 1199px) {
  .custom-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .led-toggler {
    display: flex;
  }

  .led-navbar {
    min-height: 78px;
  }

  .navbar-collapse {
    background: var(--led-blue);
    padding: 18px;
    border-radius: 0 0 24px 24px;
    margin-top: 10px;
    max-height: 78vh;
    overflow-y: auto;
  }

  .led-menu {
    align-items: flex-start;
  }

  .led-menu .nav-link {
    padding: 13px 0 !important;
  }

  .led-menu .nav-link::before,
  .led-menu .nav-link::after {
    display: none;
  }

  .led-dropdown-menu {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    margin-bottom: 12px;
  }

  .visitor-btn {
    margin-top: 15px;
  }

  #ledxHeroSlider,
  #ledxHeroSlider .carousel-inner,
  #ledxHeroSlider .carousel-item {
    height: auto;
    min-height: 760px;
  }

  .ledx-hero-v3-slide {
    min-height: 760px;
  }

  .ledx-hero-v3-inner {
    height: auto;
    min-height: 760px;
  }

  .ledx-hero-v3-content {
    max-width: 820px;
    padding-left: 30px;
  }

  .ledx-hero-v3-event-info {
    width: 100%;
  }

  .ledx-event-item {
    min-width: 0;
    flex: 1;
  }

  .ledx-event-venue {
    flex: 1.4;
  }
}

@media (max-width: 991px) {
  .ledx-hero-v3-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.91) 60%,
        rgba(255, 255, 255, 0.63) 100%
      );
  }

  .ledx-hero-v3-content {
    max-width: 760px;
    padding-left: 0;
  }

  .ledx-hero-v3-title {
    font-size: 55px;
  }

  .ledx-hero-v3-event-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .ledx-event-venue {
    grid-column: 1 / -1;
  }

  .ledx-event-divider {
    display: none;
  }

  .ledx-about-section {
    padding: 85px 0;
  }

  .ledx-section-copy {
    padding-left: 0;
  }

  .ledx-section-copy::before {
    display: none;
  }

  .ledx-image-frame {
    min-height: auto;
  }

  .ledx-image-frame img {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 767px) {
  .custom-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .led-logo img {
    width: 145px;
  }

  .topbar-inner {
    min-height: 46px;
    padding: 7px 0;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar-left {
    display: none !important;
  }

  .topbar-right {
    width: 100%;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .topbar-right > a {
    font-size: 13px;
    font-weight: 700;
    color: var(--led-white);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .top-social {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .top-social a {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 12px;
  }

  #ledxHeroSlider,
  #ledxHeroSlider .carousel-inner,
  #ledxHeroSlider .carousel-item {
    min-height: 850px;
  }

  .ledx-hero-v3-slide,
  .ledx-hero-v3-inner {
    min-height: 850px;
  }

  .ledx-hero-v3-inner {
    align-items: flex-start;
    padding: 75px 0 125px;
  }

  .ledx-hero-v3-bg {
    object-position: 65% center;
  }

  .ledx-hero-v3-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  }

  .ledx-hero-v3-eyebrow {
    font-size: 10px;
    line-height: 1.35;
  }

  .ledx-hero-v3-title {
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -1.6px;
  }

  .ledx-hero-v3-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .ledx-hero-v3-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ledx-common-btn,
  .ledx-mask-button,
  .ledx-outline-button,
  .ledx-outline-button a {
    width: 100%;
  }

  .ledx-hero-v3-event-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 16px;
  }

  .ledx-event-item,
  .ledx-event-venue {
    width: 100%;
    min-width: 100%;
    padding: 11px;
  }

  .ledx-event-item:not(:last-child) {
    border-bottom: 1px solid rgba(2, 6, 55, 0.08);
  }

  .ledx-event-venue {
    grid-column: auto;
  }

  .ledx-hero-v3-navigation {
    left: 20px;
    bottom: 28px;
  }

  .ledx-slider-arrow {
    width: 42px;
    height: 42px;
  }

  .ledx-hero-v3-indicators [data-bs-target] {
    width: 38px;
    height: 38px;
  }

  .ledx-hero-v3-indicators [data-bs-target].active {
    width: 54px;
  }

  .ledx-hero-v3-slide::before {
    width: 4px;
    height: 130px;
  }

  .ledx-about-section {
    padding: 65px 0;
  }

  .ledx-image-frame {
    padding: 8px;
    border-radius: 28px;
  }

  .ledx-image-frame img {
    border-radius: 21px;
  }

  .ledx-image-badge {
    width: 118px;
    height: 118px;
    right: 18px;
    bottom: 18px;
  }

  .ledx-image-badge span {
    font-size: 36px;
  }

  .ledx-image-badge small {
    font-size: 10px;
  }

  .ledx-section-copy h2 {
    font-size: 32px;
    letter-spacing: -0.9px;
  }

  .ledx-section-copy p {
    font-size: 15px;
  }

 
}

@media (max-width: 430px) {
  .ledx-hero-v3-title {
    font-size: 35px;
  }

  .ledx-hero-v3-navigation {
    gap: 7px;
  }

  .ledx-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .ledx-hero-v3-indicators {
    gap: 5px;
  }

  .ledx-hero-v3-indicators [data-bs-target] {
    width: 34px;
    height: 34px;
  }

  .ledx-hero-v3-indicators [data-bs-target].active {
    width: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ledx-hero-v3-bg,
  .ledx-common-btn-link,
  .carousel-item .ledx-hero-v3-eyebrow,
  .carousel-item .ledx-hero-v3-title,
  .carousel-item .ledx-hero-v3-description,
  .carousel-item .ledx-hero-v3-actions,
  .carousel-item .ledx-hero-v3-event-info {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==================================================
   ABOUT SECTION V4 - COMPLETE FINAL CSS
   Use with HTML class: .ledx-about-v4
   Date/Venue cards removed + bottom light image set
================================================== */

.ledx-about-v4 {
  position: relative;
  padding: 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(215, 155, 41, 0.13), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(2, 6, 55, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  color: var(--led-blue);
}

.ledx-about-v4::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-about-v4::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.22);
  pointer-events: none;
}



/* ==================================================
   LEFT VISUAL
================================================== */

.ledx-about-v4-visual {
  position: relative;
  min-height: 690px;
  padding: 55px 35px 115px 70px;
  overflow: visible;
}

.ledx-about-v4-dots {
  position: absolute;
  left: 0;
  top: 34px;
  width: 165px;
  height: 125px;
  z-index: 1;
  opacity: 0.7;
  background-image: radial-gradient(var(--led-gold) 2px, transparent 2px);
  background-size: 18px 18px;
}

.ledx-about-v4-blue-card {
  position: absolute;
  left: 52px;
  top: 128px;
  width: 430px;
  height: 485px;
  z-index: 1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 230, 156, 0.22), transparent 34%),
    linear-gradient(180deg, var(--led-blue-3), var(--led-blue));
  box-shadow: 0 35px 90px rgba(2, 6, 55, 0.20);
}

.ledx-about-v4-gold-line {
  position: absolute;
  left: 114px;
  top: 84px;
  width: 440px;
  height: 545px;
  z-index: 2;
  border: 3px solid var(--led-gold);
  border-left-color: transparent;
  border-radius: 125px 42px 125px 42px;
  transform: rotate(-4deg);
  pointer-events: none;
}

.ledx-about-v4-photo {
  position: relative;
  z-index: 4;
  width: 520px;
  max-width: 100%;
  padding: 9px;
  border-radius: 105px 34px 105px 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-gold-light), var(--led-gold), var(--led-blue-3)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 34px 90px rgba(2, 6, 55, 0.17);
  overflow: visible;
}

.ledx-about-v4-photo::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -28px;
  width: 92%;
  height: 96%;
  z-index: -1;
  border-radius: 115px 38px 115px 38px;
  border: 2px solid rgba(2, 6, 55, 0.16);
  transform: rotate(3deg);
  pointer-events: none;
}

.ledx-about-v4-photo img {
  width: 100%;
  height: 555px;
  object-fit: cover;
  object-position: center;
  border-radius: 94px 26px 94px 26px;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.ledx-about-v4-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

/* Hide date / venue cards if they are still present in HTML */
.ledx-about-v4-info,
.ledx-about-v4-date,
.ledx-about-v4-venue {
  display: none !important;
}

/* Bottom transparent light product image */
.ledx-about-v4-products {
  position: absolute;
  left: 18px;
  bottom: 0;
  z-index: 10;
  width: 560px;
  max-width: 92%;
  pointer-events: none;
}

.ledx-about-v4-products img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(2, 6, 55, 0.20));
}

/* ==================================================
   RIGHT CONTENT
================================================== */

.ledx-about-v4-content {
  position: relative;
  padding: 24px 0 24px 32px;
}

.ledx-about-v4-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 5px;
  height: 74%;
  border-radius: 40px;
  background: linear-gradient(180deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.34);
}

.ledx-about-v4-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 35px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.ledx-about-v4-tag i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  color: var(--led-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-about-v4-content h2 {
  max-width: 760px;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 22px;
  text-transform: capitalize;
}

.ledx-about-v4-content p {
  max-width: 740px;
  color: #545d7b;
  font-size: 16.5px;
  line-height: 1.82;
  margin: 0 0 14px;
}

/* Points */
.ledx-about-v4-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.ledx-about-v4-list div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 6, 55, 0.075);
  box-shadow: 0 12px 32px rgba(2, 6, 55, 0.055);
  transition: all 0.35s ease;
}

.ledx-about-v4-list div:hover {
  transform: translateX(8px);
  border-color: rgba(215, 155, 41, 0.35);
  box-shadow: 0 18px 42px rgba(2, 6, 55, 0.11);
}

.ledx-about-v4-list i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-3));
  color: var(--led-gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-about-v4-list span {
  color: var(--led-blue);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.ledx-about-v4 .ledx-common-btn {
  margin-top: 4px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1399px) {
  .ledx-about-v4-visual {
    padding-left: 35px;
  }

  .ledx-about-v4-photo {
    width: 475px;
  }

  .ledx-about-v4-blue-card {
    width: 395px;
  }

  .ledx-about-v4-products {
    width: 500px;
  }
}

@media (max-width: 1199px) {
  .ledx-about-v4-visual {
    min-height: 650px;
    padding-left: 35px;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .ledx-about-v4 {
    padding: 85px 0;
  }

 

  .ledx-about-v4-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .ledx-about-v4-content {
    padding-left: 0;
  }

  .ledx-about-v4-content::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .ledx-about-v4 {
    padding: 65px 0;
  }

  .ledx-about-v4-visual {
    min-height: auto;
    padding: 0 0 20px;
  }

  .ledx-about-v4-dots,
  .ledx-about-v4-blue-card,
  .ledx-about-v4-gold-line,
  .ledx-about-v4-products {
    display: none;
  }

  .ledx-about-v4-photo {
    width: 100%;
    padding: 8px;
    border-radius: 36px;
  }

  .ledx-about-v4-photo::after {
    display: none;
  }

  .ledx-about-v4-photo img {
    height: auto;
    border-radius: 28px;
  }

  .ledx-about-v4-content h2 {
    font-size: 32px;
    letter-spacing: -0.7px;
  }

  .ledx-about-v4-content p {
    font-size: 15px;
  }

  .ledx-about-v4-list div {
    padding: 12px;
  }
}
/* ==================================================
   PARTNERS / CO-SPONSORED SECTION - BLUE DESIGN
================================================== */

.ledx-partners-section {
  position: relative;
  padding: 60px;
  overflow: hidden;
  color: var(--led-white);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 230, 156, 0.18), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(56, 168, 55, 0.12), transparent 34%),
    linear-gradient(145deg, var(--led-blue) 0%, var(--led-blue-2) 48%, var(--led-blue-3) 100%);
}

.ledx-partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-partners-section::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 70px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(255, 230, 156, 0.20);
  box-shadow: 0 0 80px rgba(215, 155, 41, 0.08);
  pointer-events: none;
}

.ledx-partners-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-partners-heading {
  max-width: 790px;
  margin: 0 auto 52px;
  text-align: center;
}

.ledx-partners-heading span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--led-gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 230, 156, 0.32);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ledx-partners-heading span::before,
.ledx-partners-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 2px;
  border-radius: 20px;
}

.ledx-partners-heading span::before {
  right: calc(100% + 14px);
  background: linear-gradient(90deg, transparent, var(--led-gold));
}

.ledx-partners-heading span::after {
  left: calc(100% + 14px);
  background: linear-gradient(90deg, var(--led-gold), transparent);
}

.ledx-partners-heading span i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  color: var(--led-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(215, 155, 41, 0.30);
}

.ledx-partners-heading h2 {
  margin: 0 0 15px;
  color: var(--led-white);
  font-size: 50px;
  line-height: 1.05;
  font-weight: 950;
}

.ledx-partners-heading p {
  max-width: 710px;
  margin: 0 auto;
  color: #dce2ff;
  font-size: 17px;
  line-height: 1.75;
}

/* MAIN CARD */
.ledx-partners-card {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 230, 156, 0.18), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(56, 168, 55, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 230, 156, 0.20);
  box-shadow:
    0 42px 105px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ledx-partners-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-partners-card::after {
  content: "";
  position: absolute;
  right: -95px;
  top: -95px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(215, 155, 41, 0.16);
  pointer-events: none;
}

/* CARD HEADER */
.ledx-partners-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.ledx-partners-head-icon {
  position: relative;
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  color: var(--led-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 18px 38px rgba(215, 155, 41, 0.34);
}

.ledx-partners-head-icon::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(255, 230, 156, 0.28);
}

.ledx-partners-card-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--led-gold-light);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.ledx-partners-card-head h3 {
  margin: 0;
  max-width: 680px;
  color: var(--led-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.1px;
}

/* LOGO GRID */
.ledx-partners-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ledx-partner-logo {
  position: relative;
  min-height: 142px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 255, 0.92));
  border: 1px solid rgba(255, 230, 156, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(2, 6, 55, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
}

.ledx-partner-logo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(2, 6, 55, 0.13);
  pointer-events: none;
}

.ledx-partner-logo::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -90%;
  width: 48%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 230, 156, 0.62),
    transparent
  );
  transform: rotate(25deg);
  transition: all 0.65s ease;
}

.ledx-partner-logo:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 155, 41, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(215, 155, 41, 0.16),
    0 28px 64px rgba(0, 0, 0, 0.22);
}

.ledx-partner-logo:hover::after {
  left: 135%;
}

.ledx-partner-logo img {
  position: relative;
  z-index: 2;
  max-width: 165px;
  max-height: 82px;
  object-fit: contain;
  
  opacity: 1;
  transition: all 0.35s ease;
}

.ledx-partner-logo:hover img {

  opacity: 1;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ledx-partners-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .ledx-partners-section {
    padding: 70px 0;
  }

  .ledx-partners-heading {
    margin-bottom: 34px;
  }

  .ledx-partners-heading span::before,
  .ledx-partners-heading span::after {
    display: none;
  }

  .ledx-partners-heading h2 {
    font-size: 34px;
  }

  .ledx-partners-heading p {
    font-size: 15px;
  }

  .ledx-partners-card {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .ledx-partners-card-head {
    align-items: flex-start;
  }

  .ledx-partners-head-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
  }

  .ledx-partners-card-head h3 {
    font-size: 24px;
  }

  .ledx-partners-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ledx-partner-logo {
    min-height: 112px;
  }
}

/* ==================================================
   EXHIBITOR SHOWCASE - NEW REDESIGN
   4 Image Cards + Yellow Circle Removed
================================================== */

.ledx-exhibitor-showcase {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 45%, #f7f8ff 100%);
}

.ledx-exhibitor-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-exhibitor-showcase::after {
  content: "EXHIBITORS";
  position: absolute;
  right: 30px;
  top: 55px;
  color: rgba(2, 6, 55, 0.035);
  font-size: 60px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  pointer-events: none;
}

.ledx-exhibitor-showcase .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-exhibitor-showcase-head {
  max-width: 880px;
  margin-bottom: 48px;
}

.ledx-exhibitor-showcase-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-exhibitor-showcase-head span i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-exhibitor-showcase-head h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--led-blue);
  font-size:50px;
  line-height: 1.04;
  font-weight: 950;
}

.ledx-exhibitor-showcase-head p {
  max-width: 720px;
  margin: 0;
  color: #5b647e;
  font-size: 18px;
}

/* CARD GRID */
.ledx-exhibitor-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* IMAGE CARD */
.ledx-exhibitor-img-card {
  position: relative;
  min-height: 330px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--led-blue);
  box-shadow: 0 26px 70px rgba(2, 6, 55, 0.16);
  isolation: isolate;
  transition: all 0.45s ease;
}

/* REMOVE YELLOW CIRCLE */
.ledx-exhibitor-img-card::after {
  display: none !important;
  content: none !important;
}

/* DARK IMAGE OVERLAY */
.ledx-exhibitor-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 55, 0.02) 0%,
      rgba(2, 6, 55, 0.20) 42%,
      rgba(2, 6, 55, 0.88) 100%
    );
}

.ledx-exhibitor-img-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: all 0.7s ease;
}

/* NEW BOTTOM NAME DESIGN */
.ledx-exhibitor-name {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 16px 17px;
  border-radius: 20px;
  background: rgba(1, 4, 40, 0.72);
  border: 1px solid rgba(255, 230, 156, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ledx-exhibitor-name::before {
  content: "";
  position: absolute;
  left: 17px;
  top: -1px;
  width: 58px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light));
}

.ledx-exhibitor-name h3 {
  margin: 0;
  color: var(--led-white);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.4px;
}


/* HOVER */
.ledx-exhibitor-img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 95px rgba(2, 6, 55, 0.25);
}

.ledx-exhibitor-img-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06);
}

.ledx-exhibitor-img-card:hover .ledx-exhibitor-name {
  background: rgba(1, 4, 40, 0.88);
  border-color: rgba(255, 230, 156, 0.38);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-exhibitor-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ledx-exhibitor-showcase::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .ledx-exhibitor-showcase {
    padding: 70px 0;
  }

  .ledx-exhibitor-showcase-head h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .ledx-exhibitor-showcase-head p {
    font-size: 15px;
  }

  .ledx-exhibitor-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ledx-exhibitor-img-card,
  .ledx-exhibitor-img-card img {
    min-height: 270px;
  }

  .ledx-exhibitor-name h3 {
    font-size: 19px;
  }
}
/* ==================================================
   VISITOR PROFILE CLEAN DESIGN - FINAL
   Icons Removed From Cards
================================================== */

.ledx-visitor-clean {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 10%, rgba(18, 103, 232, 0.13), transparent 28%),
    radial-gradient(circle at 96% 6%, rgba(18, 103, 232, 0.18), transparent 34%),
    radial-gradient(circle at 92% 95%, rgba(9, 19, 117, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #eaf2ff 100%);
}

.ledx-visitor-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image: radial-gradient(rgba(18, 103, 232, 0.28) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image:
    radial-gradient(circle at 6% 44%, #000 0 13%, transparent 24%),
    radial-gradient(circle at 94% 34%, #000 0 12%, transparent 23%);
  mask-image:
    radial-gradient(circle at 6% 44%, #000 0 13%, transparent 24%),
    radial-gradient(circle at 94% 34%, #000 0 12%, transparent 23%);
}

.ledx-visitor-clean::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -125px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 103, 232, 0.18), rgba(18, 103, 232, 0.04), transparent 70%);
  border: 1px solid rgba(18, 103, 232, 0.12);
  pointer-events: none;
}

.ledx-visitor-clean .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-visitor-clean-head {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.ledx-visitor-clean-head > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #1267e8;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 19, 117, 0.10);
  box-shadow: 0 14px 34px rgba(9, 19, 117, 0.12);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ledx-visitor-clean-head > span::after {
  content: "";
  position: absolute;
  left: 74px;
  right: 74px;
  bottom: -3px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, var(--led-gold), transparent);
}

.ledx-visitor-clean-head > span i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--led-white);
  background: linear-gradient(145deg, #1267e8, var(--led-blue-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(9, 19, 117, 0.20);
}

.ledx-visitor-clean-head h2 {
  margin: 0 0 16px;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1;
  font-weight: 950;
}

.ledx-visitor-clean-head p {
  max-width: 780px;
  margin: 0 auto;
  color: #5b647e;
  font-size: 18px;
  line-height: 1.65;
}

/* GRID */
.ledx-visitor-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

/* CARD */
.ledx-visitor-clean-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow:
    0 24px 65px rgba(9, 19, 117, 0.14),
    0 8px 22px rgba(2, 6, 55, 0.06);
  transition: all 0.45s ease;
}

.ledx-visitor-clean-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 5px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, #1267e8, var(--led-blue-3));
}

/* IMAGE */
.ledx-visitor-clean-img {
  height: 305px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background: #eaf2ff;
}

.ledx-visitor-clean-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: all 0.75s ease;
}

/* NAME ONLY */
.ledx-visitor-clean-info {
  min-height: 96px;
  padding: 24px 22px 28px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ledx-visitor-clean-info h3 {
  margin: 0;
  color: var(--led-blue);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.ledx-visitor-clean-info span {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 20px;
  background: var(--led-gold);
}

/* HOVER */
.ledx-visitor-clean-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 88px rgba(9, 19, 117, 0.22),
    0 16px 36px rgba(2, 6, 55, 0.10);
}

.ledx-visitor-clean-card:hover .ledx-visitor-clean-img img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-visitor-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ledx-visitor-clean-img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .ledx-visitor-clean {
    padding: 70px 0;
  }

  .ledx-visitor-clean-head {
    margin-bottom: 34px;
  }

  .ledx-visitor-clean-head h2 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .ledx-visitor-clean-head p {
    font-size: 16px;
  }

  .ledx-visitor-clean-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ledx-visitor-clean-img {
    height: 270px;
  }

  .ledx-visitor-clean-info {
    min-height: auto;
    padding: 22px 20px 26px;
  }

  .ledx-visitor-clean-info h3 {
    font-size: 22px;
  }
}


/* ==================================================
   OUR MEMORIES - ROAD STYLE SLIDER REDESIGN
================================================== */

.ledx-memories-road-style {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 155, 41, 0.12), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(9, 19, 117, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 46%, #f7f8ff 100%);
}

.ledx-memories-road-style::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-memories-road-style::after {
  content: "MEMORIES";
  position: absolute;
  right: 28px;
  top: 68px;
  color: rgba(2, 6, 55, 0.035);
  font-size: clamp(78px, 11vw, 170px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -7px;
  pointer-events: none;
}

.ledx-memories-road-style .container-fluid {
  position: relative;
  z-index: 2;
}

.ledx-memory-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ledx-memory-bg-circle.circle-one {
  left: -135px;
  bottom: 70px;
  width: 310px;
  height: 310px;
  border: 50px solid rgba(215, 155, 41, 0.075);
}

.ledx-memory-bg-circle.circle-two {
  right: -150px;
  top: 125px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(215, 155, 41, 0.25);
}

/* HEADING */
.ledx-memory-road-head {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.ledx-memory-road-head span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-memory-road-head span::before,
.ledx-memory-road-head span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 2px;
  border-radius: 20px;
}

.ledx-memory-road-head span::before {
  right: calc(100% + 14px);
  background: linear-gradient(90deg, transparent, var(--led-gold));
}

.ledx-memory-road-head span::after {
  left: calc(100% + 14px);
  background: linear-gradient(90deg, var(--led-gold), transparent);
}



.ledx-memory-road-head h2 {
  margin: 0 0 14px;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1.06;
  font-weight: 950;
}

.ledx-memory-road-head p {
  max-width: 730px;
  margin: 0 auto;
  color: #5b647e;
  font-size: 17px;
  line-height: 1.75;
}

/* SLIDER STAGE */
.ledx-memory-road-slider {
  position: relative;
}

.ledx-memory-slide-stage {
  position: relative;
  padding: 8px 0 18px;
  overflow: visible;
}

/* LEFT PEEK CARD */
.ledx-memory-peek-card {
  position: absolute;
  left: -145px;
  top: 44px;
  width: 260px;
  height: 205px;
  border-radius: 26px;
  overflow: hidden;
  border: 7px solid #ffffff;
  background: var(--led-blue);
  opacity: 0.45;
  box-shadow: 0 24px 60px rgba(2, 6, 55, 0.12);
  pointer-events: none;
}

.ledx-memory-peek-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3 CARDS */
.ledx-memory-road-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ledx-memory-road-card {
  position: relative;
  height: 285px;
  border-radius: 32px;
  overflow: hidden;
  border: 7px solid #ffffff;
  background: var(--led-blue);
  /* box-shadow:
    0 28px 75px rgba(2, 6, 55, 0.15),
    0 8px 24px rgba(2, 6, 55, 0.08); */
  isolation: isolate;
  transition: all 0.45s ease;
}

.ledx-memory-road-card.center-card {
  height: 310px;
  transform: translateY(-12px);
}

.ledx-memory-road-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

}

.ledx-memory-road-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.75s ease;
}


.ledx-memory-road-card:hover {
  transform: translateY(-10px);
  /* box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.24),
    0 12px 28px rgba(2, 6, 55, 0.12); */
}

.ledx-memory-road-card.center-card:hover {
  transform: translateY(-22px);
}

.ledx-memory-road-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

/* CONTROLS */
.ledx-memory-road-controls {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ledx-memory-road-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  outline: none;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  box-shadow: 0 16px 38px rgba(2, 6, 55, 0.22);
  transition: all 0.35s ease;
}

.ledx-memory-road-btn:hover {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: translateY(-4px);
}

.ledx-memory-road-dots {
  position: static;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ledx-memory-road-dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  margin: 0;
  opacity: 1;
  background: rgba(2, 6, 55, 0.22);
  transition: all 0.35s ease;
}

.ledx-memory-road-dots .active {
  width: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--led-gold), var(--led-orange));
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-memory-road-grid {
    grid-template-columns: 1fr;
  }

  .ledx-memory-road-card,
  .ledx-memory-road-card.center-card {
    height: 330px;
    transform: none;
  }

  .ledx-memory-road-card.center-card:hover {
    transform: translateY(-10px);
  }

  .ledx-memory-peek-card,
  .ledx-memories-road-style::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .ledx-memories-road-style {
    padding: 70px 0;
  }

  .ledx-memory-road-head span::before,
  .ledx-memory-road-head span::after {
    display: none;
  }

  .ledx-memory-road-head h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .ledx-memory-road-head p {
    font-size: 15px;
  }

  .ledx-memory-road-card,
  .ledx-memory-road-card.center-card {
    height: 260px;
    border-width: 6px;
    border-radius: 24px;
  }

  

  .ledx-memory-road-controls {
    margin-top: 26px;
  }
}
/* ==================================================
   VENUE SECTION - FINAL CLEAN BALANCED DESIGN
   Left + Right Same Height | No Road Strip
================================================== */

.ledx-venue-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 155, 41, 0.12), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(9, 19, 117, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 48%, #f7f8ff 100%);
}

.ledx-venue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-venue-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 75px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.26);
  background: rgba(215, 155, 41, 0.045);
  pointer-events: none;
}

.ledx-venue-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* MAIN CARD */
.ledx-venue-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 46px;
  min-height: 560px;
  padding: 42px 48px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 155, 41, 0.22);
  box-shadow:
    0 42px 110px rgba(2, 6, 55, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.ledx-venue-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 5px;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(180deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-venue-card::after {
  content: "";
  position: absolute;
  right: -92px;
  top: -92px;
  width: 230px;
  height: 230px;
  border-radius: 48px;
  background: rgba(215, 155, 41, 0.10);
  transform: rotate(18deg);
  pointer-events: none;
}

/* LEFT CONTENT */
.ledx-venue-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ledx-venue-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--led-orange);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 155, 41, 0.45);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.07);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-venue-tag i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-venue-content h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--led-blue);
  font-size: 40px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1px;
}

.ledx-venue-content p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #5b647e;
  font-size: 16px;
  line-height: 1.75;
}

/* INFO BOXES */
.ledx-venue-info-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.ledx-venue-info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow:
    0 14px 36px rgba(9, 19, 117, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  transition: all 0.35s ease;
}

.ledx-venue-info-box:hover {
  transform: translateX(7px);
  border-color: rgba(215, 155, 41, 0.34);
  box-shadow: 0 24px 60px rgba(9, 19, 117, 0.12);
}

.ledx-venue-info-box > i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 14px 30px rgba(2, 6, 55, 0.18);
}

.ledx-venue-info-box span {
  display: block;
  margin-bottom: 5px;
  color: #8a91a8;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-venue-info-box strong {
  display: block;
  color: var(--led-blue);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

/* ACTIONS */
.ledx-venue-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.ledx-venue-call {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 16px 38px rgba(2, 6, 55, 0.20);
  transition: all 0.35s ease;
}

.ledx-venue-call:hover {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: translateY(-4px);
}

/* RIGHT MAP */
.ledx-venue-map-area {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.ledx-venue-map-area::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 28px;
  width: 92%;
  height: calc(100% - 56px);
  border-radius: 32px;
  background: linear-gradient(145deg, var(--led-blue), #010428);
  box-shadow: 0 28px 70px rgba(2, 6, 55, 0.24);
  transform: rotate(3deg);
}

.ledx-venue-map-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--led-blue);
  border: 8px solid #ffffff;
  box-shadow:
    0 34px 90px rgba(2, 6, 55, 0.18),
    0 10px 30px rgba(2, 6, 55, 0.08);
}

.ledx-venue-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

/* REMOVE OLD ROAD STRIP */
.ledx-venue-road-shape,
.ledx-venue-road-shape span {
  display: none !important;
  content: none !important;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-venue-card {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .ledx-venue-content {
    justify-content: flex-start;
  }

  .ledx-venue-map-area {
    height: auto;
    min-height: auto;
  }

  .ledx-venue-map-area::before {
    height: 92%;
  }

  .ledx-venue-map-frame {
    height: 430px;
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .ledx-venue-section {
    padding: 70px 0;
  }

  .ledx-venue-card {
    padding: 24px 18px;
    border-radius: 26px;
    gap: 28px;
  }

  .ledx-venue-card::before {
    top: 24px;
    bottom: 24px;
  }

  .ledx-venue-content h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .ledx-venue-content p {
    font-size: 15px;
  }

  .ledx-venue-info-box {
    align-items: flex-start;
    padding: 15px;
  }

  .ledx-venue-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ledx-venue-map-area::before {
    display: none;
  }

  .ledx-venue-map-frame {
    height: 320px;
    min-height: 320px;
    border-radius: 22px;
    border-width: 6px;
  }
}

/* ==================================================
   FOOTER PRO - CREATIVE LED EXPO FOOTER
   No CTA section, no extra images
================================================== */

.ledx-footer-pro {
  position: relative;
  overflow: hidden;
  padding: 86px 0 0;
  color: var(--led-white);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 230, 156, 0.18), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(56, 168, 55, 0.12), transparent 34%),
    linear-gradient(145deg, #010428 0%, var(--led-blue) 48%, var(--led-blue-2) 100%);
}

.ledx-footer-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-footer-pro::after {
  content: "LED EXPO";
  position: absolute;
  right: -18px;
  bottom: 26px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(80px, 12vw, 190px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -7px;
  pointer-events: none;
  white-space: nowrap;
}

.ledx-footer-pro .container-fluid {
  position: relative;
  z-index: 3;
}

/* DECORATIVE LIGHT LINES */
.ledx-footer-light-line {
  position: absolute;
  height: 4px;
  border-radius: 50px;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 230, 156, 0.95) 0 42px,
    transparent 42px 70px
  );
  box-shadow: 0 0 32px rgba(215, 155, 41, 0.34);
  transform: rotate(-2deg);
}

.ledx-footer-line-one {
  left: -8%;
  top: 42px;
  width: 70%;
  opacity: 0.45;
}

.ledx-footer-line-two {
  right: -10%;
  top: 150px;
  width: 58%;
  opacity: 0.35;
}

/* ORBS */
.ledx-footer-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ledx-footer-orb-one {
  left: -145px;
  bottom: 40px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(215, 155, 41, 0.055);
}

.ledx-footer-orb-two {
  right: -150px;
  top: 90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 230, 156, 0.20);
  box-shadow: inset 0 0 90px rgba(215, 155, 41, 0.05);
}


/* MAIN GRID */
.ledx-footer-pro-main {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.85fr 0.78fr 1.05fr;
  gap: 34px;
  padding-bottom: 52px;
}


.ledx-footer-pro-logo-wrap a:first-child {
  background: transparent !important;
  border: none !important;
padding: 10px 0 !important;
}

.ledx-footer-pro-logo-wrap a:first-child img {
  max-width: 200px;
  max-height: 100px;
}

.ledx-footer-pro-brand p {
  max-width: 470px;
  margin: 0 0 24px;
  color: var(--led-text);
  font-size: 15.5px;
  line-height: 1.78;
}

/* SOCIAL */
.ledx-footer-pro-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ledx-footer-pro-social a {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--led-gold-light);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 230, 156, 0.17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.35s ease;
}

.ledx-footer-pro-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: scale(0);
  transition: all 0.35s ease;
}

.ledx-footer-pro-social a i {
  position: relative;
  z-index: 2;
}

.ledx-footer-pro-social a:hover {
  color: var(--led-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(215, 155, 41, 0.24);
}

.ledx-footer-pro-social a:hover::before {
  transform: scale(1);
}

/* TITLES */
.ledx-footer-pro h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 14px;
  color: var(--led-white);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.ledx-footer-pro h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

/* LINKS */
.ledx-footer-pro-links a {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 13px;
  padding-left: 18px;
  color: var(--led-text);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
  transition: all 0.3s ease;
}

.ledx-footer-pro-links a::before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--led-gold-light);
  transition: all 0.3s ease;
}

.ledx-footer-pro-links a:hover {
  color: var(--led-gold-light);
  transform: translateX(6px);
}

/* CONTACT */
.ledx-footer-pro-contact div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 15px;
  color: var(--led-text);
  font-size: 15px;
  line-height: 1.55;
}

.ledx-footer-pro-contact i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(215, 155, 41, 0.20);
}

.ledx-footer-pro-contact a,
.ledx-footer-pro-contact span {
  color: var(--led-text);
}

.ledx-footer-pro-contact a:hover {
  color: var(--led-gold-light);
}



/* BOTTOM */
.ledx-footer-pro-bottom {
  position: relative;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ledx-footer-pro-bottom p {
  margin: 0;
  color: var(--led-text);
  font-size: 14px;
}

.ledx-footer-pro-bottom div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ledx-footer-pro-bottom a {
  color: var(--led-gold-light);
  font-size: 14px;
  font-weight: 800;
}

.ledx-footer-pro-bottom span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--led-gold);
}

/* ==================================================
   FOOTER MAIN GRID - RESPONSIVE FIX
================================================== */

.ledx-footer-pro-main {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 1.05fr;
  gap: 34px;
  padding-bottom: 52px;
  align-items: start;
}

/* BRAND */
.ledx-footer-pro-brand {
  max-width: 100%;
}

.ledx-footer-pro-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.ledx-footer-pro-logo-wrap a:first-child {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.ledx-footer-pro-logo-wrap a:first-child img {
  max-width: 190px;
  max-height: 92px;
  object-fit: contain;
}

.ledx-footer-pro-brand p {
  max-width: 460px;
  margin: 0 0 24px;
  color: var(--led-text);
  font-size: 15.5px;
  line-height: 1.78;
}

/* CONTACT SHOULD NOT GO FULL WIDTH ON DESKTOP */
.ledx-footer-pro-contact {
  grid-column: auto !important;
}

/* ==================================================
   FOOTER RESPONSIVE FINAL
================================================== */

/* Large desktop */
@media (min-width: 1400px) {
  .ledx-footer-pro-main {
    grid-template-columns: 1.45fr 0.75fr 0.75fr 1.05fr;
    gap: 34px;
  }
}

/* Laptop / small desktop - keep 4 columns */
@media (max-width: 1399px) and (min-width: 1200px) {
  .ledx-footer-pro-main {
    grid-template-columns: 1.35fr 0.72fr 0.72fr 1fr;
    gap: 28px;
  }

  .ledx-footer-pro-contact {
    grid-column: auto !important;
  }

  .ledx-footer-pro-brand p,
  .ledx-footer-pro-links a,
  .ledx-footer-pro-contact div {
    font-size: 14px;
  }

  .ledx-footer-pro h3 {
    font-size: 18px;
  }

  .ledx-footer-pro-logo-wrap a:first-child img {
    max-width: 170px;
    max-height: 82px;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .ledx-footer-pro {
    padding-top: 75px;
  }

  .ledx-footer-pro-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
    padding-bottom: 46px;
  }

  .ledx-footer-pro-brand {
    grid-column: 1 / -1;
  }

  .ledx-footer-pro-contact {
    grid-column: auto !important;
  }

  .ledx-footer-pro-logo-wrap a:first-child img {
    max-width: 185px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ledx-footer-pro {
    padding-top: 65px;
  }

  .ledx-footer-pro::after {
    display: none;
  }

  .ledx-footer-line-one,
  .ledx-footer-line-two,
  .ledx-footer-orb,
  .ledx-footer-orb-one,
  .ledx-footer-orb-two {
    display: none !important;
  }

  .ledx-footer-pro-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .ledx-footer-pro-brand,
  .ledx-footer-pro-links,
  .ledx-footer-pro-contact {
    width: 100%;
  }

  .ledx-footer-pro-logo-wrap {
    margin-bottom: 18px;
  }

  .ledx-footer-pro-logo-wrap a {
    min-height: auto !important;
  }

  .ledx-footer-pro-logo-wrap a:first-child img {
    max-width: 165px;
    max-height: 78px;
  }

  .ledx-footer-pro-brand p {
    max-width: 100%;
    font-size: 14.5px;
    line-height: 1.75;
  }

  .ledx-footer-pro-social {
    gap: 9px;
  }

  .ledx-footer-pro-social a {
    width: 40px;
    height: 40px;
  }

  .ledx-footer-pro h3 {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .ledx-footer-pro-links a {
    margin-bottom: 12px;
    font-size: 14.5px;
  }

  .ledx-footer-pro-contact div {
    gap: 12px;
    font-size: 14.5px;
  }

  .ledx-footer-pro-contact i {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .ledx-footer-pro-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
  }

  .ledx-footer-pro-bottom div {
    flex-wrap: wrap;
    gap: 9px;
  }

  .ledx-footer-pro-bottom p,
  .ledx-footer-pro-bottom a {
    font-size: 13.5px;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .ledx-footer-pro-logo-wrap a:first-child img {
    max-width: 150px;
  }

  .ledx-footer-pro-brand p {
    font-size: 14px;
  }

  .ledx-footer-pro h3 {
    font-size: 18px;
  }

  .ledx-footer-pro-links a,
  .ledx-footer-pro-contact div {
    font-size: 14px;
  }
}
/* ==================================================
   REMOVE ALL SQUARE / GRID BACKGROUND FROM SECTIONS
   Paste this at the END of your CSS file
================================================== */

/* HERO GRID REMOVE */
.ledx-hero-v3-grid {
  display: none !important;
  opacity: 0 !important;
  background-image: none !important;
}

/* SECTION GRID BACKGROUND REMOVE */
.ledx-about-section::before,
.ledx-about-v4::before,
.ledx-partners-section::before,
.ledx-exhibitor-showcase::before,
.ledx-visitor-clean::before,
.ledx-memories-road-style::before,
.ledx-venue-section::before,
.ledx-footer-pro::before {
  display: none !important;
  opacity: 0 !important;
  background-image: none !important;
  content: none !important;
}

/* EXTRA DOT / SQUARE PATTERN REMOVE */
.ledx-about-v4-dots,
.ledx-memory-bg-circle,
.ledx-footer-light-line,
.ledx-footer-line-one,
.ledx-footer-line-two {
  display: none !important;
}

/* OPTIONAL: if any section still shows square bg */
section::before {
  background-image: none !important;
}


/* ==================================================
   BECOME EXHIBITOR PAGE DESIGN
================================================== */

.ledx-exhibitor-page {
  position: relative;
  padding: 95px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(215, 155, 41, 0.13), transparent 30%),
    radial-gradient(circle at 94% 82%, rgba(9, 19, 117, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 45%, #f7f8ff 100%);
}

.ledx-exhibitor-page::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 52px solid rgba(215, 155, 41, 0.07);
  pointer-events: none;
}

.ledx-exhibitor-page::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 120px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.25);
  pointer-events: none;
}

.ledx-exhibitor-page .container-fluid {
  position: relative;
  z-index: 2;
}

/* PAGE HEADING */
.ledx-exhibitor-page-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.ledx-exhibitor-page-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-exhibitor-page-head span i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-exhibitor-page-head h1 {
  margin: 0 0 16px;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.8px;
}

.ledx-exhibitor-page-head p {
  max-width: 780px;
  margin: 0 auto;
  color: #5b647e;
  font-size: 17px;
  line-height: 1.75;
}

/* MAIN WRAP */
.ledx-exhibitor-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

/* ==================================================
   EXHIBITOR LEFT IMAGE CARD
   Replace old CSS booth design
================================================== */

.ledx-exhibitor-left {
  position: relative;
}

.ledx-exhibitor-image-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  border: 1px solid rgba(215, 155, 41, 0.22);
  box-shadow:
    0 34px 90px rgba(2, 6, 55, 0.18),
    0 10px 30px rgba(2, 6, 55, 0.08);
}

.ledx-exhibitor-image-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  z-index: 2;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-exhibitor-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 6, 55, 0.00) 0%, rgba(2, 6, 55, 0.05) 60%, rgba(2, 6, 55, 0.22) 100%);
}

.ledx-exhibitor-image-card img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.7s ease;
}

.ledx-exhibitor-image-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}

/* OLD LEFT SIDE CONTENT REMOVE */
.ledx-exhibitor-visual-card,
.ledx-booth-shape,
.ledx-booth-light,
.ledx-booth-screen,
.ledx-booth-counter,
.ledx-exhibitor-floating,
.ledx-exhibitor-benefits {
  display: none !important;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-exhibitor-image-card {
    min-height: 520px;
  }

  .ledx-exhibitor-image-card img {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .ledx-exhibitor-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .ledx-exhibitor-image-card img {
    min-height: 360px;
  }
}




/* FLOATING BOX */
.ledx-exhibitor-floating {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 230, 156, 0.20);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(14px);
}

.ledx-exhibitor-floating i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ledx-exhibitor-floating strong {
  display: block;
  color: var(--led-white);
  font-size: 16px;
  font-weight: 950;
}

.ledx-exhibitor-floating span {
  display: block;
  margin-top: 4px;
  color: var(--led-text);
  font-size: 13px;
}



/* FORM CARD */
.ledx-exhibitor-form-card {
  position: relative;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.13),
    0 10px 28px rgba(2, 6, 55, 0.06);
}

.ledx-exhibitor-form-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}


/* FORM */
.ledx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ledx-form-group {
  margin-bottom: 16px;
}

.ledx-form-group input,
.ledx-form-group textarea {
  width: 100%;
  border: 1px solid rgba(9, 19, 117, 0.12);
  outline: none;
  border-radius: 14px;
  padding: 15px 17px;
  background: #ffffff;
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.ledx-form-group textarea {
  resize: none;
}

.ledx-form-group input::placeholder,
.ledx-form-group textarea::placeholder {
  color: #6d748d;
  font-weight: 650;
}

.ledx-form-group input:focus,
.ledx-form-group textarea:focus {
  border-color: var(--led-gold);
  box-shadow: 0 0 0 4px rgba(215, 155, 41, 0.12);
}

/* CAPTCHA */
.ledx-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ledx-captcha-box {
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(
      -8deg,
      #f2f2f2 0 8px,
      #d7d7d7 8px 14px
    );
  border: 1px solid rgba(9, 19, 117, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ledx-captcha-box span {
  color: #111111;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  transform: rotate(-5deg);
}

.ledx-captcha-refresh {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 12px;
  color: var(--led-white);
  background: linear-gradient(145deg, var(--led-orange), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-captcha-input {
  max-width: 220px;
}

.ledx-form-submit-row {
  margin-top: 8px;
}

.ledx-form-submit-row button {
  font-family: inherit;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-exhibitor-form-wrap {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 767px) {
  .ledx-exhibitor-page {
    padding: 70px 0;
  }

  .ledx-exhibitor-bg-text {
    display: none;
  }

  .ledx-exhibitor-page-head h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-exhibitor-page-head p {
    font-size: 15px;
  }

  .ledx-exhibitor-form-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .ledx-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ledx-exhibitor-benefits {
    grid-template-columns: 1fr;
  }


  .ledx-form-title h2 {
    font-size: 28px;
  }

  .ledx-captcha-input {
    max-width: 100%;
  }
}/* DYNAMIC CAPTCHA ERROR */
.ledx-captcha-error {
  display: block;
  margin-top: 7px;
  color: #d93025;
  font-size: 13px;
  font-weight: 800;
}

.ledx-form-group input.captcha-invalid {
  border-color: #d93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.10);
}

.ledx-captcha-box span {
  display: inline-block;
}


/* ==================================================
   EXHIBITOR LOGIN PAGE - LED EXPO DESIGN
================================================== */

.ledx-login-page {
  position: relative;
  padding: 95px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(215, 155, 41, 0.13), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(9, 19, 117, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 45%, #f7f8ff 100%);
}

.ledx-login-page::before {
  content: "";
  position: absolute;
  left: -135px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 52px solid rgba(215, 155, 41, 0.07);
  pointer-events: none;
}

.ledx-login-page::after {
  content: "";
  position: absolute;
  right: -155px;
  top: 120px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.25);
  pointer-events: none;
}

.ledx-login-page .container-fluid {
  position: relative;
  z-index: 2;
}

/* ==================================================
   LOGIN LEFT IMAGE CARD
   Replace old left content with image
================================================== */

.ledx-login-visual {
  position: relative;
}

.ledx-login-image-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  border: 1px solid rgba(215, 155, 41, 0.22);
  box-shadow:
    0 34px 90px rgba(2, 6, 55, 0.18),
    0 10px 30px rgba(2, 6, 55, 0.08);
}

.ledx-login-image-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  z-index: 2;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-login-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 55, 0.00) 0%,
      rgba(2, 6, 55, 0.03) 60%,
      rgba(2, 6, 55, 0.20) 100%
    );
}

.ledx-login-image-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.7s ease;
}

.ledx-login-image-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

/* OLD LOGIN LEFT CONTENT REMOVE */
.ledx-login-visual-card,
.ledx-login-screen,
.ledx-login-bulb,
.ledx-login-stat-card,
.ledx-login-light-line {
  display: none !important;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-login-image-card {
    min-height: 500px;
  }

  .ledx-login-image-card img {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .ledx-login-image-card {
    min-height: 350px;
    border-radius: 24px;
  }

  .ledx-login-image-card img {
    min-height: 350px;
  }
}

/* HEADING */
.ledx-login-head {
  max-width: 850px;
  margin: 0 auto 56px;
  text-align: center;
}

.ledx-login-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-login-head span i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-login-head h1 {
  margin: 0 0 14px;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1.05;
  font-weight: 950;
}

.ledx-login-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #5b647e;
  font-size: 17px;
  line-height: 1.75;
}

/* MAIN LAYOUT */
.ledx-login-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 46px;
  align-items: center;
}


/* FORM CARD */
.ledx-login-form-card {
  position: relative;
  padding: 44px;
  border-radius: 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.13),
    0 10px 28px rgba(2, 6, 55, 0.06);
}

.ledx-login-form-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-login-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: 0 18px 42px rgba(215, 155, 41, 0.26);
}

.ledx-login-form-title {
  text-align: center;
  margin-bottom: 30px;
}

.ledx-login-form-title h2 {
  margin: 0 0 8px;
  color: var(--led-blue);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.ledx-login-form-title p {
  margin: 0;
  color: #66708c;
  font-size: 15px;
  line-height: 1.5;
}

/* INPUTS */
.ledx-login-group {
  margin-bottom: 20px;
}

.ledx-login-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--led-blue);
  font-size: 14px;
  font-weight: 950;
}

.ledx-login-input {
  position: relative;
}

.ledx-login-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--led-gold);
  font-size: 17px;
}

.ledx-login-input input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(9, 19, 117, 0.12);
  outline: none;
  border-radius: 15px;
  padding: 0 18px 0 48px;
  background: #ffffff;
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 750;
  transition: all 0.3s ease;
}

.ledx-login-input input::placeholder {
  color: #6d748d;
  font-weight: 650;
}

.ledx-login-input input:focus {
  border-color: var(--led-gold);
  box-shadow: 0 0 0 4px rgba(215, 155, 41, 0.12);
}

/* OPTIONS */
.ledx-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 24px;
}

.ledx-login-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b647e;
  font-size: 14px;
  font-weight: 750;
}

.ledx-login-options input {
  accent-color: var(--led-gold);
}

.ledx-login-options a {
  color: var(--led-orange);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.ledx-login-options a:hover {
  color: var(--led-blue);
}

.ledx-login-register {
  margin-top: 22px;
  text-align: center;
  color: #5b647e;
  font-size: 14px;
  font-weight: 750;
}

.ledx-login-register a {
  color: var(--led-orange);
  font-weight: 950;
  text-decoration: none;
}

.ledx-login-register a:hover {
  color: var(--led-blue);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-login-wrapper {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 767px) {
  .ledx-login-page {
    padding: 70px 0;
  }

  .ledx-login-bg-text {
    display: none;
  }

  .ledx-login-head h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-login-head p {
    font-size: 15px;
  }

  .ledx-login-form-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .ledx-login-form-title h2 {
    font-size: 28px;
  }

  .ledx-login-options {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* ==================================================
   VISITOR REGISTRATION - LED PREMIUM DESIGN
   Same Content | Right Image | Common Button
================================================== */

.ledx-visitor-registration-page {
  position: relative;
  padding: 95px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.13), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(9, 19, 117, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 46%, #f7f8ff 100%);
}

.ledx-visitor-registration-page::before {
  content: "";
  position: absolute;
  left: -145px;
  bottom: 85px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 52px solid rgba(215, 155, 41, 0.07);
  pointer-events: none;
}

.ledx-visitor-registration-page::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 105px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.24);
  background: rgba(215, 155, 41, 0.035);
  pointer-events: none;
}

.ledx-visitor-registration-page .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-visitor-registration-head {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.ledx-visitor-registration-head h1 {
  margin: 0;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1.05;
  font-weight: 950;
}

/* MAIN LAYOUT */
.ledx-visitor-registration-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

/* LEFT FORM CARD */
.ledx-visitor-form-card {
  position: relative;
  min-height: 100%;
  padding: 38px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.13),
    0 10px 30px rgba(2, 6, 55, 0.06);
}

.ledx-visitor-form-card::before {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(215, 155, 41, 0.10);
  pointer-events: none;
}

.ledx-visitor-form-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(9, 19, 117, 0.045);
  pointer-events: none;
}

.ledx-visitor-form-topline {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  z-index: 2;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}



/* RADIO */
.ledx-visitor-type-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(9, 19, 117, 0.035);
  border: 1px solid rgba(9, 19, 117, 0.07);
}

.ledx-radio-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.ledx-radio-box input {
  accent-color: var(--led-orange);
}

/* FORM GRID */
.ledx-visitor-form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.ledx-visitor-form-group {
  position: relative;
}

.ledx-visitor-form-group input,
.ledx-visitor-form-group select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(9, 19, 117, 0.12);
  outline: none;
  background: #ffffff;
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 750;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.70),
    0 10px 26px rgba(9, 19, 117, 0.04);
  transition: all 0.3s ease;
}

.ledx-visitor-form-group input::placeholder {
  color: #6d748d;
  font-weight: 650;
}

.ledx-visitor-form-group select {
  color: #6d748d;
  cursor: pointer;
}

.ledx-visitor-form-group input:focus,
.ledx-visitor-form-group select:focus {
  border-color: var(--led-gold);
  box-shadow: 0 0 0 4px rgba(215, 155, 41, 0.12);
}

/* VISIT DATE */
.ledx-visit-date-block {
  position: relative;
  z-index: 2;
  margin: 4px 0 24px;
}

.ledx-visit-date-block h3 {
  margin: 0 0 14px;
  color: var(--led-orange);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.2px;
}

.ledx-visit-date-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ledx-visit-date-options label {
  min-height: 58px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.10);
  box-shadow: 0 12px 28px rgba(9, 19, 117, 0.05);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--led-blue);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ledx-visit-date-options label:hover {
  border-color: rgba(215, 155, 41, 0.45);
  transform: translateY(-3px);
}

.ledx-visit-date-options input {
  accent-color: var(--led-orange);
}

/* CAPTCHA */
.ledx-visitor-captcha-area {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.ledx-visitor-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ledx-visitor-captcha-box {
  min-width: 140px;
  height: 56px;
  padding: 0 14px;
  border-radius: 14px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -8deg,
      #f2f2f2 0 8px,
      #d8d8d8 8px 14px
    );
  border: 1px solid rgba(9, 19, 117, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.ledx-visitor-captcha-box span {
  display: inline-block;
  color: #111111;
  font-size: 30px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 950;
}

.ledx-visitor-captcha-refresh {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 14px;
  color: var(--led-white);
  background: linear-gradient(145deg, var(--led-orange), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(215, 155, 41, 0.24);
  transition: all 0.3s ease;
}

.ledx-visitor-captcha-refresh:hover {
  transform: translateY(-3px);
}

.ledx-visitor-captcha-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #d93025;
  font-size: 13px;
  font-weight: 800;
}

/* NOTE */
.ledx-visitor-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  padding: 15px 16px;
  border-radius: 16px;
  color: #28704f;
  background: rgba(56, 168, 55, 0.08);
  border: 1px solid rgba(56, 168, 55, 0.15);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.ledx-visitor-note i {
  color: var(--led-green);
  font-size: 17px;
}

/* SUBMIT */
.ledx-visitor-submit {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.ledx-visitor-submit .ledx-common-btn {
  min-width: 240px;
}

/* OLD BUTTON CLASS NOT USED */
.ledx-visitor-submit-btn {
  display: none !important;
}

/* RIGHT IMAGE SIDE */
.ledx-visitor-image-side {
  position: relative;
  min-height: 600px;
}

.ledx-visitor-image-card {
  position: relative;
  height: 600px;
  min-height: 400px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(var(--led-blue), var(--led-blue)) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.18),
    0 10px 30px rgba(2, 6, 55, 0.08);
}

.ledx-visitor-image-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  z-index: 2;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-visitor-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 6, 55, 0.04) 0%, rgba(2, 6, 55, 0.10) 58%, rgba(2, 6, 55, 0.34) 100%);
}

.ledx-visitor-image-card img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.75s ease;
}

.ledx-visitor-image-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-visitor-registration-wrap {
    grid-template-columns: 1fr;
  }

  .ledx-visitor-image-card,
  .ledx-visitor-image-card img {
    min-height: 520px;
  }

  .ledx-visitor-captcha-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ledx-visitor-registration-page {
    padding: 70px 0;
  }

  .ledx-visitor-registration-head {
    margin-bottom: 32px;
  }

  .ledx-visitor-registration-head h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-visitor-form-card {
    padding: 26px 20px;
    border-radius: 24px;
  }


  .ledx-visitor-form-grid {
    grid-template-columns: 1fr;
  }

  .ledx-visit-date-options {
    grid-template-columns: 1fr;
  }

  .ledx-visitor-captcha-row {
    flex-wrap: wrap;
  }

  .ledx-visitor-image-card,
  .ledx-visitor-image-card img {
    min-height: 350px;
    border-radius: 24px;
  }

  .ledx-visitor-submit .ledx-common-btn {
    width: 100%;
    min-width: 100%;
  }
}
/* ==================================================
   VISITOR INDIA / OVERSEAS TAB FIELDS
================================================== */

.ledx-visitor-tabs {
  width: fit-content;
  padding: 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.10);
  box-shadow: 0 16px 38px rgba(2, 6, 55, 0.08);
}

.ledx-visitor-tabs .ledx-radio-box {
  position: relative;
  min-width: 112px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  justify-content: center;
  color: var(--led-blue);
  background: transparent;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: all 0.35s ease;
}

.ledx-visitor-tabs .ledx-radio-box input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ledx-visitor-tabs .ledx-radio-box.is-active {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  box-shadow: 0 14px 30px rgba(215, 155, 41, 0.26);
}

.ledx-visitor-tab-panel {
  display: none;
  position: relative;
  z-index: 2;
}

.ledx-visitor-tab-panel.is-active {
  display: block;
}

.ledx-visitor-tab-panel .ledx-visitor-form-grid {
  margin-bottom: 20px;
}

/* SELECT ARROW STYLE */
.ledx-visitor-form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 45px;
  background-image:
    linear-gradient(45deg, transparent 50%, #6d748d 50%),
    linear-gradient(135deg, #6d748d 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 24px,
    calc(100% - 16px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .ledx-visitor-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .ledx-visitor-tabs .ledx-radio-box {
    min-width: auto;
    width: 100%;
    padding: 0 14px;
  }
}

/* ==================================================
   CONTACT PAGE - LED PREMIUM DESIGN
================================================== */

.ledx-contact-page {
  position: relative;
  padding: 95px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.12), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(9, 19, 117, 0.10), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 48%, #f7f8ff 100%);
}

.ledx-contact-page::before {
  content: "";
  position: absolute;
  left: -145px;
  bottom: 70px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 52px solid rgba(215, 155, 41, 0.07);
  pointer-events: none;
}

.ledx-contact-page::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 120px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.24);
  background: rgba(215, 155, 41, 0.035);
  pointer-events: none;
}

.ledx-contact-page .container-fluid {
  position: relative;
  z-index: 2;
}



/* CONTACT INFO */

/* ==================================================
   CONTACT INFO CARDS - NEW CREATIVE REDESIGN
   Same HTML | Better Card Design
================================================== */

.ledx-contact-info-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 26px;
  margin-bottom: 68px;
}

/* CARD */
.ledx-contact-info-box {
  position: relative;
  min-height: 178px;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow:
    0 28px 75px rgba(2, 6, 55, 0.10),
    0 10px 28px rgba(2, 6, 55, 0.05);
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: stretch;
  transition: all 0.38s ease;
}

/* TOP LED STRIP */
.ledx-contact-info-box::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  z-index: 3;
  height: 5px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(
    90deg,
    var(--led-orange),
    var(--led-gold-light),
    var(--led-green)
  );
  box-shadow: 0 0 20px rgba(215, 155, 41, 0.35);
}

/* BACK SHAPE */
.ledx-contact-info-box::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 155, 41, 0.15), transparent 70%);
  pointer-events: none;
}

/* LEFT DARK ICON PANEL */
.ledx-contact-info-icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 100%;
  min-height: 178px;
  border-radius: 0;
  color: var(--led-gold-light);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 230, 156, 0.18), transparent 36%),
    linear-gradient(180deg, var(--led-blue), var(--led-blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: none;
}

.ledx-contact-info-icon::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}

.ledx-contact-info-icon i {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 34px rgba(215, 155, 41, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* TEXT AREA */
.ledx-contact-info-box > div:last-child {
  position: relative;
  z-index: 2;
  padding: 30px 30px 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ledx-contact-info-box h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 11px;
  color: var(--led-blue);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.ledx-contact-info-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--led-gold), var(--led-green));
}

.ledx-contact-info-box p,
.ledx-contact-info-box a {
  margin: 0;
  color: #5b647e;
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 750;
  text-decoration: none;
}

.ledx-contact-info-box a:hover {
  color: var(--led-orange);
}

/* HOVER */
.ledx-contact-info-box:hover {
  transform: translateY(-9px);
  border-color: rgba(215, 155, 41, 0.30);
  box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.16),
    0 16px 38px rgba(2, 6, 55, 0.08);
}

.ledx-contact-info-box:hover .ledx-contact-info-icon i {
  transform: scale(1.08) rotate(-6deg);
}

.ledx-contact-info-icon i {
  transition: all 0.35s ease;
}

/* PHONE + EMAIL BALANCE */
.ledx-contact-info-box:nth-child(2),
.ledx-contact-info-box:nth-child(3) {
  grid-template-columns: 88px 1fr;
}

.ledx-contact-info-box:nth-child(2) > div:last-child,
.ledx-contact-info-box:nth-child(3) > div:last-child {
  padding-right: 24px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-contact-info-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  .ledx-contact-info-box {
    min-height: 160px;
  }

  .ledx-contact-info-icon {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .ledx-contact-info-wrap {
    gap: 18px;
    margin-bottom: 40px;
  }

  .ledx-contact-info-box {
    grid-template-columns: 74px 1fr;
    min-height: auto;
    border-radius: 24px;
  }

  .ledx-contact-info-icon {
    width: 74px;
    min-height: 150px;
  }

  .ledx-contact-info-icon i {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 20px;
  }

  .ledx-contact-info-icon::before {
    right: -13px;
    width: 26px;
    height: 26px;
  }

  .ledx-contact-info-box > div:last-child {
    padding: 24px 20px 24px 28px;
  }

  .ledx-contact-info-box h3 {
    font-size: 20px;
  }

  .ledx-contact-info-box p,
  .ledx-contact-info-box a {
    font-size: 14.5px;
    line-height: 1.65;
  }
}

/* HEADING */
.ledx-contact-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.ledx-contact-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-contact-head span i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-contact-head h1 {
  margin: 0 0 10px;
  color: var(--led-blue);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.ledx-contact-head p {
  margin: 0;
  color: #5b647e;
  font-size: 16px;
  font-weight: 750;
}

/* FORM CARD */
.ledx-contact-form-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 38px 95px rgba(2, 6, 55, 0.13),
    0 10px 30px rgba(2, 6, 55, 0.06);
}

.ledx-contact-form-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-contact-form-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(215, 155, 41, 0.10);
  pointer-events: none;
}

/* FORM */
.ledx-contact-form {
  position: relative;
  z-index: 2;
}

.ledx-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ledx-contact-form-group input,
.ledx-contact-form-group textarea {
  width: 100%;
  border: 1px solid rgba(9, 19, 117, 0.12);
  outline: none;
  border-radius: 16px;
  background: #ffffff;
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 750;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.70),
    0 10px 26px rgba(9, 19, 117, 0.04);
  transition: all 0.3s ease;
}

.ledx-contact-form-group input {
  height: 58px;
  padding: 0 18px;
}

.ledx-contact-form-group textarea {
  height: 150px;
  padding: 16px 18px;
  resize: none;
}

.ledx-contact-form-group input::placeholder,
.ledx-contact-form-group textarea::placeholder {
  color: #6d748d;
  font-weight: 650;
}

.ledx-contact-form-group input:focus,
.ledx-contact-form-group textarea:focus {
  border-color: var(--led-gold);
  box-shadow: 0 0 0 4px rgba(215, 155, 41, 0.12);
}

/* CAPTCHA */
.ledx-contact-captcha-area {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  margin-bottom: 26px;
}

.ledx-contact-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ledx-contact-captcha-box {
  min-width: 140px;
  height: 56px;
  padding: 0 14px;
  border-radius: 14px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -8deg,
      #f2f2f2 0 8px,
      #d8d8d8 8px 14px
    );
  border: 1px solid rgba(9, 19, 117, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.ledx-contact-captcha-box span {
  display: inline-block;
  color: #111111;
  font-size: 30px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 950;
}

.ledx-contact-captcha-refresh {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 14px;
  color: var(--led-white);
  background: linear-gradient(145deg, var(--led-orange), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(215, 155, 41, 0.24);
  transition: all 0.3s ease;
}

.ledx-contact-captcha-refresh:hover {
  transform: translateY(-3px);
}

.ledx-contact-captcha-input {
  max-width: 360px;
}

.ledx-contact-captcha-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #d93025;
  font-size: 13px;
  font-weight: 800;
}

.ledx-contact-form-group input.captcha-invalid {
  border-color: #d93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.10);
}

/* SUBMIT */
.ledx-contact-submit .ledx-common-btn {
  min-width: 220px;
}

/* POLICY */
.ledx-contact-policy-text {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--led-blue);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 850;
}

/* RESPONSIVE */

@media (max-width: 767px) {
  .ledx-contact-page {
    padding: 70px 0;
  }

  .ledx-contact-bg-text {
    display: none;
  }

  .ledx-contact-head h1 {
    font-size: 34px;
  }

  .ledx-contact-form-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .ledx-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .ledx-contact-captcha-area {
    grid-template-columns: 1fr;
  }

  .ledx-contact-captcha-row {
    flex-wrap: wrap;
  }

  .ledx-contact-captcha-input {
    max-width: 100%;
  }

  .ledx-contact-submit .ledx-common-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* ==================================================
   FLOOR PLAN MODAL - NEW PREMIUM LED REDESIGN
   Same HTML | Creative Form Design
================================================== */

.ledx-floor-modal {
   background: rgba(97, 97, 97, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* MODAL WIDTH */
.ledx-floor-modal-dialog {
  max-width: 900px;
}

/* MAIN MODAL CARD */
.ledx-floor-modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background:
   radial-gradient(circle at 92% 0%, rgba(255, 230, 156, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.85);
}

/* BACKGROUND TEXT */
.ledx-floor-modal-content::before {
  content: "FLOOR PLAN";
  position: absolute;
  right: -18px;
  bottom: 14px;
  z-index: 0;
  color: rgba(2, 6, 55, 0.035);
  font-size: clamp(58px, 8vw, 120px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -5px;
  white-space: nowrap;
  pointer-events: none;
}

/* CORNER GLOW */
.ledx-floor-modal-content::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  z-index: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(215, 155, 41, 0.13);
  pointer-events: none;
}

/* HEADER */
.ledx-floor-modal-header {
  position: relative;
  z-index: 2;
  padding: 28px 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 230, 156, 0.22), transparent 35%),
    linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ledx-floor-modal-header::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 5px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.38);
}

.ledx-floor-modal-header h3 {
  position: relative;
  margin: 0;
  color: var(--led-white);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.ledx-floor-modal-header h3::before {
  content: "\f1b2";
  font-family: FontAwesome;
  width: 46px;
  height: 46px;
  margin-right: 14px;
  border-radius: 15px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  vertical-align: middle;
  box-shadow: 0 14px 30px rgba(215, 155, 41, 0.28);
}

/* CLOSE BUTTON */
.ledx-floor-close {
  position: relative;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  outline: none;
  border-radius: 50%;
  color: var(--led-gold-light);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 230, 156, 0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.ledx-floor-close:hover {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: rotate(90deg) scale(1.06);
}

/* BODY */
.ledx-floor-modal-body {
  position: relative;
  z-index: 2;
  padding: 38px 36px 42px;
}

.ledx-floor-modal-body::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 42px solid rgba(215, 155, 41, 0.06);
  pointer-events: none;
}

/* FORM */
.ledx-floor-form {
  position: relative;
  z-index: 3;
}

.ledx-floor-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* INPUT GROUP */
.ledx-floor-form-group {
  position: relative;
}

.ledx-floor-form-group::before {
  content: "\f007";
  font-family: FontAwesome;
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--led-gold);
  font-size: 15px;
}

.ledx-floor-form-group:nth-child(2)::before {
  content: "\f1ad";
}

.ledx-floor-form-group:nth-child(3)::before {
  content: "\f095";
}

.ledx-floor-form-group:nth-child(4)::before {
  content: "\f0e0";
}

.ledx-floor-form-group input {
  width: 100%;
  height: 60px;
  padding: 0 18px 0 48px;
  border-radius: 17px;
  border: 1px solid rgba(9, 19, 117, 0.12);
  outline: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.80),
    0 12px 28px rgba(2, 6, 55, 0.055);
  transition: all 0.35s ease;
}

.ledx-floor-form-group input::placeholder {
  color: #6d748d;
  font-weight: 700;
}

.ledx-floor-form-group input:focus {
  border-color: var(--led-gold);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(215, 155, 41, 0.12),
    0 18px 38px rgba(2, 6, 55, 0.08);
}

/* SUBMIT */
.ledx-floor-submit {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.ledx-floor-submit .ledx-common-btn {
  min-width: 200px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .ledx-floor-modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }

  .ledx-floor-modal-content {
    border-radius: 24px;
  }

  .ledx-floor-modal-content::before {
    display: none;
  }

  .ledx-floor-modal-header {
    padding: 22px 20px;
  }

  .ledx-floor-modal-header h3 {
    font-size: 22px;
  }

  .ledx-floor-modal-header h3::before {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 16px;
  }

  .ledx-floor-close {
    width: 40px;
    height: 40px;
  }

  .ledx-floor-modal-body {
    padding: 28px 20px 32px;
  }

  .ledx-floor-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ledx-floor-form-group input {
    height: 56px;
    border-radius: 15px;
  }

  .ledx-floor-submit {
    justify-content: flex-start;
  }

  .ledx-floor-submit .ledx-common-btn {
    width: 100%;
    min-width: 100%;
  }
}/* ==================================================
   FLOATING BOOK MY STALL BUTTON
================================================== */

.ledx-floating-stall-btn {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 999;
  min-width: 165px;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--led-white);
  background: linear-gradient(135deg, var(--led-orange), var(--led-gold));
  box-shadow:
    0 18px 42px rgba(243, 112, 33, 0.34),
    0 8px 18px rgba(2, 6, 55, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: 0.2px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.ledx-floating-stall-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: translateX(-105%);
  transition: all 0.42s ease;
}

.ledx-floating-stall-btn i,
.ledx-floating-stall-btn span {
  position: relative;
  z-index: 2;
}

.ledx-floating-stall-btn i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--led-orange);
  background: var(--led-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-floating-stall-btn:hover {
  color: var(--led-blue);
  transform: translateY(-5px);
  box-shadow:
    0 24px 55px rgba(215, 155, 41, 0.38),
    0 10px 24px rgba(2, 6, 55, 0.18);
}

.ledx-floating-stall-btn:hover::before {
  transform: translateX(0);
}

.ledx-floating-stall-btn:hover i {
  color: var(--led-blue);
}

@media (max-width: 767px) {
  .ledx-floating-stall-btn {
    right: 14px;
    bottom: 18px;
    min-width: 54px;
    width: 54px;
    padding: 0;
  }

  .ledx-floating-stall-btn span {
    display: none;
  }
}


/* ==================================================
   BOOK MY STALL PAGE - ONLY FORM DESIGN
================================================== */

.ledx-book-stall-page {
  position: relative;
  padding: 95px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.13), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(9, 19, 117, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 46%, #f7f8ff 100%);
}

.ledx-book-stall-page::before {
  content: "";
  position: absolute;
  left: -145px;
  bottom: 85px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 52px solid rgba(215, 155, 41, 0.07);
  pointer-events: none;
}

.ledx-book-stall-page::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 105px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.24);
  background: rgba(215, 155, 41, 0.035);
  pointer-events: none;
}

.ledx-book-stall-page .container-fluid {
  position: relative;
  z-index: 2;
}

/* ONLY FORM CENTER */
.ledx-book-stall-form-only {
  max-width: 980px;
  margin: 0 auto;
}

/* REMOVE OLD LEFT CONTENT IF STILL PRESENT */
.ledx-book-stall-head,
.ledx-book-stall-info,
.ledx-book-stall-info-card,
.ledx-book-stall-bg-text {
  display: none !important;
}

/* FORM CARD */
.ledx-book-stall-form-card {
  position: relative;
  padding: 0;
  border-radius: 36px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.28);
  box-shadow:
    0 42px 105px rgba(2, 6, 55, 0.15),
    0 12px 34px rgba(2, 6, 55, 0.07);
}

/* DARK HEADER */
.ledx-book-stall-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 145px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 230, 156, 0.18), transparent 34%),
    linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  pointer-events: none;
}

.ledx-book-stall-form-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  z-index: 2;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.36);
}

/* TITLE */
.ledx-book-form-title {
  position: relative;
  z-index: 2;
  padding: 34px 38px 30px;
  margin: 0;
}

.ledx-book-form-title span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--led-gold-light);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-book-form-title span::before {
  content: "\f1ad";
  font-family: FontAwesome;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



/* FORM INNER */
.ledx-book-stall-form {
  position: relative;
  z-index: 3;
  margin: 0 26px 26px;
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 230, 156, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow:
    0 24px 60px rgba(2, 6, 55, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.80);
}

.ledx-book-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ledx-book-form-group {
  position: relative;
  margin-bottom: 18px;
}

.ledx-book-form-grid .ledx-book-form-group::before {
  content: "\f007";
  font-family: FontAwesome;
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--led-gold);
  font-size: 15px;
}

.ledx-book-form-grid .ledx-book-form-group:nth-child(2)::before { content: "\f1ad"; }
.ledx-book-form-grid .ledx-book-form-group:nth-child(3)::before { content: "\f095"; }
.ledx-book-form-grid .ledx-book-form-group:nth-child(4)::before { content: "\f0e0"; }
.ledx-book-form-grid .ledx-book-form-group:nth-child(5)::before { content: "\f041"; }
.ledx-book-form-grid .ledx-book-form-group:nth-child(6)::before { content: "\f24d"; }

.ledx-book-form-group input,
.ledx-book-form-group textarea {
  width: 100%;
  border-radius: 17px;
  border: 1px solid rgba(9, 19, 117, 0.12);
  outline: none;
  background: #ffffff;
  color: var(--led-blue);
  font-size: 15px;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    0 12px 28px rgba(9, 19, 117, 0.045);
  transition: all 0.35s ease;
}

.ledx-book-form-grid .ledx-book-form-group input {
  height: 60px;
  padding: 0 18px 0 48px;
}

.ledx-book-form-group textarea {
  height: 150px;
  padding: 18px;
  resize: none;
}

.ledx-book-form-group input::placeholder,
.ledx-book-form-group textarea::placeholder {
  color: #6d748d;
  font-weight: 700;
}

.ledx-book-form-group input:focus,
.ledx-book-form-group textarea:focus {
  border-color: var(--led-gold);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(215, 155, 41, 0.12),
    0 18px 38px rgba(2, 6, 55, 0.08);
}

/* CAPTCHA */
.ledx-book-captcha-area {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin: 4px 0 28px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(9, 19, 117, 0.035);
  border: 1px solid rgba(9, 19, 117, 0.07);
}

.ledx-book-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ledx-book-captcha-box {
  min-width: 142px;
  height: 58px;
  padding: 0 14px;
  border-radius: 15px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -8deg,
      #f2f2f2 0 8px,
      #d8d8d8 8px 14px
    );
  border: 1px solid rgba(9, 19, 117, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.ledx-book-captcha-box span {
  display: inline-block;
  color: #111111;
  font-size: 31px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 950;
}

.ledx-book-captcha-refresh {
  width: 58px;
  height: 58px;
  border: none;
  outline: none;
  border-radius: 15px;
  color: var(--led-white);
  background: linear-gradient(145deg, var(--led-orange), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(215, 155, 41, 0.26);
  transition: all 0.35s ease;
}

.ledx-book-captcha-refresh:hover {
  transform: translateY(-3px) rotate(90deg);
}

.ledx-book-captcha-input {
  max-width: 360px;
  margin-bottom: 0;
}

.ledx-book-captcha-input input {
  height: 58px;
  padding: 0 18px;
}

.ledx-book-captcha-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #d93025;
  font-size: 13px;
  font-weight: 850;
}

/* SUBMIT */
.ledx-book-submit {
  display: flex;
  justify-content: flex-start;
}

.ledx-book-submit .ledx-common-btn {
  min-width: 220px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .ledx-book-stall-page {
    padding: 70px 0;
  }

  .ledx-book-stall-form-card {
    border-radius: 26px;
  }

  .ledx-book-stall-form-card::before {
    height: 132px;
  }

  .ledx-book-form-title {
    padding: 28px 22px 26px;
  }

  .ledx-book-form-title h2 {
    font-size: 30px;
  }

  .ledx-book-stall-form {
    margin: 0 16px 18px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .ledx-book-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ledx-book-captcha-area {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .ledx-book-captcha-row {
    flex-wrap: wrap;
  }

  .ledx-book-captcha-input {
    max-width: 100%;
  }

  .ledx-book-submit .ledx-common-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* ==================================================
   ABOUT PAGE NEW REDESIGN
================================================== */

.ledx-about-new-page {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 155, 41, 0.12), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(9, 19, 117, 0.10), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 46%, #f7f8ff 100%);
}

.ledx-about-new-page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-about-new-page .container-fluid {
  position: relative;
  z-index: 2;
}
.ledx-about-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-about-new-tag i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.ledx-about-new-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ledx-about-shape-one {
  left: -150px;
  top: 140px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(215, 155, 41, 0.07);
}

.ledx-about-shape-two {
  right: -130px;
  bottom: 110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(215, 155, 41, 0.24);
}



.ledx-about-new-intro h2 {
  margin: 0 0 18px;
  color: var(--led-blue);
  font-size:50px;
  line-height: 1.02;
  font-weight: 950;
}

.ledx-about-new-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #5b647e;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 650;
}

/* STORY */
.ledx-about-new-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

/* VISUAL */
.ledx-about-new-visual {
  position: relative;
  min-height: 650px;
  padding: 42px 44px 92px 28px;
}

.ledx-about-new-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px 42px 120px 42px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 36px 95px rgba(2, 6, 55, 0.18);
}

.ledx-about-new-image-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  z-index: 2;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-about-new-image-card img {
  width: 100%;
  height: 555px;
  object-fit: cover;
  display: block;
  transition: all 0.75s ease;
}

.ledx-about-new-image-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}

.ledx-about-new-first-badge {
  position: absolute;
  left: 0;
  top: 82px;
  z-index: 5;
  width: 132px;
  height: 132px;
  border-radius: 30px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  box-shadow: 0 22px 55px rgba(215, 155, 41, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: rotate(-6deg);
}

.ledx-about-new-first-badge strong {
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.ledx-about-new-first-badge span {
  max-width: 88px;
  text-align: center;
  color: var(--led-blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
}

.ledx-about-new-date {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 6;
  min-width: 310px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow: 0 24px 60px rgba(2, 6, 55, 0.16);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ledx-about-new-date i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ledx-about-new-date span {
  display: block;
  margin-bottom: 4px;
  color: #8790aa;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-about-new-date strong {
  color: var(--led-blue);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
}

/* CONTENT */
.ledx-about-new-content {
  position: relative;
  padding: 34px 0 34px 34px;
}

.ledx-about-new-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  bottom: 38px;
  width: 5px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-about-new-mini-title {
  display: block;
  margin-bottom: 12px;
  color: var(--led-orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-about-new-content h3 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--led-blue);
  font-size: 40px;
  line-height: 1.06;
  font-weight: 950;
}

.ledx-about-new-content p {
  max-width: 760px;
  margin: 0 0 16px;
  color: #5b647e;
  font-size: 16.5px;
  line-height: 1.78;
  font-weight: 650;
}

.ledx-about-new-info-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.ledx-about-new-info-list > div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow: 0 16px 42px rgba(2, 6, 55, 0.07);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ledx-about-new-info-list i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-about-new-info-list span {
  display: block;
  margin-bottom: 4px;
  color: #8790aa;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ledx-about-new-info-list strong {
  color: var(--led-blue);
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 900;
}


.ledx-about-why-card h3 {
  margin: 0 0 10px;
  color: var(--led-white);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
}

.ledx-about-why-card p {
  margin: 0;
  color: var(--led-text);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

.ledx-about-why-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255,230,156,0.35);
}

/* ORGANISER */
.ledx-about-organiser-new {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 155, 41, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}


/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-about-new-story
 {
    grid-template-columns: 1fr;
  }

  
}

@media (max-width: 767px) {
  .ledx-about-new-page{
    padding: 70px 0;
  }

  .ledx-about-new-intro {
    margin-bottom: 42px;
  }

  .ledx-about-new-intro h2,
  .ledx-about-new-content h3 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .ledx-about-new-intro p,
  .ledx-about-new-content p{
    font-size: 15px;
  }

  .ledx-about-new-visual {
    min-height: auto;
    padding: 0 0 34px;
  }

  .ledx-about-new-image-card {
    border-radius: 26px;
  }

  .ledx-about-new-image-card img {
    height: auto;
  }

  .ledx-about-new-first-badge {
    width: 104px;
    height: 104px;
    left: 16px;
    top: 18px;
    border-radius: 22px;
  }

  .ledx-about-new-first-badge strong {
    font-size: 34px;
  }

  .ledx-about-new-first-badge span {
    font-size: 11px;
  }

  .ledx-about-new-date {
    position: relative;
    right: auto;
    bottom: auto;
    min-width: 100%;
    margin-top: 16px;
  }

  .ledx-about-new-content {
    padding-left: 0;
  }

  .ledx-about-new-content::before {
    display: none;
  }

  .ledx-about-why-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
   ABOUT PLANNING SECTION - LEFT + RIGHT DESIGN
================================================== */

.ledx-about-planning-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(215, 155, 41, 0.12), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(9, 19, 117, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 48%, #f7f8ff 100%);
}

.ledx-about-planning-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-about-planning-section::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 90px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 41, 0.24);
  background: rgba(215, 155, 41, 0.045);
  pointer-events: none;
}

.ledx-about-planning-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* MAIN CARD */
.ledx-about-planning-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
  padding: 46px;
  border-radius: 38px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 40px 110px rgba(2, 6, 55, 0.13),
    0 12px 34px rgba(2, 6, 55, 0.06);
}

.ledx-about-planning-card::before {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  top: 0;
  height: 5px;
  z-index: 2;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.35);
}

.ledx-about-planning-card::after {
  content: "PLAN";
  position: absolute;
  left: 30px;
  bottom: 12px;
  color: rgba(2, 6, 55, 0.035);
  font-size: clamp(80px, 10vw, 150px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -6px;
  pointer-events: none;
}

/* LEFT CONTENT */
.ledx-about-planning-content {
  position: relative;
  z-index: 3;
}

.ledx-about-planning-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 18px 8px 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-about-planning-tag i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-about-planning-content h2 {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--led-blue);
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.ledx-about-planning-content p {
  max-width: 820px;
  margin: 0 0 16px;
  color: #5b647e;
  font-size: 16.5px;
  line-height: 1.8;
  font-weight: 650;
}

/* CITY TAGS */
.ledx-about-planning-city {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ledx-about-planning-city span {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(215, 155, 41, 0.11);
  border: 1px solid rgba(215, 155, 41, 0.28);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

/* RIGHT VISUAL */
.ledx-about-planning-visual {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 230, 156, 0.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(56, 168, 55, 0.10), transparent 34%),
    linear-gradient(145deg, var(--led-blue), var(--led-blue-2));
  box-shadow: 0 28px 80px rgba(2, 6, 55, 0.22);
}

.ledx-about-planning-visual::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 5px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

.ledx-about-planning-visual::after {
  content: "100%";
  position: absolute;
  right: -8px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 92px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -5px;
  pointer-events: none;
}

/* RIGHT HEAD */
.ledx-planning-box-head {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}

.ledx-planning-box-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--led-gold-light);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ledx-planning-box-head h3 {
  margin: 0;
  max-width: 420px;
  color: var(--led-white);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1px;
}

/* STEPS */
.ledx-planning-step-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.ledx-planning-step {
  position: relative;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 230, 156, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: all 0.35s ease;
}

.ledx-planning-step:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 230, 156, 0.32);
}

.ledx-planning-step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 14px 32px rgba(215, 155, 41, 0.24);
}

.ledx-planning-step strong {
  display: block;
  margin-bottom: 5px;
  color: var(--led-white);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.ledx-planning-step span {
  display: block;
  color: var(--led-text);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 650;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-about-planning-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .ledx-about-planning-section {
    padding: 70px 0;
  }

  .ledx-about-planning-card {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .ledx-about-planning-card::before {
    left: 24px;
    right: 24px;
  }

  .ledx-about-planning-card::after {
    display: none;
  }

  .ledx-about-planning-content h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .ledx-about-planning-content p {
    font-size: 15px;
  }

  .ledx-about-planning-visual {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .ledx-planning-box-head h3 {
    font-size: 28px;
  }

  .ledx-planning-step {
    padding: 14px;
  }

  .ledx-planning-step:hover {
    transform: none;
  }
}

/* ==================================================
   BREADCRUMB SECTION - WHITE IMAGE BANNER DESIGN
================================================== */

.ledx-breadcrumb-section {
  position: relative;
  min-height: 360px;
  padding: 105px 0 95px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.68) 42%,
      rgba(255, 255, 255, 0.46) 70%,
      rgba(255, 255, 255, 0.20) 100%
    ),
    url("../images/breadcrumb-banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.ledx-breadcrumb-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* REMOVE OLD BACKGROUND TEXT */
.ledx-breadcrumb-bg-text {
  display: none !important;
}

/* CONTENT LEFT SIDE */
.ledx-breadcrumb-content {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

/* TOP TAG WHITE THEME */
.ledx-breadcrumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 16px 36px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ledx-breadcrumb-tag i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.ledx-breadcrumb-content h1 {
  margin: 0 0 22px;
  color: var(--led-blue);
  text-transform: uppercase;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2px;
  text-shadow: 0 14px 32px rgba(2, 6, 55, 0.10);
}

/* BREADCRUMB LIST WHITE THEME */
.ledx-breadcrumb-list {
  width: fit-content;
  margin: 0;
  padding: 12px 20px;
  list-style: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(215, 155, 41, 0.32);
  box-shadow: 0 18px 45px rgba(2, 6, 55, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ledx-breadcrumb-list li {
  color: var(--led-gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ledx-breadcrumb-list li a {
  color: var(--led-blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ledx-breadcrumb-list li a:hover {
  color: var(--led-orange);
}

.ledx-breadcrumb-list li i {
  color: var(--led-gold);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .ledx-breadcrumb-section {
    min-height: 300px;
    padding: 75px 0;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.88) 62%,
        rgba(255, 255, 255, 0.76) 100%
      ),
      url("../images/breadcrumb-banner.png");
    background-size: cover;
    background-position: center right;
  }

  .ledx-breadcrumb-content {
    max-width: 100%;
  }

  .ledx-breadcrumb-content h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .ledx-breadcrumb-tag {
    font-size: 11px;
    padding-right: 14px;
  }

  .ledx-breadcrumb-list {
    flex-wrap: wrap;
    padding: 11px 15px;
  }

  .ledx-breadcrumb-list li {
    font-size: 12px;
  }
}
/* ==================================================
   WHY EXHIBIT - REDESIGNED ONE BOX LISTING
================================================== */

.ledx-why-premium-list-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(215, 155, 41, 0.12), transparent 30%),
    radial-gradient(circle at 92% 85%, rgba(9, 19, 117, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 48%, #f7f8ff 100%);
}

.ledx-why-premium-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-why-premium-list-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-why-premium-list-head {
  max-width: 780px;
  margin: 0 auto 20px;
  text-align: center;
}

.ledx-why-premium-list-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 155, 41, 0.42);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.08);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-why-premium-list-head span i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-why-premium-list-head h2 {
  margin: 0;
  color: var(--led-blue);
  font-size:40px;
  line-height: 1;
  font-weight: 950;
}

/* MAIN ONE BOX */
.ledx-why-premium-list-box {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 38px;
  gap: 34px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 34px 90px rgba(2, 6, 55, 0.13),
    0 10px 28px rgba(2, 6, 55, 0.06);
}

.ledx-why-premium-list-box::before {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.35);
}

.ledx-why-premium-list-box::after {
  content: "WHY";
  position: absolute;
  right: 20px;
  bottom: 4px;
  color: rgba(2, 6, 55, 0.025);
  font-size: 132px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -7px;
  pointer-events: none;
}


/* RIGHT LIST */
.ledx-why-premium-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* LIST ITEM */
.ledx-why-premium-item {
  position: relative;
  min-height: 72px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns:  46px 1fr;
  align-items: center;
  gap: 13px;
  border-radius: 18px;
  background: rgba(247, 248, 255, 0.76);
  border: 1px solid rgba(9, 19, 117, 0.08);
  transition: all 0.35s ease;
}

.ledx-why-premium-item span {
  color: rgba(2, 6, 55, 0.34);
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.7px;
  transition: all 0.35s ease;
}

.ledx-why-premium-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(2, 6, 55, 0.14);
  transition: all 0.35s ease;
}

.ledx-why-premium-item h4 {
  margin: 0;
  color: var(--led-blue);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.35px;
}

.ledx-why-premium-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(215, 155, 41, 0.30);
  box-shadow: 0 18px 42px rgba(2, 6, 55, 0.10);
}

.ledx-why-premium-item:hover span {
  color: var(--led-gold);
}

.ledx-why-premium-item:hover i {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: rotate(-6deg) scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-why-premium-list-box {
    grid-template-columns: 1fr;
  }

  .ledx-why-premium-left {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .ledx-why-premium-list-section {
    padding: 70px 0;
  }

  .ledx-why-premium-list-head {
    margin-bottom: 36px;
  }

  .ledx-why-premium-list-head h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-why-premium-list-box {
    padding: 22px 16px;
    border-radius: 24px;
    gap: 22px;
  }

  .ledx-why-premium-list-box::before {
    left: 22px;
    right: 22px;
  }

  .ledx-why-premium-list-box::after {
    display: none;
  }

  .ledx-why-premium-left {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .ledx-why-premium-left h3 {
    font-size: 28px;
  }

  .ledx-why-premium-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ledx-why-premium-item {
    min-height: auto;
    grid-template-columns: 38px 42px 1fr;
    padding: 11px 12px;
    gap: 11px;
    border-radius: 16px;
  }

  .ledx-why-premium-item span {
    font-size: 18px;
  }

  .ledx-why-premium-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 13px;
    font-size: 15px;
  }

  .ledx-why-premium-item h4 {
    font-size: 17px;
  }

  .ledx-why-premium-item:hover {
    transform: none;
  }

  .ledx-why-premium-item:hover i {
    transform: none;
  }
}

/* ==================================================
   EXHIBITION OFFERS - LISTING ONLY DESIGN
================================================== */

.ledx-offers-listing-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.10), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(9, 19, 117, 0.055), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 48%, #f7f8ff 100%);
}

.ledx-offers-listing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-offers-listing-section::after {
  content: "OFFERS";
  position: absolute;
  right: 22px;
  bottom: 12px;
  color: rgba(2, 6, 55, 0.025);
  font-size: clamp(90px, 14vw, 210px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -8px;
  pointer-events: none;
}

.ledx-offers-listing-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-offers-listing-head {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.ledx-offers-listing-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.38);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.07);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-offers-listing-head span i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-offers-listing-head h2 {
  margin: 0;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

/* MAIN LIST BOX */
.ledx-offers-listing-box {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 34px 90px rgba(2, 6, 55, 0.12),
    0 10px 28px rgba(2, 6, 55, 0.06);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
}

.ledx-offers-listing-box::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.35);
}

/* ITEM */
.ledx-offers-listing-item {
  position: relative;
  z-index: 2;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(247, 248, 255, 0.78);
  border: 1px solid rgba(9, 19, 117, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s ease;
}

.ledx-offers-listing-item i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  color: var(--led-gold-light);
  background: linear-gradient(145deg, var(--led-blue), var(--led-blue-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 14px 30px rgba(2, 6, 55, 0.16);
  transition: all 0.35s ease;
}

.ledx-offers-listing-item h3 {
  margin: 0;
  color: var(--led-blue);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -0.35px;
}

.ledx-offers-listing-item:hover {
  background: #ffffff;
  border-color: rgba(215, 155, 41, 0.32);
  box-shadow: 0 18px 42px rgba(2, 6, 55, 0.10);
  transform: translateY(-5px);
}

.ledx-offers-listing-item:hover i {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  transform: rotate(-6deg) scale(1.05);
}

.ledx-offers-listing-item:hover h3 {
  color: var(--led-orange);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ledx-offers-listing-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ledx-offers-listing-section {
    padding: 70px 0;
  }

  .ledx-offers-listing-section::after {
    display: none;
  }

  .ledx-offers-listing-head {
    margin-bottom: 36px;
  }

  .ledx-offers-listing-head h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-offers-listing-box {
    padding: 24px 18px;
    border-radius: 24px;
    gap: 14px;
  }

  .ledx-offers-listing-box::before {
    left: 22px;
    right: 22px;
  }

  .ledx-offers-listing-item {
    min-height: auto;
    padding: 14px;
    border-radius: 16px;
    gap: 13px;
  }

  .ledx-offers-listing-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 16px;
  }

  .ledx-offers-listing-item h3 {
    font-size: 18px;
  }

  .ledx-offers-listing-item:hover {
    transform: none;
  }

  .ledx-offers-listing-item:hover i {
    transform: none;
  }
}

/* ==================================================
   WHY VISIT SECTION
================================================== */

.ledx-why-visit-section {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.10), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(9, 19, 117, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 48%, #f7f8ff 100%);
}

.ledx-why-visit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-why-visit-section::after {
  content: "VISIT";
  position: absolute;
  right: 22px;
  bottom: 12px;
  color: rgba(2, 6, 55, 0.025);
  font-size: clamp(90px, 14vw, 210px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -8px;
  pointer-events: none;
}

.ledx-why-visit-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* WRAPPER */
.ledx-why-visit-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 58px;
  align-items: center;
}
/* ==================================================
   WHY VISIT - SIMPLE LISTING DESIGN
================================================== */

.ledx-why-visit-simple-section {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.10), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(9, 19, 117, 0.055), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 48%, #f7f8ff 100%);
}

.ledx-why-visit-simple-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-why-visit-simple-section::after {
  content: "VISIT";
  position: absolute;
  right: 22px;
  bottom: 12px;
  color: rgba(2, 6, 55, 0.025);
  font-size: clamp(90px, 14vw, 210px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -8px;
  pointer-events: none;
}

.ledx-why-visit-simple-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* WRAPPER */
.ledx-why-visit-simple-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

/* LEFT SIDE */
.ledx-why-visit-simple-left {
  position: relative;
  padding: 44px;
  border-radius: 34px;
  background:
    linear-gradient relative;
  padding: 44px;
  border-radius: 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--led-orange), var(--led-gold-light), var(--led-green)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 34px 90px rgba(2, 6, 55, 0.11),
    0 10px 28px rgba(2, 6, 55, 0.05);
  overflow: hidden;
}

.ledx-why-visit-simple-left::before {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.35);
}


.ledx-why-visit-simple-left h2 {
  margin: 0 0 18px;
  color: var(--led-blue);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
}

.ledx-why-visit-simple-left p {
  margin: 0 0 28px;
  color: #5b647e;
  font-size: 16.5px;
  line-height: 1.72;
  font-weight: 650;
}

/* SIMPLE LIST */
.ledx-why-visit-simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.ledx-why-visit-simple-list li {
  position: relative;
  padding: 15px 18px;
  border-radius: 16px;
  color: var(--led-blue);
  background: rgba(247, 248, 255, 0.82);
  border: 1px solid rgba(9, 19, 117, 0.08);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: all 0.35s ease;
}

.ledx-why-visit-simple-list li i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 10px 22px rgba(215, 155, 41, 0.22);
}

.ledx-why-visit-simple-list li:hover {
  background: #ffffff;
  border-color: rgba(215, 155, 41, 0.34);
  box-shadow: 0 18px 42px rgba(2, 6, 55, 0.09);
  transform: translateX(8px);
  color: var(--led-orange);
}

/* RIGHT VISUAL */
.ledx-why-visit-simple-visual {
  position: relative;
  min-height: 650px;
}

.ledx-why-visit-simple-main-img {
  position: absolute;
  left: 0;
  top: 52px;
  width: 76%;
  height: 460px;
  overflow: hidden;
  border-radius: 38px;
  background: #ffffff;
  border: 10px solid #ffffff;
  box-shadow: 0 34px 90px rgba(2, 6, 55, 0.16);
}

.ledx-why-visit-simple-main-img img,
.ledx-why-visit-simple-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SMALL IMAGES */
.ledx-why-visit-simple-small-img {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 8px solid #ffffff;
  box-shadow: 0 28px 70px rgba(2, 6, 55, 0.14);
}

.ledx-why-visit-simple-small-img.img-one {
  right: 0;
  top: 0;
  width: 45%;
  height: 230px;
}

.ledx-why-visit-simple-small-img.img-two {
  right: 8%;
  bottom: 0;
  width: 52%;
  height: 260px;
}

/* BADGE */
.ledx-why-visit-simple-badge {
  position: absolute;
  left: 38px;
  bottom: 48px;
  z-index: 5;
  min-width: 220px;
  padding: 18px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.28);
  box-shadow: 0 24px 60px rgba(2, 6, 55, 0.14);
}

.ledx-why-visit-simple-badge strong {
  display: block;
  color: var(--led-blue);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.ledx-why-visit-simple-badge span {
  display: block;
  margin-top: 6px;
  color: var(--led-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-why-visit-simple-wrapper {
    grid-template-columns: 1fr;
  }

  .ledx-why-visit-simple-visual {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ledx-why-visit-simple-section {
    padding: 70px 0;
  }

  .ledx-why-visit-simple-section::after {
    display: none;
  }

  .ledx-why-visit-simple-wrapper {
    gap: 36px;
  }

  .ledx-why-visit-simple-left {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .ledx-why-visit-simple-left::before {
    left: 22px;
    right: 22px;
  }

  .ledx-why-visit-simple-left h2 {
    font-size: 38px;
    letter-spacing: -0.8px;
  }

  .ledx-why-visit-simple-left p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .ledx-why-visit-simple-list li {
    padding: 13px;
    font-size: 16px;
    align-items: flex-start;
  }

  .ledx-why-visit-simple-list li:hover {
    transform: none;
  }

  .ledx-why-visit-simple-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .ledx-why-visit-simple-main-img,
  .ledx-why-visit-simple-small-img,
  .ledx-why-visit-simple-small-img.img-one,
  .ledx-why-visit-simple-small-img.img-two {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 245px;
    border-radius: 24px;
    border-width: 6px;
  }

  .ledx-why-visit-simple-badge {
    position: relative;
    left: auto;
    bottom: auto;
    min-width: 100%;
  }
}

/* ==================================================
   BLOG PAGE - LISTING ONLY DESIGN
================================================== */

.ledx-blog-listing-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.10), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(9, 19, 117, 0.055), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 48%, #f7f8ff 100%);
}

.ledx-blog-listing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 6, 55, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 55, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}



.ledx-blog-listing-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-blog-listing-head {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.ledx-blog-listing-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.38);
  box-shadow: 0 14px 34px rgba(2, 6, 55, 0.07);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-blog-listing-head span i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-blog-listing-head h2 {
  margin: 0;
  color: var(--led-blue);
  font-size: 50px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

/* GRID */
.ledx-blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.ledx-blog-listing-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow:
    0 24px 65px rgba(2, 6, 55, 0.10),
    0 8px 22px rgba(2, 6, 55, 0.05);
  transition: all 0.42s ease;
}

.ledx-blog-listing-img {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: #f7f8ff;
}

.ledx-blog-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: all 0.75s ease;
}

.ledx-blog-listing-content {
  padding: 26px 24px 28px;
  background: #ffffff;
}

.ledx-blog-listing-content span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--led-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ledx-blog-listing-content span i {
  color: var(--led-gold);
}

.ledx-blog-listing-content h3 {
  margin: 0 0 20px;
  color: var(--led-blue);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.55px;
}

.ledx-blog-listing-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--led-blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ledx-blog-listing-content a:hover {
  color: var(--led-orange);
}

.ledx-blog-listing-content a i {
  transition: all 0.35s ease;
}

.ledx-blog-listing-content a:hover i {
  transform: translateX(5px);
}

/* HOVER */
.ledx-blog-listing-card:hover {
  transform: translateY(-9px);
  border-color: rgba(215, 155, 41, 0.36);
  box-shadow:
    0 36px 90px rgba(2, 6, 55, 0.16),
    0 14px 34px rgba(2, 6, 55, 0.08);
}

.ledx-blog-listing-card:hover .ledx-blog-listing-img img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.ledx-blog-listing-card:hover .ledx-blog-listing-content h3 {
  color: var(--led-orange);
}

/* PAGINATION */
.ledx-blog-listing-pagination {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ledx-blog-listing-pagination li a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--led-blue);
  background: #ffffff;
  border: 1px solid rgba(9, 19, 117, 0.08);
  box-shadow: 0 10px 28px rgba(2, 6, 55, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ledx-blog-listing-pagination li a.active,
.ledx-blog-listing-pagination li a:hover {
  color: var(--led-blue);
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  border-color: rgba(215, 155, 41, 0.45);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ledx-blog-listing-section {
    padding: 70px 0;
  }

  .ledx-blog-listing-section::after {
    display: none;
  }

  .ledx-blog-listing-head {
    margin-bottom: 36px;
  }

  .ledx-blog-listing-head h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-blog-listing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ledx-blog-listing-card {
    border-radius: 24px;
  }

  .ledx-blog-listing-img {
    height: 235px;
  }

  .ledx-blog-listing-content {
    padding: 22px 20px 24px;
  }

  .ledx-blog-listing-content h3 {
    font-size: 22px;
  }

  .ledx-blog-listing-card:hover {
    transform: none;
  }

  .ledx-blog-listing-pagination {
    flex-wrap: wrap;
  }
}


/* ==================================================
   BLOG DETAIL PAGE - EDITORIAL REDESIGN
================================================== */

.ledx-blog-detail-v3-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 155, 41, 0.10), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(243, 112, 33, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 50%, #f8f8f8 100%);
}

.ledx-blog-detail-v3-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}


.ledx-blog-detail-v3-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* LAYOUT */
.ledx-blog-detail-v3-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: flex-start;
}

/* MAIN */
.ledx-blog-detail-v3-main {
  position: relative;
  padding: 44px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.10),
    0 10px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ledx-blog-detail-v3-main::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.32);
}

/* HERO IMAGE */
.ledx-blog-detail-v3-hero {
  position: relative;
  height: 500px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 32px;
  background: #f7f7f7;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.12);
}


.ledx-blog-detail-v3-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.ledx-blog-detail-v3-content {
  max-width: 920px;
}

.ledx-blog-detail-v3-content p {
  margin: 0 0 22px;
  color: #333333;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 600;
}

.ledx-blog-detail-v3-content h2 {
  margin: 40px 0 16px;
  color: #111111;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -0.8px;
}

/* QUOTE BOX */
.ledx-blog-detail-v3-quote {
  position: relative;
  margin: 36px 0;
  padding: 30px;
  border-radius: 26px;
  background: #fffaf0;
  border: 1px solid rgba(215, 155, 41, 0.38);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ledx-blog-detail-v3-quote i {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ledx-blog-detail-v3-quote p {
  margin: 0;
  color: #111111;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 850;
}

/* LIST */
.ledx-blog-detail-v3-content ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.ledx-blog-detail-v3-content ul li {
  position: relative;
  padding: 16px 18px 16px 54px;
  border-radius: 16px;
  color: #111111;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16.5px;
  line-height: 1.45;
  font-weight: 800;
}

.ledx-blog-detail-v3-content ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 16px;
  top: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
/* BLOG DETAIL DATE BADGE */
.ledx-blog-detail-v3-date {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 6;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.36);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ledx-blog-detail-v3-date strong {
  display: block;
  color: #111111;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.ledx-blog-detail-v3-date span {
  display: block;
  margin-top: 6px;
  color: var(--led-orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 767px) {
  .ledx-blog-detail-v3-date {
    left: 16px;
    bottom: 16px;
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .ledx-blog-detail-v3-date strong {
    font-size: 30px;
  }

  .ledx-blog-detail-v3-date span {
    font-size: 10px;
  }
}

/* SIDEBAR */
.ledx-blog-detail-v3-sidebar {
  position: sticky;
  top: 110px;
}

/* RECENT BOX */
.ledx-blog-detail-v3-recent {
  position: relative;
  padding: 20px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.10),
    0 10px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ledx-blog-detail-v3-recent::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
}

/* RECENT HEAD */
.ledx-blog-detail-v3-recent-head {
  margin-bottom: 24px;
}

.ledx-blog-detail-v3-recent-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--led-orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ledx-blog-detail-v3-recent-head h3 {
  margin: 0;
  color: #111111;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.9px;
}

/* RECENT LIST */
.ledx-blog-detail-v3-recent-list {
  display: grid;
  gap: 18px;
}

.ledx-blog-detail-v3-recent-item {
  position: relative;
  padding: 12px;
  border-radius: 22px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ledx-blog-detail-v3-recent-img {
  width: 108px;
  height: 92px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.ledx-blog-detail-v3-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.ledx-blog-detail-v3-recent-content span {
  display: block;
  margin-bottom: 7px;
  color: var(--led-orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ledx-blog-detail-v3-recent-content h4 {
  margin: 0;
  color: #111111;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -0.25px;
  transition: all 0.35s ease;
}

.ledx-blog-detail-v3-recent-item:hover {
  transform: translateX(6px);
  background: #ffffff;
  border-color: rgba(215, 155, 41, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
}

.ledx-blog-detail-v3-recent-item:hover img {
  transform: scale(1.08);
}

.ledx-blog-detail-v3-recent-item:hover h4 {
  color: var(--led-orange);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-blog-detail-v3-layout {
    grid-template-columns: 1fr;
  }

  .ledx-blog-detail-v3-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .ledx-blog-detail-v3-section {
    padding: 70px 0;
  }

  .ledx-blog-detail-v3-section::after {
    display: none;
  }

  .ledx-blog-detail-v3-main {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .ledx-blog-detail-v3-main::before {
    left: 22px;
    right: 22px;
  }

  .ledx-blog-detail-v3-top {
    margin-bottom: 22px;
  }

  .ledx-blog-detail-v3-main h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
    margin-bottom: 24px;
  }

  .ledx-blog-detail-v3-hero {
    height: 260px;
    border-radius: 22px;
    margin-bottom: 28px;
  }

  .ledx-blog-detail-v3-date {
    left: 16px;
    bottom: 16px;
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .ledx-blog-detail-v3-date strong {
    font-size: 30px;
  }

  .ledx-blog-detail-v3-date span {
    font-size: 10px;
  }

  .ledx-blog-detail-v3-content p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .ledx-blog-detail-v3-content h2 {
    font-size: 26px;
  }

  .ledx-blog-detail-v3-quote {
    display: block;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .ledx-blog-detail-v3-quote i {
    margin-bottom: 14px;
  }

  .ledx-blog-detail-v3-quote p {
    font-size: 17px;
  }

  .ledx-blog-detail-v3-recent {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .ledx-blog-detail-v3-recent-item {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }

  .ledx-blog-detail-v3-recent-img {
    width: 92px;
    height: 82px;
  }

  .ledx-blog-detail-v3-recent-item:hover {
    transform: none;
  }
}
/* ==================================================
   FAQ PAGE DESIGN
================================================== */

.ledx-faq-page-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 155, 41, 0.10), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(243, 112, 33, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 50%, #f8f8f8 100%);
}

.ledx-faq-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ledx-faq-page-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* HEADING */
.ledx-faq-page-head {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.ledx-faq-page-head > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 18px 8px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  border: 1px solid rgba(215, 155, 41, 0.38);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ledx-faq-page-head > span i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-faq-page-head h2 {
  margin: 0 0 16px;
  color: var(--led-blue-2);
  font-size: 50px;
  line-height: 1.05;
  font-weight: 950;
}

.ledx-faq-page-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #444444;
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 600;
}

/* WRAPPER */
.ledx-faq-page-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: flex-start;
}

/* ACCORDION BOX */
.ledx-faq-accordion-box {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.10),
    0 10px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ledx-faq-accordion-box::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  border-radius: 0 0 35px 35px;
  background: linear-gradient(90deg, var(--led-orange), var(--led-gold-light), var(--led-green));
  box-shadow: 0 0 24px rgba(215, 155, 41, 0.32);
}

/* FAQ ITEM */
.ledx-faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  background: #fafafa;
  box-shadow: none;
}

.ledx-faq-item:last-child {
  margin-bottom: 0;
}

.ledx-faq-button {
  position: relative;
  width: 100%;
  padding: 20px 58px 20px 20px;
  color: #111111 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  border: none !important;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ledx-faq-button span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(215, 155, 41, 0.22);
}

.ledx-faq-button::after {
  position: absolute;
  right: 22px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-image: none !important;
  background: #fff7e3;
  border: 1px solid rgba(215, 155, 41, 0.38);
  content: "\f107";
  font-family: FontAwesome;
  color: var(--led-orange);
  font-size: 18px;
  line-height: 34px;
  text-align: center;
}

.ledx-faq-button:not(.collapsed)::after {
  content: "\f106";
  transform: translateY(-50%);
}

.ledx-faq-button:not(.collapsed) {
  color: #111111 !important;
  background: #fffaf0 !important;
}

.ledx-faq-body {
  padding: 0 22px 22px 77px;
  color: #444444;
  background: #fffaf0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

/* RIGHT SIDE CARD */
.ledx-faq-side-card {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-radius: 32px;
  background: var(--led-blue);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}



.ledx-faq-side-card::after {
  content: "?";
  position: absolute;
  right: -5px;
  bottom: -35px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 190px;
  line-height: 1;
  font-weight: 950;
}

.ledx-faq-side-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 20px;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.ledx-faq-side-card > span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  color: var(--led-gold-light);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.ledx-faq-side-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.ledx-faq-side-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 600;
}

.ledx-faq-side-info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.ledx-faq-side-info div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 230, 156, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ledx-faq-side-info i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ledx-faq-side-info strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.ledx-faq-contact-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 54px;
  border-radius: 999px;
  color: #111111;
  background: linear-gradient(135deg, var(--led-gold-light), var(--led-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ledx-faq-contact-btn:hover {
  color: #111111;
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(215, 155, 41, 0.25);
}

.ledx-faq-contact-btn i {
  transition: all 0.35s ease;
}

.ledx-faq-contact-btn:hover i {
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .ledx-faq-page-wrapper {
    grid-template-columns: 1fr;
  }

  .ledx-faq-side-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .ledx-faq-page-section {
    padding: 70px 0;
  }

  .ledx-faq-page-section::after {
    display: none;
  }

  .ledx-faq-page-head {
    margin-bottom: 36px;
  }

  .ledx-faq-page-head h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .ledx-faq-page-head p {
    font-size: 15px;
  }

  .ledx-faq-accordion-box {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .ledx-faq-accordion-box::before {
    left: 22px;
    right: 22px;
  }

  .ledx-faq-button {
    padding: 16px 48px 16px 14px;
    font-size: 16px;
    gap: 12px;
    align-items: flex-start;
  }

  .ledx-faq-button span {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    font-size: 12px;
  }

  .ledx-faq-button::after {
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
  }

  .ledx-faq-body {
    padding: 0 16px 18px 62px;
    font-size: 15px;
  }

  .ledx-faq-side-card {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .ledx-faq-side-card h3 {
    font-size: 26px;
  }
}
/* FAQ ACCORDION FAST OPEN / CLOSE ANIMATION */
.ledx-faq-accordion .accordion-collapse {
  transition: height 0.18s ease !important;
}

.ledx-faq-accordion .accordion-collapse.collapsing {
  transition: height 0.18s ease !important;
}

.ledx-faq-accordion .ledx-faq-button {
  transition: all 0.18s ease !important;
}

.ledx-faq-accordion .ledx-faq-button::after {
  transition: all 0.18s ease !important;
}

.ledx-faq-accordion .ledx-faq-body {
  animation: ledxFaqBodyFade 0.18s ease;
}

@keyframes ledxFaqBodyFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}