/* Start custom CSS for html, class: .elementor-element-db6ffa8 *//* ===== Professional Activity Section ===== */
.pro-section {
  padding: 60px 16px;
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.activity-header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.activity-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.activity-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* ===== Professional Gallery ===== */
.pro-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: auto;
}

.pro-card {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover only for desktop */
@media (hover: hover) {
  .pro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.18);
  }
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .pro-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .activity-title {
    font-size: 24px;
  }

  .activity-desc {
    font-size: 14.5px;
  }

  .pro-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pro-card {
    max-width: 420px;
    margin: auto;
    border-radius: 16px;
  }
}
/* ===== Lightbox Overlay ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .lightbox-close {
    font-size: 32px;
    top: 15px;
    right: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4978e24 *//* ===== Pro Section Mobile Optimization ===== */
.pro-section {
  padding: 50px 16px;
}

/* Header spacing for phone */
@media (max-width: 600px) {
  .activity-header {
    margin-bottom: 28px;
  }

  .activity-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .activity-desc {
    font-size: 14.5px;
    line-height: 1.6;
  }
}

/* ===== Pro Gallery Responsive ===== */
.pro-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Tablet */
@media (max-width: 992px) {
  .pro-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .pro-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pro-card {
    max-width: 100%;
    border-radius: 14px;
  }

  .pro-card img {
    object-fit: cover;
  }
}/* End custom CSS */