.team-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  overflow-y: auto;
}

.team-modal-content {
  background: #fff;
  margin: 5% auto;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}


/* ABOUT CORE VALUES */
.value-box {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  background: #fff;
}

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-box .title {
  font-weight: 600;
  margin-bottom: 10px;
}

.value-box .icon img {
  width: 50px;
  margin-bottom: 10px;
}

/* ABOUT OCTO STUDIO */

.octoville-area {
  background: #f9fbff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.octoville-features .single-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
  background: #fff;
  border: 1px solid #eee;
}

.octoville-features .single-feature:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.octoville-features .icon img {
  width: 40px;
}

.octoville-features .title {
  margin-bottom: 5px;
  font-weight: 600;
}

/* PORTFOLIO */
.pf-wrapper {
  font-family: Arial, sans-serif;
  background: #f8f9fc;
  padding: 40px 20px;
}

.pf-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== FILTER ===== */
.pf-filter-bar {
    display: flex;
  text-align: center;
  margin-bottom: 30px;
}

.pf-filter-btn {
  border: none;
  padding: 10px 18px;
  margin: 5px;
  background: #eaeaea;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.pf-filter-btn.active {
  background: #0e305d;
  color: #fff;
}

/* ===== GRID ===== */
/* .pf-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
} */

.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
}
/* .pf-item {
  width: calc(33.333% - 20px);
} */

@media (max-width: 992px) {
  .pf-item { width: calc(50% - 20px); }
}

@media (max-width: 600px) {
  .pf-item { width: 100%; }
}

/* ===== CARD ===== */
.pf-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eee;
  height: 100%;
  transition: 0.3s;
}

.pf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== TOP ===== */
.pf-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-logo {
  width: 100%;
}

.pf-tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #eef3ff;
}

/* ===== CONTENT ===== */
.pf-card-title {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.pf-card-desc {
  font-size: 14px;
  color: #555;
}

.pf-highlights {
  margin: 10px 0;
  padding-left: 18px;
  font-size: 14px;
}

/* ===== FOOTER ===== */
.pf-card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.pf-status {
  font-weight: bold;
  color: green;
}

.pf-link {
  text-decoration: none;
  color: #0d6efd;
  font-size: 14px;
}