/* Mid Hero Section   */



.sl-hero-container {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: center bottom;
    /* border-radius: 8px; */
}
.sl-overlay {
  /* Removed dark overlay for brighter look */
  /* position: absolute; */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: white;
}

.sl-main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #253081; /* Changed text color to dark gray */
  text-align: center;
}

.sl-main-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: none;
    line-height: 1;
}

.sl-separator {
  margin: 0 auto;
  width: 80px;
  height: 4px;
  background-color: #f5731f; /* Accent yellow */
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.sl-description
 {
    font-size: 20px;
    /* font-weight: 500; */
    max-width: 606px;
    margin-bottom: 3rem;
    text-shadow: none;
    line-height: 1.625;
    color: black;
}

.sl-button {
  padding: 0.75rem 2rem;
  border: 2px solid #1f2937; /* Dark border */
  color: #1f2937; /* Dark text */
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Lighter shadow */
  transition: all 0.3s ease;
  text-decoration: none;
}

.sl-button:hover {
  background-color: #1f2937; /* Dark background on hover */
  color: white; /* White text on hover */
  border-color: #f5731f;
}

.sl-button span {
  margin-right: 0.5rem;
  transform: scale(1.25);
  display: inline-block;
  color: #f5731f; /* Accent yellow */
  font-weight: 700;
}
