/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Video Container */
.video_container {
  position: relative;
  width: 100%;
  height: 100vh;

}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video scales and covers the container */
}

/* Overlay with text and button */
.overlay {
  position: absolute;
  overflow:hidden;

  left: 0;
  width: 100%;
  height: 100%;
  bottom: -39%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px; /* Padding for better spacing on smaller screens */
}

.video_heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.action_btn {
  text-decoration: none;
  background-color: #085F1D;
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.action_btn:hover {
  background-color: #ff2b3f;
}

/* Responsive Styling for smaller devices */
@media (max-width: 1024px) {
  .video_heading {
    font-size: 2.5rem;
  }

  .action_btn {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .video_heading {
    font-size: 2rem;
  }

  .action_btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video_heading {
    font-size: 1.5rem;
  }

  .action_btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
