/* Flipbook Container */
    .brochure-container {
        display: flex;

  justify-content: center;

  align-items: center;
      position: relative;
      width: 100%;
      max-width: 1500px;
      height: 600px; /* Fixed height for landscape view */
      border: 2px solid #ddd;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      overflow: hidden;
      transition: all 0.5s ease-out;
    }

    /* Left and Right Pages */
    .brochure-page-left,
    .brochure-page-right {
      width: 45%; /* Make images a bit smaller to fit the whole image */
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      background: #fff;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.5s ease-in-out; /* Smooth fade-in effect */
    }

    .brochure-page-left img,
    .brochure-page-right img {
      width: 90%; /* Make the image smaller, but still visible */
      height: auto;
      object-fit: contain; /* Ensures the image is fully visible */
      transition: transform 0.3s ease; /* For the zoom effect on hover */
    }

    /* Zoom on Hover Effect */
    .brochure-page-left img:hover,
    .brochure-page-right img:hover {
      transform: scale(1.1); /* Slight zoom effect */
    }

    /* "View/Download Brochure" Link */
    .brochure-link {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-90deg); /* Make it vertical */
      font-size: 24px;
      font-weight: bold;
      color: white;
      background-color: #3F3692;
      padding: 15px 30px;
      border-radius: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .brochure-link:hover {
      background-color: #0056b3;
      transform: translate(-50%, -50%) rotate(-90deg) scale(1.1); /* Scale effect on hover */
    }

    /* Arrows (Previous and Next) */
    .brochure-arrow {
      background-color: #3F3692;
      color: white;
      font-size: 30px;
      border: none;
      padding: 15px;
      cursor: pointer;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .arrow-prev {
      left: 10px;
    }

    .arrow-next {
      right: 10px;
    }

    .brochure-arrow:hover {
      background-color: #0056b3;
      transform: scale(1.1);
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .brochure-container {
        height: auto;
        flex-direction: column;
        width: 100%;
      }

      .brochure-page-left,
      .brochure-page-right {
        max-width: 100%;
        height: 50vh;
      }

      .brochure-arrow {
        font-size: 26px;
        padding: 12px;
      }

      /* Adjust the link when screen size is smaller */
      .brochure-link {
        font-size: 20px;
        padding: 10px 20px;
        transform: translate(-50%, -50%) rotate(0deg); /* Vertical to horizontal */
        display: block;
        width: auto;
        margin-top: 20px;
      }
    }

    @media (max-width: 768px) {
      .brochure-container {
        flex-direction: column;
        height: 50vh;
      }

      .brochure-page-left,
      .brochure-page-right {
        height: 50vh;
        max-width: 100%;
      }

      .brochure-arrow {
        font-size: 22px;
        padding: 10px;
      }

      /* Adjust the link when screen size is smaller */
      .brochure-link {
        font-size: 18px;
        padding: 12px 25px;
        transform: translate(-50%, -50%) rotate(0deg); /* Switch to horizontal */
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      .brochure-container {
        flex-direction: column;
        height: 50vh;
      }

      .brochure-page-left,
      .brochure-page-right {
        height: 50vh;
        max-width: 100%;
      }

      .brochure-arrow {
        font-size: 22px;
        padding: 10px;
      }

      /* Adjust the link when screen size is smaller */
      .brochure-link {
        display:none;
      }
    }