/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sharp Cut Section Effect */
.sharp-cut {
  position: absolute;
  bottom: -20px; /* Adjust this for the sharpness */
  left: 0;
  width: 100%;
  height: 70px;
  background: #d9d9d9;
  
  z-index: 4;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Cut Element Styling */
.cut-element {
  position: absolute;
  bottom: -80px; /* Adjust position */
  left: 10%; /* Center horizontally */
  z-index: 3; /* Below logo but above background */
  opacity: 0.8;
}

.cut-element img {
  width: 150px; /* Adjust size */
  height: auto;
  transform: rotate(-10deg); /* Optional rotation for style */
}

/* Positioning for Logo */
.mere-img {
  position: absolute;
  top: 1px; /* Adjust top position */
  right: 300px; /* Default position for large screens (right side) */
  z-index: 5; /* Ensure logo appears above other content */
}

.mere-img img {
  width: 300px; /* Adjust size of the logo */
  height: auto;
}

/* Adjust Hero Content */
.hero .container {
  position: relative;
  z-index: 2; /* Ensure content is above video */
  color: #fff;
}

.hero h2 {
  font-size: 48px;
  font-weight: bold;
}

.hero p {
  font-size: 24px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  /* For small screens, align the logo to the left */
  .mere-img {
    left: 20px; /* Align logo to the left on small screens */
    right: auto; /* Remove the right alignment */
  }

  /* Make the logo size bigger on small screens */
  .mere-img img {
    width: 120px; /* Adjust logo size on small screens */
  }

  /* Adjust cut element size and position */
  .cut-element img {
    width: 100px; /* Smaller size on small screens */
    transform: rotate(-5deg); /* Adjust rotation */
  }
}

/* Style for Download Button */
.btn-primary {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: #45505b;
}

.btn-primary i {
  margin-right: 8px;
}


