/* hero-top.css */

.hero-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: 'Montserrat', sans-serif; /* Fallback, assumes a similar font is loaded */
}

/* Left Section */
.hero-top-info__left {
  color: #fff;
  text-align: left;
  margin-left: 12%;
}

.hero-top-info__left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 2px;
}

.hero-top-info__left h2 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 1px;
  text-shadow: 0px 0px 38px #00AAFF, 0px 0px 29px #00AAFF, 0px 0px 20px #00AAFF, 0px 0px 11px #00AAFF, 0px 0px 2px #00AAFF;
}

/* Center Section */
.hero-top-info__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-top-info__center-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-top-info__center-date {
  text-align: right;
  color: #fff;
}

.hero-top-info__center-date h3 {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero-top-info__center-date p {
  font-size: 3rem;
  margin: 0;
  font-weight: 400;
}

.hero-top-info__center-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-top-info__center-logo img {
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Ensure logo is white if it's not already */
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  background-color: #0b5bf0;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 16px 45px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 91, 240, 0.4);
}

.hero-btn:hover {
  background-color: #094acc;
  transform: translateY(-2px);
}

/* Right Section */
.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 170, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
  border-radius: 10px;
  padding: 20px 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 5px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* media queries for mobile */
@media (max-width: 992px) {
  .hero-top-info {
    flex-direction: column;
    top: 5%;
    gap: 30px;
    width: 100%;
    position: relative;
    transform: none;
    left: 0;
  }

  .hero-top-info__left {
    margin-left: 0;
    text-align: center;
  }

  .hero-top-info__left h2 {
    font-size: 2rem;
  }

  .hero-top-info__center-date h3 {
    font-size: 2.5rem;
  }

  .hero-top-info__center-date p {
    font-size: 2rem;
  }

  .hero-top-info__center-logo img {
    height: 60px;
  }

  .hero-btn {
    padding: 14px 35px;
    font-size: 1.2rem;
    margin-top: -30px;
  }

  .hero-top-info__right {
    display: none;
  }
}
