.vc-hero {
  width: 100%;
  display: flex;
  padding: 60px 20px;
  align-items: center;
  justify-content: center;
   background: whitesmoke;
}

.vc-hero-overlay {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.vc-hero-content{
  display: flex;
  width: 100%;
  gap:10px;
  flex-direction: column;
}

.vc-hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #555;
}

.vc-hero-content p {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  color: #555;
}

.hero-btn {
  background: #333;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid transparent;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease-in-out;

}

.hero-btn:hover {
  background: #fff;
  transform: scale(1.05);
  color: #000;
  border: 2px solid black;
}

.vc-hero-video{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
   border-radius: 10px;
   overflow: hidden;
}

.vc-hero-video video {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .vc-hero-content h1 {
    font-size: 2.5rem;
  }

  .vc-hero-content p {
    font-size: 1.6rem;
  }

  .vc-hero {
    flex-direction: column;
  }

}
