/* Preloader */
/* #preloader .preloader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #1a365d 0%,
    #2d5016 25%,
    #b7791f 50%,
    #c53030 75%,
    #553c9a 100%
  );
  background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    #1e40af 25%,
    #2563eb 50%,
    #3b82f6 75%,
    #1e3a8a 100%
  );
  background-size: 400% 400%;
  animation: gradientFlow 8s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader .logo-container {
  position: relative;
  margin-bottom: 40px;
}

#preloader .africa-shape {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #f6ad55, #ed8936);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 0 0 30px rgba(246, 173, 85, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

#preloader .africa-shape img {
  object-fit: contain;
}

#preloader .orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  animation: rotate 12s linear infinite;
}

#preloader .fintech-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: counterRotate 12s linear infinite;
}

#preloader .fintech-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

#preloader .fintech-icon:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: -3s;
}

#preloader .fintech-icon:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -6s;
}

#preloader .fintech-icon:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: -9s;
}

#preloader .title {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

#preloader .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#preloader .loading-container {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

#preloader .loading-bar {
  height: 100%;
  background: linear-gradient(90deg, #f6ad55, #ed8936, #dd6b20, #c05621);
  background-size: 200% 100%;
  animation: loadProgress 4s ease-in-out infinite,
    shimmer 1.5s ease-in-out infinite;
  border-radius: 3px;
}

#preloader .loading-text {
  color: white;
  font-size: 1rem;
  text-align: center;
  opacity: 0.8;
  animation: textFade 2s ease-in-out infinite;
} */

/* Nav */
#navbar {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
}

#navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bg-black);
  border-bottom: 1px solid #fefefe4e;
  animation: fade-down 0.7s ease-in-out forwards;
}

#navbar .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

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

#navbar .nav-wrapper .nav-links ul {
  display: flex;
  gap: 10px;
}

#navbar .nav-wrapper .nav-links ul li {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}

#navbar .nav-wrapper .nav-links ul li::before,
#navbar .nav-wrapper .nav-links ul li::after {
  content: "";
  position: absolute;
}

#navbar .nav-wrapper .nav-links ul li::before {
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0.3s ease, background 0.25s ease;
}
#navbar .nav-wrapper .nav-links ul li::after {
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: width 0.25s ease;
}

#navbar .nav-wrapper .nav-links ul li:hover::before {
  width: 100%;
  background: var(--primary-color);
}
#navbar .nav-wrapper .nav-links ul li:hover::after {
  width: 100%;
  background: transparent;
}

#navbar .nav-wrapper .nav-links ul li a {
  padding: 10px;
}

#navbar .nav-wrapper .hamburger-icons {
  display: none;
}

#navbar .nav-wrapper .hamburger-icons {
  width: 32px;
  height: 38px;
  position: relative;
  cursor: pointer;
  padding-top: 3px;
}
#navbar .nav-wrapper .hamburger-icons span {
  background: #fff;
  display: block;
}
#navbar .nav-wrapper .hamburger-icons #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}
#navbar .nav-wrapper .hamburger-icons #hamburger span {
  width: 100%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 6px 0;
  transition: width ease 0.25s;
}
#navbar .nav-wrapper .hamburger-icons #hamburger span:nth-child(1) {
  transition-delay: 0.5s;
  width: 100%;
}
#navbar .nav-wrapper .hamburger-icons #hamburger span:nth-child(2) {
  transition-delay: 0.625s;
  width: 70%;
}
#navbar .nav-wrapper .hamburger-icons #hamburger span:nth-child(3) {
  transition-delay: 0.75s;
  width: 100%;
  left: 0;
}
#navbar .nav-wrapper .hamburger-icons #cross {
  position: absolute;
  height: 34px;
  width: 34px;
  transform: rotate(45deg);
  left: -2px;
  top: 2px;
}
#navbar .nav-wrapper .hamburger-icons #cross span:nth-child(1) {
  height: 0%;
  width: 2px;
  position: absolute;
  top: 0;
  right: 16px;
  transition-delay: 0s;
  transition: height ease 0.25s;
}
#navbar .nav-wrapper .hamburger-icons #cross span:nth-child(2) {
  width: 0%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 16px;
  transition-delay: 0.25s;
  transition: width ease 0.25s;
}

#navbar .nav-wrapper .hamburger-icons.open #hamburger span {
  width: 0%;
}
#navbar .nav-wrapper .hamburger-icons.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
#navbar .nav-wrapper .hamburger-icons.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
#navbar .nav-wrapper .hamburger-icons.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
#navbar .nav-wrapper .hamburger-icons.open #cross span:nth-child(1) {
  height: 100%;
  transition-delay: 0.625s;
}
#navbar .nav-wrapper .hamburger-icons.open #cross span:nth-child(2) {
  width: 100%;
  transition-delay: 0.375s;
}

/* Aside */
aside {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  z-index: 999;
  transition: left 0.4s ease-in-out;
}

aside .aside-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  background: #00296b;
}

aside .aside-container .logo {
  width: 100px;
}

aside .aside-container .nav-links ul li {
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
aside .aside-container .nav-links ul li:hover {
  color: var(--primary-color);
}

/* -- Show Aside Menu -- */
aside.active {
  left: 0;
}

/* Hero */
#hero .hero-container {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(#00296bee, #00296bcc),
    url(../assets/images/background/hero.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .hero-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#hero .hero-wrapper .hero-heading {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#hero .hero-sub-header {
  margin-bottom: 10px;
  font-size: clamp(18px, 7vw, 20px);
}

#hero .hero-wrapper .hero-loc-date {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
}

/* About */
#about .about-wrapper {
  display: flex;
  gap: 30px;
}

#about .about-wrapper :is(.image, .content) {
  flex: 1;
}

#about .about-wrapper .image {
  position: relative;
}
#about .about-wrapper .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#00000020, #00000020);
}

#about .about-wrapper .content h3 {
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

/* #about .about-wrapper .content p {
   font-size: 18px; 
} */

/* CountUp */
#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: #483838;
  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-card div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: -3px;
}

#countup .stat-card div:nth-child(2) span.plus {
  margin-left: -5px;
  font-size: 1.5rem;
}

#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%);
}
/* #countup .countup-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

#countup .countup-wrapper .countup-box {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

#countup .countup-wrapper .countup-box .icon {
  width: 60px;
}

#countup .countup-wrapper .countup-box h2 {
  font-size: 30px;
}

#countup .countup-wrapper .countup-box h2 .plus {
  font-size: 15px;
} 
#countup .countup-wrapper .countup-box .count-description {
   font-size: 16px; 
  text-transform: uppercase;
  font-weight: 700;
} */

/* What's New */
#whats-new .whats-new-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 60px;
  justify-content: center;
}

#whats-new .whats-new-box-container .whats-new-box {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 250px;
  background: #00000080;
  padding: 50px 30px;
  /* flex: 1; */
}

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

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

#whats-new .whats-new-box-container .whats-new-box h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

#whats-new .whats-new-box-container .whats-new-box p {
  color: #fefefef8;
}

/* Key themes */
#key .key-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 60px;
}

#key .key-box-container .key-box {
  flex: 0 0 calc((100% - 90px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

#key .key-box-container .key-box .icon {
  width: 60px;
}

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

#key .key-box-container .key-box .theme {
  text-transform: uppercase;
  font-weight: 500;
}

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

#partner .partner-box-container .partner-box {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 250px;
  background: #00000080;
  padding: 50px 30px;
}

#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;
}

#partner .partner-box-container .partner-box p {
  color: #fefefef8;
}

/* 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 {
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--bg-black);
  stroke: 1px var(--bg-black);
  -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;
}

/* Speakers */
#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% - 60px) / 3);
  background-color: #00000080;
  padding: 15px;
  /* min-width: 250px;
  width: 100%; */
}

#speakers .speakers-box-container .speaker-box .speaker-image {
  height: 350px;
}

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

#speakers .speakers-box-container .speaker-box .speaker-info {
  padding: 30px 0px;
  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;
}

/* Highlights */
#highlights .highlights-slider img {
  margin: 0 20px;
  height: 300px;
}

/* Spons */

#spons .spons-container {
  background: var(--white);
}

#spons .spons-container .spons-slide-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#spons .spons-container .spons-slide .slick-track {
  display: flex;
  align-items: center;
}

#spons .spons-container .spons-slide .slick-track div {
  margin: 0 10px;
}

/* 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(--white);
}

#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-wrapper .footer-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#footer .footer-wrapper h3 {
  width: 60%;
  font-size: 20px;
  margin-bottom: 20px;
}

#footer a {
  transition: all 0.3s ease-in-out;
}

#footer a:hover {
  color: var(--primary-color);
}

#footer .footer-wrapper .footer-box-container .phone {
  border-right: 2px solid var(--primary-color);
}

#footer .footer-wrapper .footer-box-container .email {
  padding-left: 30px;
}

#footer .footer-wrapper .footer-box-container .socials ul {
  display: flex;
  gap: 30px;
}

#footer .footer-wrapper .footer-box-container .socials ul li a {
  font-size: 30px;
}

#footer .footer-wrapper .footer-box-container .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#footer .footer-wrapper .footer-box-container .logo img {
  /* height: 150px; */
  object-fit: contain;
  width: 200px;
}

#footer .footer-wrapper .divider {
  height: 1px;
  width: 100%;
  background-color: #fefefe43;
  margin: 50px 0 40px;
}

#footer .footer-wrapper .copy {
  display: flex;
  align-items: center;
  justify-content: center;
}
