/* Section-1 Starts Here */

.ba-home-hero {
  background: white;
}

.ba-home-hero-container {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark-blue-color);
}

.ba-home-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ba-home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba-home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(0 0 0 / 60%) 30%,
    rgb(0 0 0 / 0%) 60%,
    rgb(0 0 0 / 0%) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.ba-home-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 3rem;
}

.ba-home-hero-wrapper {
  max-width: 600px;
  backdrop-filter: blur(6px);
  padding: 20px 0;
}

.ba-home-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ba-home-hero-subtitle {
  font-size: 1.1rem;
  color: white;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.ba-home-hero-button {
  background: white;
  color: var(--dark-blue-color);
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ba-home-hero-button:hover {
  background: #f8f9fa;
  color: var(--dark-blue-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ba-home-hero-button-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.ba-home-hero-button:hover .ba-home-hero-button-arrow {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .ba-home-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .ba-home-hero-container {
    height: 50vh;
    min-height: 400px;
    margin: 0;
  }

  .ba-home-hero-title {
    font-size: 2.2rem;
  }

  .ba-home-hero-content {
    padding: 0 2rem;
  }
}

@media (max-width: 767.98px) {
  .ba-home-hero {
    padding: 2rem 0;
  }

  .ba-home-hero-container {
    height: auto;
    margin: 0 0.5rem;
    border-radius: 15px;
  }

  .ba-home-hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .ba-home-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .ba-home-hero-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .ba-home-hero-content {
    padding: 0 1.5rem;
  }

  .ba-home-hero-image img {
    border-radius: 15px;
  }

  .ba-home-hero-overlay {
    border-radius: 15px;
  }
}

@media (max-width: 575.98px) {
  .ba-home-hero-container {
    margin: 0 0.25rem;
    border-radius: 12px;
  }

  .ba-home-hero-title {
    font-size: 1.6rem;
  }

  .ba-home-hero-content {
    padding: 0 1rem;
  }

  .ba-home-hero-image img {
    border-radius: 12px;
  }

  .ba-home-hero-overlay {
    border-radius: 12px;
  }
}

/* Media Query */
@media (max-width: 1300px) {
  .ba-home-hero-container {
    height: 80vh;
  }
}

@media (max-width: 1100px) {
  .ba-home-hero-container {
    height: auto;
  }
  .ba-home-hero-content {
    padding: 50px 3rem;
  }
}

@media (max-width: 992px) {
  .ba-home-hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ba-home-hero-wrapper {
    backdrop-filter: blur(0px);
  }
  .ba-home-hero-overlay {
    background: linear-gradient(
      to right,
      rgb(0 0 0 / 68%) 30%,
      rgb(0 0 0 / 47%) 60%,
      rgb(0 0 0 / 0%) 100%
    );
  }
}

@media (max-width: 768px) {
  .ba-home-hero-content {
    padding: 40px 3rem;
  }
}
