/* Header */
#site-header .site-header-container {
  width: 100%;
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  background: transparent;
  border-bottom: 1px solid #ffffff0f;
}

#site-header .site-header-container.scrolled {
  backdrop-filter: blur(8px);
  position: fixed;
}

#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

#site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 150px;
  font-weight: 800;
  color: #fff;
}

#site-header .site-nav ul {
  display: flex;
  gap: 50px;
  align-items: center;
}

#site-header .site-nav li {
  padding-block: 10px;
}
#site-header .site-nav li:hover {
  color: var(--secondary);
}

#site-header .site-nav li.active {
  border-bottom: 2px solid var(--secondary);
}

.ham {
  display: none;

  .hamburger {
    /* height: 22px; */
    height: 100%;
    width: 40px;
    max-width: 40px;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    justify-content: space-between;
    background: var(--primary-color);
    padding: 10px;
    border-radius: calc(var(--radius) * 2);

    span {
      display: block;
      height: 2px;
      background-color: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    &.active {
      span {
        &:nth-child(1) {
          transform: rotate(45deg) translate(6px, 6px);
        }

        &:nth-child(2) {
          opacity: 0;
        }

        &:nth-child(3) {
          transform: rotate(-45deg) translate(6px, -5px);
        }
      }
    }
  }
}

/* -- Aside Menu -- */
.aside-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  z-index: 999;
  transition: left 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);

  .aside-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    color: white;

    .cancel-menu {
      position: absolute;
      top: 40px;
      right: 40px;
      font-size: 40px;
      cursor: pointer;
    }

    .menu {
      ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        li {
          a {
            font-size: 18px;
            font-weight: 600;
            transition: color 0.3s;

            &:hover {
              color: var(--secondary-color);
            }
          }
        }
      }
    }
    .socials {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid var(--secondary-color);
      ul {
        display: flex;
        gap: 10px;

        li {
          a {
            width: 30px;
            height: 30px;
            font-size: 12px;
            background: #000000cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary-color);
            color: var(--white);
          }
        }
      }
    }

    .pass {
      margin-top: 50px;
    }
  }

  &.active {
    left: 0;
  }
}

/* .nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
} 
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
} */

/* Hero */
#hero .hero-container {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

#hero .hero-bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background: linear-gradient(to bottom, #000000ad, #00000081),
    url(/assets/background/hero-bg.jpg) #000000 no-repeat center/cover;
  z-index: 0;
}

/* #hero .hero-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #00000080, #00000040);
} */

#hero .hero-container .container {
  position: relative;
  z-index: 1;
}

#hero .hero-container .hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* text-align: left; */
  max-width: 800px;
}

#hero .hero-container .hero-inner .hero-header {
  font-size: 18px;
  margin-bottom: 24px;
}

#hero .hero-container .hero-inner .hero-desc {
  margin-bottom: 24px;
}

#hero .hero-container .hero-inner .hero-desc p {
  font-size: 18px;
}

#hero .hero-container .hero-inner .hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* About */
/* #about .about-container .image {
  border-radius: 8px;
  overflow: clip;
  position: relative;
} */

/* #about .about-container .container {
  gap: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
} */

/* #about .about-container .image .overlay {
  position: absolute;
  inset: 0;
  background: #00000040;
} */

#about .about-container .contents p:not(:last-child) {
  margin-bottom: 20px;
}

/* Numbers */

#numbers .count-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 48px;
}

#numbers .count-container .count-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  align-items: center;
  text-align: center;
  background: #ffffff16;
  border-radius: 10px;
  padding: 30px 0;
  min-width: 200px;
}

#numbers .count-container .count-box h2 {
  font-size: 40px;
}

#numbers .count-container .count-box h2 .plus {
  font-size: 20px;
  font-weight: 500;
}

/* #numbers .objectives ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
} */

#numbers .objectives ul li {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
}

#numbers .objectives ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-light);
}

/* Attend */
#attend .attend-grid ul li {
  font-size: 20px;
  position: relative;
  padding-left: 24px;
}

#attend .attend-grid ul li:not(:last-child) {
  margin-bottom: 36px;
}

#attend .attend-grid ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-light);
}

/* Tracks */
#track ul li {
  background: #0a173f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#track ul li h3 {
  margin-bottom: 10px;
}

/* Conversation */
#conversation .slider {
  position: relative;
  overflow: hidden;
}
#conversation .slide {
  min-height: 300px;
  background: #0a173f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  /* box-shadow: var(--shadow); */
}

#conversation .slide-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#conversation .slide-container h3 {
  font-size: clamp(20px, 4vw, 32px);
}

#conversation .slide-container ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#conversation .slider-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

#conversation .slider-controls button {
  background: #13255e;
  border: 0;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
}

#conversation .conversation-container .slide:not(.active) {
  display: none;
}

/* Involved */
#involved ul li {
  background: #0a173f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#involved ul li h3 {
  margin-bottom: 10px;
}

/* Partners */
#partners .partner-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  overflow: hidden;
}

#partners .partner-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

#partners .partner-marquee::before,
#partners .partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

#partners .marquee-left::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

#partners .marquee-left::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

#partners .marquee-right::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

#partners .marquee-right::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

#partners .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#partners .marquee-left .marquee-content {
  animation-name: marquee-left;
  animation-duration: 60s;
}

#partners .marquee-right .marquee-content {
  animation-name: marquee-right;
  animation-duration: 60s;
}

#partners .marquee-content img {
  padding: 10px;
  border-radius: 10px;
  height: 80px;
  width: 200px;
  background: white;
  object-fit: contain;
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

/* Industries */
/* #industries .icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
} */

#industries .icon-card {
  background: #0a173f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#industries .icon-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  padding: 10px;
  border-radius: 10px;
  background: white;
  flex-shrink: 0;
}

#industries .icon-card span {
  font-size: 16px;
  font-weight: 500;
}

/* Highlights */
#highlights .highlights-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  overflow: hidden;
}

#highlights .highlights-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

#highlights .highlights-marquee::before,
#highlights .highlights-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

#highlights .marquee-left::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

#highlights .marquee-left::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

#highlights .marquee-right::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

#highlights .marquee-right::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

#highlights .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#highlights .marquee-left .marquee-content {
  animation-name: marquee-left;
  animation-duration: 80s;
}

#highlights .marquee-right .marquee-content {
  animation-name: marquee-right;
  animation-duration: 80s;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

#highlights .marquee-content img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* #highlights .marquee-content img:hover {
  transform: scale(1.05);
} */

/* Speakers */
#speakers .speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

#speakers .speaker-card {
  background: #0a173f;
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#speakers .speaker-image {
  width: 100%;
  aspect-ratio: 1;
  height: 320px;
  overflow: hidden;
  background: #0d1c4d;
}

#speakers .speaker-image img {
  transition: transform 0.3s ease;
  object-position: top;
}

#speakers .speaker-card:hover .speaker-image img {
  transform: scale(1.1);
}

#speakers .speaker-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#speakers .speaker-info h3 {
  font-size: 20px;
  font-weight: 700;
}

#speakers .speaker-info .designation {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-light);
}

#speakers .speaker-info .company {
  font-weight: 600;
}

/* Contact */
/* #contact {
  background: var(--primary-color);
  color: var(--white);
} */

#contact .contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  gap: 50px;
}

#contact .contact-wrapper h2 {
  font-size: clamp(24px, 3vw, 48px);
}

#contact .contact-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

#contact .contact-box-container .contact-box {
  border-radius: 10px;
  background: #ffffff16;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  width: 300px;
}

#contact .contact-box-container .contact-box h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--primary-light-color);
}

#contact .contact-box-container .contact-box a {
  transition: all 0.3s ease;
}

#contact .contact-box-container .contact-box a:hover {
  color: var(--primary-light-color);
}

#contact .become {
  text-align: center;
}

/* More About Eventhive  */
/* #more-about .more-container {
  background: linear-gradient(#000060aa, #00006095),
    #0611899c url(../assets/section-bg/hero1.png) no-repeat center/cover;
} */

#more-about {
  font-size: 16px;
}

#more-about .more-logo {
  margin-bottom: 30px;
}

#more-about .more-logo .logo {
  width: 100px;
}

#more-about p {
  margin-bottom: 10px;
}

#more-about .indus-cities h4 {
  margin-bottom: 5px;
}

#more-about .indus-cities {
  margin-bottom: 20px;
  word-wrap: break-word;
}

#more-about .indus-cities span {
  display: inline-block;
  margin-right: 10px;
  white-space: normal;
}

/* Footer */
#footer .footer-container {
  background-color: var(--primary-color);
  color: white;
}

#footer .footer-wrapper .top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

#footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#footer .footer-wrapper .top .logo {
  flex: 1;
  height: 100%;
}

#footer .footer-wrapper .top .logo .logo-icon {
  max-width: 350px;
}

#footer .footer-wrapper .top .logo .logo-icon img {
  opacity: 0.7;
}

#footer .footer-wrapper .top :is(.quick-links, .socials) {
  flex: 1;
}

#footer .footer-wrapper .top .quick-links {
  display: flex;
  justify-content: center;
}

#footer .footer-wrapper .top .quick-links ul li a {
  transition: all 0.3s ease-in-out;
}

#footer .footer-wrapper .top .quick-links ul li a:hover {
  color: var(--primary-light-color);
}

#footer .footer-wrapper .top .socials ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

#footer .footer-wrapper .top .socials ul li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #776f6f26;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

#footer .footer-wrapper .top .socials ul li a:hover {
  background: var(--primary-light-color);
}

/* #footer .footer-wrapper .center .timer {
  font-size: clamp(40px, 3vw, 60px);
  font-weight: 900;
  text-align: center;
  opacity: 0.3;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
} */

#footer .footer-wrapper .divider {
  height: 1px;
  width: 100%;
  background: #ffffff35;
}

#footer .footer-wrapper .bottom {
  text-align: center;
}
