.video-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-banner .container-sub {
  position: relative;
  z-index: 2;
}

/* Dark overlay for better text visibility */
.video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.banner-home8 {
  display: block;
  line-height: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
  font-size: 13.5px;
  font-weight: normal;
}

.price {
  font-weight: bold;
}

@media (max-width: 768px) {
  .header-top-1,
  .box-socials-header {
    display: none;
  }
}

/* Hide header on tablets and mobiles */
@media (max-width: 991px) {
  .headert {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}

.features-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.feature-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.feature-btn:hover {
  color: #111;
  background: #fff;
}

.feature-arrow {
  position: absolute;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.25s ease;
}

.feature-btn:hover .feature-arrow {
  background: #000;
  color: #fff;
}

.blog-content h4 a {
  color: #fff;
}

.blog-desc {
  color: #ccc;
}

.read-more {
  color: #ddd;
}

.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* CARD CONTENT SPACING */
.blog-content {
  padding: 20px;
}

/* TITLE */
.blog-content h4 {
  margin-bottom: 12px;
  line-height: 1.4;
}

/* DESCRIPTION */
.blog-desc {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* BUTTON */
.read-more {
  display: inline-block;
  margin-top: 8px;
}

.blog-image {
  margin-bottom: 10px;
}