.clients-section {
  background: var(--light-bg);
  padding: 5rem 2rem;
  text-align: center;
}
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.tag {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =============================================
   FEATURED CLIENTS SECTION
   ============================================= */
.featured-clients-section {
  background: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.featured-clients-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.featured-client-card {
  background: var(--light-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,61,115,0.1);
  transition: all 0.3s;
  border: 2px solid transparent;
  text-align: left;
}

.featured-client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,61,115,0.15);
  border-color: var(--gold);
}

.client-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-logo-box {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), #e09610);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.client-initial {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-navy);
}

.client-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.client-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0.2rem 0 0.5rem 0;
}

.client-location,
.client-industry {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0.3rem 0;
}

.client-body {
  padding: 2rem;
}

.client-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.client-specialties h4,
.client-services h4 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.client-specialties ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}

.client-specialties li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.client-specialties li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.client-stats {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
  background: linear-gradient(135deg, rgba(0,113,168,0.08), rgba(0,61,115,0.05));
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.client-stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.client-services {
  margin-top: 1.5rem;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-badge {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

/* Responsive for Featured Clients */
@media (max-width: 600px) {
  .featured-clients-section {
    padding: 3rem 1.5rem;
  }
  
  .client-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .client-logo-box {
    width: 90px;
    height: 90px;
    padding: 0.6rem;
  }
  
  .client-logo-placeholder {
    width: 70px;
    height: 70px;
  }
  
  .client-initial {
    font-size: 2rem;
  }
  
  .client-info h3 {
    font-size: 1.2rem;
  }
  
  .client-body {
    padding: 1.5rem;
  }
  
  .client-specialties ul {
    grid-template-columns: 1fr;
  }
  
  .client-stats {
    gap: 1rem;
    padding: 1.2rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .service-badges {
    justify-content: center;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .featured-clients-section {
    padding: 4rem 2rem;
  }
  
  .client-logo-box {
    width: 95px;
    height: 95px;
  }
  
  .client-specialties ul {
    grid-template-columns: 1fr;
  }
}

.projects-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.project-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 1.8rem;
  border-left: 4px solid var(--gold);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 61, 115, 0.12);
}
.project-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.project-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.project-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.commitment-section {
  background: var(--light-bg);
  padding: 5rem 2rem;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.commitment-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  border-top: 4px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0, 61, 115, 0.07);
}
.comm-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.commitment-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.commitment-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .clients-section {
    padding: 3rem 1.5rem;
  }
  .client-tags {
    gap: 0.6rem;
    margin-top: 1.2rem;
  }
  .tag {
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
  }
  .projects-section {
    padding: 3rem 1.5rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .project-card {
    padding: 1.5rem;
  }
  .project-icon {
    font-size: 1.7rem;
  }
  .project-card h3 {
    font-size: 0.95rem;
  }
  .project-card p {
    font-size: 0.82rem;
  }
  .commitment-section {
    padding: 3rem 1.5rem;
  }
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .commitment-card {
    padding: 1.5rem;
  }
  .comm-icon {
    font-size: 1.7rem;
  }
  .commitment-card h3 {
    font-size: 0.95rem;
  }
  .commitment-card p {
    font-size: 0.82rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .clients-section {
    padding: 4rem 2rem;
  }
  .client-tags {
    gap: 0.7rem;
  }
  .tag {
    font-size: 0.8rem;
  }
  .projects-section {
    padding: 4rem 2rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
  .project-card {
    padding: 1.6rem;
  }
  .commitment-section {
    padding: 4rem 2rem;
  }
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .clients-section,
  .projects-section {
    padding: 4.5rem 2.5rem;
  }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .commitment-section {
    padding: 4.5rem 2.5rem;
  }
  .commitment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .clients-section,
  .commitment-section,
  .projects-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1441px) {
  .projects-grid {
    max-width: 1300px;
  }
  .commitment-grid {
    max-width: 1000px;
  }
}
