/* ================= SERVICES ================= */
.graphics-h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.emt-services {
  padding: 80px 0;
  background: #000;
}
.emt-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}
.emt-card {
  background: #000;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid;
}
.emt-card:hover {
  transform: translateY(-10px);
}
.emt-card img {
  max-width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
}

/* ================= PROCESS ================= */
.emt-process {
  padding: 80px 0;
}
.emt-process-step {
  /* background: #7e2abe; */
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: #fff;
  padding: 30px;
  margin: 10px 0;
  border-radius: 14px;
  font-weight: 600;
}

/* ================= PORTFOLIO ================= */
:root {
  --primary-purple: #000000;
  --bg-light: #f8f9ff;
}

.graphic-port-h2{
  color:#000;
  font-weight: 700;
  margin-bottom: 50px;
  font-size: 40px;
}

.portfolio-section {
  padding: 50px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Tabs Styling */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; /* Key for mobile responsiveness */
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 25px;
  border: none;
  background: var(--bg-light);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.tab-btn.active {
  background: var(--primary-purple);
  color: white;
}

/* Responsive Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  height: 412px;
  object-fit: cover;
  display: block;
}

/* Hide animation for filtered items */
.portfolio-item.hide {
  display: none;
}

/* .view-more-btn {
  margin-top: 40px;
  padding: 15px 40px;
  background: var(--primary-purple);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
} */

/* ================= CTA ================= */
.emt-cta {
  position: relative; /* Required for the overlay to stay inside */
  padding: 80px 0;    /* Adjust padding as needed */
  color: white;       /* Ensures text is readable */
  overflow: hidden;
}

.emt-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 1;
}

.emt-cta .container {
  position: relative;
  z-index: 2; /* Ensures text stays above the overlay */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .emt-hero-btns .emt-btn {
    display: block;
    margin: 10px auto;
  }
}
