body {
  font-family: Arial, sans-serif;
  background-color: #A6CDC6;
  margin: 0;
  padding: 0;
  color: #333;
  overflow: scroll;
}



.section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero {
  height: 90vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.slider {
  display: flex;
  width: 400%;
  height: 100%;
  animation: slide 12s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5rem;
}

@keyframes slide {

  0%,
  20% {
    transform: translateX(0%);
  }

  25%,
  45% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(-200%);
  }

  75%,
  100% {
    transform: translateX(-300%);
  }
}

.transformation-journey {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.transformation-journey h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 450px;
}

.journey-card:hover {
  transform: translateY(-5px);
}

.journey-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #FBF5DD;
}

.image img {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text {
  width: 50%;
  font-family: Arial, sans-serif;
}

.text h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.text p {
  line-height: 1.6;
  color: #555;
}

.highlights {
  padding: 4rem 2rem;
}

.highlights h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  text-align: center;
  padding: 1rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 500px;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

#map {
  width: 89%;
  padding: 4rem 1rem;
}

#map h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.map-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 0;
  padding-bottom: 50%; /* Aspect ratio */
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-container {
    width: 100%;
    padding-bottom: 75%;
    border-radius: 8px;
  }

  #map h1 {
    font-size: 2rem;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh; /* Better height for mobile */
  }
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider {
  display: flex;
  width: 400%;
  height: 100%;
  animation: slide 12s infinite;
}

.slide {
  width: 100%;
  flex: 1 0 100%;
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    height: 84vw;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}
