/* Hero Section */
.hero {
  padding: 90px 0 100px;

}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero h1 span {
  color: var(--primary-gold);
}
/* Glass Cards */
.gib-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  height: 100%;
}
.gib-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Project Slideshow Styling */
.slider-section {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-section::-webkit-scrollbar {
  display: none;
}

.project-slide {
  min-width: 350px;
  flex-shrink: 0;
}

.mini-project-card {
  background: #16181d;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mini-img-box {
  position: relative;
  height: 200px;
  background: #25282e;
  overflow: hidden;
}
.mini-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: 0.5s;
}
.mini-project-card:hover img {
  transform: scale(1.1);
}

.mini-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(181, 148, 16, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.mini-project-card:hover .mini-overlay {
  opacity: 1;
}

.btn-sm-visit {
  background: white;
  color: black;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.status-dot {
  background: rgba(0, 255, 127, 0.1);
  color: #00ff7f;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 10px;
  text-transform: uppercase;
}

.tech-stack span {
  font-size: 11px;
  color: var(--primary-gold);
  margin-right: 8px;
  opacity: 0.8;
}

/* Services */
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(181, 148, 16, 0.1);
  color: var(--primary-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, var(--primary-gold), #8a710c);
  padding: 60px;
  border-radius: 30px;
  color: white;
}

.section-tag {
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s;
}
.slider-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .project-slide {
    min-width: 280px;
  }
}
