/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9ff;
  color: #333;
  width: 100%;
  overflow-x: hidden;
}

/* THE FULL-SCREEN HERO */
.hero-container {
  width: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 95vh; /* Very large header, nearly full screen */
  overflow: hidden;
  background-color: transparent; /* Removes any potential black background */
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.slide-item img {
  width: 100%;
  height: 100%;
  /* This is the magic line that removes borders and fills the space */
  object-fit: cover; 
  filter: brightness(50%);
}

/* OVERLAY CONTENT */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
  pointer-events: none;
}

.hero-overlay h1 {
  font-size: clamp(2.5rem, 12vw, 5.5rem);
  font-weight: 800;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.7);
}

.hero-overlay p {
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin: 10px 0 30px 0;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
}

.cta-button {
  background-color: #ffffff;
  color: #1e69de;
  padding: 20px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition: 0.3s ease;
  pointer-events: auto;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.cta-button:hover {
  background-color: #e0eaff;
  transform: scale(1.05);
}

/* SECTIONS */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  color: #1e69de;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.help-grid > div {
  flex: 1;
  min-width: 280px;
  background-color: #e0eaff;
  padding: 30px;
  border-radius: 15px;
}

footer {
  background-color: #1e69de;
  color: white;
  text-align: center;
  padding: 40px;
}

/* NAVIGATION DOTS */
.slider-nav {
  display: flex;
  gap: 1.5rem;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.slider-nav a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  transition: 0.3s;
}

.slider-nav a:hover {
  opacity: 1;
}