.contact-sec-title {
  font-size: 42px;
  font-weight: 700;
  color: #24748c;
  line-height: 1.3;
  margin-bottom: 18px;
}

.contact-sec-divider {
  width: 90px;
  height: 4px;
  background: #24748c;
  margin: 0 auto 20px;
  border-radius: 30px;
}

.contact-sec-subtitle {
  color: #7b7b7b;
  font-size: 15px;
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
}

.gl3d-gallery-section {
  position: relative;
  background: #f8f9fb;
  overflow: hidden;
}

.gl3d-gallery-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(13, 110, 253, 0.062745098);
  border-radius: 50%;
  top: -200px;
  left: -150px;
  filter: blur(120px);
}

.gl3d-gallery-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(102, 16, 242, 0.062745098);
  border-radius: 50%;
  right: -150px;
  bottom: -200px;
  filter: blur(120px);
}

.gl3d-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: 0.45s;
}

.gl3d-gallery-item img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
  display: block;
}

.gl3d-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 30, 0.28);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  transition: 0.4s;
}

.gl3d-open-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #111827;
  font-size: 26px;
  cursor: pointer;
  transform: scale(0.5);
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gl3d-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.gl3d-gallery-item:hover img {
  transform: scale(1.08);
}

.gl3d-gallery-item:hover .gl3d-gallery-overlay {
  opacity: 1;
}

.gl3d-gallery-item:hover .gl3d-open-btn {
  transform: scale(1);
}

.gl3d-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 99999;
}

.gl3d-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gl3d-image-wrapper {
  max-width: 92%;
  max-height: 85vh;
  overflow: hidden;
}

.gl3d-image-wrapper img {
  max-width: 100%;
  max-height: 85vh;
  transition: 0.3s;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gl3d-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
}

.gl3d-prev, .gl3d-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
}

.gl3d-prev {
  left: 30px;
}

.gl3d-next {
  right: 30px;
}

.gl3d-zoom-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.gl3d-zoom-controls button {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
}

.gl3d-close:hover, .gl3d-prev:hover, .gl3d-next:hover, .gl3d-zoom-controls button:hover, .gl3d-open-btn:hover {
  background: #24748c !important;
  color: #fff !important;
}

.gl3d-close:hover i, .gl3d-prev:hover i, .gl3d-next:hover i, .gl3d-zoom-controls button:hover i, .gl3d-open-btn:hover i {
  color: #fff !important;
}

@media (max-width: 991px) {
  .gl3d-main-title {
    font-size: 38px;
  }
  .gl3d-gallery-item img {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .gl3d-main-title {
    font-size: 30px;
  }
  .gl3d-gallery-item {
    border-radius: 16px;
  }
  .gl3d-gallery-item img {
    height: 220px;
  }
  .gl3d-prev, .gl3d-next {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .gl3d-close {
    width: 45px;
    height: 45px;
  }
  .gl3d-open-btn {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
  .gl3d-zoom-controls button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}/*# sourceMappingURL=gallery.css.map */