/* Video and Media Section Styles */
.video-media-section {
  position: relative;
  padding: 80px 20px;
  background: #f8f9fa;
  overflow: hidden;
}

.video-media-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.video-media-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-media-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d2a557, #e8cc87);
  border-radius: 2px;
}

.video-media-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Media Article Card */
.media-article-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  min-height: 500px;
}

.media-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.media-article-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  width: 100%;
}

.media-article-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.media-article-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-article-card:hover .media-article-image-wrapper img {
  transform: scale(1.08);
}

/* Media Article Overlay */
.media-article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    transparent 100%
  );
  padding: 40px 35px;
  color: #ffffff;
  z-index: 2;
  transition: all 0.4s ease;
}

.media-article-card:hover .media-article-overlay {
  padding-bottom: 45px;
}

.media-article-date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-article-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.media-article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-article-read-more svg {
  transition: transform 0.3s ease;
}

.media-article-card:hover .media-article-read-more {
  background: rgba(210, 165, 87, 0.9);
  border-color: rgba(210, 165, 87, 1);
  transform: translateX(5px);
}

.media-article-card:hover .media-article-read-more svg {
  transform: translateX(5px);
}

/* Video Thumbnail Card */
.video-thumbnail-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-thumbnail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(210, 165, 87, 0.25);
}

.video-thumbnail-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  width: 100%;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.08);
}

/* Play Icon Overlay - Centered */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.video-play-icon {
  position: relative;
  z-index: 4;
  transition: transform 0.3s ease;
}

.video-thumbnail-card:hover .video-play-icon {
  transform: scale(1.15);
}

.video-play-icon svg {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Animated Pulse Effect */
.play-icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

/* Video Content Overlay - Bottom */
.video-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    transparent 100%
  );
  padding: 40px 35px;
  color: #ffffff;
  z-index: 2;
  transition: all 0.4s ease;
}

.video-thumbnail-card:hover .video-content-overlay {
  padding-bottom: 45px;
}

.video-thumbnail-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .video-media-content {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .video-media-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .media-article-card {
    min-height: 450px;
  }

  .media-article-image-wrapper {
    min-height: 450px;
  }

  .media-article-title,
  .video-thumbnail-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .video-media-section {
    padding: 60px 20px;
  }

  .video-media-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .video-media-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .media-article-card {
    min-height: 400px;
  }

  .media-article-image-wrapper {
    min-height: 400px;
  }

  .media-article-overlay,
  .video-content-overlay {
    padding: 30px 25px;
  }

  .media-article-title,
  .video-thumbnail-title {
    font-size: 1.4rem;
  }

  .media-article-read-more {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .video-media-section {
    padding: 40px 15px;
  }

  .video-media-heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .video-media-content {
    gap: 30px;
  }

  .media-article-card {
    min-height: 350px;
    border-radius: 12px;
  }

  .video-thumbnail-card {
    border-radius: 12px;
  }

  .media-article-image-wrapper {
    min-height: 350px;
  }

  .media-article-overlay,
  .video-content-overlay {
    padding: 25px 20px;
  }

  .media-article-title,
  .video-thumbnail-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .media-article-date {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .media-article-read-more {
    padding: 8px 16px;
    font-size: 0.875rem;
  }

  .video-play-icon svg {
    width: 60px;
    height: 60px;
  }

  .play-icon-pulse {
    width: 90px;
    height: 90px;
  }
}

/* Our Clients block */
.clients-block {
  width: 100%;
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.clients-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.clients-heading::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #d2a557, #e8cc87);
  border-radius: 2px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.client-logo {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
    .clients-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }

@media (max-width: 768px) {
  .clients-block {
    margin-top: 40px;
    padding-top: 36px;
  }

  .clients-heading {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .client-logo {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    height: auto;
  }

  .client-logo img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    gap: 12px;
  }

  .client-logo {
    padding: 12px;
  }
}
