/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a237e;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader .pulse-loader {
  position: relative;
  width: 80px;
  height: 80px;
}

#preloader .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: pulse 1.5s ease-in-out infinite;
}

#preloader .pulse:nth-child(2) {
  animation-delay: 0.5s;
}

#preloader .pulse:nth-child(3) {
  animation-delay: 1s;
}

/* Nav */
#nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  transform: translateY(0);
}

#nav.fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeDown 0.5s ease forwards;
}

@keyframes fadeDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#nav .nav-container {
  padding: 1rem 0;
}

#nav .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: red; */
}

#nav .logo {
  /* height: 50px; */
  width: 150px;
  /* background-color: yellow; */
  display: flex;
  align-items: center;
}

#nav .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

#nav .nav-links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav .nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

#nav.fixed .nav-links a {
  color: #333;
}

#nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

#nav.fixed .nav-links a::after {
  background: #1a237e;
}

#nav .nav-links a:hover::after {
  width: 100%;
}

#nav .nav-links .active a {
  color: var(--white);
}

#nav.fixed .nav-links .active a {
  color: #1a237e;
}

#nav .nav-links .active a::after {
  width: 100%;
}

#nav .button .btn {
  box-shadow: 0 0 4px #00000040;
}

#nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

#nav .hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

#nav.fixed .hamburger span {
  background: #333;
}

#nav .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#nav .hamburger.open span:nth-child(2) {
  opacity: 0;
}

#nav .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Aside */
#aside .aside-container {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: var(--primary-color);
  color: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 0 5px #00000040;
  transition: all 0.5s ease;
}

#aside .aside-container.open {
  left: 0;
  opacity: 1;
}

/* #aside .aside-container .close-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
} */

#aside .aside-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

#aside .aside-wrapper .logo {
  width: 100px;
}

/* Hero */
#hero .hero-container {
  height: 100vh;
  background: linear-gradient(
      to right,
      rgba(26, 35, 126, 0.95),
      rgba(26, 35, 126, 0.85)
    ),
    url(/assets/section-img/manufacturing-hero.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#hero .hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

#hero .hero-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

#hero .hero-wrapper .left {
  flex: 1;
  max-width: 600px;
}

#hero .hero-header h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-light-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

#hero .hero-header h5::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--primary-light-color);
}

#hero .left .hero-sub-header {
  margin: 20px 0 30px;
}

#hero .left .hero-sub-header h1 {
  font-size: clamp(32px, 3vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(to right, #fff, var(--primary-light-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

#hero .left .hero-description {
  margin-bottom: 40px;
}

/* #hero .left .hero-description p {
  opacity: 0.9;
} */

/* #hero .hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

#hero .hero-buttons .btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

#hero .hero-buttons .btn-sec {
  background: var(--secondary-color);
  color: var(--primary-color);
}

#hero .hero-buttons .btn-sec:hover {
  background: #fff;
  transform: translateY(-2px);
}

#hero .hero-buttons .btn-pry {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

#hero .hero-buttons .btn-pry:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
} */

#hero .hero-wrapper .right {
  flex: 1;
  position: relative;
}

#hero .hero-wrapper .right .hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  border-radius: 20px;
  padding: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

#hero .hero-wrapper .right .hero-image-grid:hover {
  transform: perspective(1000px) rotateY(0deg);
}

#hero .hero-wrapper .right .grid-item {
  /* border-radius: 50%; */
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  position: relative;
  border: 5px solid var(--white);
  animation: float 6s ease-in-out infinite;
}

#hero .hero-wrapper .right .grid-item:nth-child(1) {
  border-radius: 50% 50% 0 50%;
  animation-delay: 0s;
}
#hero .hero-wrapper .right .grid-item:nth-child(2) {
  border-radius: 50% 50% 50% 0;
  animation-delay: 0.5s;
}
#hero .hero-wrapper .right .grid-item:nth-child(3) {
  border-radius: 50% 0 50% 50%;
  animation-delay: 1s;
}
#hero .hero-wrapper .right .grid-item:nth-child(4) {
  border-radius: 0 50% 50% 50%;
  animation-delay: 1.5s;
}

#hero .hero-wrapper .right .grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the circular area */
  transition: transform 0.3s ease;
}

#hero .hero-wrapper .right .grid-item:hover img {
  transform: scale(1.1); /* Add a slight zoom effect on hover */
}

/* #hero .hero-wrapper .right .image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

#hero .hero-wrapper .right .image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

#hero .hero-wrapper .right .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  opacity: 0.3;
  z-index: 1;
}

#hero .hero-wrapper .right .image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#hero .hero-wrapper .right .image:hover img {
  transform: scale(1.05);
} */

/* About */
#about .about-container {
  background: #cccccc25;
  position: relative;
  overflow: hidden;
}

#about .about-header {
  text-align: center;
  margin-bottom: 60px;
}

/* #about .about-header h2 {
  font-size: clamp(28, 4vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 20px;
} */

#about .about-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#about .about-subtitle .line {
  width: 60px;
  height: 2px;
  background: var(--primary-light-color);
}

#about .about-subtitle p {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
}

#about .about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

#about .about-text h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

#about .about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

#about .about-image {
  position: relative;
}

#about .about-image .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#about .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#about .about-image:hover img {
  transform: scale(1.05);
}

#about .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#about .about-image:hover .image-overlay {
  opacity: 1;
}

#about .overlay-content {
  color: var(--white);
}

#about .overlay-content span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

#about .overlay-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Key stats */
#countup .key-stats-section {
  background: #fff;
  padding: 80px 0;
}

#countup .key-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#countup .key-stats-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  width: 100%;
  /* min-width: 250px; */
}

#countup .key-stats-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 150px;
}

#countup .center-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #c2b0b0;
  box-shadow: 0 4px 24px #0001;
  object-fit: contain;
  z-index: 2;
  padding: 15px;
}

#countup .stat-card {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 20px;
  border-radius: 40px;
  padding: 20px 40px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 24px #0001;
  position: relative;
  min-width: 250px;
  background: linear-gradient(90deg, #888, #444);
}

#countup .stat-card .icon {
  font-size: 2.5rem;
  margin-right: 10px;
}

#countup .stat-number {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-right: 10px;
  /* word-wrap: none;
  word-break: keep-all; */
  white-space: nowrap;
  display: inline-block;
}

#countup .stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

#countup .stat-card.purple {
  background: linear-gradient(270deg, #a85df2 60%, #5d08ee 100%);
}

#countup .stat-card.green {
  background: linear-gradient(270deg, #12d259 60%, #0ab248 100%);
}

#countup .stat-card.red {
  background: linear-gradient(270deg, #fb7185 60%, #f43f5e 100%);
}

#countup .stat-card.gold {
  background: linear-gradient(90deg, #fbbf24 60%, #b45309 100%);
}

#countup .stat-card.pink {
  background: linear-gradient(90deg, #fb7185 60%, #f43f5e 100%);
}

#countup .stat-card.blue {
  background: linear-gradient(90deg, #60a5fa 60%, #1d4ed8 100%);
}

/* Key Focus Sectors */
#key-focus-sectors .key-focus-sectors-container {
  background: var(--primary-color);
  color: var(--white);
}

#key-focus-sectors .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#key-focus-sectors .key-focus-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

#key-focus-sectors .sector-item .sector-image {
  width: 150px;
  height: 150px;
  border-radius: 50% 50% 50% 0;
  border: 5px solid var(--white);
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

#key-focus-sectors .sector-item .sector-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00000040;
  left: 0;
  top: 0;
}

#key-focus-sectors .sector-item .sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#key-focus-sectors .sector-item:hover .sector-image img {
  transform: scale(1.1);
}

#key-focus-sectors .sector-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

/* Objectives */
#objectives .objectives-container {
  background: var(--primary-color);
  border-bottom: 1px solid #ffffff16;
}

#objectives .top {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 96px;
}

#objectives .top .left {
  flex: 4;
}

#objectives .top .right {
  flex: 3;
}

#objectives .accordion {
  border: 1px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
}

#objectives .accordion-item {
  border-top: 1px solid #ddd;
}

#objectives .accordion-item:first-child {
  border-top: none;
}

#objectives .accordion-header {
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#objectives .accordion-header .icon {
  font-size: 20px;
  color: var(--primary-light-color);
}

#objectives .accordion-content {
  display: none;
  padding: 15px;
  background-color: var(--white);
  color: var(--primary-color);
}

#objectives .top .image {
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

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

/* Who attends */
#who-attends .who-attends-container {
  background: var(--primary-color);
  color: var(--white);
}

#who-attends .who-attends-subwrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

#who-attends .who-attends-subwrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #00006014,
    #050b8608,
    #07059803,
    transparent,
    transparent,
    transparent,
    transparent
  );
}

#who-attends .who-attends-subwrapper .slick-track {
  display: flex;
  align-items: center;
}

#who-attends .who-attends-subwrapper .slick-track img {
  margin: 0 10px;
  padding: 10px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  vertical-align: middle;
  background: var(--white);
}

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

#partner .partner-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  row-gap: 60px;
  justify-content: center;
}

#partner .partner-box-container .partner-box {
  flex: 0 0 calc((100% - 50px) / 2);
  min-width: 250px;
  /* background: #04074680; */
  background: #00000043;
  padding: 50px 30px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#partner .partner-box-container .partner-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff1e;
  padding: 20px;
}

#partner .partner-box-container .partner-box img {
  object-fit: contain;
}

#partner .partner-box-container .partner-box h4 {
  font-size: 24px;
  margin: 15px 0 20px;
  color: var(--primary-light-color);
}

#partner .buttons {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

/* Guide */
#guide .guide-container {
  /* background: var(--white); */
  border-bottom: 1px solid var(--shadow);
}

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

#guide .guide-wrapper p {
  margin-bottom: 30px;
}

#guide .guide-wrapper ul li {
  background: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  text-align: center;
  padding: 20px 20px 20px 20px;
  width: 600px;
  min-height: 100px;
  max-width: 90%;
  margin: auto;
}

#guide .guide-wrapper ul li::marker {
  color: var(--bg-black);
}

/* Agenda */
#agenda .agenda-item {
  display: flex;
  min-height: 100vh;
  gap: 50px;
  margin-bottom: 50px;
}

#agenda .agenda-item:nth-child(even) {
  flex-direction: row-reverse;
}

#agenda .agenda-item .left {
  flex: 4;
}

#agenda .agenda-item .left .title {
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--primary-light-color);
}

#agenda .agenda-item .left .description ul {
  list-style: circle;
  padding-left: 20px;
}

#agenda .agenda-item .left .description ul li {
  margin-bottom: 20px;
}

#agenda .agenda-item .left .description ul li::marker {
  color: var(--primary-light-color);
}

#agenda .agenda-item .right {
  flex: 3;
}

#agenda .agenda-item .right .image {
  height: 500px;
  position: sticky;
  top: calc(50% - (600px / 2));
  border-radius: 10px;
  overflow: hidden;
}

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

#speakers .speakers-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 60px;
}

#speakers .speakers-box-container .speaker-box {
  flex: 0 0 calc((100% - 90px) / 4);
  background-color: #090d302c;
  padding: 15px;
  border-radius: 10px;
}

#speakers .speakers-box-container .speaker-box .speaker-image {
  height: 250px;
  border-radius: calc(15px - 10px);
  overflow: hidden;
}

#speakers .speakers-box-container .speaker-box .speaker-image img {
  object-position: top;
}

#speakers .speakers-box-container .speaker-box .speaker-info {
  padding: 30px 0px 20px;
  line-height: 1.2;
}

#speakers .speakers-box-container .speaker-box .speaker-info .name {
  font-size: 20px;
  text-transform: capitalize;
}

#speakers .speakers-box-container .speaker-box .speaker-info .designation {
  margin: 10px 0;
  font-size: 14px;
}

#speakers .speakers-box-container .speaker-box .speaker-info .company {
  font-size: 18px;
}

/* Sponsors */
#sponsors .sponsors-container {
  background: var(--white);
}

#sponsors .sponsors-grid-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#sponsors .sponsors-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sponsors .sponsors-grid .sponsors-grid-header {
  /* color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  stroke: 1px var(--primary-color);
  -webkit-text-fill-color: transparent; */
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#sponsors .sponsors-grid .sponsors-grid-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#sponsors .sponsors-grid .sponsors-grid-wrapper a {
  margin: 0 10px;
  height: 70px;
  width: 200px;
}

#sponsors .sponsors-grid .sponsors-grid-wrapper a img {
  object-fit: contain;
}

/* Highlight */
#highlight .highlight-container {
  background: var(--white);
}
#highlight .highlight-container .slide-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#highlight .highlight-container .slide-container .slider {
  cursor: grab;
}

#highlight .highlight-container .slide-container .slider img {
  margin: 10px;
  border-radius: 5px;
  box-shadow: 1px 1px 10px #3e3c3c5d, inset -1px -1px 10px #31333653;
  object-position: top;
}

#highlight .highlight-container .slide-container .highlight-slider-1 img {
  height: 220px;
}
#highlight .highlight-container .slide-container .highlight-slider-2 img {
  height: 180px;
}
#highlight .highlight-container .slide-container .highlight-slider-3 img {
  height: 270px;
}

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

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

#timeline .timeline-subwrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 2rem;
  border-left: 3px solid #007bff;
}

#timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin: 2rem 0;
  position: relative;
}

#timeline .timeline-item .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 4px;
}

#timeline .dot.blue {
  background-color: blue;
}
#timeline .dot.yellow {
  background-color: gold;
}
#timeline .dot.green {
  background-color: limegreen;
}
#timeline .dot.pink {
  background-color: deeppink;
}
#timeline .dot.purple {
  background-color: purple;
}

#timeline .text {
  margin-left: 1.5rem;
}

#timeline .text h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

#timeline .text p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

/* 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 {
  position: relative;
}

/* #more-about .more-container::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  background: #00ff8040;
  background: #3000ab7f;
  height: 300px;
  width: 300px;
  filter: blur(100px);
  z-index: -1;
} */

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

#more-about .more-logo {
  margin-bottom: 30px;
}
#more-about .more-logo .logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

#more-about .more-logo .logo-separator {
  width: 2px;
  height: 50px;
  background: var(--black);
}

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

#more-about .more-logo .logo img {
  object-fit: contain;
}

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

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

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

#more-about .indus-cities {
  word-wrap: break-word;
  /* word-break: break-all; */
}

#more-about .indus-cities span {
  display: inline-block;
  margin-right: 10px;
  /* word-wrap: break-word; */
  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;
}
