.elementor-28397 .elementor-element.elementor-element-ee3b9b9{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-a10983c *//* Categories Section */
.categories-section {
  padding: 60px 20px;
  background: #DDDDDD;
  text-align: center;
}

.categories-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.category-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #333;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Icons */
.category-card i {
  font-size: 60px; /* Bada icon */
  margin-bottom: 15px;
  color: #0073e6; /* Default Blue */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Headings */
.category-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0073e6; /* Default Blue */
  transition: color 0.3s ease;
}

.category-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Hover Effects */
.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}

/* Hover icon + heading = Illustrator Orange */
.category-card:hover i,
.category-card:hover h3 {
  color: #FF6F00; /* Illustrator Orange */
  transform: scale(1.2);
}

/* Description hover */
.category-card:hover p {
  color: #333;
}/* End custom CSS */