body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* HERO WITH VIDEO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(30, 60, 114, 0.4)
  );
  z-index: 2;
}

/* BUTTON */
.btn-primary {
  background: #0d6efd;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #0b5ed7;
}

/* FEATURES */
.feature-box {
  padding: 30px;
  border-radius: 15px;
  background: #ffffff;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* CONTENT AFTER SCROLL */
.content-section {
  padding: 100px 0;
  background: #f8f9fa;
}

/* GENERAL SECTION */
section {
  padding: 80px 0;
}