
.mockup-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  height: 60vh; /* Full height of the viewport */
}

.mockup-text-content {
  width: 50%;
  padding-right: 20px;
  padding-top: 50px
}

.mockup-images {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
}

.laptop {
  width: 70%;
}

.phone {
  width: 30%;
  position: absolute;
  top: 15%;
  right: 5%;
  z-index: 10; /* Ensures phone image appears above the laptop image */
}


.s-fade-txt h1 {
  text-shadow: 2px 2px 4px rgba(105, 105, 105, 0.8); /* Gray shadow */
  margin: 0;
}

.my-backdrop-blur {
   backdrop-filter: blur(8px); /* Adjust the blur amount as needed */
  /*  background: linear-gradient(
    -25deg,
    rgba(0, 0, 0, 0.4),
    rgba(255, 255, 255, 0.4) 70%,
    rgba(0, 0, 0, 0.4) 100%
  ); /* Subtle gradient */
  /* border-radius: 0.5rem; /* Optional: round the corners */
  background: rgba(255, 255, 255, .6);
  padding: 1rem; /* Optional: add some padding */
}



/* Mobile Styles */
@media (max-width: 768px) {
  .mockup-section {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align */
    height: auto;
  }

  .mockup-text-content {
    width: 100%; /* Full width for text content */
    padding: 20px 0; /* Add padding for spacing */
    text-align: center; /* Center text for better appearance */
  }

  .mockup-images {
    width: 100%; /* Full width for images */
    position: relative; /* Reset position for stacking */
    flex-direction: column;
  }

  .laptop {
    width: 100%; /* Full width for laptop on mobile */
    position: relative; /* Reset positioning */
    top: 0; /* Reset top for laptop */
    margin-bottom: 20px; /* Space between laptop and phone */
  }

  .phone {
    position: relative; /* Reset position for phone */
    width: 60%; /* Adjust phone width as needed */
    top: auto; /* Reset top positioning */
    right: auto; /* Reset right positioning */
    margin: 0 auto; /* Center the phone */
  }
}
