 .banner-carousel .slide-item:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #0000000f;
        opacity: .70;
        content: "";
    }
    .schedule-block .speaker-info .name {
        font-size:18px;
    }
    
    .my-div {
        background-color: #eff1ff;
        width: 500px;
        border: 1px solid black;
        padding: 20px;
        margin: 20px;
        border-radius: 25px;
    }

    /* gallery css */
    .fancybox-button--share {
        display: none;
    }

    .fancybox-navigation {
        display: block;
    }

    .carousel-gallery-section {
        margin: 50px 0;
        padding: 0 30px;
        position: relative;
    }

    .carousel-gallery-section .swiper-slide a {
        display: block;
        width: 100%;
        height: 200px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    }

    .carousel-gallery-section .swiper-slide .image {
        width: 100%;
        /* height: 100%; */
        background-size: cover;
        background-position: center center;
    }

    .carousel-gallery-section .swiper-slide .image .overlay {
        width: 100%;
        height: 100%;
        background-color: rgba(20, 20, 20, 0.8);
        text-align: center;
        opacity: 0;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

    .carousel-gallery-section .swiper-slide .image .overlay em {
        color: #fff;
        font-size: 26px;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        display: inline-block;
    }

    .gallery_next,
    .gallery_prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #fe8900;
        z-index: 10;
        background: none !important;
        font-size: 25px;

    }

    .gallery_next:hover,
    .gallery_prev:hover {
        cursor: pointer;
    }

    .gallery_next {
        right: -4px;
    }

    .gallery_prev {
        left: 0;
    }

    @media(max-width:768px) {
        .carousel-gallery-section {
            padding: 0;
        }

        .gallery_next {
            right: -35px;
        }

        .gallery_prev {
            left: -25px;
        }
    }

    @media(max-width:991px) {
        .carousel-gallery-section {
            padding: 0 10px;
        }

        .gallery_next {
            right: -35px;
        }

        .gallery_prev {
            left: -25px;
        }
    }
    .subheading{font-weight: 700 !important; font-style: normal; color: rgb(255, 138, 0) !important; font-kerning: none; text-decoration: none;}
    .organizer-partner-box{border: 1px solid black;
    border-radius: 17px;
    padding: 15px 30px;}
    .partner-type{
        font-size: 1em; font-weight: 600; font-style: normal; color: rgb(23, 37, 123); font-kerning: none; text-decoration: none;
        text-transform: uppercase;
    }
.partner-logo {
    max-height: 120px;
    object-fit: contain;
    width: 100%;
    transition: transform 0.2s ease;
}
.partner-logo:hover {
    transform: scale(1.05);
}


.text-orange {
  color: #f58220;
}

.why-attend-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.zigzag-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.zigzag-row {
  display: flex;
}

.zigzag-row.left {
  justify-content: flex-start;
}

.zigzag-row.right {
  justify-content: flex-end;
}

.zigzag-card {
    
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgb(6, 6, 6);
  border-radius: 12px;
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.zigzag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.zigzag-card .icon img {
  width: 48px;
  height: 48px;
}

.zigzag-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f58220;
}

.zigzag-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .zigzag-row {
    justify-content: center !important;
  }

  .zigzag-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .zigzag-card .icon {
    margin-bottom: 0.75rem;
  }
}
.zigzag-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

.zigzag-row:nth-child(odd) .zigzag-card {
  animation-delay: 0.1s;
}
.zigzag-row:nth-child(even) .zigzag-card {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f58220;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-img img {
  width: 240px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.timeline-content {
  max-width: 500px;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e2a5a;
}

.highlight-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: none;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* remove shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.highlight-item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  border: none;
  border-radius: 0;
}

.highlight-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  transition: background 0.3s ease;
}

.highlight-overlay h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #f58220;
  margin-bottom: 0.5rem;
}

.highlight-overlay p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color:white
}
.cta-section {
  background-color: #fff;
}

.cta-link {
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
    color: rgb(51, 76, 151) !important;
    font-kerning: normal;
    text-decoration: underline;
}

.btn-register {
  background-color: #2e4a99;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
font-weight: 900;
}

.btn-register:hover {
  background-color: #1e3675;
  color: #fff;
}



.expo-section {
  background: url("{{asset('images/highlights/6.png')}}") no-repeat center center / cover;
  padding: 0;
  color: #fff;
  position: relative;
  color: black!important;
}

.expo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-color: rgba(38, 30, 73, 0.85); */
 background-color: rgba(92, 114, 178, 0.6);  /* Light blue with semi-transparency */
  backdrop-filter: blur(12px);  /* Frosted glass effect */
  z-index: 0;

}

.expo-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  padding: 0;
}

.expo-left {
  flex: 1 1 40%;
  margin: 0;
  padding: 0;
}

.expo-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.expo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.expo-title-overlay {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #2e3b80;
  color: #fff;
  padding: 1rem 1.5rem;
  width: 100%;
}

.expo-title-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.expo-title-overlay p {
  margin: 0;
  font-size: 1rem;
}

.expo-right {
  flex: 1 1 55%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expo-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1rem;
  /* color: black; */
}

.btn-stall {
  display: inline-block;
  margin-top: 2rem;
  background-color: #ffbd2e;
  color: #1d1d1d;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: start;
  width: 100%;
  text-align: center;
}

.btn-stall:hover {
  background-color: #e2a900;
  color: #fff;
}
.chart-wrapper p {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.chart-wrapper p img {
  width: 48%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.acf-event-section {
  background: linear-gradient(180deg, #e6f0ff, #ffffff);
  padding: 80px 0;
}

.acf-inner-column {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.acf-info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.acf-info-box {
  width: 48%;
  display: flex;
  align-items: center;
  background: #fff;
  border-left: 4px solid #1c3faa;
  padding: 18px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.acf-info-box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.acf-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1c3faa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.acf-icon-color {
  color: #ffffff;
  font-size: 20px;
}

.acf-info-text p {
  margin: 0;
  color: #2c2c2c;
  font-size: 16px;
}

.acf-section-heading {
  border-left: 5px solid #1c3faa;
  padding-left: 14px;
  color: #1c3faa;
  font-size: 26px;
  margin-bottom: 20px;
}

.acf-styled-list {
  margin-top: 10px;
  padding-left: 24px;
  line-height: 1.8;
  color: #444;
  font-size: 16px;
  margin-bottom: 10px;
}
.acf-styled-list li {
  position: relative;
  padding-left: 20px;
  list-style-type: style;
  list-style: inside;
}

.acf-takeaway-box {
  background-color: #f0f6ff;
  border-left: 5px solid #1c3faa;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 50px;
}

.acf-takeaway-heading {
  color: #1c3faa;
  font-size: 24px;
  margin-bottom: 12px;
}

.acf-sponsor-grid.enhanced-layout {
  display: flex;
  justify-content: flex-start;
  gap: 30px 20px;
  flex-wrap: nowrap; 
  margin-top: 30px;
}

.acf-sponsor-grid-center {
  display: flex;
  justify-content: center;
  gap: 30px 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.acf-sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.acf-sponsor-item img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}


.banner-register-now{background: #f68002; padding: 12px 35px; border-radius: 40px; font-size: 20px; font-weight: bold; color: #fff; text-decoration: none; display: inline-block; margin-bottom: 20px;}
.banner-info{display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; font-size: 18px; color: white;}
.banner-info .fa-calendar-alt{
margin-right: 5px;
}
.banner-info .fa-clock{
margin-right: 5px;
}
.banner-info .fa-calendar-alt{
margin-right: 5px;
}
.banner-info .fa-map-marker-alt{
margin-right: 5px;
}
.banner-text-section{
text-align: center; padding-top: 2%;
}
.compliance-expo-asia{
background: #fdfeff; color: #334c97; padding: 10px 20px; border-radius: 50px; font-weight: 900; font-size: 16px; text-decoration: none; text-transform: capitalize;
}
.acf-conference{background: #fdfeff; color: #334c97; padding: 10px 45px; border-radius: 50px; font-weight: 900; font-size: 16px; text-decoration: none; text-transform: capitalize;}
.video-slide{
  position: relative;height: 150vh;overflow: hidden;
}
.video-slide video{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;z-index: 0;}
.video-overlay{
position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.81); z-index: 1;
}
.video-content{
position: relative; z-index: 2; height: 100%;
}
.video-content-text p{font-size: 20px;font-weight: 400;color: white;margin-bottom: 0; text-align: start;margin-top: 1rem; margin-bottom: 1rem;}
.video-content-text h1{line-height: 1.1;font-size: 70px;font-weight: 800;color: white;margin-bottom: 10px;}
.video-content-divider{
height: 5px; width: 150px; background: linear-gradient(90deg, #ffcc00, #009fe3, #4c2e91); margin-bottom: 10px;
}
.video-content-sub-text{font-size: 22px; color:white}


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

/* Tablets and below */
@media (max-width: 991px) {
  .acf-info-box {
    width: 100%;
  }

  .acf-inner-column {
    padding: 40px 30px;
  }

  .chart-wrapper p img {
    width: 100%;
  }

  .acf-sponsor-grid.enhanced-layout {
    flex-wrap: wrap; 
    justify-content: center;
  }
  .video-content-text h1
  {
    font-size: 50px;
    margin-top: 1rem;
    margin-bottom: 1rem;
   }
}

/* Mobile devices */
@media (max-width: 575px) {
  .acf-event-section {
    padding: 40px 10px;
  }

  .acf-inner-column {
    padding: 30px 15px;
  }

  .acf-section-heading {
    font-size: 20px;
  }

  .acf-info-text p {
    font-size: 14px;
  }

  .acf-styled-list {
    font-size: 14px;
    padding-left: 18px;
  }

  .acf-takeaway-heading {
    font-size: 20px;
  }

  .acf-sponsor-item {
    padding: 15px;
  }

  .acf-sponsor-item img {
    max-height: 80px;
  }
}
.btn-report{
    border: 1px solid orange;
    background: transparent;
    color: orange;
}
.btn-report:hover{
    background: orange;
    color: white;
    text-decoration: none;
    border: 1px solid orange;
}