.hero-background {
  width: 100%;
  height: 100vh; /* Makes sure it covers the full viewport height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional: Creates a parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  width: 100%;
  height: 100vh;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.boost-hypes {
  background-color: var(--primary-color);
}

/* HYPE class and all nested elements */
.hype {
  position: relative;
  overflow: hidden;
  animation: pulse 3s infinite;
  background-color: #0d82f7;
  text-align: center;
  padding: 100px 0 100px 0;
}

.hype::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(13, 130, 247, 0) 70%
  );
  animation: ripple 8s linear infinite;
  z-index: -1;
}

.hype h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  color: white;
  font-family: "Ohno Softie", sans-serif;
}

.hype h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: white;
  border-radius: 2px;
  animation: expand 3s ease-in-out infinite;
}

.hype .highlight {
  /* text-shadow: 0 0 10px rgba(255, 221, 0, 0.5); */
  font-weight: 800;
  display: inline-block;
  animation: bounce 2s ease infinite;
}

.hype p {
  font-family: "Ohno Softie", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.hype .images-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hype .image-box {
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}

.hype .image-box:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 2;
}

.hype .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(13, 130, 247, 0) 50%
  );
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hype .image-box:hover::after {
  opacity: 1;
}

.hype .image-box img {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes expand {
  0% {
    width: 100px;
  }
  50% {
    width: 200px;
  }
  100% {
    width: 100px;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .hype h1 {
    font-size: 3rem;
  }

  .hype p {
    font-size: 1.5rem;
  }

  .hype .image-box img {
    width: 250px;
    height: 250px;
  }
}
.dark-section,
.light-section {
  text-align: center; /* Centers the inline-block element */
}
.dark-section .section-title,
.light-section .section-title {
  font-family: "Ohno Softie", sans-serif;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  display: inline-block;
  padding: 5px 10px; /* Adjust as needed */
  margin: 0 auto;
  font-weight: lighter;
}

.dark-section .section-title:after,
.light-section .section-title:after,
.contact-us .section-title:after,
.our-packages .section-title:after {
  display: none;
}

.swiper-pagination-bullet-active {
  color: white !important;
}

.our-packages .section-title {
  font-family: "Ohno Softie", sans-serif;
  color: var(--primary-color);
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 3.8em;
}

.our-packages .btn {
  display: inline-block;
  background-color: white !important;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 120, 255, 0.3);
  margin-top: 20px;
}

.contact-us .section-title {
  font-family: "Ohno Softie", sans-serif;
  color: var(--primary-color);
  font-weight: normal;
  font-size: 3.5em;
  margin-bottom: 0px;
}

.contact-info {
  font-family: "Ohno Softie", sans-serif;
  color: var(--primary-color);
}

.contact-details h3 {
  font-size: 3em;
  font-weight: lighter;
  text-align: center;
}
.contact-details p {
  text-align: center;
  font-size: 2em;
  font-weight: lighter;
}

.social-icons {
  display: flex;
  justify-content: center; /* Centers the icons horizontally */
  align-items: center; /* Aligns the icons vertically */
  gap: 15px;
  margin-top: 0;
  text-align: center;
}

.social-icon {
  font-size: 24px; /* Adjust size if needed */
  color: #fff; /* Adjust color as needed */
  text-decoration: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  /* Adjust the breakpoint as needed */
  .menu li a {
    color: var(--primary-color) !important;
  }
  .menu li a:hover,
  .menu li a.active {
    color: var(--light-color) !important;
    background-color: var(--primary-color);
  }

  .dropdown-menu {
    display: none !important;
  }

  .dropdown {
    display: none !important;
  }
  .mobile-menu {
    display: block;
  }
}
