body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
  }

  .video-section {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #0000004b;
    overflow: hidden;
  }

  .video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
  }

  .logo img {
    height: 60px;
    width: auto;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  /*----------------------------*/
  .event-heading{
    text-align: center;
    margin-top: 2vw;
    margin-left: 12vw;
    font-size: 30px;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px 10px;
  }
  .section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 5vw;
  }

  .text-content {
    margin-left: 2vw;
    flex: 1 1 50%;
    line-height: 2;
  }

  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    overflow: hidden;
    flex: 1 1 40%;
    margin-right: 5vw;
  }

  .carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-images img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
    z-index: 2;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .bottom-paragraph {
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px 10px;
    margin-left: 12vw;
    margin-top: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 2vw;
  }

  @media (max-width: 768px) {
    .section-container {
      flex-direction: column;
      align-items: center;
    }

    .carousel-container {
      max-width: 100%;
      height: 250px;
    }
  }
