/* ============================
   ROBOTICS CREATIONS HERO
   ============================ */

.robotics-creations-hero {
  padding: 80px 0;
}

.robotics-creations-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content */
.robotics-creations-content {
  flex: 1;
  max-width: 520px;
}

.robotics-creations-title {
  font-family: "f4";
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.robotics-creations-title span {
  color: #fa5c40;
}

.robotics-creations-description {
  font-family: "f2";
  color: #777;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

.robotics-creations-highlight {
  font-family: "f3";
  font-size: 16px;
  color: #333;
}

/* Right Illustration */
.robotics-creations-illustration {
  flex: 1;
  text-align: center;
}

.robotics-creations-illustration img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* ============================
   ROBOT PORTFOLIO SECTION
   ============================ */

.robot-portfolio {
  padding: 80px 0;
}

/* Filter Buttons */
.robot-filter {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}

.filter-btn {
  border: none;
  background: #e9e9e9;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "f3";
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #ddd;
}

.filter-btn.active {
  background: #fa5c40;
  color: white;
}

/* Portfolio Grid */
.robot-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* Portfolio Card */
.robot-card {
  transition: transform 0.3s ease;
}

.robot-card:hover {
  transform: translateY(-8px);
}

.robot-card img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.robot-card:hover img {
  transform: scale(1.02);
}

.robot-card h4 {
  font-family: "f3";
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.robot-card p {
  font-family: "f2";
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 15px;
}

/* View Button */
.view-btns {
  display: inline-block;
  background: #fa5c40;
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "f3";
  font-size: 14px;
  transition: all 0.3s ease;
}

.view-btns:hover {
  background: #e54d35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 92, 64, 0.3);
}

.text-end {
  text-align: right;
}

/* Tag pills under each card */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag-pill {
  background: #f4f4f5;
  color: #444;
  padding: 6px 12px;
  border-radius: 14px;
  font-family: "f3";
  font-size: 12px;
  border: 1px solid #e4e4e7;
}

.mt-4 {
  margin-top: 16px;
}

