  .tagline-section {
    background: linear-gradient(135deg, #e9f2ff, #f1f6ff);
    border-left: 6px solid #FAC53B !important;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  .tagline-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  @media (max-width: 576px) {
    .tagline-text {
      font-size: 1.2rem;
    }
  }
    .gallery-container {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 15px;
    }

    .gallery-row {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .featured-thumb {
      cursor: pointer;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      flex: 2;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .featured-thumb:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .featured-thumb img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      display: block;
      border-radius: 12px 12px 0 0;
    }

    .featured-caption {
      background: #f9f9f9;
      color: #444;
      padding: 10px 15px;
      border-radius: 0 0 12px 12px;
      font-weight: 600;
      font-size: 1rem;
      text-align: center;
      user-select: none;
      flex-shrink: 0;
    }

    .thumbnails {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .thumbnail-item {
      cursor: pointer;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      flex-shrink: 0;
    }

    .thumbnail-item:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    }

    .thumbnail-item img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .thumbnail-caption {
      padding: 6px 8px;
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 1.2;
      text-align: center;
      color: #444;
      width: 100%;
      background: #f9f9f9;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      margin-top: 4px;
    }

    .thumbnail-item.active {
      border: 2px solid #007bff;
      box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    }

    /* Play icon overlay */
    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      transition: background 0.3s ease;
      z-index: 2;
    }
    .play-icon:hover {
      background: rgba(0, 0, 0, 0.7);
    }

    .play-icon svg {
      width: 28px;
      height: 28px;
      fill: white;
      margin-left: 5px;
    }

    /* Modal caption style */
    #modalCaption {
      font-size: 1rem;
      font-weight: 600;
      color: #222;
      background: #f7f7f7;
      padding: 15px 20px;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
      text-align: center;
      user-select: none;
    }

    
   @media (max-width: 991px) {
  .gallery-row {
    flex-direction: column;
  }

  .thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
  }

  .thumbnail-item {
    flex: none;
    width: 100%;
  }
}
