  .video-section {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 90vh;
      padding: 40px;
      color: #fff;
          background-size: cover;
    background-position: top;
    }

    .video-content {
      max-width: 1200px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .video-text h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
    }

    .video-text p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      line-height: 2;
    }

    .cta-btn {
      display: inline-block;
      padding: 12px 25px;
      background: #ffa500;
      color: #111;
      font-weight: bold;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background: #ff7a00;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Thumbnail with play button */
    .video-thumbnail {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.5);
      cursor: pointer;
          height: 300px;
    }

    .video-thumbnail img {
      width: 100%;
      display: block;
      border-radius: 15px;
      transition: transform 0.3s ease;
      height: 100%;
    }

    .video-thumbnail:hover img {
      transform: scale(1.05);
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(255,165,0,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      animation: pulse 1.5s infinite;
    }

    .play-button div {
      width: 0;
      height: 0;
      border-left: 24px solid white;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      margin-left: 5px;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,165,0,0.7); }
      70% { box-shadow: 0 0 0 25px rgba(255,165,0,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,165,0,0); }
    }

    /* Modal popup */
    .video-modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .video-modal video {
      width: 80%;
      max-width: 900px;
      border-radius: 10px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    }

    .close-btn {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 35px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
    }

    .close-btn:hover {
      color: #ffa500;
    }
.rowcenter-wrapper {
  display: flex;
  justify-content: center; /* center the boxes horizontally */
  gap: 30px; /* space between the boxes */
  flex-wrap: wrap; /* responsive: stack on small screens */
}

.value-box {
  background: white; /* or your preferred background */
  padding: 20px;
  border-radius: 10px;
  display: grid;
  gap: 20px; /* space between items inside the box */
  max-width: 80%;
}

.value-item img {
  max-width: 92px;
}

@media (max-width: 768px) {
  .value-box {
    max-width: 100%;
  }
}

    @media (max-width: 900px) {
      .video-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .video-text h1 {
        font-size: 2rem;
      }

      .video-text p {
        font-size: 1rem;
      }
    }