/*========================================================================*/
/* 5. HOME PAGE SECTIONS                                                  */
/*========================================================================*/
/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 27, 61, 0.9), rgba(11, 27, 61, 0.4));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards ease-out;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Highlight Dots Feature */
.highlight-dots {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.highlight-dot {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

.highlight-dot i {
  color: var(--secondary-color);
  margin-right: 8px;
}
