/* gallery section */
.gallery-section {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

.gallery-label {
  font-size: 16px;
  color: #1a2a44;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 75%;
  margin: auto;
}

.gallery-label .line {
  width: 35px;
  height: 3px;
  background: #F1A70A;
  border-radius: 10px;
}

.gallery-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2a44;
  width: 75%;
  margin: auto;
}

.cc_a {
  margin-bottom: 30px;
}

.gallery-title span {
  color: #F1A70A;
}

.g-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.view-more-btn {
  margin-top: 35px;
  text-align: center;
}

.view-more-btn a {
  background: #09203f;
  padding: 14px 36px;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.view-more-btn a:hover {
  background: #ff5c24;
}

/* IMAGE POPUP */
.img-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.img-popup.active {
  opacity: 1;
  visibility: visible;
}

.img-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}



/* page */
/* Tabs */
.ivg-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ivg-tab-btn {
  padding: 10px 25px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
}

.ivg-tab-btn.ivg-active {
  background: orange;
  color: #fff;
}

/* Gallery */
.ivg-gallery {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ivg-gallery.ivg-active {
  display: grid;
}

.ivg-item {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}

/* Modal */
.ivg-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ivg-modal.ivg-active {
  display: flex;
}

.ivg-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Media inside popup */
.ivg-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
}

.ivg-modal-content video {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 90vh;
}




/* Close button */
.ivg-modal-close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.ivg-wrapper {
  padding: 40px;
  background: #f5f5f5;
}