/* ==== SCOPED TESTIMONIALS MODULE - NO CONFLICTS ==== */
   
    .bx-testimonials-section {
      padding: 80px 0;
      background: #fff;
      overflow: hidden;
      font-family: 'Montserrat', sans-serif;
      color: #333;
      font-weight: 400;
	 
	 
    }
	
	
	/* Prevent text selection during swipe/drag */
	.bx-testimonials-carousel,
	.bx-testimonials-carousel .bx-testimonials-card {
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	}

	/* Optionally allow text selection inside quotes only */
	.bx-testimonials-text {
	  -webkit-user-select: text;
	  -moz-user-select: text;
	  -ms-user-select: text;
	  user-select: text;
	}
   
    .bx-testimonials-section * {
      box-sizing: border-box;
    }
   
    .bx-testimonials-headline {
      font-size: 2.8rem;
      font-weight: 400;
      letter-spacing: 2.5px;
      color: #222;
      text-transform: uppercase;
      margin: 0 0 3.5rem;
      text-align: center;
    }
   
    .bx-testimonials-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 0px 20px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      text-align: center;
      border: 1px solid rgba(121,190,88,0.15);
      height: 480px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 520px;
      margin: 0 auto;
    }
   
    .bx-testimonials-card:hover {
      box-shadow: 0 16px 40px rgba(121,190,88,0.2);
      border-color: #79be58;
    }
   
    .bx-testimonials-card-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #79be58;
      margin: 0 auto 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
   
    .bx-testimonials-card-name {
      font-weight: 600;
      color: #222;
      margin-bottom: 4px;
      font-size: 1.2rem;
    }
   
    .bx-testimonials-card-title {
      font-size: 0.9rem;
      color: #79be58;
      font-weight: 500;
      margin-bottom: 16px;
      display: block;
    }
   
    .bx-testimonials-text {
      font-size: 1rem;
      line-height: 1.75;
      color: #444;
      position: relative;
      padding: 0 10px;
      flex-grow: 1;
    }
   
    .bx-testimonials-text i {
      color: #79be58;
      font-size: 1.4rem;
      opacity: 0.7;
      position: relative;
      margin-right: 6px;
    }
   
    .bx-testimonials-carousel .carousel-control-prev,
    .bx-testimonials-carousel .carousel-control-next {
      width: 50px;
      height: 50px;
      background: #79be58;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.9;
      transition: all 0.3s ease;
    }
   
    .bx-testimonials-carousel .carousel-control-prev:hover,
    .bx-testimonials-carousel .carousel-control-next:hover {
      opacity: 1;
      background: #6aa34a;
      transform: translateY(-50%) scale(1.1);
    }
   
    .bx-testimonials-carousel .carousel-control-prev {
      left: 10px;
    }
   
    .bx-testimonials-carousel .carousel-control-next {
      right: 10px;
    }
   
    .bx-testimonials-carousel .carousel-control-prev-icon,
    .bx-testimonials-carousel .carousel-control-next-icon {
      background-image: none;
      color: #fff;
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 1.6rem;
    }
   
    .bx-testimonials-nav-btns {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 16px;
    }
   
    .bx-testimonials-nav-btns .bx-testimonials-btn {
      background: #fff;
      color: #000000;
      font-weight: 400;
      padding: 0.1rem 0.1rem;
      border-radius: 50px;
      border: 1px solid #79be58;
      font-size: 2.55rem;
      transition: all 0.3s ease;
      min-width: 70px;
      cursor: pointer;
    }
   
    .bx-testimonials-nav-btns .bx-testimonials-btn:hover {
      background: #6aa34a;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(121,190,88,0.3);
    }
   
    .bx-testimonials-carousel .carousel-inner {
      cursor: grab;
    }
   
    .bx-testimonials-carousel .carousel-inner:active {
      cursor: grabbing;
    }
   
    .bx-testimonials-mobile-slider {
      display: none;
      position: relative;
    }
   
    /* MOBILE ONLY */
    @media (max-width: 768px) {
      .bx-testimonials-section {
        padding: 25px 0;
		
      }
     
      .bx-testimonials-headline {
        font-size: 2rem;
        letter-spacing: 1.8px;
		
		margin-bottom: 3px;
      }
     
      .bx-testimonials-nav-btns {
        display: none !important;
      }
     
      .bx-testimonials-card {
        height: auto;
        min-height: 300px;
        padding: 20px 18px;
        border-radius: 16px;
      }
     
      .bx-testimonials-card-img {
        width: 85px;
        height: 85px;
        margin-bottom: 12px;
      }
     
      .bx-testimonials-card-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
      }
     
      .bx-testimonials-card-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
      }
     
      .bx-testimonials-text {
        font-size: 0.6rem;
        line-height: 1.65;
        padding: 0 8px;
        padding-left: 12px !important;
      }
     
      .bx-testimonials-text i {
        font-size: 1.2rem;
      }
     
      .bx-testimonials-carousel {
        display: none;
      }
     
      .bx-testimonials-mobile-slider {
        display: block;
      }
     
      .bx-testimonials-mobile-track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 8px 12px 20px 12px;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
     
      .bx-testimonials-mobile-track::-webkit-scrollbar {
        display: none;
      }
     
      .bx-testimonials-mobile-slide {
        flex: 0 0 calc(94%);
        scroll-snap-align: start;
        display: flex;
        justify-content: center;
      }
     
      .bx-testimonials-mobile-slide .bx-testimonials-card {
        width: 100%;
        max-width: none;
        margin: 0;
      }
     
      .bx-testimonials-mobile-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #79be58;
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        
        z-index: 10;
        font-size: 1.4rem;
        cursor: pointer;
      }
     
      .bx-testimonials-mobile-arrow:active {
        transform: translateY(-50%) scale(0.95);
      }
     
      .bx-testimonials-mobile-prev {
        left: 8px;
      }
     
      .bx-testimonials-mobile-next {
        right: 8px;
      }
     
      .bx-testimonials-mobile-arrow[disabled] {
        opacity: 0.4;
        pointer-events: none;
      }
    }
   
    @media (max-width: 480px) {
      .bx-testimonials-headline {
        font-size: 1.7rem;
      }
     
      .bx-testimonials-card {
        min-height: 200px;
        padding: 22px 18px;
      }
     
      .bx-testimonials-card-img {
        width: 80px;
        height: 80px;
      }
     
      .bx-testimonials-text {
        font-size: 0.89rem;
      }
    }
	
	
	/* MOBILE-ONLY PROGRESS BAR - Clean & Premium */
.bx-testimonials-mobile-progress-wrapper {
  display: none; /* hidden on desktop */
  padding: 0 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .bx-testimonials-mobile-progress-wrapper {
    display: block;
  }

  .bx-testimonials-mobile-progress-container {
    width: 100%;
    max-width: 100%;
  }

  .bx-testimonials-mobile-progress-bg {
    height: 2px;
    background: rgba(121,190,88,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .bx-testimonials-mobile-progress-fill {
    height: 100%;
    width: 0%;
    background: #000000;
    border-radius: 4px;
    transition: width 0.4s ease;
  }
}

.exhibitors-module * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
	  padding-left: 10px;
	  padding-right: 10px;
    }
    .exhibitors-module,
    .exhibitors-module body {
      font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
      background: #ffffff;
      line-height: 1.7;
      font-weight: 400;
    }
    .exhibitors-module .exhibitors-section {
      padding: 2rem 0 3rem;
      background: #ffffff;
    }
    .exhibitors-module .exhibitors-section .ex-container {
      padding: 0 2.5rem;
      background: #ffffff;
    }
    .exhibitors-module .ex-section-headline {
      text-align: center;
      margin-bottom: 2.5rem;
      margin-top: -2.5rem;
    }
    .exhibitors-module .ex-headline1 {
      font-size: 2.4rem;
      font-weight: 400;
      letter-spacing: 2px;
      color: #222;
      text-transform: uppercase;
      display: inline-block;
      padding-bottom: 8px;
    }
    .exhibitors-module .ex-exhibitor-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      transition: all .35s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid #eee;
      padding: 1.5rem;
      margin-top: -20px;
    }
    .exhibitors-module .ex-exhibitor-card:hover {
      box-shadow: 0 15px 20px rgba(0, 0, 0, .18);
    }
    .exhibitors-module .ex-card-header {
      color: #79be58 !important;
      text-align: center;
      padding: 1.5rem 1rem;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 1.5px;
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: normal;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    .exhibitors-module .ex-card-body {
      flex: 1;
      padding: 1rem 1rem 1rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .exhibitors-module .ex-card-body img {
      width: 280px;
      height: 100px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 1.25rem;
      margin-top: -2rem;
    }
    .exhibitors-module .ex-card-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #444;
      flex-grow: 1;
      font-weight: 400;
    }
    .exhibitors-module .ex-card-footer {
      text-align: center;
      padding: 1rem 1rem 1rem;
    }
    .exhibitors-module .ex-card-footer a {
      display: inline-block;
      background: #79be58;
      color: #fff;
      padding: 0.875rem 2.375rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.05rem;
      text-decoration: none;
      transition: all .3s ease;
    }
    .exhibitors-module .ex-card-footer a:hover {
      background: #79be58;
      transform: translateY(-4px);
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-header {
      font-size: 1.35rem;
      padding: 1.25rem 0.875rem;
      min-height: 60px;
      background: #fff !important;
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-body {
      padding: 1.25rem 1.25rem 0.75rem;
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-desc {
      font-size: 0.98rem;
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-footer a {
      padding: 0.75rem 2rem;
      font-size: 0.98rem;
    }

    /* Carousel base styles */
    .exhibitors-module .ex-exhibitor-row {
      display: flex;
      gap: 1rem;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 0 1rem 2rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }
    .exhibitors-module .ex-exhibitor-row::-webkit-scrollbar {
      display: none;
    }

    /* Default (mobile): show partial next card */
    .exhibitors-module .ex-card-wrapper {
      flex: 0 0 88%;
      max-width: 88%;
      scroll-snap-align: center;
    }

    /* Tablet */
    @media (min-width: 577px) and (max-width: 992px) {
      .exhibitors-module .ex-card-wrapper {
        flex: 0 0 65%;
        max-width: 65%;
      }
    }

    /* Desktop: show ~3 cards with partial 4th visible */
    @media (min-width: 993px) {
      .exhibitors-module .ex-card-wrapper {
        flex: 0 0 30%;
        max-width: 30%;
      }
    }

    /* Mobile tweaks */
    @media (max-width: 576px) {
      .exhibitors-module .ex-headline1 {
        font-size: 1.4rem;
        margin-bottom: -20px;
      }
      .exhibitors-module .ex-section-headline {
        margin-bottom: 1.5rem !important;
      }
      .exhibitors-module .exhibitors-section .ex-container {
        padding: 0;
      }
      .exhibitors-module .ex-exhibitor-card {
        padding: 0.1rem;
        margin-top: 0;
      }
      .exhibitors-module .ex-card-header {
        font-size: 1.05rem;
        padding: 0.7rem 0.5rem;
        min-height: auto;
        line-height: 1.3;
      }
      .exhibitors-module .ex-card-body {
        padding: 0.8rem 0.8rem 0.6rem;
      }
      .exhibitors-module .ex-card-body img {
        width: 100%;
        height: 85px;
        object-fit: contain;
        background: #fff;
        padding: 8px;
        margin-top: -1.2rem;
        margin-bottom: 0.8rem;
      }
      .exhibitors-module .ex-card-desc {
        font-size: 0.92rem;
        line-height: 1.55;
      }
      .exhibitors-module .ex-card-footer {
        padding: 0.6rem 0.8rem 0.8rem;
      }
      .exhibitors-module .ex-card-footer a {
        padding: 0.6rem 1.6rem;
        font-size: 0.92rem;
      }
    }
	
	/* =====================================================
       FULLY CONFLICT-PROOF STYLES (SCOPED TO #exhi-module)
       ===================================================== */
    #exhi-module,
    #exhi-module * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
    }
    #exhi-module {
      --logo-size: 220px;
      --gap: 32px;
      --speed: 300s;
      --primary: #79be58;
      background: #fff;
      padding: 20px 0;
      overflow: hidden;
    }
    #exhi-module .ex-container {
      max-width: 100%;
      padding: 0 20px;
      text-align: center;
    }
    #exhi-module .ex-headline {
      font-size: 2.2rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 12px;
      display: inline-block;
    }
    #exhi-module .ex-headline::after { content: none; }
    /* Carousel */
    #exhi-module .ex-carousel {
      overflow-x: auto;
      overflow-y: hidden;
      cursor: grab;
      user-select: none;
      border-radius: 6px;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: none;
      scrollbar-width: none;
      position: relative;
    }
    #exhi-module .ex-carousel::-webkit-scrollbar {
      display: none !important;
    }
    #exhi-module .ex-carousel:active {
      cursor: grabbing;
    }
    #exhi-module .ex-track {
      display: inline-flex;
      gap: var(--gap);
      align-items: center;
      animation: exhiScroll var(--speed) linear infinite;
    }
    #exhi-module .ex-track:hover {
      animation-play-state: paused;
    }
    /* Card */
    #exhi-module .ex-item {
      flex: 0 0 var(--logo-size);
      height: calc(var(--logo-size) * 0.41);
      background: #fff;
     
      border: 1px solid rgba(121,190,88,0.18);
      transition: transform .35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      overflow: hidden;
    }
   
    #exhi-module .ex-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      user-drag: none;
      pointer-events: none;
      filter: grayscale(20%);
      transition: .6s ease;
    }
    #exhi-module .ex-item:hover img {
      filter: grayscale(0%);
    }
    @keyframes exhiScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    /* Breakpoints */
    @media (max-width: 1400px) { #exhi-module { --logo-size: 200px; --gap: 28px; } }
    @media (max-width: 1200px) { #exhi-module { --logo-size: 180px; --gap: 24px; } }
    @media (max-width: 992px) { #exhi-module { --logo-size: 160px; --gap: 20px; } }
    /* Mobile */
    @media (max-width: 576px) {
      #exhi-module { padding: 12px 0; --logo-size: 150px; --gap: 14px; }
      #exhi-module .ex-headline {
        font-size: 1.2rem;
        margin-bottom: 8px;
      }
      #exhi-module .ex-item {
        flex: 0 0 auto;
        width: var(--logo-size);
        height: auto;
        padding: 0;
      }
      #exhi-module .ex-item img {
        height: auto;
        max-height: none;
        object-fit: contain;
      }
    }
	
	
	/* ==== ORIGINAL STYLES (unchanged) ==== */
    .bx-partners-section{padding:80px 0 60px;background:#fff;font-family:'Montserrat',sans-serif;color:#333;line-height:1.6;font-weight:400;}
    .bx-partners-section *{box-sizing:border-box;}
    .bx-partners-container{max-width:1400px;margin:0 auto;padding:0 15px;}
    .bx-partners-header{text-align:center;margin-bottom:50px;}
    .bx-partners-headline{font-size:2.1rem;font-weight:400;letter-spacing:2.5px;color:#222;text-transform:uppercase;margin:0;position:relative;display:inline-block;padding-bottom:.5rem;}
    .bx-partners-headline::after{display:none;}
    .bx-partners-group{margin-bottom:28px;text-align:left;}
    .bx-partners-group-title{font-size:1.25rem;font-weight:400;color:#79be58;text-transform:uppercase;margin-bottom:14px;letter-spacing:.5px;display:inline-block;padding-bottom:6px;border-bottom:none !important;}
    .bx-partners-logo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:16px;justify-content:start;padding:0 8px;}
    .bx-partners-logo-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 5px 16px rgba(0,0,0,.1);width:100%;max-width:160px;border:1px solid rgba(121,190,88,.15);padding:1px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-decoration:none;}
    .bx-partners-logo-card:hover{box-shadow:0 10px 24px rgba(121,190,88,.25);border-color:#79be58;text-decoration:none;}
    .bx-partners-logo-card img{width:100%;max-width:160px;height:100px;object-fit:contain;border-radius:6px;}
    .bx-partners-side-row{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;gap:0;}
    .bx-partners-side-col{flex:0 0 33.333333%;max-width:33.333333%;padding-left:0!important;padding-right:0!important;}
    .bx-partners-side-col:first-child{padding-right:8px!important;}
    .bx-partners-side-col:last-child{padding-left:8px!important;}
    .bx-partners-full-width-group{margin-top:2.5rem!important;}
    /* RESPONSIVE */
    @media (max-width:1200px){.bx-partners-logo-grid{grid-template-columns:repeat(5,1fr);}}
    @media (max-width:992px){
      .bx-partners-logo-grid{grid-template-columns:repeat(4,1fr);}
      .bx-partners-side-col{flex:0 0 100%;max-width:100%;padding:0 0 1.5rem 0!important;}
    }
    @media (max-width:768px){
      .bx-partners-logo-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;gap:14px;padding:8px 4px 20px 4px;scrollbar-width:none;-ms-overflow-style:none;}
      .bx-partners-logo-grid::-webkit-scrollbar{display:none;}
      .bx-partners-logo-card{flex:0 0 calc(85% - 7px);max-width:calc(85% - 7px);scroll-snap-align:start;padding:px!important;}
      .bx-partners-logo-card img{height:85px;object-fit:contain;}
      .bx-partners-group{text-align:center!important;}
      .bx-partners-group-title{display:block;width:fit-content;margin:0 auto 14px auto;}
    }
    @media (max-width:576px){
      .bx-partners-logo-card{flex: 0 0 calc(90% - 7px);max-width:calc(90% - 7px);}
      .bx-partners-headline{font-size:1.2rem;font-weight:400;}
      .bx-partners-group-title{font-size:1.1rem;}
    }
    @media (max-width:400px){
      .bx-partners-logo-card{flex: 0 0 calc(92% - 7px);max-width:calc(92% - 7px);margin:0;}
    }
    @media (max-width:576px){
      .bx-partners-section{padding:40px 0!important;}
      .bx-partners-header{margin-bottom:25px!important;}
      .bx-partners-headline{margin:0!important;}
    }
    /* ───── MOBILE-ONLY: Final perfect version ───── */
    @media (max-width: 768px) {
      /* Default width for scrollable groups (3+ cards) */
      .bx-partners-logo-card {
        flex: 0 0 48% !important;
        max-width: 48% !important;
        padding: 0 !important;
      }
      .bx-partners-logo-card img {
        width: 100%;
        max-width: none !important;
        height: 85px;
        padding: 0;
      }
      /* CENTER + SLIGHTLY NARROWER for groups with 1 or 2 logos only */
      .bx-partners-logo-grid:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child) {
        justify-content: center !important;
        overflow-x: hidden;
      }
      .bx-partners-logo-grid:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child) .bx-partners-logo-card {
        flex: 0 0 44% !important;
        max-width: 44% !important;
      }
      /* SCROLL + PEEK: Only groups with 3+ logos */
      .bx-partners-logo-grid:not(:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child)) {
        padding-right: 70px !important;
      }
      /* Tight spacing */
      .bx-partners-full-width-group,
      .bx-partners-side-row {margin-top: 0.8rem !important;}
      .bx-partners-group {margin-bottom: 1rem !important;}
      .bx-partners-group-title {margin-bottom: 10px !important;}
      .bx-partners-logo-grid {padding-bottom: 8px !important;}
      .bx-partners-section {padding-bottom: 40px !important;}
    }
    @media (max-width: 576px) {
      .bx-partners-logo-card img {height: 75px;}
      .bx-partners-logo-grid:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child) .bx-partners-logo-card {
        flex: 0 0 48% !important;
        max-width: 48% !important;
      }
      .bx-partners-logo-grid:not(:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child)) {
        padding-right: 60px !important;
      }
      .bx-partners-section {padding-bottom: 30px !important;}
    }

    /* NEW: Separate mobile auto-scroll (no effect on desktop) */
    .desktop-version { display: block; }
    .mobile-version { display: none; }

    @media (max-width: 768px) {
      .desktop-version { display: none; }
      .mobile-version { display: block; }

      .mobile-auto-scroll {
		  touch-action: pan-x;
		  cursor: grab;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding: 8px 4px 20px 4px;
      }
	  .mobile-auto-scroll:active {
    cursor: grabbing;
  }
  
  .mobile-auto-scroll:active .mobile-auto-inner,
  .mobile-auto-scroll:focus-within .mobile-auto-inner {
    animation-play-state: paused !important;
  }

  /* Smooth scrolling */
  .mobile-auto-scroll {
    scroll-behavior: smooth;
  }
      .mobile-auto-scroll::-webkit-scrollbar { display: none; }

      .mobile-auto-inner {
        display: flex;
        gap: 14px;
        width: max-content;
        animation: mobileScroll 60s linear infinite;
      }

      .mobile-auto-scroll:hover .mobile-auto-inner {
        animation-play-state: paused;
      }

      @keyframes mobileScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
    }
	
	/* DESKTOP FIX: Make Supporting & Information Partners horizontal */
@media (min-width: 769px) {
  .bx-partners-full-width-group .bx-partners-logo-grid.desktop-version {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: flex-start;
  }

  .bx-partners-full-width-group .bx-partners-logo-card {
    flex: 0 0 auto;
  }
}

/* MOBILE FULL-WIDTH AUTO SCROLL */
@media (max-width: 768px) {
  .bx-partners-logo-grid.mobile-version {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mobile-auto-scroll {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 12px;
    padding-right: 12px;
  }
}


/* FIX: Smooth & proper auto-scroll for mobile Supporting + Information Partners */
@media (max-width: 768px) {

  /* Auto-scroll cards must be fixed width */
  .mobile-version .bx-partners-logo-card {
    flex: 0 0 160px !important;
    max-width: 160px !important;
    padding: 6px !important;
  }

  .mobile-version .bx-partners-logo-card img {
    height: 80px;
    width: 100%;
    object-fit: contain;
  }

  /* Slower, smoother infinite scroll */
  .mobile-version .mobile-auto-inner {
    animation: mobileScroll 18s linear infinite;
  }
}


.expo-header-2025 * { margin: 0; padding: 0; box-sizing: border-box; }
        .expo-header-2025 {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            z-index: 9999;
        }
        .expo-header-2025 + * { margin-top: 152px !important; }
        @media (max-width: 768px) { .expo-header-2025 + * { margin-top: 90px !important; } }
        /* ==================== FIXED VIDEO BACKGROUND ==================== */
        .expo-header-2025 .video-wrapper {
            position: relative;
            width: 100vw;
            height: 110vh;
            overflow: hidden;
            margin-top: -90px;
            
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
		
		/* Perfectly center-crop the video without cutting the top */
.expo-header-2025 .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none !important;
}
		
		
        .expo-header-2025 .local-video {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .expo-header-2025 .desktop-video iframe,
        .expo-header-2025 .mobile-video iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .expo-header-2025 .desktop-video { display: block; }
        .expo-header-2025 .mobile-video { display: none; }
        @media (max-width: 768px) {
            .expo-header-2025 .video-wrapper { height: 102vh !important; }
            .expo-header-2025 .desktop-video { display: none !important; }
            .expo-header-2025 .mobile-video { display: block !important; }
            .expo-header-2025 .mobile-video iframe {
                top: 50% !important;
                left: 50% !important;
                width: 100vw !important;
                height: 177.78vw !important;
                min-height: 100vh !important;
                transform: translate(-50%, -50%) !important;
            }
        }
        
        .expo-header-2025 .bottom-center-buttons {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 50px;
            z-index: 99;
        }
        .expo-header-2025 .btn-explore {
            padding: 10px 32px;
            background: #fff;
            color: #000;
            border-radius: 50px;
            font-weight: 450;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.9px;
            font-size: 15px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }
        @media(max-width: 768px){
            .expo-header-2025 .bottom-center-buttons { bottom: 30px; }
            .expo-header-2025 .btn-explore {
                padding: 12px 36px !important;
                font-size: 13.5px !important;
                letter-spacing: 1.7px !important;
            }
        }
        .expo-header-2025 .header-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            z-index: 9999;
            transition: transform 0.35s ease;
        }
        .expo-header-2025 .header-container > * { pointer-events: auto; }
        @media (max-width: 768px) {
            .expo-header-2025 .header-container.hide { transform: translateY(-100%); }
        }
        .expo-header-2025 .top-strip {
            background: rgba(0,0,0,0.88);
            backdrop-filter: blur(8px);
            padding: 6px 30px !important;
            font-size: 12.5px !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            min-height: 40px;
            height: 40px;
        }
        .expo-header-2025 .top-left, .expo-header-2025 .top-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .expo-header-2025 .top-right a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 12.5px;
        }
        .expo-header-2025 .top-right a:nth-child(1) i { color: #25D366; }
        /* Google Translate Desktop */
        .expo-header-2025 #google_translate_element { display: inline-block; }
        .expo-header-2025 .goog-te-gadget-simple {
            background: transparent !important;
            border: 1.4px solid rgba(255,255,255,0.3) !important;
            border-radius: 20px !important;
            padding: 5px 12px !important;
            font-size: 12px !important;
            color: #fff !important;
            font-weight: 500 !important;
            cursor: pointer;
            transition: 0.3s;
        }
        .expo-header-2025 .goog-te-gadget-simple:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: #79be58 !important;
        }
        .expo-header-2025 .goog-te-gadget-simple img { display: none !important; }
        .goog-te-gadget-simple,
        .goog-te-gadget-simple *,
        .goog-te-menu-value,
        .goog-te-menu-value span,
        .goog-te-menu-value span:first-child + span,
        .goog-te-menu-value * {
            color: #ffffff !important;
            font-weight: 500 !important;
        }
        .goog-te-menu-value span:first-child { display: none !important; }
        .goog-te-menu-value::before {
            content: "Translate" !important;
            color: #ffffff !important;
        }
        .expo-header-2025 .navbar {
            background: rgba(255,255,255,0.09);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 8px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 45px;
            border-radius: 0 0 10px 10px;
            transition: all 0.4s ease;
        }
        @media (max-width: 768px) {
            .expo-header-2025 .navbar {
                padding: 10px 20px !important;
                height: 70px !important;
                justify-content: center;
                border-radius: 0 !important;
                background: transparent !important;
                backdrop-filter: none !important;
                box-shadow: none !important;
                border-bottom: none !important;
            }
            .expo-header-2025 .navbar.scrolled { background: #ffffff !important; }
            .expo-header-2025 .navbar.scrolled .mobile-left i,
            .expo-header-2025 .navbar.scrolled .mobile-right i { color: #000 !important; }
        }
        @media(min-width: 769px) {
            .expo-header-2025 .navbar.scrolled {
                background: #ffffff !important;
                backdrop-filter: none !important;
            }
            .expo-header-2025 .navbar.scrolled a,
            .expo-header-2025 .navbar.scrolled span,
            .expo-header-2025 .navbar.scrolled i { color: #000 !important; }
        }
        .expo-header-2025 .desktop-logo img { height: 22px; width: auto; }
        .expo-header-2025 .search-box {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            margin-right: 24px;
        }
        .expo-header-2025 .search-box i { font-size: 18px; }
        @media(max-width: 768px){
            .expo-header-2025 .top-strip, .expo-header-2025 .desktop-row { display: none !important; }
            .expo-header-2025 .mobile-row {
                display: flex !important;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                max-width: 500px;
                position: relative;
            }
            .expo-header-2025 .mobile-left { display: flex; align-items: center; gap: 20px; }
            .expo-header-2025 .mobile-left i {
                font-size: 24px;
                color: #fff;
                cursor: pointer;
            }
            .expo-header-2025 .mobile-logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                font-size: 26px !important;
                font-weight: 700;
                color: #fff;
                letter-spacing: 1px;
            }
            .expo-header-2025 .mobile-logo img { height: 16px; width: auto; display: block; }
            .expo-header-2025 .mobile-right { display: flex; align-items: center; gap: 18px; }
            .expo-header-2025 .mobile-right a i {
                font-size: 22px;
                color: #fff; 
            }
        }
        @media(min-width: 769px){ .expo-header-2025 .mobile-row { display: none !important; } }
        /* === DESKTOP: SEPARATE DROPDOWN SETTINGS (HOVER) === */
        @media(min-width: 769px) {
            .expo-header-2025 .nav-links {
                display: flex;
                align-items: center;
                gap: 38px;
            }
            .expo-header-2025 .nav-links > a,
            .expo-header-2025 .nav-links .desktop-dropdown > a {
                color: #fff;
                font-size: 13.5px;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                text-decoration: none !important;
            }
            .expo-header-2025 .desktop-dropdown {
                position: relative;
            }
            .expo-header-2025 .desktop-dropdown > a::after {
                content: " ▼";
                font-size: 9px;
                margin-left: 6px;
                opacity: 0.8;
                transition: transform 0.3s ease;
            }
            .expo-header-2025 .desktop-dropdown:hover > a::after {
                transform: rotate(180deg);
            }
            .expo-header-2025 .desktop-dropdown-menu {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                background: #fff;
                min-width: 260px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
                border-radius: 8px;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 9999;
                padding: 16px 0;
                text-align: center;
                pointer-events: none;
            }
            .expo-header-2025 .desktop-dropdown:hover .desktop-dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(8px);
                pointer-events: auto;
            }
            .expo-header-2025 .desktop-dropdown::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 20px;
                background: transparent;
            }
            .expo-header-2025 .desktop-dropdown-item {
                display: block;
                padding: 12px 20px;
                color: #000 !important;
                font-size: 13.5px;
                font-weight: 500;
                text-transform: none;
                letter-spacing: 0.5px;
                text-decoration: none;
                transition: all 0.3s;
            }
            .expo-header-2025 .desktop-dropdown-item:hover {
                background: #79be58;
                color: #fff !important;
            }
        }
        /* Mobile Menu */
        .expo-header-2025 .mobile-menu-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            opacity: 0; visibility: hidden;
            transition: all 0.4s ease;
            z-index: 9998;
        }
        .expo-header-2025 .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
        .expo-header-2025 .mobile-menu {
            position: fixed;
            top: 0; right: -100%;
            width: 100vw; height: 100vh;
            background: #fff;
            z-index: 9999;
            transition: right 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        .expo-header-2025 .mobile-menu.active { right: 0; }
        .expo-header-2025 .mobile-menu-header {
            padding: 28px 24px 20px !important;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            border-bottom: 1px solid #eee;
            position: relative;
            height: auto;
            min-height: 80px;
        }
        .expo-header-2025 .mobile-menu-header span {
            margin-top: 12px;
            font-size: 18px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .expo-header-2025 .close-menu {
            position: absolute;
            top: 34px !important;
            right: 20px;
            font-size: 28px !important;
            cursor: pointer;
            color: #333;
        }
        .expo-header-2025 .mobile-menu-links { padding: 30px 20px; flex-grow: 1; }
        .expo-header-2025 .mobile-menu-links > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            text-decoration: none;
            border-bottom: 1px solid #eee;
        }
        .expo-header-2025 .mobile-menu-links > a:last-child { border-bottom: none; }
        .mobile-dropdown { border-bottom: 1px solid #eee; }
        .mobile-dropdown-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
        }
        .mobile-dropdown-title::after { content: "+"; font-size: 22px; transition: transform 0.3s; }
        .mobile-dropdown.active .mobile-dropdown-title::after { content: "−"; }
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f8f8f8;
        }
        .mobile-submenu a {
            display: block;
            padding: 14px 20px;
            font-size: 15px;
            color: #333;
            text-decoration: none;
        }
        .mobile-submenu a:hover { background: #79be58; color: #fff; }
        .expo-header-2025 .mobile-menu-contact {
            padding: 0 20px 30px;
            border-top: 1px solid #eee;
        }
        .expo-header-2025 .mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 18px;                 /* Space between text and icon */
    padding: 14px 0px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    min-width: 140px;
    justify-content: space-between;  /* Pushes icon to the right end */
    border-radius: 8px;
    transition: all 0.3s;
}

.expo-header-2025 .mobile-menu-contact a i {
    font-size: 20px;           /* Slightly larger icon for visibility */
    margin-left: auto;         /* Extra safety to push icon to right */
}

.expo-header-2025 .mobile-menu-contact .fab.fa-whatsapp {
    color: #25D366;
}
        .expo-header-2025 .mobile-menu-contact i { font-size: 18px; width: 24px; }
        .expo-header-2025 .mobile-menu-contact .fab.fa-whatsapp { color: #25D366; }
        .expo-header-2025 .schedule-btn {
            background: #79be58 !important;
            color: #fff !important;
            padding: 16px 20px !important;
            border-radius: 50px;
            margin-top: 15px;
            justify-content: center !important;
            font-weight: 600;
            display: flex;
            gap: 10px;
        }
        #google_translate_element_mobile .goog-te-gadget-simple {
            background: transparent !important;
            border: 1.8px solid #79be58 !important;
            border-radius: 25px !important;
            padding: 8px 16px !important;
            font-size: 14px !important;
            color: #000 !important;
            font-weight: 600 !important;
        }
        #google_translate_element_mobile .goog-te-gadget-simple:hover {
            background: #79be58 !important;
            color: #fff !important;
        }
        #google_translate_element_mobile img,
        #google_translate_element_mobile .goog-te-menu-value span:first-child { display: none !important; }
        #google_translate_element_mobile .goog-te-menu-value::before { content: "Language" !important; }
		
		
		/* 🔥 FORCE-HIDE Cloudinary video controls on all devices */
iframe[src*="cloudinary"] + * {
    display: none !important;
}

/* Additional safety for mobile */
.cld-video-player,
.cld-video-player * {
    opacity: 0 !important;
    visibility: hidden !important;
}
	



.background-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none !important;
}

/* Hide desktop video on mobile */
@media(max-width:768px){
    .background-video:not(.mobile-only) { display: none !important; }
}

/* Hide mobile video on desktop */
@media(min-width:769px){
    .background-video.mobile-only { display: none !important; }
}

@media (max-width: 768px) {
    .expo-header-2025 .mobile-menu-links > div[style*="border-bottom"] span {
        color: #000 !important;
    }
}





/* video loading indicator */
.expo-header-2025 .video-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.expo-header-2025 .video-loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .expo-header-2025 .video-loading-text {
        font-size: 20px;
        letter-spacing: 1.8px;
    }
}

/* rotating partial ring spinner */
.expo-header-2025 .ring-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(121, 190, 88, 0.2); /* Light transparent #79be58 */
    border-top-color: #79be58; /* Solid green arc */
    border-radius: 50%;
    animation: ringSpin 1.2s linear infinite;
}

@media (max-width: 768px) {
    .expo-header-2025 .ring-spinner {
        width: 50px;
        height: 50px;
        border-width: 5px;
    }
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

   /* Namespaced styles to prevent conflicts */
    .buildexpo-exhibition-info * { margin: 0; padding: 0; box-sizing: border-box; }
    
    .buildexpo-exhibition-info {
      font-family: 'Montserrat', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.7;
    }
    .buildexpo-exhibition-info .buildexpo-about-module {
      padding: 60px 20px 20px;
      background: #ffffff;
    }
    .buildexpo-exhibition-info .buildexpo-about-wrapper { 
      max-width: 1400px; 
      margin: 0 auto; 
    }
    .buildexpo-exhibition-info .buildexpo-about-heading {
      font-size: 2.8rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 5px;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 50px;
      margin-top: 20px;
    }

    /* Desktop 2x2 Grid */
    .buildexpo-exhibition-info .buildexpo-info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    .buildexpo-exhibition-info .buildexpo-info-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      display: flex;
      flex-direction: row;
      height: 360px;
    }
    .buildexpo-exhibition-info .buildexpo-info-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    }
    .buildexpo-exhibition-info .buildexpo-info-card-img-container {
      flex: 1.3;
      overflow: hidden;
    }
    .buildexpo-exhibition-info .buildexpo-info-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .buildexpo-exhibition-info .buildexpo-info-card-content {
      flex: 1;
      padding: 40px 35px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }
    .buildexpo-exhibition-info .buildexpo-info-card-heading {
      font-size: 1.55rem;
      font-weight: 500;
      color: #1a1a1a;
      margin-bottom: 18px;
    }
    .buildexpo-exhibition-info .buildexpo-info-card-text {
      font-size: 1rem;
      color: #444;
      margin-bottom: 28px;
      line-height: 1.75;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .buildexpo-exhibition-info .buildexpo-info-card-btn {
      align-self: flex-start;
      padding: 14px 34px;
      background: #79be58;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: background 0.3s ease;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .buildexpo-exhibition-info .buildexpo-info-card-btn:hover { background: #6aa84f; }

    /* Mobile Carousel */
    .buildexpo-exhibition-info .buildexpo-mobile-carousel-container {
      display: none;
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-bottom: 60px;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-carousel-wrapper {
      display: flex;
      transition: transform 0.5s ease;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card {
      min-width: 100%;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-img-container {
      height: 220px;
      overflow: hidden;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.5s ease;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-content {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-heading {
      font-size: 1.6rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 16px;
      text-align: center;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-text {
      font-size: 1.02rem;
      color: #444;
      line-height: 1.8;
      margin-bottom: 24px;
      text-align: center;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-btn {
      align-self: center;
      padding: 13px 32px;
      background: #79be58;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1rem;
      transition: background 0.3s ease;
    }
    .buildexpo-exhibition-info .buildexpo-mobile-card-btn:hover {
      background: #6aa84f;
    }

    /* Carousel Dots */
    .buildexpo-exhibition-info .buildexpo-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 25px;
    }
    .buildexpo-exhibition-info .buildexpo-carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .buildexpo-exhibition-info .buildexpo-carousel-dot.active {
      background: #79be58;
      width: 30px;
      border-radius: 5px;
    }

    /* Progress Bar */
    .buildexpo-exhibition-info .buildexpo-carousel-progress-container {
      position: relative;
      width: 60%;
      max-width: 300px;
      height: 4px;
      background: #e0e0e0;
      border-radius: 2px;
      margin: 20px auto 0;
      overflow: hidden;
    }
    .buildexpo-exhibition-info .buildexpo-carousel-progress-bar {
      height: 100%;
      background: #79be58;
      width: 0%;
      transition: width 0.1s linear;
      border-radius: 2px;
    }
    .buildexpo-exhibition-info .buildexpo-carousel-progress-container.paused .buildexpo-carousel-progress-bar {
      transition: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
      .buildexpo-exhibition-info .buildexpo-info-card {
        height: 340px;
      }
      .buildexpo-exhibition-info .buildexpo-info-card-content {
        padding: 35px 30px;
      }
      .buildexpo-exhibition-info .buildexpo-info-card-heading {
        font-size: 1.45rem;
      }
      .buildexpo-exhibition-info .buildexpo-info-card-text {
        -webkit-line-clamp: 4;
      }
    }

    @media (max-width: 992px) {
      .buildexpo-exhibition-info .buildexpo-info-grid { display: none; }
      .buildexpo-exhibition-info .buildexpo-mobile-carousel-container { display: block; }
      .buildexpo-exhibition-info .buildexpo-about-heading { 
        font-size: 2.5rem; 
        margin-bottom: 70px; 
      }
      .buildexpo-exhibition-info .buildexpo-about-module {
        padding: 100px 20px 70px;
      }
    }

    @media (max-width: 768px) {
      .buildexpo-exhibition-info .buildexpo-about-heading { font-size: 1.5rem; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-img-container { height: 200px; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-content { padding: 28px 24px; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-heading { font-size: 1.55rem; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-text { font-size: 1rem; }
    }

    @media (max-width: 480px) {
      .buildexpo-exhibition-info .buildexpo-about-heading { 
        font-size: 1.5rem; 
        letter-spacing: 2px;
        margin-bottom: 30px;
        margin-top: -30px;
      }
      .buildexpo-exhibition-info .buildexpo-about-module {
        padding: 90px 15px 60px;
      }
      .buildexpo-exhibition-info .buildexpo-mobile-card-img-container { height: 180px; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-content {
        padding: 24px 20px;
      }
      .buildexpo-exhibition-info .buildexpo-mobile-card-heading { font-size: 1.35rem; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-text { font-size: 0.98rem; }
      .buildexpo-exhibition-info .buildexpo-mobile-card-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
      }
    }
	
	.expo-collab-module {
            background-color: #ffffff;
            color: #000000;
            font-family: 'Montserrat', sans-serif;
            margin: 0 !important;
            padding: 0 !important;
        }
        .expo-collab-module .main-heading {
            font-size: 2.4rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-align: center;
            margin: 0 0 1rem 0;
            padding-top: 6rem;
            line-height: 1;
            color: #000;
        }
        .expo-collab-module .sub-heading {
            font-size: 1.8rem;
            font-weight: 300;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto 3rem auto;
            opacity: 0.9;
            line-height: 1.6;
            color: #333;
        }
        .expo-collab-module .logo-fullwidth {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #ffffff;
            padding: 0 2vw 1rem;
            margin-top: 0 !important;
            overflow: hidden; /* Hide overflow for infinite effect */
        }
        .expo-collab-module .logo-container {
            width: 100vw;
            display: flex;
            gap: 0.8vw;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 0rem 2rem;
            -webkit-overflow-scrolling: touch;
        }
        .expo-collab-module .logo-container::-webkit-scrollbar { display: none; }
        .expo-collab-module .logo-item img {
            height: 90px;
            width: auto;
            object-fit: contain;
            flex-shrink: 0;
        }

        /* Desktop - unchanged */
        @media (min-width: 769px) {
            .expo-collab-module .sub-heading { margin-bottom: 1rem !important; }
            .expo-collab-module .logo-fullwidth { padding-top: 0.5rem !important; }
        }

        /* MOBILE ONLY - FULL WIDTH + 2/4 LINES + ZERO SPACE AROUND LOGOS */
        @media (max-width: 768px) {
            .expo-collab-module .container {
                padding: 0 20px !important;
            }
            .expo-collab-module .main-heading {
                font-size: 1.2rem !important;
                padding-top: 2rem;
                padding-bottom: 1rem;
                line-height: 1.15;
                margin: 0 auto;
                width: 100%;
                max-width: none !important;
            }
            .expo-collab-module .sub-heading {
                font-size: 1rem;
                line-height: 1;
                padding: 0 1vw;
                margin: 0 auto 1rem auto;
                margin-bottom: -70px;
                width: 100%;
                max-width: none !important;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                height: calc(1rem * 1.55 * 4);
            }

            .expo-collab-module .logo-fullwidth {
                margin-top: -2rem !important;
                padding: 0 1vw 0 !important;
            }
            .expo-collab-module .logo-container {
                padding: 0 !important;
                gap: 2vw;
            }

            .expo-collab-module .logo-item img {
                height: 75px !important;
            }
        }
        @media (max-width: 576px) {
            .expo-collab-module .logo-item img { height: 52px !important; }
        }
        
        @media (min-width: 769px) {
            .expo-collab-module .logo-container {
                user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
                cursor: grab;
            }
            .expo-collab-module .logo-container.dragging {
                cursor: grabbing;
            }
            .expo-collab-module .logo-item img {
                pointer-events: none;
            }
        }.expo-collab-module {
            background-color: #ffffff;
            color: #000000;
            font-family: 'Montserrat', sans-serif;
            margin: 0 !important;
            padding: 0 !important;
        }
        .expo-collab-module .main-heading {
            font-size: 2.4rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-align: center;
            margin: 0 0 1rem 0;
            padding-top: 6rem;
            line-height: 1;
            color: #000;
        }
        .expo-collab-module .sub-heading {
            font-size: 1.8rem;
            font-weight: 300;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto 3rem auto;
            opacity: 0.9;
            line-height: 1.6;
            color: #333;
        }
        .expo-collab-module .logo-fullwidth {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #ffffff;
            padding: 0 2vw 1rem;
            margin-top: 0 !important;
            overflow: hidden; /* Hide overflow for infinite effect */
        }
        .expo-collab-module .logo-container {
            width: 100vw;
            display: flex;
            gap: 0.8vw;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 0rem 2rem;
            -webkit-overflow-scrolling: touch;
        }
        .expo-collab-module .logo-container::-webkit-scrollbar { display: none; }
        .expo-collab-module .logo-item img {
            height: 90px;
            width: auto;
            object-fit: contain;
            flex-shrink: 0;
        }

        /* Desktop - unchanged */
        @media (min-width: 769px) {
            .expo-collab-module .sub-heading { margin-bottom: 1rem !important; }
            .expo-collab-module .logo-fullwidth { padding-top: 0.5rem !important; }
        }

        /* MOBILE ONLY - FULL WIDTH + 2/4 LINES + ZERO SPACE AROUND LOGOS */
        @media (max-width: 768px) {
            .expo-collab-module .container {
                padding: 0 20px !important;
            }
            .expo-collab-module .main-heading {
                font-size: 1.2rem !important;
                padding-top: 2rem;
                padding-bottom: 1rem;
                line-height: 1.15;
                margin: 0 auto;
                width: 100%;
                max-width: none !important;
            }
            .expo-collab-module .sub-heading {
                font-size: 1rem;
                line-height: 1;
                padding: 0 1vw;
                margin: 0 auto 1rem auto;
                margin-bottom: -70px;
                width: 100%;
                max-width: none !important;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                height: calc(1rem * 1.55 * 4);
            }

            .expo-collab-module .logo-fullwidth {
                margin-top: -2rem !important;
                padding: 0 1vw 0 !important;
            }
            .expo-collab-module .logo-container {
                padding: 0 !important;
                gap: 2vw;
            }

            .expo-collab-module .logo-item img {
                height: 75px !important;
            }
        }
        @media (max-width: 576px) {
            .expo-collab-module .logo-item img { height: 52px !important; }
        }
        
        @media (min-width: 769px) {
            .expo-collab-module .logo-container {
                user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
                cursor: grab;
            }
            .expo-collab-module .logo-container.dragging {
                cursor: grabbing;
            }
            .expo-collab-module .logo-item img {
                pointer-events: none;
            }
        }
		
.buildexpo-options-module * { margin: 0; padding:0; box-sizing:border-box; }
    .buildexpo-options-module {
      font-family:'Montserrat',sans-serif;
      background:#fff;
      color:#222;
      line-height:1.6;
      padding:90px 20px 120px;
      text-align:center;
    }
    .buildexpo-options-module .module-container { max-width:1300px; margin:0 auto; position:relative; }
    .buildexpo-options-module .module-title {
      font-size:2.4rem;
      font-weight:400;
      text-transform:uppercase;
      letter-spacing:3px;
      color:#000;
      margin-bottom:50px;
    }
    .buildexpo-options-module .cards-wrapper { overflow:hidden; }

    /* Desktop */
    .buildexpo-options-module .cards-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
      padding:20px 0;
    }
    .buildexpo-options-module .option-card {
      background:#ffffff;
      border:2px solid transparent;
      border-radius:16px;
      padding:35px 25px;
      transition:border-color .4s ease;
      display:flex;
      flex-direction:column;
      align-items:center;
    }
    .buildexpo-options-module .option-card:hover { border-color:#79be58; } /* ← changed */
    .buildexpo-options-module .card-title {
      font-size:1.55rem;
      font-weight:700;
      color:#000;
      margin-bottom:28px;
    }
    .buildexpo-options-module .links-list {
      list-style:none;
      width:100%;
      display:flex;
      flex-direction:column;
      gap:15px;
	  margin-left: -20px;
    }
    .buildexpo-options-module .links-list li a {
      color:#333;
      text-decoration:none;
      font-size:1.02rem;
      font-weight:500;
      padding:10px 15px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      transition:all .35s ease;
    }
    .buildexpo-options-module .links-list li a i {
      font-size:1.1rem;
      color:#79be58;           /* ← changed */
      opacity:0;
      transform:translateX(-8px);
      transition:all .35s ease;
    }
    .buildexpo-options-module .links-list li a:hover { 
      color:#79be58;            /* ← changed */
      font-weight:600; 
    }
    .buildexpo-options-module .links-list li a:hover i { opacity:1; transform:translateX(0); }

    /* MOBILE ONLY CHANGES */
    @media (max-width:768px) {
      .buildexpo-options-module { padding:70px 0px 100px; margin-top:-70px;}
      .cards-grid { padding-left:35px!important; padding-right:35px!important; margin-top:-20px;}
      .buildexpo-options-module .module-title {
        font-size:1.2rem;
        letter-spacing:2px;
        margin-bottom:45px;
		margin-top: 60px;
      }
      .cards-grid {
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:20px;
        padding:10px 0px 50px 20px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        scroll-padding:20px;
      }
      .cards-grid::-webkit-scrollbar { display:none; }
      .option-card {
        flex:0 0 72%;
        max-width:350px;
        min-width:270px;
        scroll-snap-align:start;
        height:470px;
        padding:45px 30px;
        background:#fff;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
        border:2px solid transparent;
        transition:all .4s ease;
        justify-content:center;
        align-items:center;
        text-align:center;
      }
      .option-card:hover { border-color:#79be58; } /* ← changed */
      .card-title { font-size:1.6rem; margin-bottom:36px; }
      .links-list {
        gap:19px;
        width:88%;
        max-width:320px;
        margin-left: -15px !important; /* your previous fix kept */
      }
      .links-list li a {
        font-size:1.07rem;
        padding:15px 22px;
        border-radius:12px;
        justify-content:flex-start;
        gap:14px;
      }
      .links-list li a:hover {
        background:#e6f4e6;     /* light green tint instead of yellow */
        color:#79be58;          /* ← changed */
      }
      .dots-indicator { display:flex; justify-content:center; gap:12px; margin-top:10px; }
      .dot { width:10px; height:10px; border-radius:50%; background:#ccc; transition:all .3s ease; }
      .dot.active { 
        background:#79be58;     /* ← changed */
        transform:scale(1.4); 
      }
    }
    @media (max-width:480px) {
      .option-card { flex:0 0 76%; height:500px; padding:40px 25px; }
      .card-title { font-size:1.5rem; margin-bottom:32px; }
      .links-list { gap:17px; width:90%; }
    }
	
	
	/* ← REDUCE BOTTOM SPACE AFTER CARDS – DESKTOP ONLY → */
@media (min-width: 769px) {
  .buildexpo-options-module {
    padding-bottom: 80px !important;   /* ← original was 120px → now much tighter */
  }
  
  /* Alternative (even tighter – choose one you prefer) */
  /* padding-bottom: 40px !important; */
  
  /* If you still see too much gap, force the wrapper too */
  .buildexpo-options-module .cards-wrapper {
    margin-bottom: -20px !important;
  }
}

.expo-stats-module { --gold: #79be58; } /* ← CHANGED HERE ONLY */
  .expo-stats-module * { margin:0; padding:0; box-sizing:border-box; }
  .expo-stats-module { font-family:'Montserrat',sans-serif; }
  .expo-stats-module .stats-section {
    min-height:85vh;
    background:#ffffff;
    display:flex; align-items:flex-start; justify-content:center;
    padding-top: 0 !important;
    min-height: unset !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .expo-stats-module .content { max-width:1400px; margin:0 auto; text-align:center; padding:0 0px; }
  .expo-stats-module .headline { font-size:3.5rem; font-weight:300; letter-spacing:6px; color:#000; text-transform:uppercase; margin:0 0 0.5rem; display:inline-block; }
  .expo-stats-module .simple-underline-btn { display:inline-block; margin-top:12px; padding-top:10px; font-weight:400; font-size:0.8rem; letter-spacing:2px; text-transform:uppercase; color:#000; text-decoration:none; border-bottom:1px solid #000; transition:all 0.3s ease; }
  .expo-stats-module .simple-underline-btn:hover { color:var(--gold); border-bottom-color:var(--gold); }
  .expo-stats-module .stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; max-width:1400px; margin:2.5rem auto 0; justify-items:center; }
  .expo-stats-module .stats-grid > :nth-child(4) { grid-row:2; grid-column:1/3; }
  .expo-stats-module .stats-grid > :nth-child(5) { grid-row:2; grid-column:2/4; }
  .expo-stats-module .stat-item { background:rgba(255,255,255,0.95); border-radius:18px; padding:2.8rem 1.5rem; height:240px; width:100%; max-width:320px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; }
  .expo-stats-module .bi-icon { font-size:4rem; color:var(--gold); margin-bottom:0.5rem; margin-left:-10px; }
  .expo-stats-module .stat-item h2 { font-size:2.4rem; font-weight:600; color:#000; margin:0.5rem 0; letter-spacing:1px; }
  .expo-stats-module .stat-item p { font-size:1rem; color:#444; font-weight:400; }
  @media (max-width:768px){
    .expo-stats-module .stats-section { padding-top:5px; }
    .expo-stats-module .headline { font-size:1.8rem; line-height:1.2; margin-bottom:0.5rem;  }
   
    /* ← ONLY THIS LINE CHANGED – reduced gap on mobile */
    .expo-stats-module .simple-underline-btn { margin-top:3px; margin-bottom:1rem; font-size:0.7rem; }
   
    .expo-stats-module .stats-grid { grid-template-columns:1fr 1fr; gap:1rem; max-width:95%; margin:0 auto; padding:0 10px; transform: none !important;
    
    /* Better centering + breathing room */
    margin: 1.5rem auto 1rem !important;
    padding: 0 12px;               /* symmetric small padding */
    max-width: 100%;               /* use full width */
    width: 100%;
    box-sizing: border-box;
    
    /* Slightly smaller gap so items don't feel too squeezed */
    gap: 1.1rem 0.9rem;
    
    /* Optional: make sure it respects container padding if any */
    justify-items: center; }
    .expo-stats-module .stats-grid > :nth-child(4),
    .expo-stats-module .stats-grid > :nth-child(5) { grid-row:auto; grid-column:auto; }
    .expo-stats-module .stats-grid > :nth-child(5) { grid-column:1/-1; }
    .expo-stats-module .stat-item { height:auto; padding:1.4rem 1rem; max-width:280px; }
    .expo-stats-module .bi-icon { font-size:2.2rem; margin-bottom:0.2rem; }
    .expo-stats-module .stat-item h2 { font-size:1.2rem; margin-bottom:0.3rem; }
    .expo-stats-module .stat-item p { font-size:0.9rem; }
  }
  @media (max-width:576px){
    .expo-stats-module .stats-section { padding-top:15px; }
    .expo-stats-module .headline { font-size:1.8rem; margin-bottom:0.4rem; }
    .expo-stats-module .stats-grid { gap:0.8rem; transform: none !important;
    
    /* Better centering + breathing room */
    margin: 1.5rem auto 1rem !important;
    padding: 0 12px;               /* symmetric small padding */
    max-width: 100%;               /* use full width */
    width: 100%;
    box-sizing: border-box;
    
    /* Slightly smaller gap so items don't feel too squeezed */
    gap: 1.1rem 0.9rem;
    
    /* Optional: make sure it respects container padding if any */
    justify-items: center; }
  }
 
  @media (max-width: 768px) {
  .card-title {
    text-align: center !important;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .links-list {
    margin: 0 auto; /* centers the entire list */
    width: 88%;
  }
  .links-list li {
    width: 100%;
    display: flex;
    justify-content: center; /* centers each link box */
  }
  .links-list li a {
    width: 100%;
    justify-content: flex-start; /* keeps icon + text left-aligned */
  }
}
@media (max-width: 768px) {
  .card-title {
    text-align: center;
  }
  .card-title {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 768px) {
  /* ← ADD THESE LINES ONLY → */
  .expo-stats-module .stats-section {
    padding-top: 5px !important;   /* was 10px → now almost no gap */
    margin-top: -50px !important;  /* pulls the whole section up on mobile */
  }
  
  .expo-stats-module .headline {
    margin-top: 0 !important;
    padding-top: 8px;              /* tiny breathing room after pulling up */
  }
}



/* Force button directly under heading – perfect on both desktop & mobile */
.expo-stats-module .content > .simple-underline-btn {
  margin-top: -30px;
  display: block;
}
@media (max-width:768px) {
  .expo-stats-module .content > .simple-underline-btn {
    
    margin-bottom: 1rem !important;
	margin-top: -20px;
    font-size: 0.5rem;
  }
}


/* CLEAN VERSION – ONLY ONE short underline under DISCOVER EXPO */
.expo-stats-module .simple-underline-btn {
  display: inline-block;
  position: relative;
  color: #000;
  text-decoration: none;
  padding-bottom: 6px;                 /* space for the line */
  border-bottom: none !important;      /* removes the old full underline */
}

/* This is the ONLY underline you will see */
.expo-stats-module .simple-underline-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 15%;                         /* ← change this % to make it shorter/longer */
  height: 1.6px;
  background: #000;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}

/* Hover – gold & slightly longer line */
.expo-stats-module .simple-underline-btn:hover {
  color: var(--gold);
}
.expo-stats-module .simple-underline-btn:hover::after {
  width: 15%;                          /* grows a bit on hover */
  background: var(--gold);
}




@media (max-width: 768px) {
  /* Wider + thinner underline ONLY on mobile */
  .expo-stats-module .simple-underline-btn::after {
    width: 28% !important;   /* ← increase this % to make it wider (original was 15%) */
    height: 1px !important; /* ← thinner line (original was 1.6px) */
    background: #000 !important;
  }

  /* Hover state – same width & thin on mobile */
  .expo-stats-module .simple-underline-btn:hover::after {
    width: 28% !important;   /* keeps the same wider length on hover */
    background: var(--gold) !important;
  }
}

/* ==== RESET & FULL BLEED ==== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body {
            margin: 0; padding: 0; width: 100%; overflow-x: hidden;
        }

        /* ==== MAIN MODULE ==== */
        .expo-myhome-module {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            background: #fff;
            padding: 80px 0 120px;
            width: 100vw;
            position: relative;
            margin-left: 50%;
            transform: translateX(-50%);
        }
        .container { 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 0 20px; 
            text-align: center; 
        }
    
        .expo-myhome-module h1 {
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: #0a1f3a;
            margin-bottom: 45px;
            margin-top: -45px;
        }
        .properties-title {
            font-size: 38px;
            font-weight: 400;
            letter-spacing: 7px;
            text-transform: uppercase;
            color: #0a1f3a;
            margin-bottom: 70px;
            text-align: center;
        }

        /* Testimonials */
        .testimonials {
            display: grid; 
            grid-template-columns: repeat(3,1fr); 
            gap: 40px;
            max-width: 1400px; 
            margin: 0 auto;
        }
        .card {
            border-radius: 8px; 
            overflow: hidden; 
            position: relative;
            
        }
        .card-img { 
            width: 100%; 
            height: 620px; 
            object-fit: cover; 
            display: block; 
        }
        .card-content {
            position: absolute; 
            bottom: 0; 
            left: 0; 
            right: 0;
            padding: 15px 20px 10px;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
            color: #fff; 
            text-align: left;
        }
        .card-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
        .card-content p { font-size: 15px; line-height: 1.4; }

        /* Properties Section */
        .properties-section { 
            margin-top: -20px; 
            position: relative;
			margin-bottom: -30px;
			
			
        }
        .properties-container {
            display: flex;
            gap: 26px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 40px 0 12px 20px;
            scrollbar-width: none;
            user-select: none;
			margin-top: -40px;
        }
        .properties-container::-webkit-scrollbar { display: none; }
        .property-card {
            flex: 0 0 380px; 
            max-width: 400px;
			max-height: 550px;
            scroll-snap-align: start; 
            border-radius: 10px; 
            overflow: hidden;
            position: relative; 
            
        }
        .property-card img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
        .property-overlay {
            position: absolute; 
            bottom: 0; 
            left: 0; 
            right: 0;
            padding: 44px 32px 32px;
            background: linear-gradient(180deg, transparent 0%, rgba(10,31,58,.96) 60%);
            color: #fff; 
            text-align: left;
        }

        /* Controls */
        .controls-wrapper {
            display: flex; 
            align-items: center; 
            justify-content: space-between;
            gap: 40px; 
            padding: 0 20px; 
            max-width: 1400px; 
            margin: 0 auto;
        }
        .progress-container { flex: 1; }
        .progress-bg { 
            height: 2px; 
            background: rgba(10,31,58,.12); 
            border-radius: 3px; 
            overflow: hidden; 
        }
        .progress-fill { 
            height: 100%; 
            width: 0%; 
            background: #0a1f3a; 
            transition: width .6s ease; 
        }
        .scroll-btn {
            width: 64px; 
            height: 64px; 
            border: 2.5px solid #0a1f3a;
            background: transparent; 
            color: #0a1f3a; 
            border-radius: 50%;
            font-size: 26px; 
            cursor: pointer; 
            transition: all .3s;
        }
        .scroll-btn:hover:not(:disabled) { background: #0a1f3a; color: #fff; }
        .scroll-btn:disabled { opacity: .3; cursor: not-allowed; }

        /* View More Card */
        .view-more-card {
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .view-more-card img { display: none; }
        .view-more-content {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 640px;
            width: 100%;
        }
        .view-more-btn {
            padding: 18px 48px;
            background: transparent;
            border: 2.5px solid #0a1f3a;
            color: #0a1f3a;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .view-more-btn:hover {
            background: #0a1f3a;
            color: #fff;
        }

        /* ==== MOBILE RESPONSIVE ==== */
        @media (max-width: 768px) {
            .expo-myhome-module { padding-top: 120px; }
            .expo-myhome-module h1 {
                font-size: 28px !important;
                letter-spacing: 5px !important;
                margin-bottom: 35px !important;
            }
            .card-content h3 {font-size: 15px !important;margin-bottom: 4px !important;}
            .card-content p {font-size: 12px !important;line-height: 1.35 !important;}
            .properties-title {
                font-size: 40px !important;
                letter-spacing: 5px !important;
                margin-bottom: 30px !important;
				margin-top: -150px;
            }
            .testimonials {
                display: flex !important; 
                gap: 16px; 
                overflow-x: auto;
                padding: 20px 16px; 
                margin: 0 -16px; 
                scroll-snap-type: x proximity;
            }
            .testimonials::-webkit-scrollbar { display: none; }
            .card { flex: 0 0 64vw !important; max-width: 64vw !important; scroll-snap-align: center; }
            .card-img { height: 400px !important; }
            .testimonials .card:first-child { height: 370px !important; }
            .testimonials .card:first-child .card-img { height: 100% !important; }
            .properties-container {
                gap: 16px;
                padding: 30px 0 8px 20px !important;
                scroll-snap-type: x proximity;
            }
            .property-card {
                flex: 0 0 80vw !important;
                max-width: 80vw !important;
                scroll-snap-align: center;
            }
            .property-card img { height: 460px !important; border-radius: 12px; }
            .scroll-btn { display: none !important; }
            .controls-wrapper { margin-top: 28px !important; }
            .properties-section { margin-top: 40px !important; }
            .view-more-content { height: 460px !important; }
            .view-more-btn {
                padding: 14px 36px;
                font-size: 14px;
                letter-spacing: 1.5px;
            }
        }
        @media (max-width: 480px) {
            .expo-myhome-module h1 { font-size: 26px !important; letter-spacing: 4px !important; }
            .properties-title { font-size: 30px !important; }
        }

        /* Mobile-only Progress Bar for Testimonials */
        .testimonials-progress-wrapper {
            display: none;
            max-width: 1400px;
            margin: 10px auto 0;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .testimonials-progress-wrapper { display: block !important; }
            .testimonials-progress-wrapper .progress-bg {
                height: 2px;
                background: rgba(10,31,58,.15);
                border-radius: 3px;
                overflow: hidden;
				margin-left: 10px;
				
            }
            .testimonials-progress-wrapper .progress-fill {
                height: 100%;
                width: 0%;
                background: #0a1f3a;
                transition: width 0.6s ease;
            }
        }

        /* PERMANENT LEFT WHITE SPACE — DESKTOP ONLY */
        @media (min-width: 769px) {
            .properties-section {
                position: relative;
                overflow: hidden;
				
            }
            .properties-container {
                margin-left: 160px;
                padding-left: 0 !important;
                width: calc(100% - 140px);
            }
            .properties-container::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 140px;
                background: #fff;
                z-index: 2;
                pointer-events: none;
            }
        }
		
        /* ==== DESKTOP ONLY: Smaller testimonial cards + reduced gap ==== */
        @media (min-width: 769px) {
            .testimonials {
                display: grid !important;
                grid-template-columns: 340px 340px 340px;
                gap: 8px !important;
                max-width: 1120px;                 
                justify-content: center;          
                margin: 0 auto;
            }

            .testimonials .card {
                max-width: 320px;
                width: 100%;
            }

            .testimonials .card-img {
                height: 500px !important;
                object-fit: cover;
            }

            .testimonials .card-content {
                padding: 20px 24px 16px;
            }
            .testimonials .card-content h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }
            .testimonials .card-content p {
                font-size: 14px;
            }
        }
		
		.view-more-btn {
			text-decoration: none !important;
		}
		
		
		/* ==== FIX: Remove excessive space below progress bar on mobile only ==== */
	@media (max-width: 768px) {
		.controls-wrapper {
			margin-top: 10px !important;    /* reduced from 28px */
			margin-bottom: 0 !important;
			padding-bottom: 0 !important;
		}
		
		.expo-myhome-module {
			padding-bottom: 60px !important;  /* reduced from 120px */
		}
		
		.properties-section {
			margin-bottom: 0 !important;      /* was -30px, now neutral */
			padding-bottom: 0 !important;
		}
		
		/* Optional: tighten up the bottom of the whole module even more */
		.properties-container {
			padding-bottom: 20px !important;
			margin-bottom: 0 !important;
		}
	}
			
			/* ==== SCOPED STYLES ==== */
    .bx-concurrent-news-section * {
      box-sizing: border-box;
    }
    .bx-concurrent-news-section {
      padding: 20px 0 100px;
      background-color: #ffffff;
      font-family: 'Montserrat', sans-serif;
      color: #333;
      line-height: 1.6;
	  margin-top: -35px;
    }
    .bx-concurrent-news-section .container {
      max-width: 1400px;
    }
    /* Section Header */
    .bx-concurrent-news-section .section-title {
      font-size: 1.8rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      display: inline-block;
      padding: 8px 0;
      margin-bottom: 10px;
      transition: color .3s ease;
      border-radius: 4px 4px 0 0;
      text-decoration: none;
    }
    /* Card Box */
    .bx-concurrent-news-section .event-box,
    .bx-concurrent-news-section .news-box {
      display: flex;
      align-items: flex-start;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,.1);
      margin-bottom: 10px;
      border: 1px solid rgba(121,190,88,.15);
      border-radius: 16px;
    }
    .bx-concurrent-news-section .event-box:hover,
    .bx-concurrent-news-section .news-box:hover {
      box-shadow: 0 12px 30px rgba(121,190,88,.2);
      border-color: #79be58;
    }
    /* IMAGE WRAPPER: Events */
    .bx-concurrent-news-section .event-box .box-img-wrapper {
      width: 180px;
      height: 90px;
      flex-shrink: 0;
      border-radius: 16px 0 0 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
      overflow: hidden;
    }
    .bx-concurrent-news-section .event-box .box-img {
      width: 85%;
      height: auto;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }
    /* IMAGE WRAPPER: News */
    .bx-concurrent-news-section .news-box .box-img-wrapper {
      width: 220px;
      height: 117px;
      overflow: hidden;
      flex-shrink: 0;
      border-radius: 16px 0 0 16px;
    }
    @media (min-width: 992px) {
      .bx-concurrent-news-section .news-box .box-img-wrapper {
        width: 300px;
        height: 160px;
      }
    }
    .bx-concurrent-news-section .news-box .box-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    
    
    /* Text Body */
    .bx-concurrent-news-section .box-body {
      flex: 1;
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: left;
    }
    .bx-concurrent-news-section .box-body p {
      font-size: .95rem;
      color: #444;
      margin-bottom: 8px;
      line-height: 1.45;
    }
    .bx-concurrent-news-section .read-more-link {
      color: #79be58;
      font-weight: 600;
      text-decoration: none;
      font-size: .95rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .3s ease;
    }
    .bx-concurrent-news-section .read-more-link:hover {
      color: #6aa34a;
      transform: translateX(4px);
    }
    /* News Specific */
    .bx-concurrent-news-section .news-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: #222;
      margin-bottom: 4px;
      line-height: 1.35;
    }
    .bx-concurrent-news-section .news-title a {
      color: inherit;
      text-decoration: none;
    }
    .bx-concurrent-news-section .news-title a:hover {
      color: #79be58;
    }
    .bx-concurrent-news-section .news-date {
      font-size: .82rem;
      color: #777;
      margin-bottom: 6px;
    }
    .bx-concurrent-news-section .btn-read-more {
      background: #79be58;
      color: #fff;
      font-weight: 600;
      font-size: .88rem;
      padding: .45rem 1rem;
      border-radius: 50px;
      text-decoration: none;
      display: inline-block;
      transition: all .3s ease;
      align-self: flex-start;
    }
    .bx-concurrent-news-section .btn-read-more:hover {
      background: #6aa34a;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(121,190,88,.3);
    }

    /* See More - desktop right-aligned */
    .bx-concurrent-news-section .see-more {
      display: block;
      text-align: right;
      margin-top: 16px;
      font-weight: 600;
      color: #79be58;
      text-decoration: none;
      font-size: 1rem;
      transition: all .3s ease;
    }
    .bx-concurrent-news-section .see-more:hover {
      color: #6aa34a;
      transform: translateX(6px);
    }

    /* ==================== MOBILE RESPONSIVE FIXES ==================== */
    @media (max-width: 992px) {
      .bx-concurrent-news-section {
        padding-top: 10px !important;
        padding-bottom: 60px;
      }
      /* Reduce space above "Event News" heading */
      .bx-concurrent-news-section .col-lg-7 > .section-title:first-of-type {
        margin-top: 10px !important;
        padding-top: 0 !important;
      }
      /* Further reduce if needed on very small screens */
      .bx-concurrent-news-section .col-lg-7 .carousel-wrapper:first-of-type {
        margin-top: 8px !important;
      }
      .bx-concurrent-news-section .section-title {
        font-size: 1.5rem;
        margin: 0 0 8px 0;
		margin-top:15px;
      }
      .bx-concurrent-news-section .col-lg-5,
      .bx-concurrent-news-section .col-lg-7 {
        margin-bottom: 30px;
        padding-top: 0 !important;
      }
      .bx-concurrent-news-section .carousel-wrapper {
        margin-top: 0;
        margin-bottom: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 20px;
      }
      .bx-concurrent-news-section .carousel-wrapper::-webkit-scrollbar {
        display: none;
      }
      .bx-concurrent-news-section .carousel {
        display: flex;
        gap: 20px;
        padding: 0 20px;
      }
      .bx-concurrent-news-section .event-box,
      .bx-concurrent-news-section .news-box {
        flex: 0 0 calc(90% - 40px);
        max-width: calc(90% - 40px);
        margin-bottom: 0;
        scroll-snap-align: center;
        flex-direction: column !important;
      }
      .bx-concurrent-news-section .event-box .box-img-wrapper,
      .bx-concurrent-news-section .news-box .box-img-wrapper {
        width: 100% !important;
        height: 140px !important;
        border-radius: 12px 12px 0 0 !important;
      }
      .bx-concurrent-news-section .event-box .box-img {
        width: 75%;
        max-height: 90px;
      }
      .bx-concurrent-news-section .box-body {
        padding: 12px 14px;
      }
      .bx-concurrent-news-section .read-more-link,
      .bx-concurrent-news-section .btn-read-more {
        align-self: center;
      }

      /* Mobile: Zoom effect for Event News images only */
      .bx-concurrent-news-section .col-lg-7 .carousel-wrapper:first-of-type .news-box .box-img {
		  transform: scale(1.08);
		transition: none; /* Ensures no animation or hover change */
      }
      

      /* Mobile: center the See More link with better spacing */
      .bx-concurrent-news-section .see-more {
        text-align: center;
        margin-top: 40px;
      }
    }
    @media (max-width: 480px) {
      .bx-concurrent-news-section {
        padding: 0 0 40px;
      }
      .bx-concurrent-news-section .section-title {
        font-size: 1.3rem;
      }
      /* Even tighter on smallest screens */
      .bx-concurrent-news-section .col-lg-7 > .section-title:first-of-type {
        margin-top: 5px !important;
      }
      .bx-concurrent-news-section .carousel {
        gap: 16px;
        padding: 0 16px;
      }
      .bx-concurrent-news-section .event-box,
      .bx-concurrent-news-section .news-box {
        flex: 0 0 calc(90% - 32px);
        max-width: calc(90% - 32px);
        border-radius: 12px;
      }

      .bx-concurrent-news-section .see-more {
        margin-top: 30px;
      }
    }
	
	.bx-concurrent-news-section .col-lg-7 .carousel-wrapper:first-of-type .news-box .box-img {
		  transform: scale(1.08);
		transition: none; /* Ensures no animation or hover change */
      }
	  
	  