
    .videos-container {
      max-width: 1300px;
      margin: auto;
      padding: 150px 20px;
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px 20px;
      justify-items: center;
      margin-top:55px;
    }

    .video-thumbnail {
      position: relative;
      width: 373px;
      height: 210px;
      cursor: pointer;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-thumbnail:hover {
      transform: scale(1.05);
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(0,0,0,0.6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-button::before {
      content: '';
      display: block;
      border-style: solid;
      border-width: 12px 0 12px 20px;
      border-color: transparent transparent transparent white;
      margin-left: 5px;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.8);
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .modal-content {
      position: relative;
      width: 90%;
      max-width: 800px;
      aspect-ratio: 16/9;
    }

    .modal-content iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .close-button {
      position: absolute;
      top: -40px;
      right: 0;
      font-size: 30px;
      color: white;
      cursor: pointer;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .videos-grid {
        grid-template-columns: repeat(1, 1fr);
      }
    }

    @media (max-width: 600px) {
      .videos-grid {
        grid-template-columns: 1fr;
        padding: 150px 25px;
      }

      .video-thumbnail {
        width: 100%;
      }
    }