/* SECTION BIGGER */
@font-face {
  font-family: poppins;
  src: url("../assets/fonts/Poppins-Regular.ttf");
}

.services {
  min-height: 70vh;   /* 👈 height badhayi */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  padding: 20px 0;    /* 👈 extra space */
}

/* TITLE */
.services-title {
  font-family: myFont;
  font-size: 64px;     /* 👈 bada */
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;
}

/* LIST */
.services-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* PNG ITEMS */
.service-item {
  font-family: poppins;
  font-size: 32px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.service-item:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.service-item img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* FORCE BLEND FIX (ONLY SERVICES) */
.services img:not(.service-popup) {
  mix-blend-mode: screen !important;
  opacity: 0.95;
}

.service-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 400px;

  opacity: 0;          /* hidden initially */
  pointer-events: none;

  transition: none;
  z-index: 10;
}