:root {
  --primary-color: #4c2a74;
  --secondary-color: #e673ab;
  --background-color: #f5eaf4;
  --card-background-color: #f7edf4;
  --heading-color: #211e1e;
  --text-color: #211e1e;
  --heading-font-family: "Montserrat", sans-serif;
  --text-font-family: "Montserrat", sans-serif;
}
body {
  margin: 0;
   font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
.main-heading {
  font-family: var(--heading-font-family);
  font-size: 30px;
  font-weight: 300;
  line-height: 90px;
  letter-spacing: 0.6px;
  color: var(--secondary-color);
}
.main-subheading {
  font-family: var(--heading-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.6px;
  color: var(--heading-color);
}
.main-about-text {
  font-family: var(--text-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.5px;
  color: var(--text-color);
  margin-bottom: 50px !important;
}
.section-top {
  padding-top: 100px;
  padding-bottom: 60px;
}

.navbar {
  background-color: var(--card-background-color);
  padding: 30px 60px !important;
}

.navbar-brand img {
  height: 70px;
}

.navbar-nav .nav-link {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: 18px;
  margin: 0 0.75rem;
  padding-right: 1rem;
  font-weight: 400;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
}

.dropdown-menu {
  background-color: #f7f4f7 !important;
  border: none !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  border-radius: 8px;
  /* min-width: 220px; */
  overflow: hidden;
}
.dropdown-menu[data-bs-popper] {
  top: 120% !important;
}
.dropdown-item {
  color: var(--text-color);
  font-family: var(--text-font-family);
  font-size: 15px;
  letter-spacing: 0.3px;
  font-weight: 500 !important;
  padding: 12px 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  color: var(--heading-color) !important;
  padding-right: 20px;
  border-left: 4px solid var(--secondary-color);
}

/* video styling */
.video-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: none;
  pointer-events: none;
}


.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4); 
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
}

.video-overlay-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.video-overlay-text p {
  font-size: 1.5rem;
  margin: 0;
}
@media (max-width: 992px) {
  .video-overlay-text h1 {
    font-size: 2.2rem;
  }
  .video-overlay-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .video-overlay-text {
    padding: 20px 30px;
  }
  .video-overlay-text h1 {
    font-size: 1.5rem;
  }
  .video-overlay-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-overlay-text h1 {
    font-size: 1rem;
  }
  .video-overlay-text p {
    font-size: 0.7rem;
  }
}











.expo-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.expo-carousel-image {
  width: 100%;
  height: 800px;
  object-fit: cover;
 
}

.expo-carousel-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 10;
  /* max-width: 700px; */
}

.expo-carousel-heading {
  font-family: var(--heading-font-family);
  font-size: 70px;
  font-weight: 800;
 
  line-height: 90px;
  letter-spacing: 0.6px;
}

.expo-carousel-subtext {
  margin-top: 1.5rem;
  font-family: var(--text-font-family);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.6;
  color: #f5f5f5;
}

/* Countdown Section */
.expo-countdown-section {
  background-color: #fff;
}

.expo-countdown-title {
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: 40px;
  color: var(--primary-color);
}

.expo-countdown-timer {
  gap: 50px;
}

.expo-time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expo-time-number {
  font-size: 70px;
  font-weight: 400;
  color: var(--heading-color);
  font-family: var(--heading-font-family);
}

.expo-time-label {
  font-weight: 200;
  font-size: 22px;
  color: var(--heading-color);
}

.expo-about-wrapper {
  position: relative;
  z-index: 0;
}

.expo-counter-overlay-section {
  margin: 0 auto;
  margin-top: -100px;

  background-color: var(--primary-color);
  border-radius: 30px;
  padding: 20px 30px;
  width: 90%;
  max-width: 1920px;
}

/* aboutcompany css */

.about-container {
  max-width: 1920px;
  width: 100%;
  padding: 20px 80px;
  margin: 0 auto;
}
.about-expo-section {
  background-color: var(--card-background-color);
  height: 900px;
}

.expo-date-heading {
  font-size: 55px;
  font-weight: 600;
  font-family: var(--heading-font-family);
  color: #8867ab;
  margin-bottom: 20px;
}

.expo-date-subheading {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--heading-font-family);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.expo-location-text {
  font-weight: 400;
  font-size: 22px;
  color: var(--text-color);
  font-family: var(--text-font-family);
  margin-bottom: 40px;
}

.expo-about-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--text-font-family);
}

.expo-about-text {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-family: var(--text-font-family);
}

.expo-img-back {
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  width: 100%;
}
.expo-img-back img {
  width: 100%;

}

.expo-btn-primary,
.expo-btn-secondary {
  padding: 20px 20px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: var(--heading-font-family);
}

.expo-btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.expo-btn-primary:hover {
  background-color: #3b1d5f;
}

.expo-btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}

.expo-btn-secondary:hover {
  background-color: #d4609b;
}

.arrow-icon {
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.expo-btn-primary:hover .arrow-icon,
.expo-btn-secondary:hover .arrow-icon {
  transform: translateX(6px);
}

/* product counter css */

.expo-counter-section {
  background-color: var(--primary-color);
  padding: 60px 0;
  border-radius: 0 0 40px 40px;
}
.with-plus::after {
  content: "+";
}

.expo-counter-box {
  color: #fff;
  margin-bottom: 20px;
}

.counter-icon {
  margin-top: 20px;
  height: 90px;
  margin-bottom: 30px;
}

.counter-number {
  font-size: 65px;
  font-weight: 600;
  margin-bottom: 4px;
}

.counter-label {
  font-size: 20px;
  font-weight: 200;
  font-family: var(--text-font-family);
}

.about-img {
  width: 100%;
  max-width: 600px;
  border-radius: 25px;
}

.about-img img {
  width: 100%;
 
  border-radius: 25px;
}

/* swiper slider */
.section-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.event-slider-section {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-slider{
  width: calc(100% - 100px);
}

.swiper-wrapper {
  gap: 40px;
 width: calc(100% - 100px);


  /* padding: 60px 80px; */
}

.swipe-card {
  width: 450px!important;
  background: white;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /* gap: 50px; */
  height: 580px!important;
  padding: 20px 20px;
}

.swipe-card-img {
  width: 100%;
  height: 250px;
  border-radius: 25px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size:23px;
  color: #5b2c82;
  margin-bottom: 10px;
}

.card-content ul {
  padding-left: 18px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--text-font-family);

  color: var(--text-color);
}
.slider-navigation-wrap {
  max-width: 100px;
  width: 100%;
}
.custom-nav-right,
.custom-nav-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 10;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
}

.custom-nav-left {
  left: 150px !important;
  top: 48% !important;
}

.custom-nav-right {
  left: 150px !important;
  top: 52% !important;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "none" !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "none" !important;
}

/* exhibitor css */
.whiwillexhibit {
        max-width: 1500px !important;
        width: 100%;
        padding: 30px 0px!important;
    }
.exhibit-card {
    background-color: #f9f5ff;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  min-height: 500px; 
  display: flex;
  flex-direction: column;
}

.exhibit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}
.exhibit-swiper-wrapper{
  gap: 5px!important;
}
.card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 15px;
}

.exhibit-card h5 {
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: 25px;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.exhibit-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 8px;
}

/* Swiper arrows bottom center */
.exhibit-swiper-button-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}

.exhibit-swiper-button-prev,
.exhibit-swiper-button-next {
  position: static !important;
  cursor: pointer;
}

.exhibit-swiper-button-prev img,
.exhibit-swiper-button-next img {
  width: 35px;
  height: 35px;
  transition: transform 0.2s ease;
}

.exhibit-swiper-button-prev img:hover,
.exhibit-swiper-button-next img:hover {
  transform: scale(1.15);
}

.section-title {
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--text-color);
}

.experts-section {
  background-color: var(--background-color);
  padding: 60px 20px;
  text-align: center;
}

.experts-container {
  max-width: 1600px;
  margin: 0 auto;
}

.experts-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  margin-bottom: 10px;
}

.experts-description {
  font-size: 16px;
  color: var(--text-color);
  font-family: var(--text-font-family);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.experts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.experts-col {
  /* flex: 0 0 30%; */
 max-width: 350px;
 width: 100%;
}

.expert-card {
  background-color: var(--card-background-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.expert-img {
  width: 100%;
  height: auto;
  display: block;
}

.expert-name {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 15px 0 5px;
  font-family: var(--heading-font-family);
}

.expert-role {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-family: var(--text-font-family);
  line-height: 1.4;
}

/* Hover card specific */
.expert-hover-card {
  position: relative;
  cursor: pointer;
}

.expert-hover-card .expert-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(76, 42, 116, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--heading-font-family);
}

.expert-hover-card:hover .expert-hover-overlay {
  opacity: 1;
}

.hover-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.hover-button {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
  font-family: var(--heading-font-family);
}
.expert-card:hover .expert-name,
.expert-card:hover .expert-role {
  opacity: 0;
  visibility: hidden;
}

.hover-button:hover {
  background-color: #d4609b;
}

/* Responsive */
@media (max-width: 992px) {
  .experts-col {
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .experts-col {
    max-width: 100%;
  }
}

.gallery-section {
  padding: 80px 0;
  background-color: #fff;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
  display: block;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(76, 42, 116, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.gallery-card-tall {
  height: 800px;
}

.gallery-card-small {
  height: 350px;
  width: calc(50% - 700px);
}

.gallery-card-bottom {
  height: 400px;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .gallery-card-tall,
  .gallery-card-small,
  .gallery-card-bottom {
    /* aspect-ratio: auto;
    height: auto; */
    margin-bottom: 20px;
  }
}

.who-attend-section {
  background-color: #fff;
  padding: 80px 0;
}

.who-attend-box {
  background-color: var(--card-background-color);
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
 min-height: 180px;
 gap:10px;
  height: auto;

  display: flex;
  /* flex-direction: column; */
  justify-content: flex-start;
  flex-grow: 1;
}

.who-attend-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.who-attend-text {
  font-weight: 500;
  font-size: 20px;
  font-family: var(--text-font-family);
  color: var(--text-color);
}

.custom-slider-news-section {
  display: flex;
  max-width: 1920px;
  margin: auto;
  padding: 60px 40px;
  gap: 40px;
  align-items: center;
}


.custom-slider-news-section-left{
   display: flex;
   width: calc(100% - 500px);
}

.custom-news-box{
  width: 500px;
  margin-top: -150px;
}


.refinedNewsSwiper {
  width: calc(100% - 100px);
  padding: 0px !important;
  overflow: hidden;
  height: auto !important;
}

.custom-swiper-wrapper {
  display: flex;
  gap: 40px;
}


/* Nav Arrows */
.custom-slider-nav {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.custom-prev-btn img,
.custom-next-btn img {
  width: 50px;
}

/* Card */
.custom-slide-card {
 width: 350px!important;
  padding: 20px 20px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-slide-card:hover {
  transform: translateY(-5px);
}

.custom-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.custom-card-content {
  padding: 20px;
}

.custom-card-date {
  font-weight: 400;
  letter-spacing: 0.6px;
  font-size: 16px;
  color: #8b8a8a;
  margin-bottom: 10px;
  font-family: var(--text-font-family);
}

.custom-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.6px;
  font-family: var(--heading-font-family);
  margin-bottom: 10px;
}

.custom-card-desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

.custom-card-button {
  display: inline-block;
  background: var(--custom-pink);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.custom-card-button:hover {
  background: #d14aa5;
}

.custom-news-title {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
}
.custom-news-list p{
  font-size: 20px;
  line-height: 1.6;
 color: var(--secondary-color);
}
.custom-news-heading {
  font-size: 35px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 20px;
  font-family: var(--heading-font-family);
}

.custom-news-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.6px;
  color: var(--custom-text);
   font-family: var(--heading-font-family);
}
.custom-news-list li span {
  color: var(--custom-pink);
  font-weight: bold;
  margin-right: 8px;
}

/* Swiper defaults */
.swiper-button-next:after,
.swiper-button-prev:after {
  content: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .custom-slider-news-section {
    flex-direction: column;
    align-items: center;
  }
.swiper-button-prev img,
.swiper-button-next img {
    width: 18px;
    height: 18px;
}

  .refinedNewsSwiper {
    width: 100%;
  }
  .cst-exp-test{
    display: flex;
    flex-wrap: nowrap !important;
  }
}

.custom-slide-card {
 width: 350px!important;

  background: #f5f0fa;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}
.custom-slide-card:hover {
  transform: translateY(-5px);
}

.custom-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
}
.custom-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(91, 44, 130, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
  border-radius: 20px 20px 0 0;
}
.custom-slide-card:hover .custom-overlay {
  opacity: 1;
}

.custom-overlay-button {
  background: #e75db6;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.custom-overlay-button:hover {
  background: #cf4fa1;
}
.swiper-button-lock {
  display: block !important;
}

.calendar-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.calendar-box {
  width: 100%;
  max-width: 350px;
}

.calendar-box h3 {
  color: #fff;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 600;
}

.calendar-list {
  list-style: none;
  padding: 0;
}

.calendar-list li {
  background-color: var(--secondary-color);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: background 0.3s ease;
  cursor: pointer;
  color: #fff;
}

.calendar-list li:hover {
  background-color: var(--secondary-color);
}

.calendar-list li img {
  width: 14px;
}

.calendar-center {
  text-align: center;
  max-width: 500px;
  background-color: #fff;
  padding: 30px 30px;
  border-radius: 25px;
  margin: 0 auto;
}

.calendar-dates {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.date-card {
  background-color: var(--card-background-color);
  color: var(--primary-color);
  font-size: 55px;
  padding: 20px;
  font-weight: 700;
  border-radius: 16px;
  width: 120px;
  line-height: 1.1;
}
.date-card span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}

.calendar-location {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  font-family: var(--text-font-family);
}

.calendar-location-btn {
  background-color: var(--primary-color);
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.calendar-location-btn:hover {
  background-color: #4c2a74;
}
.calendar-location-btn img {
  width: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .calendar-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .calendar-box {
    /* max-width: 100%; */
    text-align: center;
  }
  .calendar-dates {
    flex-wrap: wrap;
    justify-content: center;
  }

}

/* Sponsors Section */
.sponsors-section {
  background-color: white;
  text-align: center;
  padding: 60px 20px 40px;
}
.sponsors-section h2 {
  font-family: var(--heading-font-family);
  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 40px;
}
.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.sponsor-item {
  flex: 1 1 200px;
  text-align: center;
}
.sponsor-item .label {
  margin-top: 20px;
  font-weight: 600;
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.sponsor-item img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* Footer */
.footer {
  background-color: #211e1e;
  color: #fff;
  font-family: var(--text-font-family);
  padding-top: 50px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 40px 40px;
  gap: 30px;
}

/* Logo & Socials Column */
.logo-social {
  /* flex: 1 1 200px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-social a img {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 8px;
  width: 45px;
  height: 45px;
  margin-right: 12px;
  object-fit: contain;
  display: inline-block;
}
.footer-social a img:hover {
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 14px;
  display: flex;
}
.footer-col ul li img {
  width: 20px;
  object-fit: contain;
}
.footer-col ul li a {
  text-decoration: none;
  font-family: var(--text-font-family);
  color: #fff;
  font-weight: 400;
  font-size: 15px;
}

.contact-info .contact-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff;
}
.contact-info .contact-detail {
  font-size: 14px;
  margin-bottom: 15px;
}
.contact-info a {
  color: #ccc;
  text-decoration: none;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #fff;
  background-color: #211e1e;
  text-align: center;
  padding: 15px 20px;
  font-size: 15px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }

  .sponsor-grid {
    flex-direction: column;
    align-items: center;
  }
}

.testimonial-section {
  background-color: var(--background-color);
  padding: 60px 20px;
  font-family: var(--text-font-family);
  overflow-x: hidden;
}

.testimonial-swiper {
  overflow: hidden;
}
.testimonial-container {
  max-width: 1600px;
  width: 100%;
  height: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  /* padding: 0 40px 40px; */
  gap: 30px;
}
.testimonial-slider-wrapper {
  max-width: 600px !important;
  width: 100%;
  height: auto !important;
  
}
.cst-exp-test{
 display: flex;
   flex-wrap: wrap;
  /* justify-content: space-between; */
 align-items: center;
 gap: 30px;
}
.testimonial-nav {
  width: 100px;
  display: flex;
   flex-direction: column;
    justify-content: center;
     align-items: center;
     gap : 20px;
}
.testi-content {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none; 
}
.swiper-button-next, .swiper-button-prev {
  position: static !important;
}
.swiper-button-prev img,
.swiper-button-next img {
    width: 30px;
    height: 30px;
    margin-left: 50px;
}
.testimonial-card {
  width: 600px!important;
  height: 350px!important;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-right: -33px!important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-quote {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
/* .testimonial-user {
  width: 500px;
} */

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-user h4 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-user p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.testimonial-text {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.testimonial-rating {
  font-size: 14px;
  color: #ffaa00;
}

/* .testimonial-image {
  flex: 1 1 40%;
} */
.testimonial-image {
 width: 500px;
 height: 550px;
 margin-top: -80px;
}
.testimonial-image img {
  width: 500px;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}


/* Responsive */

@media (max-width: 1500px) {
  .navbar-brand img {
    height: 50px !important;
  }
  .expo-img-back {
    max-width: 500px;
    width: 100%;
  
  }

  .custom-nav-left {
    left: 80px !important;
    top: 48% !important;
  }

  .custom-nav-right {
    left: 80px !important;
    top: 52% !important;
  }
   .testimonial-image{
        width: 600px;
        height: 400px;
          margin-top: 80px;
      }
      
}

@media (max-width: 1400px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    margin: 0 0.5rem;
  }

  .about-container {
    padding: 20px 60px;
  }
   
  .expo-img-front {
    left: 160px;
    top: 100px;
  }
  .expo-date-heading {
    font-size: 30px;
  }
  .expo-date-subheading {
    font-size: 24px;
  }
  .expo-about-heading {
    font-size: 35px;
  }
  .expo-location-text {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .expo-about-text {
    font-size: 16px;
  }
  .expo-btn-primary,
  .expo-btn-secondary {
    padding: 12px 15px;
    font-size: 14px;
  }
  .expo-countdown-title {
    font-size: 30px !important;
  }
  .expo-time-number {
    font-size: 30px;
    font-weight: 600;
  }
  .swiper-slide .card{
    height: auto!important;
  }
      .who-attend-icon {
        width: 40px !important;
        height: 40px !important;
        
      }
      .who-attend-box h5{
        font-size: 22px !important;
        text-align: left;
      }
      .who-attend-box p{
        font-size: 16px !important;
        font-weight: 500;
        text-align: left;
      }
      .cst-exp-test{
        gap: 10px;
      }
      .testimonial-image{
        width: 450px;
        height: 500px;
        margin-top: -59px;
      }
      .testimonial-card {
        width: 600px!important;
        height: 300px!important;
      
      }
}

@media (max-width: 1200px) {
  .navbar-brand img {
    height: 40px !important;
  }
  .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
  }
  .expo-btn-primary,
  .expo-btn-secondary {
    padding: 12px 15px;
    font-size: 14px;
  }
  .expo-countdown-title {
    font-size: 30px !important;
   
  }
.expo-carousel-heading {
  font-size: 28px!important;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.expo-carousel-subtext {
  font-size: 16px!important;
  line-height: 1.5;
}
  .expo-time-number {
    font-size: 30px;
    font-weight: 600;
  }
  .counter-icon {
    margin-top: 20px;
    height: 45px !important;
    margin-bottom: 3px;
  }
  .counter-number {
    font-size: 45px !important;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .counter-label {
    font-size: 13px;
  }
  .about-expo-section {
    height: auto;
  }
  .about-container {
    padding: 0px 20px;
  }
  .expo-counter-overlay-section {
    margin-top: 0px;
  }
  .swiper-wrapper{
  padding: 0px !important;
  gap: 0px!important;
}

.custom-nav-right, .custom-nav-left {
  margin-bottom: 10px;
}
.custom-prev-btn img, .custom-next-btn img {
    width: 30px;
}
.cst-exp-test{
  gap: 5px;
}
.testimonial-image{
  width: 350px;
  height: 400px;
  margin-top: 1px;
}
.testimonial-slider-wrapper{
  width: 500px;
}
 .testimonial-card {
        width: 500px!important;
        height: 200px!important;
      
      }
.testimonial-quote img {
 width: 25px;
  
}

.testimonial-user {
 gap: 10px;
  margin-bottom: 15px;
}

.testimonial-user img {
  width: 30px!important;
  height: 30px;
 
}

.testi-content h4 {
  font-weight: 12px!important;
}

.testi-content p {
  font-size: 10px;
}

.testimonial-text {
  font-size: 12px;
}

.testimonial-rating {
  font-size: 10px;
 
}
.expert-img {
    width: 200px;
    display: inline-block;
}
.expert-name {
    font-size: 18px;
  
}
.expert-role {
    font-size: 12px;
}

}
@media (max-width: 991px) {
  .section-top {
    padding-top: 50px;
  }
  .swipe-card{
    width: 290px!important;
    
  }
  .expo-carousel-heading {
    /* font-size: 40px; */
    font-weight: 700;
    line-height: 50px;
  }
.card-icon img {
  width: 40px;
  height: 40px;
}
  .expo-carousel-subtext {
    font-size: 1rem;
  }
  .expo-countdown-title {
    font-size: 25px !important;
  }
  .experts-description {
    font-size: 18px;
  }
  .expo-counter-overlay-section {
    position: static !important;
    left: auto;
    transform: none;
  }
  .counter-number {
    font-size: 30px!important;
    font-weight: 500;
  }
  .counter-icon {
    margin-top: 20px;
    height: 30px;
    margin-bottom: 3px;
  }
  .col {
    max-width: 45%;
  }
  .who-attend-box {
  background-color: var(--card-background-color);
  padding: 20px 15px;
  min-height: auto;
 
}


.who-attend-icon {
  width: 80px;
  height: 80px;
 
}
.who-attend-box p{
        font-size: 20px !important;
        font-weight: 500;
        text-align: left;
      }
.custom-slider-news-section {
  display: flex;
 flex-direction: column;
 padding: 0px!important;
}
.event-swiper-wrapper{
  height: fit-content!important;
}

.custom-slider-news-section-left{
          width: 100%;
        padding-top: 40px;
}
.custom-slide-card{
  width: 300px!important;
}
.custom-news-box{
  width:100%;
  padding: 20px 20px;
  margin-top: 0px!important;
}

.custom-prev-btn img, .custom-next-btn img{
  width: 20px!important;
}
.custom-slider-nav{
         width: 60px;
        padding-left: 28px;
}
.custom-swiper-wrapper{
  padding: 0px;
}
.exhibit-card{
  height: auto;
}
.testi-content{
  justify-content: flex-start;
  gap: 0px;
}
.testimonial-image {
  width: 300px;
  height: 300px;
  margin-top: 105px;
}
.testimonial-card{
  width: 300px!important;
  height: 200px!important;
 
}
.testimonial-slider-wrapper{
  width: 300px;

 
}
.testimonial-swiper-wrapper{
  gap: 40px!important;
}

.testimonial-quote img{
  width: 40px;
  height: auto;
}
.testimonial-user img{
  width: 30px;
  height: 30px;
}
.testi-content h4{
  font-size: 16px;
  font-weight: 500;
}
.testi-content p{
  font-size: 10px;
  font-weight: 400;
}
.testimonial-text{
  font-size: 10px;
  font-weight: 400;
}

.testimonial-rating{
  font-size: 8px;
}
.swiper-button-prev img, .swiper-button-next img {
  margin-left: 0px !important;
}
.date-card{
  font-size: 30px;
}
.calendar-box h3 {
  font-size: 25px;
}
.calendar-list li{
  padding: 8px 10px;
  font-size: 10px;
}
.calendar-box {
  padding: 20px 20px;
}
.sponsors-section h2 {
  font-size: 25px;
}
.custom-news-list{
  font-size: 13px;
}
.custom-news-list span img{
  width: 10px!important;
  height: 10px;
}
.custom-news-title{
  font-size: 18px;
 
}
.custom-news-heading{
  font-size: 20px;
  font-weight: 600;
}
.who-attend-section{
  padding: 30px 0px;
}
.swipe-card {
  height: fit-content!important;
}
}

@media (max-width: 768px) {
  .who-attend-section{
    padding: 30px 0px;
  }
  .expo-date-heading {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .expo-date-subheading {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .expo-about-heading {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .expo-about-text {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .exhibit-card {
    height: auto;
  }
  .exhibit-card h5 {
    font-size: 20px;
  }
  .exhibit-card p {
    font-size: 14px;
  }
  .card-icon img {
    width: 40px;
    height: 40px;
  }
  .custom-nav-right {
    left: 20px !important;
    top: 52% !important;
  }
  .custom-nav-left {
    left: 20px !important;
    top: 48% !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* .testimonial-container {
    flex-direction: column;
  } */

  .testimonial-nav {
    position: static;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px;
    width: 20px;
  }
.testimonial-container{
  gap: 10px;
}
/* .cst-exp-test {
  margin-top: 80px;
    } */
    .testimonial-image {
        width: 100%;
        height: 300px;
          margin-top: 10px!important;
      }
}
@media (max-width: 768px) {
  .navbar {
    padding: 17px 0px !important;
  }
  .navbar-brand img {
    height: 54px;
  }
  .expo-carousel-heading {
    /* font-size: 40px; */
    font-weight: 700;
    line-height: 50px;
  }

  .expo-carousel-subtext {
    font-size: 1rem;
  }
  .expo-countdown-title {
    font-size: 40px !important;
    margin-bottom: 20px;
  }
  .expo-carousel-content {
    left: 8%;
    right: 8%;
  }
  .expo-time-number {
    font-size: 36px;
    font-weight: 400;
  }
  .expo-time-label {
    font-size: 14px;
  }
  .expo-img-back {
    max-width: 300px;
    width: 100%;
  }
      .who-attend-box h5{
        font-size: 30px!important;
        font-weight: 500;
      }
    }
@media (max-width: 600px) {
  .col {
    max-width: 100%;

  }
  .expo-countdown-timer{
    gap: 0px!important;
  }
     
          .testimonial-card{
            width: calc(100% - 0px)!important;
          }
          .testimonial-image{
            width: 90%;
          }
}
@media (max-width: 480px) {
  .expo-countdown-title {
    font-size: 26px !important;
  }
  .expo-time-number {
    font-size: 28px;
  }
  .expo-time-label {
    font-size: 12px;
  }
 .testimonial-nav{
  width: 50px;
 }

    .swipe-card {
        width: 272px !important;
    }

}
@media(max-width: 400px){
  .testimonial-slider-wrapper{
    width: 300px!important;
  }
  .testimonial-card{
    width: 300px!important;
  }
}
/* @media (max-width: 575.98px) {
  .who-attend-box {
    padding: 40px 20px;
    min-height: 250px;
  }
} */
.who-attend-list {

  color:var(--text-color);         
  font-size: 16PX;          
  font-weight: 400;         
  font-family: var(--text-font-family);
}

.who-attend-list li {
  margin-bottom: 6px; 
text-align: left;
}
@media (max-width: 635px) {
 .testimonial-container {
   height: auto;
  }
}
