  
       * {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    body {
      font-family: 'Lato', sans-serif;
     
     
    }
    html {
  scroll-behavior: smooth;
}

    a {
      text-decoration: none;
      color: inherit;
    }
  
  /* FIRST NAVBAR - scrolls away normally */
.main-header {
  background-color: black;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky; /* Changed from relative */
  top: 0;            /* Sticks to the top */
  width: 100%;
  z-index: 1000;
  flex-wrap: wrap;
}
    .logo-section a {
      color: #f84fb4;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
    }
    .logo img {
      height: 50px;
    }

    .main-nav {
      display: flex;
      align-items: center;
    
      flex-wrap: wrap;
    }

    .main-nav a {
     font-weight: 600;
      font-size:16px;
      color: white;
      text-decoration: none;
      padding: 8px 10px;
      transition: background-color 0.3s;
    }

    .main-nav a:hover {
      color: #ff4081;
    }

    /* Dropdown Button */
    .summit-btn {
      background: none;
      border: none;
      color: white;
   font-weight: 600;
      font-size:16px;
      cursor: pointer;
     
    }

    .summit-dropdown {
      position: relative;
    }

   .summit-dropdown-content {
display: none;
position: absolute;
top: calc(100% + 10px); /* 5px below the parent */
left: -100px; /* shift to the left */
background: #fff;
color: #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 10px;
border-radius: 4px;
z-index: 1000;
min-width: 220px;
}

    .show-dropdown {
      display: block;
    }

    .summit-item {
      margin-bottom: 10px;
    }

    .summit-heading {
      background: none;
      border: none;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
      width: 100%;
      text-align: left;
      padding: 5px 0;
    }

    .summit-links {
      display: none;
      padding-left: 10px;
    }

    .show-links {
      display: block;
    }

    .summit-links a {
      display: block;
      padding: 4px 0;
      text-decoration: none;
      color: #000;
      font-size: 13px;
    }

    .summit-links a:hover {
      color: #ff4081;
    }

    .arrow {
      font-size: 12px;
      margin-left: 5px;
    }

    /* Bottom Navigation */
    .bottom-nav {
      position: fixed;
      top: 70px; /* just below header */
      left: 0;
      right: 0;
      background-color: #fff;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 10px 0;
      z-index: 999;
    }

    .bottom-nav a {
      color: #000;
      text-decoration: none;
      font-weight: bold;
      padding: 5px 10px;
      font-size: 14px;
    }

    .bottom-nav a:hover {
      color: #ff4081;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-header {
    flex-direction: column;
    padding: 15px 20px;
    align-items: flex-start;
  }

      .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .bottom-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
    }
    /* Toggle button styles */
.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
}

/* Show toggle button & handle menu visibility on mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1100;
  }

  .main-nav {
    display: none; /* Hide by default */
    width: 100%;
    background-color: #1a1a1a;
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
  }

  .main-nav.active {
    display: flex;
  }
}
/* Unique Gradient Button for 2025 LIVE */
.tls-live-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px; /* Fixed width */
  height: 42px; /* Fixed height for equal vertical space */
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(to right, #505add, #df42b1);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: color 0.4s ease;
  text-align: center;
}

.tls-live-btn i {
  font-size: 16px;
}

/* Hover Effect */
.tls-live-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 30px;
}

.tls-live-btn:hover::before {
  transform: scaleX(1);
}

.tls-live-btn:hover {
  color: #000;
}
/*hero image slider*/
.hero-carousel-section {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px;
  transform: translateY(-10%);
}

.hero-content h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #505add, #df42b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
   font-size:50px ;
}

/* Button */
.shared-hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to right, #505add, #df42b1);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease, background 0.4s ease;
  z-index: 1;
}

.shared-hero-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 30px;
}

.shared-hero-btn:hover::before {
  transform: scaleX(1);
}

.shared-hero-btn:hover {
  color: #000;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: white;
  z-index: 5;
  transition: background 0.3s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-arrow {
    padding: 10px 12px;
    font-size: 16px;
  }

  .shared-hero-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}


/*about section*/
/*About US*/
   section.about-leadership-section {
      background-color: #0f0c45;
      /*padding: 30px 20px;*/
    }

    .about-leadership-container {
      max-width: 1200px;
      margin: auto;
    }

    .about-leadership-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .about-leadership-text {
      flex: 1 1 50%;
      max-width: 550px;
    }

    .about-leadership-text small {
      color: #f84fb4;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 13px;
    }

    .about-leadership-text .about-leadership-heading {
      font-size: 32px;
      font-weight: 700;
      margin: 20px 0 15px;
      line-height: 1.4;
      color: #fff;
    }

    .about-leadership-text p {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 15px;
      color: #fff;
    }

    .about-leadership-btn {
      background: #b14dff;
      color: #fff;
      padding: 10px 25px;
      border-radius: 50px;
      display: inline-block;
      margin-top: 10px;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .about-leadership-btn:hover {
      background: #9c38ec;
    }

    .about-leadership-image {
      flex: 1 1 45%;
      text-align: center;
    }

    .about-leadership-image img {
      max-width:500px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* Countdown Row Styling */
   section.about-leadership-section {
      background-color: #0f0c45;
      /*padding:30px 20px;*/
    }

    .about-leadership-container {
      max-width: 1200px;
      margin: auto;
    }

    .about-leadership-countdown-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #0f0c45;
      gap: 40px;
      flex-wrap: wrap;
      padding: 40px 0;
    }

    .about-leadership-countdown-heading {
      flex: 1;
      min-width: 250px;
    }

    .about-leadership-countdown-heading small {
      font-size: 14px;
      color: #f84fb4;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
      margin-bottom: 10px;
    }

    .about-leadership-countdown-heading h2 {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
      color: #ffffff;
    }

    .about-leadership-timer {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .about-leadership-time-box {
     background: #1d1b5e;
  padding: 20px 0;
  width: 130px; /* Fixed width to make all boxes the same */
  height: 130px; /* Fixed height for uniform size */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* light border */
  box-sizing: border-box;
    }

    .about-leadership-time-box span {
      font-size:50px;
      font-weight: bold;
      color: #ffffff;
      display: block;
    }

    .about-leadership-time-box small {
      font-size:20px;
      color: #bbb;
      display: block;
      margin-top: 5px;
    }

    /* Responsive Styles */
  @media (max-width: 768px) {
  .about-leadership-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-leadership-text,
  .about-leadership-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-leadership-text {
    max-width: 100%;
    padding: 0 15px;
  }

  .about-leadership-text small {
    font-size: 12px;
  }

  .about-leadership-text .about-leadership-heading {
    font-size: 22px;
    line-height: 1.5;
     margin: 15px 0 10px;
color: #fff;
    
  }

  .about-leadership-text p {
    font-size: 14px;
    line-height: 1.7;
     color: #fff;
  }

  .about-leadership-btn {
    margin-top: 15px;
    font-size: 13px;
    padding: 10px 20px;
  }

  .about-leadership-image img {
    max-width: 90%;
    margin: auto;
  }

  .about-leadership-countdown-box {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px 10px 30px;
  }

  .about-leadership-countdown-heading {
    text-align: center;
  }

  .about-leadership-countdown-heading h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .about-leadership-countdown-heading small {
    font-size: 12px;
  }

  .about-leadership-timer {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-leadership-time-box {
    padding: 15px 15px;
    min-width: 65px;
    border-radius: 6px;
  }

  .about-leadership-time-box span {
    font-size: 22px;
  }

  .about-leadership-time-box small {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .about-leadership-text .about-leadership-heading {
    font-size: 20px;
  }

  .about-leadership-text p {
    font-size: 13px;
  }

  .about-leadership-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .about-leadership-time-box {
    padding: 12px 10px;
    min-width: 60px;
  }

  .about-leadership-time-box span {
    font-size: 20px;
  }

  .about-leadership-time-box small {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .about-leadership-text .about-leadership-heading {
    font-size: 18px;
  }

  .about-leadership-text p {
    font-size: 12px;
  }

  .about-leadership-time-box {
    padding: 10px 8px;
    min-width: 55px;
  }

  .about-leadership-time-box span {
    font-size: 18px;
  }

  .about-leadership-time-box small {
    font-size: 9px;
  }
}

/*ALLTHEAMS*/
  .TLS_ALLTHEMA-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      padding: 60px 0; /* Top and bottom padding */
       /*background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);*/
        background-color: #fff;
       
    }

    .TLS_ALLTHEMA-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      padding: 30px 20px;
      max-width: 320px;
      width: 100%;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .TLS_ALLTHEMA-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .TLS_ALLTHEMA-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #2d2d2d;
    }

    .TLS_ALLTHEMA-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }

    .TLS_ALLTHEMA-btn-wrapper {
      text-align: center;
      margin-top: 20px;
    }

    .TLS_ALLTHEMA-btn.icon-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 30px;
      background: linear-gradient(to right, #505add, #df42b1);
      color: #fff;
      text-decoration: none;
      overflow: hidden;
      z-index: 1;
      border: none;
      cursor: pointer;
      transition: color 0.4s ease;
    }

    .TLS_ALLTHEMA-btn.icon-btn i {
      font-size: 16px;
    }

    .TLS_ALLTHEMA-btn.icon-btn::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      border-radius: 30px;
    }

    .TLS_ALLTHEMA-btn.icon-btn:hover::before {
      transform: scaleX(1);
    }

    .TLS_ALLTHEMA-btn.icon-btn:hover {
      color: #000;
    }

    @media (max-width: 768px) {
      .TLS_ALLTHEMA-card {
        max-width: 100%;
      }
    }
    
    
     /* Speaker Section Wrapper */
 /* Speaker Section Wrapper */
.tls-speaker-section {
 /*background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%) !important;*/
  padding: 80px 20px;
  color: #fff;
}

/* Container */
.tls-container {
  max-width: 1140px;
  margin: auto;
}

/* Card Layout */
.tls-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual Card */
.tls-card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.tls-card:hover {
  transform: translateY(-10px);
}

/* Card Image */
.tls-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Gradient at Bottom */
.tls-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)) !important;
  color: #fff;
  z-index: 2;
}

.tls-overlay h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.tls-overlay p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #f107a3;
}

/* Social Icons - Right Side */
.tls-social-icons {
  position: absolute;
  right: -40px; /* initially hidden to the right */
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: right 0.3s ease;
  z-index: 3;
}

/* On Hover - Slide In From Right */
.tls-card:hover .tls-social-icons {
  right: 15px;
}

/* Social Icon Style */
.tls-social-icons a {
  background: #fff;
  color: #f107a3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}

.tls-social-icons a:hover {
  background: #f107a3;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .tls-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* Heading Styling */
.tls-heading {
  text-align: center;
  margin-bottom: 50px;
}

.tls-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #ffffff;
}

.tls-heading p {
  font-size: 18px;
  color: #f4caff;
  margin: 0;
}

/*past events*/
   .tls-past-events-section {
      /*padding: 60px 20px;*/
      text-align: center;
    }

    .tls-past-events-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #fff;
    }

    .tls-events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 50px;
    }

    .tls-event-card {
      background: #1b1a55;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .tls-event-card:hover {
      transform: translateY(-8px);
    }

    .tls-event-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .tls-event-content {
      padding: 20px;
    }

    .tls-event-title {
      font-size: 20px;
      margin: 10px 0;
      color: #fff;
    }

    .tls-event-subtitle {
      font-size: 14px;
      color: #ccc;
      margin-bottom: 20px;
    }

    .tls-past-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      background: linear-gradient(to right, #505add, #df42b1);
      border-radius: 30px;
      border: none;
      cursor: pointer;
      overflow: hidden;
      transition: color 0.4s ease, background 0.4s ease;
      z-index: 1;
    }

    .tls-past-btn::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      border-radius: 30px;
    }

    .tls-past-btn:hover::before {
      transform: scaleX(1);
    }

    .tls-past-btn:hover {
      color: #000;
    }

    @media (max-width: 600px) {
      .tls-past-events-section h2 {
        font-size: 26px;
      }

      .tls-event-card img {
        height: 180px;
      }
    }


.past-sponsors {
  text-align: center;
  padding: 60px 20px;
 background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);
  color: #000;
}

.past-sponsors h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.past-sponsors p {
  font-size: 1em;
  color: #222;
  margin-bottom: 40px;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.sponsor-logos img {
  height: 80px;
  width: auto;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sponsor-logos img:hover {
  transform: scale(1.05);
}

/* ðŸ”½ Mobile and Tablet View */
@media (max-width: 768px) {
  .sponsor-logos {
    flex-direction: column;
    align-items: center;
  }

  .sponsor-logos img {
    height: 60px;
    padding: 10px;
    width: 70%;
    max-width: 300px;
  }

  .past-sponsors h2 {
    font-size: 1.5em;
  }

  .past-sponsors p {
    font-size: 0.95em;
  }
}



     /*Footer*/
      footer {
      background:#0f0f0f;
      color: #f2f2f2;
      padding: 60px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    .footer-logo-block {
      text-align: left;
    }

    .footer-logo-block .managed {
      color: #da45ff;
      font-size: 12px;
      margin-bottom: 6px;
      letter-spacing: 1px;
    }

    .footer-logo-block img {
      width: 180px;
      filter: brightness(1.2);
    }

    .footer-links h4,
    .subscribe h4 {
      font-size: 15px;
      color: #fff;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
   font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer
    }

    .footer-links ul li a:hover {
      color:#f03e99;
    }

 .subscribe-form {
  display: flex;
  border: 1px solid #444;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #2e2e2e;
}

.subscribe-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background: transparent;
  color: #fff;
}

.subscribe-form input::placeholder {
  color: #aaa;
}

.subscribe-form button {
  position: relative;
  background: linear-gradient(to right, #505add, #df42b1);
  color: #fff;
  padding: 0 18px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.subscribe-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.subscribe-form button:hover::before {
  transform: scaleX(1);
}

.subscribe-form button:hover {
  color: #000;
}
    /* Bottom bar */
 .footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  background: #0f0f0f;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
  color: #aaa;
  font-size: 13px;
}

/* Copy text */
.footer-bottom-content p {
  margin: 5px 0;
}

/* Social icon container */
.footer-social {
  display: flex;
  gap: 10px;
  margin: 5px 0;
}

/* Shared styles for all icons */
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Individual brand colors */
.footer-social a.facebook {
  background-color: #1877F2;
}

.footer-social a.linkedin {
  background-color: #0A66C2;
}

.footer-social a.x-icon {
  background-color: #000;
  font-weight: bold;
  font-size: 16px;
}

/* Hover effects */
.footer-social a:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

/*Sponsrs package*/
   
   .tls-sponsor-card-wrapper {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }

  .tls-sponsor-card {
    max-width: 800px;
    margin: 0 auto;
  }

  .tls-sponsor-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #000;
  }

  .tls-sponsor-card p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #000;
  }

  .tls-sponsor-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .tls-stat {
    width: 150px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
  }

  .tls-stat h3 {
    font-size: 24px;
    margin: 0;
    color:#f03e99;
  }

  .tls-stat p {
    font-size: 14px;
    margin: 8px 0 0;
    color: #000;
  }

  .tls-past-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #505add, #df42b1);
    border-radius: 30px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease, background 0.4s ease;
    z-index: 1;
  }

  .tls-past-btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 30px;
  }

  .tls-past-btn:hover::before {
    transform: scaleX(1);
  }

  .tls-past-btn:hover {
    color: #000;
  }

  /* 3D Table Styling */
  .tls-sponsor-table-card {
    display: none;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    color: #000;
    border-radius: 16px;
  box-shadow: 0 30px 50px rgba(240, 62, 153, 0.25);
    transform: perspective(1000px) rotateX(1deg);
    transition: transform 0.3s ease;
  }

  .tls-sponsor-table-card:hover {
    transform: perspective(1000px) rotateX(0deg);
  }

  .tls-sponsor-table {
    width: 100%;
    border-collapse: collapse;
  }

  .tls-sponsor-table th,
  .tls-sponsor-table td {
    padding: 14px 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 14px;
  }

  .tls-sponsor-table th {
    background: #eee;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
  }

  .tls-note {
    margin-top: 12px;
    font-size: 13px;
  }

  .tls-footer {
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tls-footer a {
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tls-sponsor-stats {
      flex-direction: column;
      align-items: center;
    }
    .tls-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  /*test*/
/*.tls-testimonial-section-custom {*/
/*  background: linear-gradient(to right, #f6efff, #fff1f2);*/
/*  padding: 60px 20px;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*}*/

/*.testimonial-container {*/
/*  background: #ffffff;*/
/*  border-radius: 20px;*/
/*  padding: 40px 20px;*/
/*  max-width: 800px;*/
/*  width: 100%;*/
/*  text-align: center;*/
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);*/
/*}*/

/*.testimonial-title-custom {*/
/*  font-size: 28px;*/
/*  font-weight: 700;*/
/*  margin-bottom: 30px;*/
/*  position: relative;*/
/*  color: #111;*/
/*}*/

/*.testimonial-title-custom .quote-icon {*/
/*  font-size: 36px;*/
/*  display: block;*/
/*  margin-bottom: 10px;*/
/*  color: #444;*/
/*}*/

/*.testimonial-text-custom {*/
/*  font-size: 16px;*/
/*  color: #555;*/
/*  line-height: 1.7;*/
/*  margin-bottom: 30px;*/
/*  max-width: 640px;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*}*/

/*.testimonial-avatars {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: 12px;*/
/*  margin-bottom: 12px;*/
/*}*/

/*.grey-dot {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  background-color: #ccc;*/
/*  border-radius: 50%;*/
/*  opacity: 0.5;*/
/*}*/

/*.grey-dot.active {*/
/*  opacity: 1;*/
/*  border: 2px solid #444;*/
/*}*/

/*.testimonial-name {*/
/*  font-weight: 700;*/
/*  font-size: 16px;*/
/*  margin-bottom: 5px;*/
/*  color: #000;*/
/*}*/

/*.testimonial-role {*/
/*  font-size: 14px;*/
/*  color: #777;*/
/*  margin-bottom: 0;*/
/*}*/

/* Arrows */
/*.owl-nav {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  width: 100%;*/
/*  transform: translateY(-50%);*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  pointer-events: none;*/
/*}*/

/*.owl-nav button {*/
/*  background: rgba(255, 255, 255, 0.8);*/
/*  border: none;*/
/*  font-size: 24px;*/
/*  padding: 8px 14px;*/
/*  border-radius: 50%;*/
/*  cursor: pointer;*/
/*  pointer-events: all;*/
/*  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*  transition: all 0.3s;*/
/*}*/

/*.owl-nav button:hover {*/
/*  background: #fff;*/
/*}*/

/* Mobile responsive */
/*@media (max-width: 600px) {*/
/*  .testimonial-title-custom {*/
/*    font-size: 22px;*/
/*  }*/

/*  .testimonial-text-custom {*/
/*    font-size: 15px;*/
/*  }*/

/*  .grey-dot {*/
/*    width: 30px;*/
/*    height: 30px;*/
/*  }*/

/*  .owl-nav button {*/
/*    font-size: 18px;*/
/*  }*/
/*}*/
/* Section Background */
.TLS-testimonials {
  background: linear-gradient(to top, #ffffff, #fefefe);
  padding: 40px 20px;
  color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.TLS-testimonials .testimonial-title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #000;
}

/* Card Styles */
.TLS-testimonials .testimonial-card {
  background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);
  color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s;
  transform: perspective(800px) rotateY(5deg) scale(0.9);
  opacity: 0.6;
  min-height: 260px;
  border: 1px solid #e8e8e8;
}

.TLS-testimonials .owl-carousel .owl-item.center .testimonial-card {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(248, 79, 180, 0.4);
}

.TLS-testimonials .testimonial-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

.TLS-testimonials .quote {
  font-size: 15px;
  line-height: 1.6;
}

/* Owl Carousel Dots */
.TLS-testimonials .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.TLS-testimonials .owl-dot span {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  opacity: 0.5;
  transition: 0.3s;
  border: none;
}

.TLS-testimonials .owl-dot.active span {
  opacity: 1;
  transform: scale(1.2);
}

/* Owl Nav Arrows */
.TLS-testimonials .owl-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/*
.TLS-testimonials .owl-nav button.owl-prev,
.TLS-testimonials .owl-nav button.owl-next {
  background: linear-gradient(to right, #f84fb4, #ff7ecb);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: white;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.TLS-testimonials .owl-nav button span {
  display: none !important;
}

.TLS-testimonials .owl-nav button.owl-prev::before {
  content: '‹';
  font-size: 30px;
  line-height: 50px;
  display: block;
  text-align: center;
  color: black;
}

.TLS-testimonials .owl-nav button.owl-next::before {
  content: '›';
  font-size: 30px;
  line-height: 50px;
  display: block;
  text-align: center;
  color: black;
}
*/

/* Mobile Responsive */
@media (max-width: 768px) {
  .TLS-testimonials {
    padding: 30px 10px;
  }

  .TLS-testimonials .testimonial-card {
    padding: 30px 20px;
  }

  .TLS-testimonials .testimonial-title {
    font-size: 22px;
  }

  .TLS-testimonials .testimonial-card h3 {
    font-size: 18px;
  }

  .TLS-testimonials .quote {
    font-size: 14px;
  }

  .TLS-testimonials .owl-nav button.owl-prev,
  .TLS-testimonials .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  .TLS-testimonials .owl-nav button.owl-prev::before,
  .TLS-testimonials .owl-nav button.owl-next::before {
    font-size: 24px;
    line-height: 40px;
  }

  .TLS-testimonials .owl-dots {
    margin-top: 20px;
  }
}

/*past speakers*/
/* Past Speakers Section */
  .tls-filter {
      text-align: center;
      margin-bottom: 30px;
      
    }

    .tls-filter label {
      background: #1a126a;
      color: white;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      display: inline-block;
    }

    .tls-filter input[type="radio"] {
      display: none;
    }

    .tls-filter input[type="radio"]:checked + label {
      background: linear-gradient(to right, #4b4bc8, #f34ca3);
      color: #fff;
    }

    .tls-speaker-grid-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }

    .tls-speaker-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, max-content));
      gap: 20px;
      justify-content: center;
    }

    .tls-speaker-card {
      width: 140px;
      background: #f3f3f3;
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .tls-speaker-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 8px;
    }

    .tls-speaker-card h4 {
      font-size: 13px;
      font-weight:bold;
      margin: 5px 0 2px;
      color: black;
    }

    .tls-speaker-card p {
      font-size: 14px;
      margin: 0;
      color: black;
    }

    @media (max-width: 768px) {
      .tls-speaker-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
      }

      .tls-speaker-card {
        width: 100%;
      }
    }