:root {
  --primary-color: #10b981;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --text-light: #f8fafc;
  --overlay-bg: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(139, 92, 246, 0.95));
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-sec-2 {
  /* Grid variations for different sizes */
  /* Responsive Design */
  /* Loading animation */
  /* Custom scrollbar */
}
.gallery-sec-2 .gallery-section {
  background: #f1f5f9;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}
.gallery-sec-2 .section-title {
  text-align: center;
}
.gallery-sec-2 .section-title h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.gallery-sec-2 .section-title p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
.gallery-sec-2 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.gallery-sec-2 .gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  /* transition: all 0.4s ; */
  cursor: pointer;
  background: white;
}
.gallery-sec-2 .gallery-item:hover {
  /* transform: translateY(-10px) ; */
  box-shadow: var(--shadow-heavy);
}
.gallery-sec-2 .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-sec-2 .gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-sec-2 .overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
  position: absolute;
  bottom: -20%;
  left: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
  background: var(--overlay-bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 30px;
  width: 100%;
}
.gallery-sec-2 .gallery-item:hover .overlay {
  transform: translateY(0);
  opacity: 1;
  bottom: 0;
}
.gallery-sec-2 .overlay-content {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}
.gallery-sec-2 .gallery-item:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}
.gallery-sec-2 .overlay h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.gallery-sec-2 .overlay .category {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.gallery-sec-2 .overlay .description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 20px;
}
.gallery-sec-2 .overlay-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.gallery-sec-2 .action-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 1.1rem;
}
.gallery-sec-2 .action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.gallery-sec-2 .view-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gallery-sec-2 .view-more:hover {
  color: white;
  transform: translateX(5px);
}
.gallery-sec-2 .view-more i {
  transition: transform 0.3s ease;
}
.gallery-sec-2 .view-more:hover i {
  transform: translateX(3px);
}
.gallery-sec-2 .gallery-item.wide {
  grid-column: span 2;
  height: 350px;
}
@media (max-width: 1200px) {
  .gallery-sec-2 .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .gallery-sec-2 .gallery-item.wide {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .gallery-sec-2 .section-title h2 {
    font-size: 2.5rem;
  }
  .gallery-sec-2 .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
  .gallery-sec-2 .gallery-item {
    height: 280px;
  }
  .gallery-sec-2 .overlay {
    padding: 20px;
    min-height: 120px;
  }
  .gallery-sec-2 .overlay h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .gallery-sec-2 .gallery-section {
    padding: 60px 0;
  }
  .gallery-sec-2 .section-title h2 {
    font-size: 2rem;
  }
  .gallery-sec-2 .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-sec-2 .gallery-item {
    height: 260px;
    border-radius: 12px;
  }
  .gallery-sec-2 .overlay {
    padding: 18px;
    min-height: 110px;
  }
  .gallery-sec-2 .overlay h3 {
    font-size: 1.2rem;
  }
  .gallery-sec-2 .overlay .description {
    font-size: 0.85rem;
  }
}
.gallery-sec-2 .gallery-item.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.gallery-sec-2 ::-webkit-scrollbar {
  width: 8px;
}
.gallery-sec-2 ::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.gallery-sec-2 ::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}
.gallery-sec-2 ::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}/*# sourceMappingURL=galleryDesign2.css.map */