.elementor-118 .elementor-element.elementor-element-3711ab9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-57a8aa0 *//* ========== PORTFOLIO HERO ========== */
.portfolio-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 360px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
}

.portfolio-hero-left {
  background: #0b2f9a;
  color: #fff;
  padding: 55px 60px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 92% 0, 76% 100%, 0 100%);
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f97316;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 6px;
}

.hero-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #f97316;
  border-radius: 2px;
}

.portfolio-hero-left h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}

.portfolio-hero-left h1 .orange {
  color: #f97316;
}

.portfolio-hero-left .hero-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #d4e0ff;
  max-width: 360px;
  margin: 0;
}

.portfolio-hero-right {
  position: relative;
  margin-left: -14%;
  z-index: 1;
}

.portfolio-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

/* ========== FILTER TABS ========== */
.portfolio-filters {
  padding: 30px 30px 10px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.filter-btn:hover {
  border-color: #1a56db;
  color: #1a56db;
}

.filter-btn.active {
  background: #1a56db;
  border-color: #1a56db;
  color: #ffffff;
}

.filter-btn.active img {
  filter: brightness(0) invert(1);
}

/* ========== PROJECT GRID ========== */
.portfolio-grid-section {
  padding: 20px 30px 50px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.project-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1a56db;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.project-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.project-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px;
}

.project-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

.project-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.2s;
}

.project-link:hover img {
  transform: translateX(3px);
}

/* ========== BOTTOM CTA ========== */
.portfolio-cta {
  background: #0b2f9a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 50px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: #f97316;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.pcta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.pcta-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f97316;
  border-radius: 50%;
  padding: 10px;
}

.pcta-left h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: 0.3px;
}

.pcta-left h3 .orange {
  color: #f97316;
}

.pcta-left p {
  font-size: 13.5px;
  color: #c7d7fe;
  margin: 0;
}

.pcta-btn {
  background: #f97316;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.pcta-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .portfolio-hero {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-left {
    clip-path: none;
    padding: 40px 28px;
  }

  .portfolio-hero-right {
    margin-left: 0;
  }

  .portfolio-hero-right img {
    min-height: 250px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .portfolio-cta::before {
    display: none;
  }

  .pcta-left {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-btn {
    font-size: 11px;
    padding: 8px 12px;
  }

  .portfolio-hero-left h1 {
    font-size: 30px;
  }
}/* End custom CSS */