/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 13 2025 | 07:15:45 */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-radius: 20px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: white;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 5rem; /* Much bigger */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white; /* Ensure white text */
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 600px;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  background-color: white;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f0f0f0;
}

.btn-outline {
  background-color: transparent;
  color: #3A93FF;
  border: 2px solid #3A93FF;
}

.btn-outline:hover {
  background-color: #3A93FF;
  color: black;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* 40% black tint */
  z-index: 0;
}
