/* Section 2: Main Container */
.sec2 {
  margin: 7px 0;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #141414;
  padding: 20px;
}

/* Text Container */
.sec2-1 {
  width: 90%;
  max-width: 500px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
}

/* Heading Style */
.heading-sec2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e50914;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Text Style */
.text-sec2 {
  font-size: 1.2rem;
  color: #b3b3b3;
  margin-top: -3%;
}

/* Image Container */
.sec2-2 {
  width: 90%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Styling */
.sec2-2-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease-in-out;
}

.sec2-2-img:hover {
  transform: scale(1.05);
}

/* Optional Video Styling */
.sec2-2-video {
  position: absolute;
  top: 10%;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease-in-out;
}
.sec2-2-video:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .sec2 {
    padding: 20px;
  }
  .sec2-1, .sec2-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .heading-sec2 {
    font-size: 2rem;
  }
  .text-sec2 {
    font-size: 1rem;
  }
}

/* For larger screens (desktop) */
@media (min-width: 768px) {
  .sec2 {
    flex-direction: row;
    height: 600px;
  }
  .sec2-1, .sec2-2 {
    width: 45%;
  }
  .heading-sec2 {
    font-size: 3rem;
  }
  .text-sec2 {
    font-size: 1.4rem;
  }
}
