/* Reset Styles */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --promo-offset: 0px;
}

html {
  scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
section[id],
[id] {
  scroll-margin-top: 120px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  --promo-offset: 0px;
}

a {
  color: unset;
}

button {
  border: 0px;
  outline: none;
}

ul {
  list-style: none;
}

/* Promotional Banner Modal */
.promo_banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  max-width: calc(100vw - 40px);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 120;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: promoSlideIn 0.4s ease-out;
}

@keyframes promoSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.promo_banner_close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  padding: 0;
  z-index: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.promo_banner_close:hover {
  color: #ff4d4d;
  transform: rotate(90deg);
}

.promo_banner_inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.promo_banner_text {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
  margin: 0;
  padding-right: 20px;
}

.promo_banner_text .highlight {
  color: #ff4d4d;
  font-weight: 700;
}

.promo_banner_timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
}

.promo_time_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.promo_time_value {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.promo_time_label {
  font-size: 9px;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.promo_banner_cta {
  background-color: #ff4d4d;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
  border: none;
}

.promo_banner_cta:hover,
.promo_banner_cta:focus-visible {
  background-color: #e53935;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.promo_banner.promo-hidden {
  display: none;
}

body.promo-visible .header {
  top: 0;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .promo_banner {
    bottom: 16px;
    right: 16px;
    width: 260px;
    max-width: calc(100vw - 32px);
    padding: 14px;
    gap: 10px;
  }

  .promo_banner_text {
    font-size: 13px;
    padding-right: 18px;
  }

  .promo_time_value {
    font-size: 18px;
  }

  .promo_time_label {
    font-size: 8px;
  }

  .promo_banner_cta {
    padding: 9px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .promo_banner {
    bottom: 12px;
    right: 12px;
    width: 240px;
    max-width: calc(100vw - 24px);
    padding: 12px;
    gap: 8px;
    border-radius: 12px;
  }

  .promo_banner_close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
  }

  .promo_banner_text {
    font-size: 12px;
    padding-right: 16px;
  }

  .promo_banner_timer {
    gap: 4px;
  }

  .promo_time_value {
    font-size: 16px;
  }

  .promo_time_label {
    font-size: 7px;
  }

  .promo_banner_cta {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Header Section */

.header {
  width: 100%;
  margin: 0px;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  z-index: 100;
}

.header_menu {
  max-width: 1384px;
  width: 100%;
  margin: 0px;
  padding-inline: 16px;
  padding-block: 17px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 30px;
  z-index: 100;
}

.header .logo {
  width: 100px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo img {
  width: 100%;
}

.header .nav-menu-links {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.header .nav-menu-links li {
  letter-spacing: 2px;
}

.header .btn {
  background-color: black;
  color: white;
}

.menu {
  width: 28px;
  height: 28px;
}

.menu .hamburger {
  width: 100%;
  height: 100%;
}

.mobile_nav_bar {
  display: none;
  position: absolute;
  height: 100vh;
  top: 0px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 140px 0px 0px;
  z-index: 90;
}

@media (max-width: 768px) {
  .mobile_nav_bar {
    padding: 180px 0px 0px;
  }
}

@media (max-width: 480px) {
  .mobile_nav_bar {
    padding: 200px 0px 0px;
  }
}

.mobile_nav_bar .nav-menu-links {
  display: grid;
  gap: 20px;
}

/* Desktop Navigation */
.nav-menu {
  display: none;
}

.hide-on-large {
  display: none;
}

/* Mobile Navigation */
.menu {
  cursor: pointer;
}

.menu img {
  width: 30px;
}

.hamburger {
  display: inline-block;
}

.hamburger.hide {
  display: none;
}

.mobile_nav_bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile_nav_bar a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.mobile_nav_bar a:hover {
  background: #f4f4f4;
}

/* Mobile View */
@media (max-width: 768px) {
  .hide-on-large {
    display: block;
  }

  /* Header Mobile Improvements */
  .header {
    padding: 8px 12px;
    gap: 0;
  }

  .header_menu {
    padding-inline: 12px;
    padding-block: 12px;
    border-radius: 16px;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .header .logo {
    width: 80px !important;
    flex-shrink: 0;
  }

  .menu {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .menu img {
    width: 24px;
    height: 24px;
  }

  /* Hero Mobile Improvements */
  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
    padding-inline: 16px;
  }

  .hero .hero_content {
    gap: 20px;
    padding-block: 30px;
  }

  .hero .hero_content .span_cont {
    padding-left: 12px;
    border-left-width: 3px;
    gap: 6px;
  }

  .hero .hero_content span {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .hero .hero_content h1 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero .hero_content p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero .hero_content .date_cont {
    font-size: 13px;
    gap: 4px;
  }

  .hero .hero_content .date_no {
    font-size: 24px;
    margin: 0px 2px;
  }

  .hero .hero_content .line {
    margin: 0px 3px;
  }

  .btn_cont {
    gap: 12px;
  }

  .btn {
    font-size: 13px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 6px 10px;
  }

  .header_menu {
    padding-inline: 10px;
    padding-block: 10px;
    border-radius: 12px;
    gap: 10px;
  }

  .header .logo {
    width: 70px !important;
  }

  .menu {
    width: 22px;
    height: 22px;
  }

  .menu img {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
    padding-inline: 12px;
  }

  .hero .hero_content {
    gap: 16px;
    padding-block: 24px;
  }

  .hero .hero_content .span_cont {
    padding-left: 10px;
    border-left-width: 2px;
  }

  .hero .hero_content span {
    font-size: 13px;
  }

  .hero .hero_content h1 {
    font-size: 24px;
    line-height: 1.15;
  }

  .hero .hero_content p {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero .hero_content .date_cont {
    font-size: 12px;
  }

  .hero .hero_content .date_no {
    font-size: 20px;
  }

  .btn {
    font-size: 12px;
    padding: 12px 18px;
  }
}

/* Hero  */

.hero {
  position: relative;
  padding-inline: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
  padding-top: 170px;
  padding-bottom: 80px;
  gap: 20px;
  background-color: black;
  color: white;
  overflow: hidden;
}

/* YouTube video background */
.hero_video_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero_video_bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}


.hero .hero_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero .hero_content {
  display: flex;
  flex-direction: column;
  max-width: 850px;
  width: 100%;
  gap: 32px;
  padding-block: 60px;
  z-index: 2;
  text-align: left;
}



.hero .hero_content .span_cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid #ff4d4d;
  padding-left: 20px;
}

.hero .hero_content span {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}


.hero .hero_content h1 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.hero .hero_content p {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  max-width: 650px;
}



.hero .hero_content .date {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
  color: #f6f6f6;
}

.hero .hero_content .date_cont {
  font-family: "Raleway", sans-serif;
  display: flex;
  align-items: center;
  justify-items: center;
  flex-wrap: wrap;
  width: fit-content;
  font-size: 16px;
  color: #f6f6f6c5;
  gap: 2px;
}

.hero .hero_content .date_no {
  font-size: 32px;
  margin: 0px 3px 0px 4px;
  width: fit-content;
  color: #ffff;
}

.hero .hero_content .line {
  margin: 0px 5px 0px 4px;
  color: #ffff;
}

.hero .hero_img {
  display: none;
}


/* Subsidaries */
.subsidaries {
  padding-block: 30px;
  padding-inline: 20px;
  background-color: transparent;
  overflow: hidden;
}

.subsidaries_cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  padding-block: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.subsidaries_cont img {
  width: auto;
  max-width: clamp(70px, 10vw, 120px);
  height: auto;
  max-height: clamp(35px, 5vw, 55px);
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: block;
  opacity: 0.75;
  filter: brightness(1.3) contrast(0.95);
  mix-blend-mode: normal;
}

.subsidaries_cont img:hover {
  transform: scale(1.1);
  filter: brightness(1.05) saturate(1.1);
  opacity: 1;
}

@media screen and (min-width: 1200px) {
  .subsidaries_cont {
    gap: 20px;
  }
  
  .subsidaries_cont img {
    max-width: 120px;
    max-height: 55px;
  }
}

@media screen and (max-width: 768px) {
  .subsidaries {
    padding-block: 25px;
  }
  
  .subsidaries_cont {
    gap: 16px;
    padding-block: 15px;
  }
  
  .subsidaries_cont img {
    max-width: 85px;
    max-height: 42px;
  }
}

@media screen and (max-width: 480px) {
  .subsidaries {
    padding-block: 20px;
  }
  
  .subsidaries_cont {
    gap: 12px;
    padding-block: 12px;
  }
  
  .subsidaries_cont img {
    max-width: 70px;
    max-height: 35px;
  }
}

/* About_intro_cont  */
.about_intro {
  padding-inline: 20px;
}

.about_intro .section_container {
  display: grid;
  gap: 16px;
}

.about_intro .section_container h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about_intro h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

/* YouTube */
.youtube_section {
  padding-inline: 20px;
}

.youtube_section_cont {
  position: relative;
  width: 100%;
}

.youtube_section_cont .iframe {
  width: 100%;
  height: 100%;
}

.carousel-container {
  position: relative;
  /* width: 80%;
  max-width: 800px; */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
}

.carousel-wrapper {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease-in-out;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  z-index: 99;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Why Attend */
.why_attend {
  background-color: #000000;
  color: #ffff;
  padding-inline: 20px;
}

.why_attend_cont {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.why_attend_content {
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding-inline: 16px;
  padding-block: 20px;
}

.why_attend .why_attend_cont .why_attend_content .listedItems_cont {
  display: grid;
  gap: 10px;
}

.why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems {
  display: flex;
  align-items: start;
  gap: 10px;
  padding-block: 8px;
}

.why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems img {
  width: 24px;
  height: 24px;
}

.why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems p {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.why_attend .why_attend_cont .why_attend_img_cont {
  /* width: 654px;
  height: 566px; */
  border-radius: 8px;
  overflow: hidden;
}

.why_attend .why_attend_cont .why_attend_img_cont img {
  width: 100%;
  height: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: auto;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 10px;
  padding: 10px;
  background-color: transparent;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot:hover,
.dot:focus-visible {
  background-color: #666;
  transform: scale(1.2);
  outline: 2px solid #ff4d4d;
  outline-offset: 2px;
}

.dot.active {
  background-color: #333;
}

.dot.active:hover,
.dot.active:focus-visible {
  background-color: #000;
}

/* Themes & Topics */
.theme_topics {
  padding-inline: 20px;
  background-color: #ffff;
}

.theme_topics_cont {
  display: grid;
  gap: 20px;
  padding-block: 48px;
  border: 1px solid #00000069;
  border-radius: 8px;
  padding-inline: 20px !important;
}

.theme_topics_cont .content {
  display: grid;
  gap: 20px;
}

.theme_topics_cont .content .content-item {
  display: grid;
  gap: 10px;
}

.theme_topics_cont .content .content-item .content_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  text-align: start;
  font-size: 18px;
  line-height: 23.4px;
  letter-spacing: -0.36px;
  outline: none;
  color: white;
  background-color: #000000;
  border-radius: 8px;
}

.theme_topics_cont .content .content-item .details_cont .title {
  font-size: 18px;
  font-weight: 500;
}

.theme_topics_cont .content .content-item .details_cont {
  padding-inline: 20px;
  display: grid;
  gap: 20px;
  padding-bottom: 20px;
}

.theme_topics_cont .content .content-item.active .details_cont .details_cont_item:nth-child(even) {
  justify-self: flex-end;
}

.theme_topics_cont .content .content-item .details_cont .details_cont_item {
  font-size: 16px;
  padding: 16px;
  border-radius: 8px;
  background-color: #f0f0f0;
  color: black;
}

.theme_topics_cont .content .content-item .details_cont .details_cont_item ul {
  display: grid;
  margin-top: 10px;
  gap: 10px;
  list-style: disc;
  padding-inline: 20px;
}

.theme_topics_cont .content .content-item .details_cont .details_cont_item ul li {
  margin: 0px;
}

.theme_topics_cont .content .content-item .content_btn::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
}

.theme_topics_cont .content .content-item .details_cont {
  display: none;
  padding: 16px 15px;
  font-size: 14px;
  color: #333;
}

.theme_topics_cont .content .content-item.active .details_cont {
  display: grid;
}

.theme_topics_cont .content .content-item.active .content_btn::after {
  content: "-";
}

/* ------------------- */

.theme_topic_content_cont {
  display: grid;
  gap: 40px;
}

.theme_heading {
  display: grid;
  gap: 10px;
}

.theme_heading p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.topics_list_cont {
  display: grid;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.topics_list_item_cont:nth-child(even) {
  display: flex;
  justify-content: end;
}

.topics_list_items {
  display: grid;
  max-width: 900px;
  gap: 8px;
  border: 1px solid #454545;
  padding: 28px 18px;
}

.topics_list_items h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #000000;
}

.topics_list_items p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #454545;
}

.topic_note {
  font-size: 18px;
  font-weight: 400;
  color: #3d3d3d;
  line-height: 38px;
}

.topic_note span {
  font-weight: 500;
}

/* Who Should Attend */
.who_attend {
  padding-inline: 20px;
  background-color: #ffff;
}

.who_attend .who_attend_cont {
  display: grid;
  gap: 40px;
  padding-block: 48px;
  border: 1px solid #00000069;
  border-radius: 8px;
  padding-inline: 20px !important;
}

.who_attend_content_cont {
  display: grid;
  gap: 40px;
  padding-inline: 0px;
}

.who_attend_content_cont .who_attend_note {
  color: #454545;
  display: grid;
  gap: 4px;
}

.who_attend_content_cont .who_attend_note h4 {
  font-weight: 600;
}

.who_attend_content_cont .who_attend_note p {
  font-weight: 500;
}

.who_attend_list_items {
  display: grid;
  gap: 40px;
}

.who_attend_item_cont:nth-child(even) {
  display: flex;
  justify-content: end;
}

.who_attend_items {
  display: grid;
  max-width: 868px;
  gap: 20px;
  border: 1px solid #454545;
  padding: 28px 18px;
  background-color: #f0f0f0;
}

.who_attend .who_attend_items .content h3 {
  font-size: 24px;
}

.who_attend .who_attend_items .content {
  display: grid;
  gap: 10px;
}

.who_attend .who_attend_items .listedItems_cont .listedItems {
  display: flex;
  align-items: center;
  gap: 10px;
}

.who_attend .who_attend_items .listedItems_cont .listedItems p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #454545;
}

/* Pricing */
.pricing {
  padding-inline: 20px;
  background-color: #ffff;
}

.pricing_cont {
  display: grid;
  gap: 40px;
  padding-block: 48px;
  border: 1px solid #00000069;
  border-radius: 8px;
  padding-inline: 20px !important;
}

/* Pricing Switcher */
.pricing_switcher {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
  z-index: 5;
}

.location_btn {
  background: #f0f0f0;
  color: #666;
  border: 1px solid #ddd;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.location_btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.location_btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing_location_content {
  display: none;
  animation: pricing_fade_in 0.6s ease-out;
}

.pricing_location_content.active {
  display: block;
}

@keyframes pricing_fade_in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.pricing_item_list_cont {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding-block: 30px;
  align-items: stretch;
}

.pricing_item_list_cont .pricing_list_item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding-block: 40px;
  height: 100%;
}

.pricing_item_list_cont .pricing_list_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


.pricing_item_list_cont .silver {
  box-shadow: 0px 1px 7px rgb(0 0 0 / 20%);
}

.pricing_item_list_cont .gold {
  background-color: #000;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.pricing_item_list_cont .gold .heading,
.pricing_item_list_cont .gold .heading .new-price,
.pricing_item_list_cont .gold .details .item_listing_child p {
  color: #fff !important;
}

.pricing_item_list_cont .gold .heading .old-price {
  color: #aaa !important;
}

.pricing_item_list_cont .gold .dashed-line {
  background: repeating-linear-gradient(to right,
      white 0px,
      white 5px,
      transparent 5px,
      transparent 10px);
}

.pricing_item_list_cont .gold .dashed-line::before {
  border-color: transparent transparent transparent white;
}

.pricing_item_list_cont .gold .dashed-line::after {
  border-color: transparent white transparent transparent;
}

.pricing_item_list_cont .gold .btn {
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
  border: 1px solid #fff;
  width: 100%;
}

.pricing_item_list_cont .gold .btn:hover {
  background-color: #ff4d4d;
  color: #fff;
  border-color: #ff4d4d;
  transform: scale(1.02);
}



.pricing_item_list_cont .diamond {
  background-color: #eaffdf;
  box-shadow: 0px 1px 7px rgb(0 0 0 / 20%);
}

.pricing_item_list_cont .virtual {
  background-color: #e8f4ff;
  box-shadow: 0px 1px 7px rgb(0 0 0 / 20%);
}

.pricing_item_list_cont .pricing_list_item .heading {
  padding-block: 30px;
  padding-inline: 30px;
  color: #000000;
}

.pricing_item_list_cont .pricing_list_item .heading H4 {
  font-weight: 600;
  text-transform: uppercase;
}

.pricing_item_list_cont .pricing_list_item .heading p {
  font-size: 32px;
  line-height: 28.8px;
}

.pricing_item_list_cont .pricing_list_item .heading .old-price {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing_item_list_cont .pricing_list_item .heading .new-price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.pricing_item_list_cont .pricing_list_item .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 30px;
  flex: 1;
  justify-content: space-between;
}

.pricing_item_list_cont .pricing_list_item .details .details_paragraph {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}

.pricing_item_list_cont .pricing_list_item .heading {
  display: grid;
  gap: 8px;
}

.dashed-line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right,
      black 0px,
      black 5px,
      transparent 5px,
      transparent 10px);
  position: relative;
  margin: 20px 0;
}

.dashed-line::before,
.dashed-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 40px;
}

.dashed-line::before {
  left: 0;
  border-color: transparent transparent transparent black;
}

.dashed-line::after {
  right: 0;
  border-color: transparent black transparent transparent;
}

.pricing_item_list_cont .pricing_list_item .btn {
  width: 100%;
}

.pricing_item_list_cont .pricing_list_item .items_listing {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  padding-block: 36px;
}

.pricing_item_list_cont .pricing_list_item .items_listing .item_listing_child {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000000;
}

/* Experts */
.experts .experts_cont {
  display: grid;
  gap: 50px;
  padding-inline: 20px !important;
}

.experts .expert_listing_content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.expert_card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  height: 450px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert_card:focus-within {
  outline: 2px solid #ff4d4d;
  outline-offset: 4px;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.3);
}

.expert_card img[role="button"]:focus {
  outline: 2px solid #ff4d4d;
  outline-offset: 4px;
}

.expert_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.5s ease;
}

.expert_card:hover img {
  transform: scale(1.15);
  opacity: 0.4;
}

.expert_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.7) 30%,
      transparent 80%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.expert_card:hover .expert_overlay {
  opacity: 1;
}

.expert_overlay_content {
  color: #fff;
  width: 100%;
}

.expert_name,
.expert_role,
.expert_bio {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.expert_card:hover .expert_name,
.expert_card:hover .expert_role,
.expert_card:hover .expert_bio {
  opacity: 1;
  transform: translateY(0);
}

.expert_card:hover .expert_name {
  transition-delay: 0.1s;
}

.expert_card:hover .expert_role {
  transition-delay: 0.2s;
}

.expert_card:hover .expert_bio {
  transition-delay: 0.3s;
}

.expert_name {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.expert_role {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ff4d4d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.expert_bio {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #d1d1d1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.expert_instagram_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
}

.expert_card:hover .expert_instagram_link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.expert_instagram_link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.expert_instagram_link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
  height: 100vh;
  width: 100vw;
  padding-top: 100px;
  z-index: 1000;
}

.overlay .close {
  position: absolute;
  top: 8px;
  right: 28px;
  font-size: 32px;
}

.modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 50px;
}

.modal-content {
  display: grid;
  gap: 20px;
  position: relative;
  background: white;
  border-radius: 10px;
  max-width: 500px;
  max-height: 600px;
  overflow-y: auto;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.modal-content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-description {
  font-size: 16px;
}

.overlay .modal-content button {
  width: fit-content;
  padding: 8px 20px;
  justify-self: flex-end;
  border-radius: 8px;
  font-size: 18px;
  margin-top: 20px;
}

.overlay {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  height: fit-content;
  text-align: center;
}

.close {
  font-size: 24px;
  cursor: pointer;
  float: right;
}

/* Speaker styles consolidated above */

/* Testimonials */
.testimonies {
  /* padding-inline: 20px; */
  background-color: #ffff;
}

.testimonies .pricing_heading_cont p {
  font-size: 16px;
}

.testimonies .testimonies_cont {
  display: grid;
  gap: 10px;
  padding-inline: 20px !important;
}

.testimonies_cont .testimonies_content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding-block: 30px;
}

.testimonies_cont .testimonies_content .image_cont {
  width: 100%;
  height: 100%;
}

.testimonies_cont .testimonies_content img {
  width: 100%;
  height: 100%;
}

.testimonies_cont .testimonies_content .content_cont {
  border: 1px solid #454545;
  padding-inline: 20px;
  padding-block: 80px;
  /* padding-inline: 40px; */
  /* padding-block: 83px; */
}

.testimonies_cont .testimonies_content .heading {
  display: grid;
  gap: 2px;
}

.testimonies_cont .sectionHeading {
  letter-spacing: 0px;
}

.testimonies_cont .testimonies_content .heading h5 {
  font-size: 24px;
  font-weight: 500;
}

.testimonies_cont .testimonies_content .heading p {
  font-size: 16px;
  font-weight: 400;
}

.testimonies_cont .testimonies_content .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding-block: 20px 40px;
}

.testimonies_cont .testimonies_content .tags_cont {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonies_cont .testimonies_content .tags_cont .tags {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.testimonies_cont .testimonies_content .tags_cont .tags .title {
  color: #454545;
  font-weight: 400;
}

/* .testimonies_content {
  display: none;
  flex-direction: column;
  gap: 1rem;
} */
.testimonies .section_container {
  padding-top: 20px;
  padding-inline: 0px;
}

.testimonies .testimonies_cont .section_container .carousel-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.testimonies_content.active {
  display: flex;
}

.testimonies_nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonies_nav button {
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

.testimonies_nav button:hover {
  background-color: #555;
}

/* Video testimonials (image-style layout) */
.video_testimonials_header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.video_testimonials_label {
  font-size: 14px;
  font-weight: 500;
  color: #7c3aed;
  letter-spacing: 0.5px;
}

.video_testimonials_title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
  margin: 0;
}

.video_testimonial_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.video_testimonial_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.video_testimonial_card {
  animation: video_testimonial_fade_slide_right 1.2s ease-out backwards;
}

.video_testimonial_card:nth-child(1) {
  animation-delay: 0.1s;
}

.video_testimonial_card:nth-child(2) {
  animation-delay: 0.25s;
}

.video_testimonial_card:nth-child(3) {
  animation-delay: 0.4s;
}

.video_testimonial_card:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes video_testimonial_fade_slide_right {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.video_testimonial_grid::-webkit-scrollbar {
  display: none;
}

.video_testimonial_card {
  min-width: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: opacity 0.2s ease;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  position: relative;
}

.video_testimonial_card:hover {
  box-shadow: none;
  opacity: 1;
}

.video_testimonial_card>.video_testimonial_video {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 320px;
  object-fit: cover;
  display: block;
  background: transparent;
}

.video_testimonial_card>.video_testimonial_mute_btn,
.video_testimonial_card>.video_testimonial_play_btn {
  grid-row: 1;
  grid-column: 1;
}

.video_testimonial_card>.video_testimonial_avatar,
.video_testimonial_card>.video_testimonial_name,
.video_testimonial_card>.video_testimonial_title {
  grid-row: 2;
  grid-column: 1;
}

.video_testimonial_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video_testimonial_mute_btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video_testimonial_mute_btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}

.mute_icon {
  width: 20px;
  height: 20px;
  background: currentColor;
  color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.video_testimonial_mute_btn.unmuted .mute_icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3C/svg%3E");
}

.video_testimonial_play_btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.video_testimonial_play_btn:hover {
  transform: scale(1.08);
  background: #fff;
}

.video_testimonial_card.playing .video_testimonial_play_btn {
  opacity: 0;
  pointer-events: none;
}

.video_testimonial_card.playing .video_testimonial_play_btn:hover {
  opacity: 1;
}

.play_icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #333;
  margin-left: 4px;
}

.video_testimonial_card {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 40px 1fr;
  position: relative;
  background: transparent;
  box-shadow: none;
}

.video_testimonial_card>.video_testimonial_video {
  grid-row: 1;
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 320px;
  object-fit: cover;
  display: block;
  background: transparent;
}

.video_testimonial_card>.video_testimonial_mute_btn,
.video_testimonial_card>.video_testimonial_play_btn {
  grid-row: 1;
  grid-column: 1 / -1;
}

.video_testimonial_card>.video_testimonial_avatar {
  grid-row: 2;
  grid-column: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin: 16px 12px 0 16px;
}

.video_testimonial_card>.video_testimonial_name {
  grid-row: 2;
  grid-column: 2;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 16px 16px 0 0;
  align-self: end;
  min-width: 0;
}

.video_testimonial_card>.video_testimonial_title {
  grid-row: 3;
  grid-column: 2;
  font-size: 13px;
  color: #666;
  font-weight: 400;
  margin: 2px 16px 16px 0;
  align-self: start;
  min-width: 0;
}

.video_testimonial_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video_testimonial_name {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.video_testimonial_title {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.video_testimonial_nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
  padding-right: 4px;
}

.video_testimonial_nav_btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #7c3aed;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.video_testimonial_nav_btn:hover {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
}

.day-title {
  width: 30%;
  background: #222;
  color: white;
  padding: 20px;
  position: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.day-title h2 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 24px;
}

.modules {
  width: 70%;
  margin-left: 30%;
  padding: 20px;
  overflow-y: scroll;
  height: 100vh;
  scroll-behavior: smooth;
}

.module {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h3 {
  margin-bottom: 10px;
  color: #333;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 8px;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Left Sidebar */
.sidebar {
  width: 25%;
  background: #222;
  color: white;
  padding: 20px;
  height: 100vh;
  position: fixed;
  overflow-y: auto;
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

.day {
  padding: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: 0.3s;
  border-left: 5px solid transparent;
}

.day:hover {
  background: rgba(255, 255, 255, 0.1);
}

.day.active {
  background: rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffcc00;
}

/* Right Content */
.modules {
  width: 75%;
  margin-left: 25%;
  padding: 20px;
  overflow-y: scroll;
  height: 100vh;
  scroll-behavior: smooth;
}

.module-group {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* FAQ */
.faq_cont {
  display: grid;
  gap: 20px;
  padding-block: 48px;
  border: 1px solid #00000069;
  border-radius: 8px;
  padding-inline: 20px !important;
}

.faq_cont .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq_cont .content .faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0px;
}

.faq_cont .content .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 12px;
  padding-inline-end: 30px;
  line-height: 20px;
  text-align: start;
  font-size: 16px;
  outline: none;
  color: #3d3d3d;
  border-radius: 8px;
}

.faq_cont .content .faq-item .faq-answer {
  padding-inline: 20px;
}

.faq_cont .content .faq-item .faq-answer p {
  font-size: 16px;
}

.faq_cont .content .faq-item .faq-answer ul {
  display: grid;
  margin-top: 10px;
  gap: 8px;
  list-style: disc;
  padding-inline: 20px;
}

.faq_cont .content .faq-item .faq-answer ul li {
  margin: 0px;
}

/* -------------------- */

.faq {
  /* max-width: 600px; */
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  margin-bottom: 10px;
  /* border-bottom: 1px solid #ddd; */
}

/* .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "-";
}

/* ------------------- */

/* Footer */
.footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding-block: 100px 40px !important;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff4d4d, #f97316, #ff4d4d);
  background-size: 200% 100%;
  animation: footer-gradient 5s linear infinite;
}

@keyframes footer-gradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.footer .footer_cont {
  padding-inline: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer .footer_main {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.footer .brand_col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer .logo {
  display: flex;
  align-items: center;
  width: 160px;
}

.footer .logo img {
  width: 100%;
  height: auto;
}

.footer .brand_desc {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 320px;
}

.footer .socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer .social_link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.footer .social_link:hover {
  background: #ff4d4d;
  transform: translateY(-5px);
  border-color: #ff4d4d;
}

.footer .social_link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  display: block;
}

.footer .footer_menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer .footer_menu .contact_col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer h5 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 0;
  white-space: nowrap;
}

.footer .details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .details p,
.footer .details a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .details a:hover {
  color: #ff4d4d;
}

.footer .contact_info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer .contact_info i {
  color: #ff4d4d;
  font-size: 16px;
  margin-top: 2px;
}

.footer .bottom_bar {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .copyright {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: #6b7280;
}

.footer .legal_links {
  display: flex;
  gap: 24px;
}

.footer .legal_links a {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .legal_links a:hover {
  color: #ffffff;
}

.footer .brandText {
  display: none;
}

@media screen and (max-width: 900px) {
  .footer .footer_main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer .footer_menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .footer .footer_menu {
    grid-template-columns: 1fr;
  }

  .footer .bottom_bar {
    flex-direction: column;
    text-align: center;
  }
}


/* Reuables  */

.sectionBlock {
  padding-block: 100px;
}

.section_block_small {
  padding-block: 60px;
}

.sectionHeading {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2px;
}

.FiraSansCondensed {
  font-family: "Fira Sans Condensed", sans-serif;
}

.Raleway {
  font-family: "Raleway", sans-serif;
}

.section_container {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding-inline: 0px;
}

.btn_cont {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  font-size: 14px;
  font-weight: 600;
  padding: 16px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #ff4d4d;
  border-color: #ff4d4d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2);
}


.btn_other {
  background-color: #3d3d3d;
  color: white;
  cursor: pointer;
}

.pt10 {
  padding-top: 20px;
}

.hide-on-large {
  display: none;
}

@media screen and (min-width: 1000px) {
  .hide-on-large {
    display: inline-block;
  }

  .menu {
    display: none;
  }

  .video_testimonial_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .mobile_nav_bar {
    padding: 160px 0px 0px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .header .logo {
    width: 160px !important;
  }

  .section_container {
    padding-inline: 20px;
  }

  .hero .hero_container {
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }

  .why_attend_cont {
    grid-template-columns: repeat(2, 1fr);
  }


  .hero .hero_content {
    gap: 16px;
  }

  .hero .hero_content span {
    font-size: 22px;
  }

  .hero .hero_content h1 {
    font-size: 72px;
    letter-spacing: -2px;
  }



  .hero .hero_content p {
    font-size: 20px;
    line-height: 36px;
  }

  .btn {
    font-size: 16px;
  }

  .pricing_item_list_cont {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonies_cont .pricing_heading_cont p {
    font-size: 20px;
  }

  .testimonies_cont .testimonies_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-block: 30px;
  }

  .theme_topics_cont .content .content-item.active .details_cont .details_cont_item:nth-child(even) {
    width: 50% !important;
  }

  .theme_topics_cont .content .content-item .details_cont .details_cont_item {
    width: 50% !important;
  }

  .footer .footer_menu {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
  }
}

@media screen and (min-width: 600px) {
  .header_menu {
    padding-inline: 20px;
    padding-right: 30px;
  }

  .menu {
    width: 36px;
    height: 36px;
  }

  .btn_cont {
    flex-direction: row;
    gap: 20px;
  }

  .sectionHeading {
    font-size: 32px;
  }

  .why_attend .why_attend_cont .why_attend_content .listedItems_cont {
    gap: 16px;
  }

  .why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems {
    gap: 20px;
  }

  .why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems {
    padding-inline: 20px;
  }

  .why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems p {
    font-size: 20px;
  }

  .why_attend .why_attend_cont .why_attend_content .listedItems_cont .listedItems {
    padding-inline: 10px;
  }

  .why_attend_content {
    padding-inline: 24px;
    padding-block: 30px;
  }

  .theme_topics,
  .who_attend,
  .pricing,
  .faq,
  .testimonies,
  .footer {
    padding-inline: 40px;
  }

  .theme_topics_cont {
    padding-block: 60px;
    padding-inline: 40px !important;
  }

  .topic_note {
    font-size: 24px;
  }

  .topics_list_items {
    padding: 28px;
  }

  .topics_list_items p {
    font-size: 20px;
  }

  .topics_list_items h3 {
    font-size: 20px;
  }

  .experts .expert_listing_content {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonies_cont .testimonies_content .heading {
    letter-spacing: 2px;
  }

  .theme_topics_cont .content .content-item.active .details_cont .details_cont_item:nth-child(even) {
    width: 80%;
  }

  .theme_topics_cont .content .content-item .details_cont .details_cont_item {
    width: 80%;
  }

  .testimonies .testimonies_cont .section_container .carousel-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .video_testimonial_grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .video_testimonials_title {
    font-size: 32px;
  }

  .faq_cont .content .faq-item .faq-question {
    font-size: 16px;
  }

  /* .testimonies .testimonies_cont {
    padding-inline: 20px !important;
  } */
  .theme_heading p {
    font-size: 20px;
  }

  .who_attend_content_cont {
    gap: 60px;
    padding-inline: 20px;
  }

  .who_attend_content_cont {
    padding-inline: 40px;
  }

  .footer .brandText {
    font-size: 5rem;
    text-align: center;
    letter-spacing: 6px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background-color: #ff4d4d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

.back-to-top:active {
  transform: translateY(-1px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Loading States */
.video_testimonial_card {
  position: relative;
}

.video_testimonial_card.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.video_testimonial_video {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video_testimonial_video.loaded {
  opacity: 1;
}

/* Image loading placeholder */
img[loading="lazy"] {
  background-color: #f0f0f0;
  min-height: 200px;
}

img[loading="lazy"].loaded {
  background-color: transparent;
}