/********** Split Section Starts **********/
.split-section {
  display: flex;
  width: 100%;
  background-color: white;
  padding: 40px;
  box-sizing: border-box;
  margin-top: 90px;
  }
  
  
  .right-section {
    width: 100%;
    background-color: white; /* Background color for right section */
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto; /* Center the right-section */
  }
  
  .right-section h2 {
    text-align: center;
    color: #000;
  }
  
  .right-section h3 {
    margin-top: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
  }
  .right-poster {
      display: flex;
  }
  .right-poster img {
      margin-left: 50px;
      height: 215px;
  }
  .right-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 25px;
    text-align: justify;
  }
  
  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .image-caption {
    width: 300px; /* Fixed width */
    text-align: center;
  }
  
  .image-caption img {
    width: 100%;
    height: 400px; /* Fixed height for uniformity */
    object-fit: cover; /* Crop without distortion */
    border-radius: 5px;
  }
  
  .image-caption p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
  }
  
  /********** Split Section Ends **********/
  @media (max-width: 768px) {
    .split-section {
        flex-direction: column; /* Stack sections vertically */
        padding: 20px; /* Adjust padding */
    }
  
    .left-section-wrapper,
    .right-section {
        width: 100%; /* Full width for mobile */
        padding: 10px; /* Adjust padding */
    }
  
    .right-section h2,
    .right-section h3 {
        text-align: center; /* Center headings */
    }
  
    .right-section p {
        font-size: 16px; /* Adjust font size */
    }
  
    .right-poster {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align */
    }
  
    .right-poster img {
        margin-left: 0; /* Remove margin for mobile */
        height: auto; /* Maintain aspect ratio */
        width: 80%; /* Adjust size */
        margin-top: 10px; /* Add spacing */
    }
  
    .image-gallery {
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center; /* Center images */
    }
  
    .image-gallery img {
        width: 100%; /* Adjust width for mobile */
        height: auto; /* Maintain aspect ratio */
        margin: 5px; /* Add spacing */
    }
  }
  @media (max-width: 768px) {
    .image-caption {
      width: 100%; /* Wider on mobile */
    }
  
    .image-caption img {
      height: 400px; /* Adjust for mobile proportions */
    }
  
    .image-caption p {
      font-size: 13px;
    }
  }