/* Global Styles */
html, body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden; 
}

/* Video Divider Section */
.video-divider {
  position: relative;
  height: 50px; /* Adjust the height to your preference */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  padding: 4px;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none; /* Prevent interaction with the video */
}

/* Case Study Hero Section */
.case-study-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #fff;
}

.case-study-image {
  width: 40%;
  border-radius: 10px;
  margin: auto;
}

.case-study-summary {
  width: 45%;
  text-align: left;
}

.case-study-summary h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.case-study-summary p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.2;
}

.project-details {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.project-details li {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1px;
}

/* Below the Fold Section */
.case-study-details {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.case-study-details h2 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 20px;
}

.case-study-details p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.2;
  margin-bottom: 40px;
  width:50%;
  margin: auto;
}


/* Responsive Design */
@media (max-width: 768px) {
  .case-study-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .case-study-summary {
    width: 100%;
  }
}