/* ===== Reset & Fonts ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== Particle Canvas ===== */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ===== Header ===== */
.header-container {
  background: transparent;
  height: auto;
}
.navItems a {
  position: absolute;
  left: 1.8em;
  top: 0.5em;
  z-index: 3;
  font-size: 2em;
  text-decoration: none;
  color: #fff;
}
/* ===== Mini Hero ===== */
.mini-hero {
  background: linear-gradient(135deg, #1e1e2f, #2c2c44);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.mini-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mini-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* ===== Graphic Services Container ===== */
.graphic-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 50px 5px 30px 5px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Graphic Card Styling ===== */
.graphic-card {
  background: linear-gradient(135deg, #1f1f2e, #2c2c44);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.graphic-card-inner {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Glow overlay on hover */
.graphic-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 200, 200, 0.2),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Card hover transform */
.graphic-card:hover::after {
  opacity: 1;
}

.graphic-card:hover .graphic-card-inner {
  transform: rotateX(5deg) rotateY(-5deg) scale(1.05);
  box-shadow: 0 35px 60px rgba(255, 81, 47, 0.7), 0 0 30px #ff7e5f;
}

/* Headings */
.graphic-card h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

.graphic-card:hover h2 {
  background: linear-gradient(90deg, #ff9a8b, #ff6a88, #ff99ac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 12px rgba(255, 105, 135, 0.6);
}

/* List items as column */
.graphic-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.5s ease;
}

.graphic-card ul li {
  color: #fff;
  transition: color 0.5s ease;
}

.graphic-card ul li::before {
  content: "• ";
  color: #ff512f;
  transition: color 0.5s ease;
}

.graphic-card:hover ul li {
  color: #ffd1dc;
}

.graphic-card:hover ul li::before {
  color: #ffd1dc;
}

/* Price */
.graphic-card .price {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d0ee28;
  transition: all 0.5s ease;
}

.graphic-card:hover .price {
  color: #ebb507;
  text-shadow: 0 0 10px #ffd1dc;
}

/* Card Particle Canvas */
.card-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mini-hero h1 {
    font-size: 2.2rem;
  }

  .mini-hero p {
    font-size: 1rem;
  }
}
