

.past-gallery-sec{}
.past-gallery-sec img {
  max-width: 100%;
  height: auto;
  display: block;
}

.past-gallery-sec a {
  text-decoration: none;
  color: inherit;
}

.past-gallery-sec button {
  border: none;
  background: none;
  cursor: pointer; 
  font-family: inherit;
}

/* HEADER START */
.past-gallery-sec .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.past-gallery-sec .header-content {background:#e1dbdb;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.past-gallery-sec .back-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e293b;
  font-weight: 600;
  transition: color 0.3s;
}

.past-gallery-sec .back-button:hover {
  color: #3b82f6;
}

.past-gallery-sec .back-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.past-gallery-sec .header-title-wrapper {
  text-align: center;
  flex: 1;
}

.past-gallery-sec .header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.past-gallery-sec .header-subtitle {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

.past-gallery-sec .header-spacer {
  width: 96px;
}
/* HEADER END */

/* MAIN CONTENT */
.past-gallery-sec .main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

/* REPORT GRID */
.past-gallery-sec .report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* REPORT SECTION */
.past-gallery-sec .report-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.past-gallery-sec .report-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.past-gallery-sec .report-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.past-gallery-sec .report-text {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.past-gallery-sec .report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.past-gallery-sec .stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
}

.past-gallery-sec .stat-card-blue {
  background: #eff6ff;
}

.past-gallery-sec .stat-card-cyan {
  background: #ecfeff;
}

.past-gallery-sec .stat-card-green {
  background: #f0fdf4;
}

.past-gallery-sec .stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.past-gallery-sec .stat-card-blue .stat-number {
  color: #2563eb;
}

.past-gallery-sec .stat-card-cyan .stat-number {
  color: #0891b2;
}

.past-gallery-sec .stat-card-green .stat-number {
  color: #16a34a;
}

.past-gallery-sec .stat-label {
  font-size: 0.875rem;
  color: #475569;
}

/* DOWNLOADS SECTION */
.past-gallery-sec .downloads-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.past-gallery-sec .download-card { min-width:240px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s;
  max-width: 320px;
  margin: 0 auto;
}

.past-gallery-sec .download-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.past-gallery-sec .download-cover {
  position: relative;
  padding-bottom: 137.5%;
}

.past-gallery-sec .download-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-gallery-sec .download-overlay {
  position: absolute;
  inset: 0;
}

.past-gallery-sec .download-overlay-blue {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(29, 78, 216, 0.85), rgba(6, 182, 212, 0.9));
}

.past-gallery-sec .download-overlay-green {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.9), rgba(5, 150, 105, 0.85), rgba(20, 184, 166, 0.9));
}

.past-gallery-sec .download-content {
  position: absolute;
  inset: 0;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.past-gallery-sec .download-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  margin: 0 auto;
}

.past-gallery-sec .download-icon svg {
  width: 20px;
  height: 20px;
  color: white;
  fill: currentColor;
}

.past-gallery-sec .download-info {
  text-align: center;
  color: white;
}

.past-gallery-sec .download-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.past-gallery-sec .download-edition {
  font-size: 0.75rem;
  margin-bottom: 0.375rem;
  opacity: 0.9;
}

.past-gallery-sec .download-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0.375rem 0;
}

.download-description {
  font-size: 0.75rem;
  opacity: 0.9;
}

.past-gallery-sec .download-button { width:100%;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
}

.past-gallery-sec .download-button-blue {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.past-gallery-sec .download-button-green {
  background: linear-gradient(90deg, #16a34a, #14b8a6);
}

.past-gallery-sec .download-button:hover {
  gap: 0.5rem;
}

.past-gallery-sec .download-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* MEDIA SECTIONS */
.past-gallery-sec .media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.past-gallery-sec .media-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.past-gallery-sec .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.past-gallery-sec .section-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.past-gallery-sec .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.past-gallery-sec .view-all-link:hover {
  color: #2563eb;
  gap: 0.75rem;
}

.past-gallery-sec .view-all-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* PHOTO GALLERY */
.past-gallery-sec .photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.past-gallery-sec .photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.photo-item::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.past-gallery-sec .photo-item:hover { cursor:auto !important;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.past-gallery-sec .photo-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.past-gallery-sec .photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.past-gallery-sec .photo-item:hover img { 
  transform: scale(1.1);
}

.past-gallery-sec .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.past-gallery-sec .photo-item:hover .photo-overlay {
  opacity: 1;
}

.past-gallery-sec .photo-caption { cursor:auto !important;
  color: white;
  font-weight: 700;
  font-size: 0.875rem; line-height:14px;
}

/* VIDEO SECTION */
.past-gallery-sec .videos-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.past-gallery-sec .video-card {
  position: relative;
  border-radius: 12px;
  background: #0f172a;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.past-gallery-sec .video-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.past-gallery-sec .video-card-main {
  margin-bottom: 0.75rem;
}

.past-gallery-sec .video-card-main::before {
  content: '';
 /* display: block; */
  padding-bottom: 56.25%;
}

.past-gallery-sec .video-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.past-gallery-sec .video-card-small::before {
  content: '';
 /* display: block; */
  padding-bottom: 56.25%;
}

.past-gallery-sec .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  opacity: 0.8;
}

.past-gallery-sec .video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.past-gallery-sec .video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.past-gallery-sec .video-play-button {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.past-gallery-sec .video-card-small .video-play-button {
  width: 48px;
  height: 48px;
}

.past-gallery-sec .video-card:hover .video-play-button {
  background: white;
  transform: scale(1.1);
}

.past-gallery-sec .video-play-button svg {
  width: 32px;
  height: 32px;
  color: #0f172a;
  fill: currentColor;
  margin-left: 4px;
}

.past-gallery-sec .video-card-small .video-play-button svg {
  width: 24px;
  height: 24px;
}

.past-gallery-sec .video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8), transparent);
}

.past-gallery-sec .video-card-small .video-info {
  padding: 0.5rem;
}

.past-gallery-sec .video-title {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.past-gallery-sec .video-card-main .video-title {
  font-size: 1rem;
}

.past-gallery-sec .video-card-small .video-title {
  font-size: 0.75rem;
}

.past-gallery-sec .video-duration {
  color: #cbd5e1;
  font-size: 0.75rem;
}

.past-gallery-sec .video-card-small .video-duration {
  font-size: 0.625rem;
}

/* RESPONSIVE DESIGN */
@media (min-width: 640px) {
  .past-gallery-sec .download-card {
    max-width: none;
  }
}

@media (min-width: 768px) {
  .past-gallery-sec .report-grid {
    grid-template-columns: 2fr 1fr;
  }

  .past-gallery-sec .media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .past-gallery-sec .main-content {
    padding: 3rem 1rem 4rem;
  }

  .past-gallery-sec .report-section h2 {
    font-size: 2.25rem; text-transform: capitalize;
  }
}

@media (max-width: 640px) {
  .past-gallery-sec .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .past-gallery-sec .header-title {
    font-size: 1.25rem;
  }

  .past-gallery-sec .header-spacer {
    width: 48px;
  }

  .past-gallery-sec .report-stats {
    grid-template-columns: 1fr;
  }

  .past-gallery-sec .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .past-gallery-sec .photo-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .past-gallery-sec .video-thumbnails {
    grid-template-columns: 1fr;
  }
}