/* Hero Section Styles */
.dot-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D9D9D9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #0046FF;
}

.dot:hover {
  background-color: #0046FF;
  opacity: 0.7;
}

.hero-custom {
  text-align: center;
  padding: 100px 50px;
  background-color: #f9f9f9;
  margin-top: 80px;
}

.hero-title {
  font-size: 2.5em;
  color: #0033cc;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2em;
  color: #333;
  margin: 20px 0;
  line-height: 1.5;
}

.hero-button {
  background-color: #0033cc;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #002080;
}

/* Full-width hero images */
#hero-images {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 12px;
}

.hero-slide.active {
  opacity: 1;
}

/* Responsive design */
@media (max-width: 1024px) {
  #hero-images {
    height: 400px;
  }
  
  .hero-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  #hero-images {
    height: 300px;
  }
  
  .hero-title {
    font-size: 1.8em;
  }
  
  .hero-description {
    font-size: 1em;
  }
  
  .hero section {
    padding: 20px 30px !important;
  }
}

@media (max-width: 480px) {
  #hero-images {
    height: 250px;
  }
  
  .hero-title {
    font-size: 1.4em;
  }
  
  .hero-description {
    font-size: 0.9em;
  }
  
  .hero section {
    padding: 15px 20px !important;
  }
}

/* Container for the dots */
.dot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* Base style for all dots (including the one that will be active) */
.dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* * Active state: The dot that is currently highlighted. */
.dot.active {
  background-color: #0033cc;
}

.dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* Optional: On hover, you might want to show a slight interaction */
.dot:hover {
  opacity: 0.8;
}