

/* =====================================================
       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: 100s; /* Reduced speed (slower scrolling) */
      --primary: #79be58;
      background: #fff;
      padding: 20px 0 60px 0;
      overflow: visible;
    }
    #exhi-module .ex-container {
      max-width: 100%;
      padding: 0 20px;
      text-align: center;
    }
    #exhi-module .ex-headline {
      font-size: 2.2rem;
      font-weight: 500;
      color: #222;
      text-transform: capitalize;
      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: .3s 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; padding-bottom: 55px; } }
    /* Mobile */
    @media (max-width: 576px) {
      #exhi-module { padding: 12px 0 50px 0; --logo-size: 150px; --gap: 14px; margin-bottom: 0; }
      #exhi-module .ex-headline {
        font-size: 1.5rem;
        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;
      }
    }
	
	/* View More Button Hover */
	#exhi-module a:hover {
	  background: #6aa34a;
	  transform: translateY(-3px);
	  box-shadow: 0 8px 20px rgba(121,190,88,0.35);
	}
	
	.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:  capitalize;
      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;
      }
    }
	
	/* ==== 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 */
      }
	  
	  /* View More Button Mobile/Tablet Responsive Styles */
  @media (max-width: 992px) {
    /* Tablet adjustments */
    #exhi-module .view-more-wrapper {
      margin: 35px 20px 20px !important;
      padding-bottom: 10px !important;
	  
    }
    
    #exhi-module .view-more-wrapper a {
      padding: 0.95rem 2.3rem !important;
      font-size: 1.08rem !important;
      min-width: 200px !important;
    }
  }
  
  @media (max-width: 576px) {
    /* Small mobile adjustments */
    #exhi-module .view-more-wrapper {
      margin: 25px 15px 15px !important;
      padding-bottom: 15px !important;
    }
    
    #exhi-module .view-more-wrapper a {
      padding: 0.85rem 2rem !important;
      font-size: 1.02rem !important;
      min-width: 180px !important;
      display: block !important;
      width: 100% !important;
      max-width: 260px !important;
      margin: 0 auto !important;
    }
  }
  
  .expo-header * { margin: 0; padding: 0; box-sizing: border-box; }
        .expo-header {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            z-index: 9999;
        }
        .expo-header + * { margin-top: 152px !important; }
        @media (max-width: 768px) { .expo-header + * { margin-top: 90px !important; } }
        /* ==================== FIXED VIDEO BACKGROUND ==================== */
        .expo-header .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 .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 .local-video {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .expo-header .desktop-video iframe,
        .expo-header .mobile-video iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .expo-header .desktop-video { display: block; }
        .expo-header .mobile-video { display: none; }
        @media (max-width: 768px) {
            .expo-header .video-wrapper { height: 102vh !important; }
            .expo-header .desktop-video { display: none !important; }
            .expo-header .mobile-video { display: block !important; }
            .expo-header .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 .bottom-center-buttons {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 50px;
            z-index: 99;
        }
        .expo-header .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 .bottom-center-buttons { bottom: 30px; }
            .expo-header .btn-explore {
                padding: 12px 36px !important;
                font-size: 13.5px !important;
                letter-spacing: 1.7px !important;
            }
        }
        .expo-header .header-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            z-index: 9999;
            transition: transform 0.35s ease;
        }
        .expo-header .header-container > * { pointer-events: auto; }
        @media (max-width: 768px) {
            .expo-header .header-container.hide { transform: translateY(-100%); }
        }
        .expo-header .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 .top-left, .expo-header .top-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .expo-header .top-right a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 12.5px;
        }
        .expo-header .top-right a:nth-child(1) i { color: #25D366; }
        /* Google Translate Desktop */
        .expo-header #google_translate_element { display: inline-block; }
        .expo-header .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 .goog-te-gadget-simple:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: #79be58 !important;
        }
        .expo-header .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 .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 .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 .navbar.scrolled { background: #ffffff !important; }
            .expo-header .navbar.scrolled .mobile-left i,
            .expo-header .navbar.scrolled .mobile-right i { color: #000 !important; }
        }
        @media(min-width: 769px) {
            .expo-header .navbar.scrolled {
                background: #ffffff !important;
                backdrop-filter: none !important;
            }
            .expo-header .navbar.scrolled a,
            .expo-header .navbar.scrolled span,
            .expo-header .navbar.scrolled i { color: #000 !important; }
        }
        .expo-header .desktop-logo img { height: 22px; width: auto; }
        .expo-header .search-box {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            margin-right: 24px;
        }
        .expo-header .search-box i { font-size: 18px; }
        @media(max-width: 768px){
            .expo-header .top-strip, .expo-header .desktop-row { display: none !important; }
            .expo-header .mobile-row {
                display: flex !important;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                max-width: 500px;
                position: relative;
            }
            .expo-header .mobile-left { display: flex; align-items: center; gap: 20px; }
            .expo-header .mobile-left i {
                font-size: 24px;
                color: #fff;
                cursor: pointer;
            }
            .expo-header .mobile-logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                font-size: 26px !important;
                font-weight: 700;
                color: #fff;
                letter-spacing: 1px;
            }
            .expo-header .mobile-logo img { height: 16px; width: auto; display: block; }
            .expo-header .mobile-right { display: flex; align-items: center; gap: 18px; }
            .expo-header .mobile-right a i {
                font-size: 22px;
                color: #fff; 
            }
        }
        @media(min-width: 769px){ .expo-header .mobile-row { display: none !important; } }
        /* === DESKTOP: SEPARATE DROPDOWN SETTINGS (HOVER) === */
        @media(min-width: 769px) {
            .expo-header .nav-links {
                display: flex;
                align-items: center;
                gap: 38px;
            }
            .expo-header .nav-links > a,
            .expo-header .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 .desktop-dropdown {
                position: relative;
            }
            .expo-header .desktop-dropdown > a::after {
                content: " ▼";
                font-size: 9px;
                margin-left: 6px;
                opacity: 0.8;
                transition: transform 0.3s ease;
            }
            .expo-header .desktop-dropdown:hover > a::after {
                transform: rotate(180deg);
            }
            .expo-header .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 .desktop-dropdown:hover .desktop-dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(8px);
                pointer-events: auto;
            }
            .expo-header .desktop-dropdown::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 20px;
                background: transparent;
            }
            .expo-header .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 .desktop-dropdown-item:hover {
                background: #79be58;
                color: #fff !important;
            }
        }
        /* Mobile Menu */
        .expo-header .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 .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
        .expo-header .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 .mobile-menu.active { right: 0; }
        .expo-header .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 .mobile-menu-header span {
            margin-top: 12px;
            font-size: 18px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .expo-header .close-menu {
            position: absolute;
            top: 34px !important;
            right: 20px;
            font-size: 28px !important;
            cursor: pointer;
            color: #333;
        }
        .expo-header .mobile-menu-links { padding: 30px 20px; flex-grow: 1; }
        .expo-header .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 .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 .mobile-menu-contact {
            padding: 0 20px 30px;
            border-top: 1px solid #eee;
        }
        .expo-header .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 .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 .mobile-menu-contact .fab.fa-whatsapp {
    color: #25D366;
}
        .expo-header .mobile-menu-contact i { font-size: 18px; width: 24px; }
        .expo-header .mobile-menu-contact .fab.fa-whatsapp { color: #25D366; }
        .expo-header .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 .mobile-menu-links > div[style*="border-bottom"] span {
        color: #000 !important;
    }
}





/* video loading indicator */
.expo-header .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 .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 .video-loading-text {
        font-size: 20px;
        letter-spacing: 1.8px;
    }
}

/* rotating partial ring spinner */
.expo-header .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 .ring-spinner {
        width: 50px;
        height: 50px;
        border-width: 5px;
    }
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

//about the Event
 .buildexpo-unique-module * { margin: 0; padding: 0; box-sizing: border-box; }
    .buildexpo-unique-module body {
      font-family: 'Montserrat', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ──────────────────────────────────────────────── */
    /* Hero & About sections – unchanged */
    /* ──────────────────────────────────────────────── */
    .buildexpo-unique-module .buildexpo-hero-module {
      position: relative;
      width: 100%;
      height: 80vh;
      min-height: 435px;
      max-height: 435px;
      overflow: hidden;
	  
    }
    .buildexpo-unique-module .buildexpo-hero-module::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #ffffff;
      z-index: 1;
    }
    .buildexpo-unique-module .buildexpo-hero-bg {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
    .buildexpo-unique-module .buildexpo-hero-content {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .buildexpo-unique-module .buildexpo-hero-container {
      max-width: 1400px;
      width: 100%;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 160px;
      align-items: center;
    }
    .buildexpo-unique-module .buildexpo-hero-text p {
      font-size: 2.8rem;
      line-height: 1.4;
      margin-left: 340px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.95);
    }
    .buildexpo-unique-module .buildexpo-hero-text .highlight {
      color: #79be58;
      font-weight: 700;
      font-size: 2.8rem;
    }
    .buildexpo-unique-module .buildexpo-hero-logo img {
      max-width: 550px;
      width: 100%;
      margin-top: -120px;
      filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    }
    @keyframes slideInLeft { from {opacity:0; transform:translateX(-60px);} to {opacity:1; transform:translateX(0);} }
    @keyframes slideInRight { from {opacity:0; transform:translateX(60px);} to {opacity:1; transform:translateX(0);} }
    .buildexpo-unique-module .buildexpo-hero-text { opacity:0; animation: slideInLeft 1s ease forwards 0.3s; }
    .buildexpo-unique-module .buildexpo-hero-logo { opacity:0; animation: slideInRight 1s ease forwards 0.5s; }

    .buildexpo-unique-module .buildexpo-about-module {
      padding: 100px 20px 60px;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    .buildexpo-unique-module .buildexpo-about-wrapper { max-width: 1400px; margin: 0 auto; }
    .buildexpo-unique-module .buildexpo-about-heading {
      font-size: 2.2rem;
	  font-weight: 400;
	  text-transform: capitalize;  /* CHANGE FROM uppercase TO capitalize */
	  letter-spacing: 3px;
	  color: #1a1a1a;
	  text-align: center;
	  margin-bottom: 50px;
	  margin-top: -50px;
	  white-space: nowrap;
    }
    .buildexpo-unique-module .buildexpo-about-grid,
    .buildexpo-unique-module .buildexpo-about-grid-reverse {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .buildexpo-unique-module .buildexpo-about-grid-reverse {
      direction: rtl;
    }
    .buildexpo-unique-module .buildexpo-about-grid-reverse > * {
      direction: ltr;
    }
    .buildexpo-unique-module .buildexpo-about-text {
      font-size: 1.05rem;
      color: #444;
    }
    .buildexpo-unique-module .buildexpo-about-text strong { color: #79be58; font-weight: 700; }
    .buildexpo-unique-module .buildexpo-about-text p { margin-bottom: 20px; }
    .buildexpo-unique-module .buildexpo-about-text p:last-of-type { margin-bottom: 0; }
    .buildexpo-unique-module .buildexpo-banner {
      display: inline-block;
      width: 100%;
      max-width: 400px;
      height: auto;
      margin: 0 auto 25px auto;
      border-radius: 8px;
    }
    .buildexpo-unique-module .buildexpo-about-image {
      border-radius: 16px;
      overflow: hidden;
    }
    .buildexpo-unique-module .buildexpo-about-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .buildexpo-unique-module .buildexpo-divider {
      height: 3px;
      background: linear-gradient(to right, transparent, #79be58 20%, #79be58 80%, transparent);
      margin: 80px auto;
      max-width: 600px;
      border-radius: 3px;
      position: relative;
    }
    .buildexpo-unique-module .buildexpo-divider::before,
    .buildexpo-unique-module .buildexpo-divider::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      background: #79be58;
      border-radius: 50%;
      top: -4.5px;
    }
    .buildexpo-unique-module .buildexpo-divider::before { left: 0; }
    .buildexpo-unique-module .buildexpo-divider::after { right: 0; }
    .buildexpo-unique-module .buildexpo-readmore {
      display: inline-block;
      margin-top: 30px;
      padding: 10px 32px;
      background: #79be58;
      color: white;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(121,190,88,0.3);
    }
    .buildexpo-unique-module .buildexpo-readmore:hover {
      background: #6aa94c;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(121,190,88,0.4);
    }

    /* ──────────────────────────────────────────────── */
    /* SELECT EXHIBITION BY INDUSTRY – improved edge-to-edge carousel */
    /* ──────────────────────────────────────────────── */
    .buildexpo-unique-module .buildexpo-industry-selector {
     background: transparent;
      padding: 70px 0 60px;
      margin: 80px auto 40px;
      max-width: 1800px;
      border: none;
      
      overflow: visible;
    }

    .buildexpo-unique-module .buildexpo-industry-selector h4.buildexpo-about-heading {
      padding: 0 30px;
      margin-bottom: 40px;
    }

    .buildexpo-unique-module .industry-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 30px;
    }

    .buildexpo-unique-module .industry-card {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 30px 25px;
      transition: all 0.35s ease;
    }

    .buildexpo-unique-module .industry-card:hover {
      box-shadow: 0 15px 40px rgba(121,190,88,0.15);
      border-color: #79be58;
    }

    .buildexpo-unique-module .cat_type {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .buildexpo-unique-module .cat_type li {
      margin: 18px 0;
    }

    .buildexpo-unique-module .cat_type a {
      color: #1f2937;
      text-decoration: none;
      font-size: 1.08rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }

    .buildexpo-unique-module .cat_type a:hover {
      color: #79be58;
      padding-left: 8px;
    }

    .buildexpo-unique-module .cat_type a i {
      margin-right: 12px;
      color: #79be58;
      font-size: 1.2rem;
      min-width: 24px;
      text-align: center;
    }

    /* ──────────────────────────────────────────────── */
    /* MEDIA QUERIES */
    /* ──────────────────────────────────────────────── */
    @media (max-width: 1200px) {
      .buildexpo-unique-module .buildexpo-hero-container { gap: 100px; }
      .buildexpo-unique-module .buildexpo-hero-text p { margin-left: 200px; }
    }

    @media (max-width: 992px) {
      .buildexpo-unique-module .buildexpo-hero-container { gap: 60px; padding: 0 30px; }
      .buildexpo-unique-module .buildexpo-hero-text p { margin-left: 80px; font-size: 2.4rem; }
      .buildexpo-unique-module .buildexpo-hero-text .highlight { font-size: 2.4rem; }
      .buildexpo-unique-module .buildexpo-hero-logo img { max-width: 460px; margin-top: -90px; }

      .buildexpo-unique-module .buildexpo-about-grid,
      .buildexpo-unique-module .buildexpo-about-grid-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
      }
      .buildexpo-unique-module .buildexpo-about-grid-reverse { direction: ltr; }

      .buildexpo-unique-module .buildexpo-about-grid .buildexpo-about-image,
      .buildexpo-unique-module .buildexpo-about-grid-reverse .buildexpo-about-image {
        order: -1;
      }

      .buildexpo-unique-module .buildexpo-about-heading { font-size: 2.5rem; }

      /* Edge-to-edge carousel on tablet */
      .buildexpo-unique-module .buildexpo-industry-selector {
        padding: 50px 0 50px;
        margin: 60px 0 30px;
        border-radius: 0;
        border-left: none;
        border-right: none;
		white-space: normal; 
      }

      .buildexpo-unique-module .buildexpo-industry-selector h4.buildexpo-about-heading {
        padding: 0 20px;
      }

      .buildexpo-unique-module .industry-columns {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 24px;
        padding: 0 20px 30px 20px;
        margin: 0;
        scrollbar-width: none;
      }

      .buildexpo-unique-module .industry-columns::-webkit-scrollbar {
        display: none;
      }

      .buildexpo-unique-module .industry-card {
        flex: 0 0 78%;
        max-width: 82vw;
        scroll-snap-align: start;
        margin-right: 0;
      }

      .buildexpo-unique-module .industry-card:last-child {
        margin-right: 20px;
      }
    }

    @media (max-width: 768px) {
      .buildexpo-unique-module .buildexpo-hero-module { height: 16vh; min-height: 120px; max-height: none; margin-bottom: -60px; }
      .buildexpo-unique-module .buildexpo-hero-bg { object-fit: cover; object-position: center center; }
      .buildexpo-unique-module .buildexpo-hero-container { grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 20px; }
      .buildexpo-unique-module .buildexpo-hero-text p { margin-left: 20px; font-size: 0.5rem; line-height: 1; }
      .buildexpo-unique-module .buildexpo-hero-text .highlight { font-size: 0.2rem; }
      .buildexpo-unique-module .buildexpo-hero-logo img { max-width: 420px; max-height: 420px; margin-top: -60px; }
      .buildexpo-unique-module .buildexpo-about-module { padding: 90px 20px 0px; }
      .buildexpo-unique-module .buildexpo-about-heading { font-size: 30px; white-space: normal; }
      .buildexpo-unique-module .buildexpo-divider { margin: 60px auto; }

      .buildexpo-unique-module .buildexpo-about-grid,
      .buildexpo-unique-module .buildexpo-about-grid-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
      }

      .buildexpo-unique-module .buildexpo-about-grid .buildexpo-about-image,
      .buildexpo-unique-module .buildexpo-about-grid-reverse .buildexpo-about-image {
        order: -1;
      }
    }

    @media (max-width: 480px) {
      .buildexpo-unique-module .buildexpo-hero-module { min-height: 40px; }
      .buildexpo-unique-module .buildexpo-hero-text p { margin-left: 10px; font-size: 1.2rem; }
      .buildexpo-unique-module .buildexpo-hero-module .buildexpo-hero-bg { min-height: 40px; }
      .buildexpo-unique-module .buildexpo-hero-text .highlight { font-size: 1rem; }
      .buildexpo-unique-module .buildexpo-hero-logo img { max-width: 360px; max-height: 760px; margin-top: -30px; padding-right: 15px; }
      .buildexpo-unique-module .buildexpo-hero-container { gap: 10px; padding: 0 0px; }
      .buildexpo-unique-module .buildexpo-about-heading { font-size: 1.4rem; margin-bottom: 14px; font-weight: 400; white-space: normal;}
      .buildexpo-unique-module .buildexpo-about-text { font-size: 0.9rem; }
      .buildexpo-unique-module .buildexpo-about-image,
      .buildexpo-unique-module .buildexpo-about-video { margin-top: -20px; margin-bottom: 18px; }
      .buildexpo-unique-module .buildexpo-readmore { padding: 12px 28px; }
      .buildexpo-unique-module .buildexpo-banner { max-width: 100%; margin-bottom: 20px; }

      /* Even more edge-to-edge on small phones */
      .buildexpo-unique-module .industry-columns {
        padding: 0 16px 24px 16px;
        gap: 20px;
      }

      .buildexpo-unique-module .industry-card {
        flex: 0 0 82%;
        max-width: 85vw;
      }

      .buildexpo-unique-module .cat_type a {
        font-size: 1rem;
      }
    }
	
	/* ==== SCOPED STYLES ==== */
    .bx-concurrent-news-section * {
      box-sizing: border-box;
    }
    .bx-concurrent-news-section {
      padding: 40px 0 100px;
      background-color: #ffffff;
      font-family: 'Montserrat', sans-serif;
      color: #333;
      line-height: 1.6;
    }
    .bx-concurrent-news-section .container {
      max-width: 1400px;
    }
    .bx-concurrent-news-section .events-column {
      margin: 0 auto;
      max-width: 1200px;
    }
    .bx-concurrent-news-section .section-title {
      font-size: 2.2rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 45px;
      display: block;
    }

    /* Desktop – 2-column grid (up to 3 items) */
    .bx-concurrent-news-section .news-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 35px 30px;
    }

    .bx-concurrent-news-section .event-box {
      display: flex;
      flex-direction: column;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      border: 1px solid rgba(121,190,88,.18);
      border-radius: 20px;
      transition: all .35s ease;
      height: 100%;
    }
    .bx-concurrent-news-section .event-box:hover {
      box-shadow: 0 16px 36px rgba(121,190,88,.22);
      border-color: #79be58;
      transform: translateY(-6px);
    }
    .bx-concurrent-news-section .event-box .box-img-wrapper {
      width: 100%;
      height: 180px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      overflow: hidden;
      background: #fff;
    }
    .bx-concurrent-news-section .event-box .box-img {
      width: 92%;
      height: auto;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
      border-radius: 12px;
    }
    .bx-concurrent-news-section .box-body {
      flex: 1;
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .bx-concurrent-news-section .event-title {
      font-size: 1.32rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 14px;
      line-height: 1.38;
    }
    .bx-concurrent-news-section .event-date {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 12px;
      font-weight: 500;
    }
    .bx-concurrent-news-section .box-body p {
      font-size: 1.02rem;
      color: #444;
      margin-bottom: 18px;
      line-height: 1.65;
      flex-grow: 1;
    }
    .bx-concurrent-news-section .read-more-link {
      color: #79be58;
      font-weight: 600;
      text-decoration: none;
      font-size: 1.02rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .3s ease;
    }
    .bx-concurrent-news-section .read-more-link:hover {
      color: #5e8c45;
      transform: translateX(8px);
    }

    /* View More Button */
    .bx-concurrent-news-section .view-more-btn-wrapper {
      text-align: center;
      margin-top: 55px;
    }
    .bx-concurrent-news-section .view-more-btn {
      display: inline-block;
      background: #79be58;
      color: white;
      font-weight: 600;
      font-size: 1.15rem;
      padding: 16px 52px;
      border-radius: 50px;
      text-decoration: none;
      transition: all .35s ease;
      box-shadow: 0 8px 24px rgba(121,190,88,.28);
    }
    .bx-concurrent-news-section .view-more-btn:hover {
      background: #67a94d;
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(121,190,88,.4);
    }

    /* Mobile / Tablet – carousel + smaller fonts */
    @media (max-width: 991px) {
      .bx-concurrent-news-section {
        padding: 35px 0 90px;
      }
      .bx-concurrent-news-section .section-title {
        font-size: 1.9rem;
      }

      /* Carousel layout (unchanged) */
      .bx-concurrent-news-section .news-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 10px 20px 30px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .bx-concurrent-news-section .news-list::-webkit-scrollbar {
        display: none;
      }

      .bx-concurrent-news-section .event-box {
        min-width: 80%;
        max-width: 80%;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin-right: 20px;
        flex-direction: column;
      }
      .bx-concurrent-news-section .event-box:last-child {
        margin-right: 20px;
      }

      .bx-concurrent-news-section .event-box .box-img-wrapper {
        width: 100%;
        height: 260px;
        border-radius: 20px 20px 0 0;
      }
      .bx-concurrent-news-section .event-box .box-img {
        width: 80%;
        max-height: 240px;
      }
      .bx-concurrent-news-section .box-body {
        padding: 28px 32px;
      }

      /* Reduced font sizes for mobile */
      .bx-concurrent-news-section .event-title {
        font-size: 1.22rem;
      }
      .bx-concurrent-news-section .box-body p {
        font-size: 0.96rem;
      }
      .bx-concurrent-news-section .read-more-link {
        font-size: 0.98rem;
      }
      .bx-concurrent-news-section .event-date {
        font-size: 0.90rem;
      }
    }

    @media (max-width: 576px) {
      .bx-concurrent-news-section .section-title {
        font-size: 1.65rem;
      }
      .bx-concurrent-news-section .view-more-btn {
        padding: 14px 40px;
        font-size: 1.05rem;
      }

      .bx-concurrent-news-section .news-list {
        padding: 10px 15px 30px 15px;
      }
      .bx-concurrent-news-section .event-box {
        min-width: 85%;
        max-width: 85%;
        margin-right: 15px;
      }
      .bx-concurrent-news-section .event-box .box-img-wrapper {
        height: 240px;
      }
      .bx-concurrent-news-section .event-box .box-img {
        width: 85%;
        max-height: 220px;
      }

      .bx-concurrent-news-section .event-title {
        font-size: 1.15rem;
      }
      .bx-concurrent-news-section .box-body p {
        font-size: 0.92rem;
      }
    }
	
	        /* ==== 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; }

        
        
        
        

        /* ==== 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;
            }
           
        }
        @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;
            }
        }
		
		
		
		/* ==== 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;
		}
	}
			
		/*footer.php */
		/* ========== NEW: Footer Header Line Styles ========== */
.expo-footer-module .footer-header-line {
  background: #000;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.expo-footer-module .footer-header-content {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.expo-footer-module .footer-header-content .header-logo {
  height: 38px;
  width: auto;
}

.expo-footer-module .footer-header-content .header-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Mobile responsive for header line */
@media (max-width: 768px) {
  .expo-footer-module .footer-header-line {
    padding: 14px 0;
  }
  
  .expo-footer-module .footer-header-content {
    padding: 0 20px;
    gap: 12px;
    flex-direction: column;
  }
  
  .expo-footer-module .footer-header-content .header-logo {
    height: 25px;
  }
  
  .expo-footer-module .footer-header-content .header-text {
    font-size: 12px;
    letter-spacing: 0.8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .expo-footer-module .footer-header-content .header-text {
    font-size: 11px;
    letter-spacing: 0.6px;
  }
  
  .expo-footer-module .footer-header-content .header-logo {
    height: 20px;
  }
}

/* ========== EXPOGROUP Column Alignment & Styling ========== */
.expo-footer-module .expogroup-col {
  grid-column: 1 / -1;
  max-width: 90%;
  background: linear-gradient(135deg, rgba(121, 190, 88, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
  padding: 35px 45px;
  border-radius: 12px;
  border-left: 4px solid #79be58;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;

}

.expo-footer-module .expogroup-col h4 {
  color: #79be58 !important;
  text-transform: uppercase;
  font-size: 18px !important;
  letter-spacing: 2px;
  margin-bottom: 20px !important;
  font-weight: 700;
  text-align: left !important;
  position: relative;
  padding-bottom: 12px;
}

.expo-footer-module .expogroup-col h4::after {
 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: #79be58;
}

.expo-footer-module .expogroup-col p {
  color: #e5e5e5;
  font-size: 14px;
  line-height: 1.9;
  text-align: justify;
  max-width: 1200px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Mobile responsive for EXPOGROUP */
@media (max-width: 768px) {
  .expo-footer-module .expogroup-col {
    margin-bottom: 25px;
    padding: 25px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(121, 190, 88, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
  }
  
  .expo-footer-module .expogroup-col h4 {
    font-size: 15px !important;
    margin-bottom: 15px !important;
    padding: 0 !important;
    padding-bottom: 10px !important;
    letter-spacing: 1.5px;
  }
  
  .expo-footer-module .expogroup-col h4::after {
    width: 60px;
    height: 2px;
    display: block !important;
  }
  
  .expo-footer-module .expogroup-col p {
    font-size: 13.5px;
    line-height: 1.8;
    text-align: left;
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .expo-footer-module .expogroup-col {
    padding: 20px 15px;
    margin-bottom: 20px;
margin-left: 20px;
  }
  
  .expo-footer-module .expogroup-col h4 {
    font-size: 14px !important;
    letter-spacing: 1.2px;
  }
  
  .expo-footer-module .expogroup-col p {
    font-size: 13px;
    line-height: 1.75;
  }
}

/* ========== Original Styles ========== */
.expo-footer-module .col ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.expo-footer-module .col ul li {
  padding-left: 0 !important;
}

.expo-footer-module .col h4.recent-searches {
    padding-top: 55px !important;
  }

@media (min-width: 769px) {
	
  .expo-footer-module .app-badges {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center !important;
    gap: 5px;
    margin-top: 5px;
    padding: 0;
    margin-left: 85px !important;
  }
  .expo-footer-module .app-badges a {
    display: block;
    height: auto;
  }
  .expo-footer-module .app-badges img {
    height: 50px !important;
    width: auto !important;
  }
  .expo-footer-module .app-badges a:last-child img {
    height: 68px !important;
    margin-top: -4px;
  }
}
  .expo-footer-module * { font-family: 'Montserrat', sans-serif !important; }
  .social-icons a img, .mobile-social-icons a img, .chat-bubble img { width:28px; pointer-events: none; height:28px; filter:invert(1); display:block; }
  .mobile-social-icons a img { width:22px; height:22px; }
  .app-badges { display: flex !important; gap: 12px; justify-content: center; margin-top: 15px; }
  .expo-footer-module { all: unset; display: block; background: #111; color: #aaa; padding: 0 0 40px; line-height: 1.5; font-size: 12px; }
  .expo-footer-module * { box-sizing: border-box; margin: 0; padding: 0; text-align: left !important; }
  .expo-footer-module .container { max-width: 1650px; margin: 0 auto; padding-top: 50px; }
  .expo-footer-module .top-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; padding-bottom: 20px; margin-bottom: 15px; border-bottom: 1.5px solid #79be58; }
  .expo-footer-module .logo1 img { height: auto; max-height: 60px; }
  .expo-footer-module .social-icons { display: flex; gap: 18px; flex-shrink: 0; }
  .expo-footer-module .social-icons a { color: #fff; font-size: 30px; padding: 8px; border-radius: 50%; background: rgba(255,255,255,0.08); }
  .expo-footer-module .newsletter { flex: 1; min-width: 400px; max-width: 800px; margin-left: 20px; }
  .expo-footer-module .newsletter p { color: #eee; margin-bottom: 12px; font-size: 13.5px; font-weight: 500; }
  .expo-footer-module .input-wrapper { position: relative; display: flex; align-items: center; padding-bottom: 8px; }
  .expo-footer-module .input-wrapper::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,0.4); }
  .expo-footer-module .newsletter-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-size: 16px; padding: 8px 0; height: 40px; }
  .expo-footer-module .newsletter-form input::placeholder { color: #888; }
  .expo-footer-module .newsletter-form button { background: #fff; color: #000; border: none; padding: 10px 32px; border-radius: 30px; font-weight: bold; font-size: 13px; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; height: 40px; margin-left: 20px; }
  .expo-footer-module .newsletter-form button:hover { background: #79be58; color: #fff; }
  .expo-footer-module .newsletter small { display: block; margin-top: 10px; font-size: 12.5px; color: #ccc; }
  .expo-footer-module .newsletter small a { color: #fff; text-decoration: underline; }
  .expo-footer-module .main-content { display: grid; grid-template-columns: 1fr 260px; gap: 32px; align-items: start; padding: 25px 60px; }
  .expo-footer-module .links-grid { display: grid; grid-template-columns: 1fr; gap: 30px 25px; }
  .expo-footer-module .col h4, .expo-footer-module .col h4.second, .expo-footer-module .col h4.recent-searches { color: #fff; text-transform: uppercase; font-size: 13.8px !important; letter-spacing: 1px; margin-bottom: 14px; font-weight: 500; }
  .expo-footer-module .col h4.second { margin-top: 28px !important; }
  .expo-footer-module .col h4.recent-searches { margin-top: 50px !important; }
  .expo-footer-module .col ul li a { color: #aaa !important; text-decoration: none !important; font-size: 12.5px; transition: color 0.2s ease; }
  .expo-footer-module .col ul li a:hover { color: #fff !important; }
  .expo-footer-module .col ul li { margin-bottom: 7px; }
  .expo-footer-module .right-block { text-align: center; display: flex; flex-direction: column; align-items: center; padding-top: 4px; margin-bottom: 40px; }
  .expo-footer-module .expo-living img { height: 30px; margin-top: 5px !important; margin-left: -80px !important; }
  .expo-footer-module .expo-living {
    margin-top: 0px !important;
  }
  .expo-footer-module .app-badges img { height: 40px;  }
  .expo-footer-module .app-badges a:last-child img { height: 60px; margin-top: -4px; margin-right: 160px;}
  .expo-footer-module .bottom-bar-wrapper { border-top: 1.5px solid #79be58; padding-top: 20px; margin-top: -35px; }
  .expo-footer-module .bottom-bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #fff; }
  .expo-footer-module .chat-bubble { position: fixed; right: 20px; bottom: 20px; background: #79be58; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 25px rgba(121,190,88,0.4); cursor: pointer; z-index: 2147483647; }
  .mobile-google-play, .mobile-social-wrapper { display: none; }
  .expo-footer-module .legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .expo-footer-module .legal-links a {
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap;
  }
  .expo-footer-module .legal-links a:hover {
    color: #79be58 !important;
  }
/* Chat Popup Styles */
.chat-popup {
	 max-height: 600px; 
	 overflow-y: auto;
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 2147483647;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  width: 400px;
  max-width: 90vw;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
}
.chat-popup-content {
  position: relative;
  text-align: center;
}
.chat-close {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
}
.chat-close:hover {
  color: #000;
}
.chat-popup h3 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  
}
.chat-popup p {
  margin-bottom: 10px;
  font-weight: 600;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  white-space: nowrap;
  margin: 0;
}
.chat-popup input[type="text"],
.chat-popup input[type="email"] {
  width: 100%;
  padding: 8px 9px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
}
.submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.chat-btn {
  background: #79be58;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
 
  align-items: center;
  text-align: center;
}
.chat-btn:hover {
  background: #79be58;
}
/* Mobile adjustments for popup */
@media (max-width: 768px) {
  .chat-popup {
    width: calc(100vw - 40px);
    right: 20px;
    left:'origine 20px;
    bottom: 80px;
padding: 14px 16px; /* Reduced padding for mobile */
    bottom: 75px;
  }
  .checkbox-group {
    gap: 8px 14px;
	margin-bottom: 14px;
  }
  .chat-popup-content h3 {
    font-size: 18px; /* Slightly smaller heading */
    margin-bottom: 12px;
text-align: center;
  }
 
  .chat-popup h3 {
    text-align: center !important;
    margin: 0 auto 12px auto !important;
    padding: 0 60px !important; /* Adds safe side padding to prevent overlap with close button */
    font-size: 18px;
    line-height: 1.3;
    width: 100%;
    box-sizing: border-box;
  }
 
  .chat-popup p {
    margin-bottom: 8px;
    font-size: 14px;
  }
 
  .checkbox-group {
    gap: 8px 12px; /* Tighter spacing between checkboxes */
    margin-bottom: 15px;
  }
 
  .checkbox-group label {
    font-size: 13px; /* Smaller checkbox labels */
  }
 
  .chat-popup input[type="text"],
  .chat-popup input[type="email"] {
    padding: 9px 10px; /* Slightly smaller inputs */
    margin-bottom: 10px;
    font-size: 13.5px;
  }
 
  .submit-wrapper {
    margin-top: 15px; /* Less space before submit button */
  }
 
  .chat-btn {
    padding: 10px 28px; /* Slightly smaller button */
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .expo-footer-module .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
    max-width: 1920px !important;
  }
  @media (min-width: 1400px) {
    .expo-footer-module .container {
      padding-left: 100px !important;
      padding-right: 100px !important;
    }
  }
}



@media (max-width: 768px) {

  .expo-footer-module .top-row,
  .expo-footer-module .bottom-bar-wrapper { border: none !important; }
  .expo-footer-module .top-row { flex-direction: column; align-items: center; gap: 25px; padding: 0 0px 0; margin-bottom: 20px;   }
  .expo-footer-module .logo1 { width: 100%; margin-left:-50px; } 
.expo-footer-module .logo1 img { height: 36px;
  width: auto;
  max-width: 280px;
  display: block;

  margin: 0 auto; }


  .expo-footer-module { background: #1a1a1a !important; }
  .expo-footer-module .input-wrapper {
    padding: 4px 8px !important;
    height: 40px !important;
    border-radius: 20px !important;
    max-width: 100% !important;
    width: 85% !important;
    display: flex;
    justify-content: flex-center;
    gap: 10px;
    width: 100%;
    max-width: 90%;
    
  }
  .expo-footer-module .social-icons { display: none; }
  .expo-footer-module .newsletter { width: 100%; padding: 0 10px; margin-left: 40px !important; text-align: center; }
  .expo-footer-module .newsletter p { margin-bottom: 12px;
  font-size: 14px;
  text-align: center; }
  .expo-footer-module .input-wrapper {
   width: 100%;
  max-width: 380px;   /* control width */
  margin: 0 auto;     /* center it */
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
justify-content: flex-center;
  align-items: center;
  padding: 6px 15px;  /* reduce side padding */
  gap: 8px;
margin-left: -15px !important;
  }
  .expo-footer-module .newsletter-form input {
   font-size: 13px;
  padding: 6px 12px;
  height: 32px;
  width: 100%;
  flex: 1;

  }
  .expo-footer-module .newsletter-form input::placeholder { color: #888; }
  .expo-footer-module .newsletter-form button {
     height: 30px;
  padding: 0 14px;
  font-size: 11px;
  }
  .expo-footer-module .newsletter-form button:hover { background: #79be58; color: #fff; }
  .expo-footer-module .newsletter small { margin-top: 12px; font-size: 10px; text-align: left; display: block; }
  .expo-footer-module .main-content { grid-template-columns: 1fr; padding: 0 20px 15px !important; gap: 0; }
  .expo-footer-module .links-grid { grid-template-columns: 1fr; gap: 0; }
  .expo-footer-module .app-badges { display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center !important;
    gap: 20px;
    margin-top: 25px;
    padding: 0; }
  .mobile-google-play { display: block !important; text-align: center; margin: 15px 0 8px; }
  .mobile-google-play img { height: 52px; }
  .mobile-social-wrapper { display: block !important; text-align: center; margin: 8px 0 5px; margin-bottom: 0px !important; padding-bottom: 0px !important; }
  .follow-text { margin-top: 20px !important; font-size: 13px; color: #ccc; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; text-align: center !important; width: 100%; }
  .mobile-social-icons { display: flex; gap: 12px; justify-content: center; margin-bottom: 0 !important; padding-bottom: 0 !important; }
  .mobile-social-icons a { text-decoration: none !important; color: #fff; font-size: 19px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
  .mobile-social-icons a:hover { background: #79be58; color: #000; transform: scale(1.1); }
  .expo-footer-module .expo-living img { padding-top: 20px; height: 50px; margin: 0 auto 12px !important; display: block; }
  .expo-footer-module .bottom-bar-wrapper { margin-top: -50px !important; padding-top: -8px !important; }
  .expo-footer-module .bottom-bar { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 10px 0; padding-top: 0px !important; margin-top: 0px !important; }
  .expo-footer-module .legal-links { gap: 20px; display: flex !important; flex-direction: column; align-items: center; text-align: center; }
  .expo-footer-module .copyright { font-size: 12px; color: #999; margin-top: 8px; }
  .expo-footer-module .col > h4,
  .expo-footer-module .col > h4.second {
    position: relative; cursor: pointer; padding: 18px 50px 18px 0 !important; margin: 0 !important; padding-left: -10px !important;
    padding-right: 70px !important;
    font-size: 15px !important; font-weight: 600;
  }
  .expo-footer-module .col > h4::after,
  .expo-footer-module .col > h4.second::after {
    
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
    font-size: 15px; color: #aaa; transition: transform 0.3s ease;
  }
  .expo-footer-module .col > h4.active::after,
  .expo-footer-module .col > h4.second.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .expo-footer-module .col > ul {
    max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.45s ease;
    padding: 0 15px !important; margin: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .expo-footer-module .col > ul.active { max-height: 1200px; padding: 18px 15px !important; padding-left: -20px !important; padding-right: 40px !important; }
}
@media (max-width: 768px) {
  .expo-footer-module .app-badges {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .expo-footer-module .col h4.recent-searches {
    margin-top: 32px !important;
  }
}


/* Facebook box positioning - Desktop */
@media (min-width: 769px) {
  .fb-page-wrapper-desktop {
    margin-top: 10px;
    text-align: center;
	
  }
  
  .fb-page-wrapper-desktop .fb-page {
    width: 480px !important;
    max-width: 480px !important;
	
  }
  
  
}

/* Facebook box positioning - Mobile */
@media (max-width: 768px) {
  .fb-page-wrapper-desktop { display: none; }
  .fb-page-wrapper-mobile {
    margin: 0px auto 10px;
	 width: 90% !important;
    max-width: 440px !important;
    text-align: center;
	margin-top: 0px;
	
  }
  
}

@media (min-width: 769px) {
  .fb-page-wrapper-mobile { display: none;  }
}




/* Newsletter Success/Error Message */
.newsletter-message {
  display: none;
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  animation: fadeIn 0.4s ease;
}

.newsletter-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.newsletter-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .newsletter-message {
    max-width: 90%;
    width: 90%;
    box-sizing: border-box;
    margin-left: -35px;
    
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  
  
}
	
	
	.buildexpo-unique-module .event-details {
  margin-bottom: 25px;
}

.buildexpo-unique-module .event-details p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.buildexpo-unique-module .event-details p i {
  margin-right: 12px;
  color: #79be58;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

Here's the mobile responsive CSS for the event details:
css@media (max-width: 768px) {
  .buildexpo-unique-module .event-details p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .buildexpo-unique-module .event-details p i {
    font-size: 1.1rem;
    margin-right: 10px;
    min-width: 20px;
  }
}

@media (max-width: 480px) {
  .buildexpo-unique-module .event-details {
    margin-bottom: 20px;
  }

  .buildexpo-unique-module .event-details p {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .buildexpo-unique-module .event-details p i {
    font-size: 1rem;
    margin-right: 8px;
    min-width: 18px;
  }
}

.buildexpo-unique-module .event-details p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.buildexpo-unique-module .event-details p i {
  margin-right: 12px;
  color: #79be58;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;  /* ADD THIS */
}

.buildexpo-unique-module .event-details p strong {
  white-space: nowrap;  /* ADD THIS - prevents "Location" from wrapping */
}

@media (max-width: 480px) {
  .buildexpo-unique-module .event-details {
    margin-bottom: 20px;
  }

  .buildexpo-unique-module .event-details p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    align-items: flex-start;  /* ADD THIS - better alignment on very small screens */
  }

  .buildexpo-unique-module .event-details p i {
    font-size: 1rem;
    margin-right: 8px;
    min-width: 18px;
    margin-top: 2px;  /* ADD THIS - aligns icon with text baseline */
  }
}

/* about the event css */
 /* ──────────────────────────────────────────────── */
    /* BASE & RESET */
    /* ──────────────────────────────────────────────── */
    .buildexpo-unique-module * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .buildexpo-unique-module {
      font-family: 'Montserrat', sans-serif;
      background: #f9f9f9;
      color: #1a1a1a;
      line-height: 1.7;
	  padding-bottom:2px;
	  padding-top: 2px;
    }

    /* ──────────────────────────────────────────────── */
    /* CONTAINER & HEADINGS */
    /* ──────────────────────────────────────────────── */
    .buildexpo-unique-module .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .buildexpo-unique-module .buildexpo-heading {
      font-size: 2.1rem;
      font-weight: 500;
      text-transform: capitalize;
      letter-spacing: 3px;
      color: #1a1a1a;
      text-align: center;
      margin: 60px 0 50px;
	  white-space: nowrap;
    }

    /* ──────────────────────────────────────────────── */
    /* EVENT CARD */
    /* ──────────────────────────────────────────────── */
    .buildexpo-unique-module .event-card {
		position: relative; 
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 60px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }

.buildexpo-unique-module .event-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  color: #4a4a4a;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;  /* Increased from 0.85rem */
  font-weight: 600;   /* Changed from 500 to 600 (bold) */
  padding: 10px 20px; /* Increased padding to accommodate larger text */
  border-bottom-right-radius: 12px;
  border-top-left-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
}
    .buildexpo-unique-module .event-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
    }
    .buildexpo-unique-module .event-image {
      
      padding: 40px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .buildexpo-unique-module .buildexpo-banner {
      max-width: 80%;
      height: auto;
      border-radius: 12px;
      
      display: block;
    }
    .buildexpo-unique-module .event-content {
      padding: 45px 40px;
    }
    .buildexpo-unique-module .event-details {
      margin-bottom: 28px;
    }
    .buildexpo-unique-module .event-details p {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
      font-size: 1.05rem;
      color: #374151;
    }
    .buildexpo-unique-module .event-details i {
      margin-right: 14px;
      color: #79be58;
      font-size: 1.35rem;
      min-width: 30px;
      text-align: center;
    }
    .buildexpo-unique-module .event-text p {
      font-size: 1.05rem;
      color: #4b5563;
      margin-bottom: 22px;
    }
    .buildexpo-unique-module .event-text strong {
      color: #79be58;
      font-weight: 700;
    }
    .buildexpo-unique-module .buildexpo-readmore {
      display: inline-block;
      padding: 12px 38px;
      background: #79be58;
      color: white !important;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 18px rgba(121,190,88,0.25);
      font-size: 1.03rem;
    }
    .buildexpo-unique-module .buildexpo-readmore:hover {
      background: #6aa94c;
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(121,190,88,0.35);
    }

    /* ──────────────────────────────────────────────── */
    /* INDUSTRY SELECTOR */
    /* ──────────────────────────────────────────────── */
    .buildexpo-unique-module .buildexpo-industry-selector {
       background: transparent;
      padding: 40px 0 80px;
      
	  margin-top: -20px;
    }
    .buildexpo-unique-module .industry-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      margin-top: 40px;
    }
    .buildexpo-unique-module .industry-card {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 30px 25px;
      transition: all 0.35s ease;
    }
    .buildexpo-unique-module .industry-card:hover {
      border-color: #79be58;
      box-shadow: 0 10px 30px rgba(121,190,88,0.1);
    }
    .buildexpo-unique-module .cat_type {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .buildexpo-unique-module .cat_type li {
      margin: 18px 0;
    }
    .buildexpo-unique-module .cat_type a {
      color: #1f2937;
      text-decoration: none;
      font-size: 1.08rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    .buildexpo-unique-module .cat_type a:hover {
      color: #79be58;
      padding-left: 8px;
    }
    .buildexpo-unique-module .cat_type a i {
      margin-right: 14px;
      color: #79be58;
      font-size: 1.3rem;
      min-width: 30px;
      text-align: center;
    }

@media (max-width: 992px) {
  .buildexpo-unique-module .carousel-progress-bar {
    display: block;
  }
}
    /* ──────────────────────────────────────────────── */
    /* MOBILE RESPONSIVE - IMPROVED */
    /* ──────────────────────────────────────────────── */
    @media (max-width: 992px) {
.buildexpo-unique-module .carousel-progress-bar {
  display: none;
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  margin-top: 15px;
  border-radius: 2px;
  overflow: hidden;
}

.buildexpo-unique-module .carousel-progress-fill {
  height: 100%;
  background: #1a1a1a;
  width: 50%;
  transition: width 0.3s ease;
  border-radius: 2px;
}
		
		.buildexpo-unique-module .event-badge {
  font-size: 0.55rem;  /* Increased */
  font-weight: 400;    /* Bold */
  padding: 8px 16px;
  letter-spacing: 0.5px;
}
      /* Reduced font sizes for mobile */
      .buildexpo-unique-module .buildexpo-heading {
        font-size: 1.35rem;
        margin: 35px 0 30px;
        letter-spacing: 1.5px;
		white-space: normal; 
      }
      .buildexpo-unique-module .event-details p {
        font-size: 0.88rem;
      }
      .buildexpo-unique-module .event-details i {
        font-size: 1.1rem;
        min-width: 26px;
        margin-right: 10px;
      }
      .buildexpo-unique-module .event-text p {
        font-size: 0.88rem;
        line-height: 1.6;
		text-align: left;
      }
      .buildexpo-unique-module .buildexpo-readmore {
        padding: 9px 28px;
        font-size: 0.88rem;
      }
      .buildexpo-unique-module .cat_type a {
        font-size: 0.88rem;
        display: flex;
        align-items: flex-start;
        min-height: 32px;
        padding: 3px 0;
      }
	.buildexpo-unique-module .cat_type a i {
	  flex-shrink: 0;  /* Prevents icon from shrinking */
	  margin-top: 2px;  /* Aligns icon better with first line of text */
	}
      .buildexpo-unique-module .cat_type a i {
        font-size: 1.1rem;
		  min-width: 26px;
		  margin-right: 8px;  /* Reduced from 10px to 8px */
		  flex-shrink: 0;
		  margin-top: 2px;
      }

      /* Improved carousel with better card peek */
      .buildexpo-unique-module .events-carousel-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
      }
      .buildexpo-unique-module .events-carousel-wrapper::-webkit-scrollbar {
        display: none;
      }
      .buildexpo-unique-module .event-card {
        margin-bottom: 0;
        min-width: 82vw;
        max-width: 82vw;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-radius: 14px;
      }
      .buildexpo-unique-module .event-grid {
        display: block;
      }
      .buildexpo-unique-module .event-image {
        padding: 25px 20px 15px;
      }
      .buildexpo-unique-module .event-content {
        padding: 20px 24px 32px;
        text-align: left;
      }
      .buildexpo-unique-module .event-details {
        margin-bottom: 20px;
      }
      .buildexpo-unique-module .event-details p {
        margin-bottom: 10px;
      }
      .buildexpo-unique-module .event-text p {
        margin-bottom: 18px;
      }
      .buildexpo-unique-module .buildexpo-readmore {
        margin: 16px auto 0;
        display: table;
      }

      /* Industry selector carousel on mobile */
      .buildexpo-unique-module .buildexpo-industry-selector {
        padding: 40px 0 50px;
        margin: 35px auto 25px;
        
        border: none;
        
      }
      .buildexpo-unique-module .buildexpo-industry-selector h2.buildexpo-heading {
        padding: 0 20px;
		margin-top: 0;
        margin-bottom: 25px;
		white-space: normal; 
      }
      .buildexpo-unique-module .industry-columns {
		  margin-top: 0;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px 25px 20px;
        margin: 0;
        scrollbar-width: none;
      }
      .buildexpo-unique-module .industry-columns::-webkit-scrollbar {
        display: none;
      }
      .buildexpo-unique-module .industry-card {
        flex: 0 0 75%;
        max-width: 78vw;
        scroll-snap-align: start;
        margin-right: 0;
        padding: 24px 20px;
      }
      .buildexpo-unique-module .industry-card:last-child {
        margin-right: 20px;
      }
      .buildexpo-unique-module .cat_type li {
        margin: 14px 0;
      }
    }

    @media (max-width: 480px) {
.buildexpo-unique-module .event-badge {
  font-size: 0.55rem;  /* Increased */
  font-weight: 600;    /* Bold */
  padding: 6px 14px;
  letter-spacing: 0.5px;
}
      .buildexpo-unique-module .buildexpo-heading {
        font-size: 1.15rem;
        letter-spacing: 1px;
        margin: 30px 0 25px;
		white-space: normal; 
      }
      .buildexpo-unique-module .event-card {
        min-width: 85vw;
        max-width: 85vw;
      }
      .buildexpo-unique-module .event-details p,
      .buildexpo-unique-module .event-text p,
      .buildexpo-unique-module .cat_type a {
        font-size: 0.85rem;
      }
      .buildexpo-unique-module .buildexpo-readmore {
        font-size: 0.85rem;
        padding: 8px 24px;
      }
      .buildexpo-unique-module .event-details i,
      .buildexpo-unique-module .cat_type a i {
        font-size: 1rem;
        min-width: 24px;
        margin-right: 8px;
      }
      .buildexpo-unique-module .events-carousel-wrapper {
        gap: 10px;
      }
      .buildexpo-unique-module .industry-card {
        flex: 0 0 78%;
        max-width: 82vw;
        padding: 20px 18px;
      }
    }

	/* Tanzania card image order fix for mobile */
	@media (max-width: 992px) {
      .buildexpo-unique-module .event-card:nth-child(2) .event-grid {
        display: flex;
        flex-direction: column;
      }
	.buildexpo-unique-module .event-details p strong {
	  white-space: nowrap;
	}

      .buildexpo-unique-module .event-card:nth-child(2) .event-image {
        order: -1;
        padding: 25px 20px 10px;
      }

      .buildexpo-unique-module .event-card:nth-child(2) .event-content {
        padding-top: 15px;
      }
    }

    /* Text wrapping improvements */
    .buildexpo-unique-module .event-details p {
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
    }

    .buildexpo-unique-module .event-details p strong + span,
    .buildexpo-unique-module .event-details p strong {
      white-space: normal !important;
    }

    .buildexpo-unique-module .event-details p {
      display: flex;
      flex-wrap: nowrap;
      gap: 0 6px;
      align-items: baseline;
    }



.Buildexpo-unique-module * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .Buildexpo-unique-module {
      font-family: 'Montserrat', sans-serif;
      background: #f9f9f9;
      color: #1a1a1a;
      line-height: 1.7;
	  padding-bottom:2px;
	  padding-top: 2px;
    }

    /* ------------------------------------------------ */
    /* CONTAINER & HEADINGS */
    /* ------------------------------------------------ */
    .Buildexpo-unique-module .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .Buildexpo-unique-module .Buildexpo-heading {
      font-size: 2.1rem;
      font-weight: 500;
      text-transform: capitalize;
      letter-spacing: 3px;
      color: #1a1a1a;
      text-align: center;
      margin: 60px 0 50px;
	  white-space: nowrap;
    }

    /* ------------------------------------------------ */
    /* EVENT CARD */
    /* ------------------------------------------------ */
    .Buildexpo-unique-module .event-card {
		position: relative;  /* Add this line */
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 60px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }
    .Buildexpo-unique-module .event-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 0;
      align-items: center;
    }
    .Buildexpo-unique-module .event-image {
      
      padding: 40px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .Buildexpo-unique-module .Buildexpo-banner {
      max-width: 80%;
      height: auto;
      border-radius: 12px;
      
      display: block;
    }
    .Buildexpo-unique-module .event-content {
      padding: 45px 40px;

    }
    .Buildexpo-unique-module .event-details {
      margin-bottom: 28px;
    }
    .Buildexpo-unique-module .event-details p {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
      font-size: 1.05rem;
      color: #374151;
    }
    .Buildexpo-unique-module .event-details i {
      margin-right: 14px;
      color: #79be58;
      font-size: 1.35rem;
      min-width: 30px;
      text-align: center;
    }
    .Buildexpo-unique-module .event-text p {
      font-size: 1.05rem;
      color: #4b5563;
      margin-bottom: 22px;
    }
    .Buildexpo-unique-module .event-text strong {
      color: #79be58;
      font-weight: 700;
    }
    .Buildexpo-unique-module .Buildexpo-readmore {
      display: inline-block;
      padding: 12px 38px;
      background: #79be58;
      color: white !important;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 18px rgba(121,190,88,0.25);
      font-size: 1.03rem;
    }
    .Buildexpo-unique-module .Buildexpo-readmore:hover {
      background: #6aa94c;
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(121,190,88,0.35);
    }

    /* ------------------------------------------------ */
    /* INDUSTRY SELECTOR */
    /* ------------------------------------------------ */
    .Buildexpo-unique-module .Buildexpo-industry-selector {
      background: transparent;
      padding: 40px 0 80px;
      
	  margin-top: -20px;
    }
    .Buildexpo-unique-module .industry-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      margin-top: 40px;
    }
    .Buildexpo-unique-module .industry-card {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 30px 25px;
      transition: all 0.35s ease;
    }
    .Buildexpo-unique-module .industry-card:hover {
      border-color: #79be58;
      box-shadow: 0 10px 30px rgba(121,190,88,0.1);
    }
    .Buildexpo-unique-module .cat_type {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .Buildexpo-unique-module .cat_type li {
      margin: 18px 0;
    }
    .Buildexpo-unique-module .cat_type a {
      color: #1f2937;
      text-decoration: none;
      font-size: 1.08rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    .Buildexpo-unique-module .cat_type a:hover {
      color: #79be58;
      padding-left: 8px;
    }
    .Buildexpo-unique-module .cat_type a i {
      margin-right: 14px;
      color: #79be58;
      font-size: 1.3rem;
      min-width: 30px;
      text-align: center;
    }

    /* ------------------------------------------------ */
    /* PROGRESS BAR - HIDDEN ON DESKTOP */
    /* ------------------------------------------------ */
    .Buildexpo-unique-module .carousel-progress-bar {
      display: none;
      width: 100%;
      height: 2px;
      background: #e5e7eb;
      margin-top: 15px;
      border-radius: 2px;
      overflow: hidden;
    }

    .Buildexpo-unique-module .carousel-progress-fill {
      height: 100%;
      background: #1a1a1a;
      width: 50%;
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    /* ------------------------------------------------ */
    /* MOBILE RESPONSIVE - IMPROVED */
    /* ------------------------------------------------ */
    @media (max-width: 992px) {
		.Buildexpo-unique-module .event-badge {
    font-size: 0.65rem !important;
    font-weight: 600;
    padding: 6px 12px !important;
    letter-spacing: 0.5px;
  }


		
      /* Reduced font sizes for mobile */
      .Buildexpo-unique-module .Buildexpo-heading {
        font-size: 1.35rem;
        margin: 35px 0 30px;
        letter-spacing: 1.5px;
		white-space: normal; 
      }
      .Buildexpo-unique-module .event-details p {
        font-size: 0.88rem;

      }
      
      /* Prevent word breaking for labels */
      .Buildexpo-unique-module .event-details p strong {
        white-space: nowrap;
      }
      
      .Buildexpo-unique-module .event-details i {
        font-size: 1.1rem;
        min-width: 26px;
        margin-right: 10px;
      }
      .Buildexpo-unique-module .event-text p {
        font-size: 0.88rem;
        line-height: 1.6;
		text-align: left;
      }
      .Buildexpo-unique-module .Buildexpo-readmore {
        padding: 9px 28px;
        font-size: 0.88rem;
      }
      .Buildexpo-unique-module .cat_type a {
        font-size: 0.88rem;
        display: flex;
        align-items: flex-start;;
        min-height: 32px;
        padding: 3px 0;
      }
	  .Buildexpo-unique-module .cat_type a i {
  flex-shrink: 0;  /* Prevents icon from shrinking */
  margin-top: 2px;  /* Aligns icon better with first line of text */
}
      .Buildexpo-unique-module .cat_type a i {
        font-size: 1.1rem;
  min-width: 26px;
  margin-right: 8px;  /* Reduced from 10px to 8px */
  flex-shrink: 0;
  margin-top: 2px;
      }

      /* Improved carousel with better card peek */
      .Buildexpo-unique-module .events-carousel-wrapper {
        display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    margin: 0 auto;
      }
      .Buildexpo-unique-module .events-carousel-wrapper::-webkit-scrollbar {
        display: none;
      }
      .Buildexpo-unique-module .event-card {
        margin-bottom: 0;
    width: 100%;
    max-width: 600px;
    border-radius: 14px;
      }
      .Buildexpo-unique-module .event-grid {
        display: block;
      }
      .Buildexpo-unique-module .event-image {
        padding: 25px 20px 15px;
      }
      .Buildexpo-unique-module .event-content {
        padding: 5px 24px 32px;
        text-align: left;
		margin-top: -5px;
      }
      .Buildexpo-unique-module .event-details {
        margin-bottom: 20px;
      }
      .Buildexpo-unique-module .event-details p {
        margin-bottom: 10px;
      }
      .Buildexpo-unique-module .event-text p {
        margin-bottom: 18px;
      }
      .Buildexpo-unique-module .Buildexpo-readmore {
        margin: 16px auto 0;
        display: table;
      }

      /* Show progress bar on mobile */
      .Buildexpo-unique-module .carousel-progress-bar {
        display: block;
      }

      /* Industry selector carousel on mobile */
      .Buildexpo-unique-module .Buildexpo-industry-selector {
        padding: 40px 0 50px;
        margin: 35px auto 25px;
        border: none;
      }
      .Buildexpo-unique-module .Buildexpo-industry-selector h2.Buildexpo-heading {
        padding: 0 20px;
		margin-top: 0;
        margin-bottom: 25px;
		white-space: normal; 
      }
      .Buildexpo-unique-module .industry-columns {
		  margin-top: 0;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px 25px 20px;
        margin: 0;
        scrollbar-width: none;
      }
      .Buildexpo-unique-module .industry-columns::-webkit-scrollbar {
        display: none;
      }
      .Buildexpo-unique-module .industry-card {
        flex: 0 0 75%;
        max-width: 78vw;
        scroll-snap-align: start;
        margin-right: 0;
        padding: 24px 20px;
      }
      .Buildexpo-unique-module .industry-card:last-child {
        margin-right: 20px;
      }
      .Buildexpo-unique-module .cat_type li {
        margin: 14px 0;
      }
    }

    @media (max-width: 480px) {
      .Buildexpo-unique-module .Buildexpo-heading {
        font-size: 1.15rem;
        letter-spacing: 1px;
        margin: 30px 0 25px;
		white-space: normal; 
      }
	  
      .Buildexpo-unique-module .event-card {
        min-width: 90vw;
        max-width: 90vw;
      }
      .Buildexpo-unique-module .event-details p,
      .Buildexpo-unique-module .event-text p,
      .Buildexpo-unique-module .cat_type a {
        font-size: 0.85rem;
      }
      .Buildexpo-unique-module .Buildexpo-readmore {
        font-size: 0.85rem;
        padding: 8px 24px;
      }
      .Buildexpo-unique-module .event-details i,
      .Buildexpo-unique-module .cat_type a i {
        font-size: 1rem;
        min-width: 24px;
        margin-right: 8px;
      }
      .Buildexpo-unique-module .events-carousel-wrapper {
        gap: 10px;
      }
      .Buildexpo-unique-module .industry-card {
        flex: 0 0 78%;
        max-width: 82vw;
        padding: 20px 18px;
      }
    }



	/* Tanzania card image order fix for mobile */
	@media (max-width: 992px) {
      .Buildexpo-unique-module .event-card:nth-child(2) .event-grid {
        display: flex;
        flex-direction: column;
      }

      .Buildexpo-unique-module .event-card:nth-child(2) .event-image {
        order: -1;
        padding: 25px 20px 10px;
      }

      .Buildexpo-unique-module .event-card:nth-child(2) .event-content {
        padding-top: 15px;
      }
    }

    /* Text wrapping improvements */
    .Buildexpo-unique-module .event-details p {
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
    }

    .Buildexpo-unique-module .event-details p strong + span,
    .Buildexpo-unique-module .event-details p strong {
      white-space: normal !important;
    }

    .Buildexpo-unique-module .event-details p {
      display: flex;
      flex-wrap: nowrap;
      gap: 0 6px;
      align-items: baseline;
    }
	
	.Buildexpo-unique-module .event-badge {
 position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  color: #4a4a4a;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;  /* Increased from 0.85rem */
  font-weight: 600;   /* Changed from 500 to 600 (bold) */
  padding: 10px 20px; /* Increased padding to accommodate larger text */
  border-bottom-right-radius: 12px;
  border-top-left-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
}



@media (max-width: 992px) {
    
    /* Fix 1: Remove top space above Event Name */
    .Buildexpo-unique-module .event-content {
        padding: 5px 24px 32px; /* Reduced top padding from 20px to 15px */
margin-top: -15px;
    }
    
    /* Fix 2: Reduce space between label and text in event details */
    .Buildexpo-unique-module .event-details p {
        gap: 4px; /* Reduced from 6px to 4px */
        flex-wrap: nowrap;
    }
    
    /* Fix 3: Prevent word breaking for labels (Event Name, Location, Date, Time) */
    .Buildexpo-unique-module .event-details p strong {
        white-space: nowrap;
        flex-shrink: 0; /* Prevents the label from shrinking */
    }
    
    /* Additional fix: Ensure the text after colon doesn't wrap awkwardly */
    .Buildexpo-unique-module .event-details p {
         /* Changed from baseline to flex-start */
    }
    
    /* Make icon more compact */
    .Buildexpo-unique-module .event-details i {
        margin-right: 8px; /* Reduced from 10px */
        flex-shrink: 0;
    }
    
    /* Tighten up the spacing between detail items */
    .Buildexpo-unique-module .event-details {
        margin-bottom: 16px; /* Reduced from 20px */
    }
    
    .Buildexpo-unique-module .event-details p {
        margin-bottom: 8px; /* Reduced from 10px */
    }
}

/* For very small screens (phones in portrait) */
@media (max-width: 480px) {
    .Buildexpo-unique-module .event-content {
        padding: 5px 20px 28px; /* Even tighter spacing for small phones */
    }
    
    .Buildexpo-unique-module .event-details p {
        font-size: 0.82rem; /* Slightly smaller to prevent wrapping */
        gap: 3px;
    }
}

@media (max-width: 992px) {

  /* -- Industry progress bar -- */
  .Buildexpo-unique-module .industry-carousel-progress-bar {
    display: block;
    width: 100%;
    height: 3px;                    /* slightly thicker than events bar for better visibility */
    background: #e5e7eb;
    margin: 20px 0 0;
    border-radius: 2px;
    overflow: hidden;
  }

  .Buildexpo-unique-module .industry-progress-fill {
    height: 100%;
    background: #1a1a1a;            /* match your theme color */
    width: 33%;                     /* start around 1/3 since there are 3 cards */
    transition: width 0.25s ease;
    border-radius: 2px;
  }

}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 860px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  border: 1px solid #e5e7eb;
  font-family: 'Montserrat', sans-serif;
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-banner p,
.cookie-banner {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner a {
  color: #79be58;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner a:hover {
  color: #6aa94c;
}

.cookie-banner .close11 {
  flex-shrink: 0;
  background: #79be58;
  color: #ffffff;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(121, 190, 88, 0.3);
  white-space: nowrap;
}

.cookie-banner .close11:hover {
  background: #6aa94c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(121, 190, 88, 0.4);
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 12px;
    padding: 18px 20px;
    gap: 14px;
    width: 92%;
  }

  .cookie-banner .close11 {
    width: 100%;
    padding: 12px;
  }
}

