.client-card {
  width: 100%;
  min-width: 250px;
  min-height: 400px;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: 17px 15px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e5e7eb;
}

.client-card-image {
  width: 150px;
  height: 150px;
  padding: 10px;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 21px;
  margin-top: 56px;
}
.client-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-card-content {
  margin-top: auto;
}

.client-card-industry {
  display: flex;
  align-items: start;
  flex-direction: column;
  border-bottom: 0.1px solid #4b5563;
}

.client-card-project-types {
  display: flex;
  align-items: start;
  flex-direction: column;
}

.client-card-label {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.client-card-value, .client-card-project-type {
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
}

.client-card-project-types-list {
  display: flex;
  flex-wrap: wrap;
}

.client-card-project-type:not(:first-child) {
  margin-left: 4px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .client-card {
    width: 100%;
    min-width: 200px;
    height: 100%;
    min-height: 250px;
    padding: 17px 22px;
  }
  .client-card-image {
    width: 125px;
    height: 125px;
    padding: 0;
    margin-bottom: 16px;
  }
  .client-card-content {
    margin-top: auto;
  }
}
/* Desktop styles */
.services-header {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
}

.services-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 70px;
  color: #242728;
}

.services-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: #3d3d3d;
  text-align: center;
}

.services-categoties-list {
  margin-top: 263px;
  display: flex;
  flex-direction: column;
}

.service-category-item {
  padding-bottom: 64px;
  padding-top: 51px;
  border-bottom: 0.5px solid #d9d9d9;
  transition: padding 0.3s ease;
}
.service-category-item:last-child {
  border-bottom: none;
}
.service-category-item:not(.expanded) {
  padding-bottom: 32px;
  padding-top: 32px;
}
.service-category-item:not(.expanded) .service-category-collapsed {
  display: flex;
}
.service-category-item:not(.expanded) .service-category-expanded {
  display: none;
}
.service-category-item.expanded .service-category-collapsed {
  display: none;
}
.service-category-item.expanded .service-category-expanded {
  display: flex;
}
.service-category-item.expanded .btn-icon-round .icon-plus {
  display: none;
}
.service-category-item.expanded .btn-icon-round .icon-minus {
  display: block;
}
.service-category-item:not(.expanded) .btn-icon-round .icon-plus {
  display: block;
}
.service-category-item:not(.expanded) .btn-icon-round .icon-minus {
  display: none;
}

.service-category-collapsed {
  display: none;
  align-items: center;
  gap: 335px;
}
.service-category-collapsed .service-category-name-collapsed {
  font-size: 20px;
  font-weight: 500;
  line-height: auto;
  letter-spacing: 0%;
}
.service-category-collapsed .service-category-toggle {
  margin-left: auto;
}

@media (min-width: 992px) and (max-width: 1600px) {
  .service-category-collapsed {
    gap: 80px !important;
  }
}
.service-category-expanded {
  display: none;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .service-category-expanded {
    gap: 16px;
  }
}

@media (min-width: 992px) {
  .service-category-expanded {
    gap: 0;
  }
  .service-category-expanded > .service-category-number {
    margin-right: 335px;
  }
  .service-category-expanded .service-category-expanded-header {
    display: none;
  }
  .service-category-expanded .service-category-toggle {
    margin-left: auto;
  }
}
@media (min-width: 992px) and (max-width: 1600px) {
  .service-category-expanded > .service-category-number {
    margin-right: 80px !important;
  }
}
.service-category-number {
  margin-bottom: 0;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0%;
  color: #242728;
  flex-shrink: 0;
}

.service-category-details-and-service {
  display: flex;
  gap: 16px;
}

.service-category-content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 44px;
  align-items: flex-start;
}

.service-category-details {
  display: flex;
  align-items: flex-start;
  gap: 44px;
}

.service-category-image {
  background-color: #d9d9d9;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  max-width: 154px;
  max-height: 80px;
  object-fit: cover;
}

.service-category-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 456px;
  max-width: 456px;
}

.service-category-name {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0%;
  color: #242728;
  transition: font-size 0.3s ease, font-weight 0.3s ease, line-height 0.3s ease;
}

.service-category-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0%;
  color: #242728;
}

.service-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.service-section-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0%;
  color: #242728;
}

.service-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 500px;
  min-width: 500px;
}

.cta-section {
  margin-top: 124px;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .services-header {
    margin-top: 16px;
    align-items: flex-start;
    gap: 20px;
  }
  .services-title {
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
    text-align: left;
  }
  .services-subtitle {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }
  .services-categories-list {
    margin-top: 47px;
  }
  .service-category-item {
    padding-bottom: 8px;
    padding-top: 8px;
  }
  .service-category-collapsed {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .service-category-number {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
  }
  .service-category-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
  }
  .service-category-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
  .service-category-expanded {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
  .service-category-expanded .service-category-name,
  .service-category-expanded .service-category-description {
    padding: 0;
    margin: 0;
  }
  .service-category-number {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
  }
  .service-category-details-and-service {
    flex: 1;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    max-width: 450px;
    min-width: 450px;
  }
  .service-category-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .service-category-info {
    gap: 8px;
  }
  .service-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
  .service-list {
    max-width: 100%;
    min-width: auto;
    flex-wrap: wrap;
    gap: 8px;
  }
  .service-category-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
  .cta-section {
    margin-top: 16px;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .services-header {
    margin-top: 40px;
    gap: 20px;
    align-items: flex-start;
  }
  .services-title {
    text-align: left;
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
  }
  .services-subtitle {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
  }
  .services-categories-list {
    margin-top: 40px;
  }
  .service-category-item {
    padding-bottom: 40px;
  }
  .service-category-number {
    font-size: 14px;
    font-weight: 500;
  }
  .service-category-name {
    font-size: 16px;
    font-weight: 600;
  }
  .service-category-description {
    font-size: 14px;
    font-weight: 400;
  }
  .service-category-collapsed {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .service-category-collapsed .service-category-number {
    flex-shrink: 0;
  }
  .service-category-collapsed .service-category-name {
    flex: 1;
  }
  .service-category-collapsed .service-category-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
  .service-category-expanded {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .service-category-expanded-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .service-category-expanded-header .service-category-number {
    flex-shrink: 0;
  }
  .service-category-expanded-header .service-category-name {
    flex: 1;
  }
  .service-category-expanded-header .service-category-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
  .service-category-details-and-service {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
    min-width: auto;
  }
  .service-category-details-and-service .service-category-image {
    width: 100%;
    max-width: none;
    max-height: 160px;
    min-height: 160px;
  }
  .service-category-content-wrapper {
    gap: 20px;
  }
  .service-category-content-wrapper .service-category-info .service-category-name {
    display: none;
  }
  .service-category-info {
    min-width: auto;
    max-width: 100%;
  }
  .service-section {
    flex-direction: column;
    gap: 8px;
  }
  .service-section-label {
    font-size: 14px;
    font-weight: 500;
  }
  .service-list {
    max-width: 100%;
    min-width: auto;
    gap: 8px;
  }
  .cta-section {
    margin-top: 40px;
  }
}
/* Desktop and larger styles */
.project-card {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  padding-bottom: 0.3125rem;
}

.product-card__image-wrapper {
  width: 100%;
  height: 31.25rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 0.1875rem 0 0 #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: #ffffff;
  box-shadow: 0 0.1875rem 0 0 #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.4375rem 1.875rem;
}

.project-card__content-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.project-card__big-text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  color: #242728;
  margin: 0;
}

.project-card__small-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal;
  color: #3d3d3d;
}

/* Tablet and mobile styles */
@media (max-width: 1024px) {
  .project-card {
    gap: 0.5rem;
  }
  .product-card__image-wrapper {
    height: 100%;
    max-height: 25rem;
    min-height: 25rem;
    padding: 0;
  }
  .project-card__image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .project-card__content {
    padding: 1rem 1.5rem;
  }
}
/* Desktop and larger styles */
.projects__title-and-subtitle-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 870px;
  margin: 0 auto;
}

.projects__title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.375rem;
  letter-spacing: 0%;
  color: #242728;
  text-align: center;
}

.projects__subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0%;
  color: #3d3d3d;
  text-align: center;
}

.projects__section {
  margin-top: 2.5rem;
}

.projects__types-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.projects__cards-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 25rem);
  grid-template-rows: repeat(2, auto);
  gap: 3.42rem 2.9375rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 0.625rem;
  grid-auto-flow: column;
  grid-auto-columns: 25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.projects__cards-grid::-webkit-scrollbar {
  height: 0.375rem;
}
.projects__cards-grid::-webkit-scrollbar-track {
  background: transparent;
}
.projects__cards-grid::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
}
.projects__cards-grid::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Tablet styles */
@media (max-width: 1024px) {
  .projects__title-and-subtitle-section {
    gap: 1.25rem;
    align-items: flex-start;
  }
  .projects__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.125rem;
    text-align: left;
  }
  .projects__subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    text-align: left;
  }
  .projects__section {
    margin-top: 1.5rem;
  }
  .projects__section .projects__types-list {
    justify-content: flex-start;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .projects__section .projects__cards-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 20rem);
    grid-template-rows: repeat(2, auto);
    gap: 1.25rem;
    grid-auto-columns: 20rem;
  }
  .projects__section .projects__cards-grid::-webkit-scrollbar {
    height: 0.375rem;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .projects__title-and-subtitle-section {
    gap: 5px;
  }
  .projects__title {
    font-size: 2rem;
    line-height: 2.125rem;
    font-weight: 600;
  }
  .projects__subtitle {
    font-size: 0.875rem;
    font-weight: 400;
  }
  .projects__section {
    margin-top: 1.75rem;
  }
  .projects__section .projects__types-list {
    justify-content: flex-start;
  }
  .projects__section .projects__cards-grid {
    margin-top: 3rem;
    display: flex;
    grid-template-columns: none;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
  }
  .projects__section .projects__cards-grid .project-card {
    flex: 0 0 21.875rem;
  }
  .projects__section .projects__cards-grid {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }
  .projects__section .projects__cards-grid::-webkit-scrollbar {
    height: 0.25rem;
  }
  .projects__section .projects__cards-grid::-webkit-scrollbar-track {
    background: transparent;
  }
  .projects__section .projects__cards-grid::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.625rem;
  }
  .projects__section .projects__cards-grid::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .segment {
    width: 1.875rem;
    height: 0.1875rem;
  }
  .segment.active {
    height: 0.3125rem;
  }
}
/* Title Section Component Styles */
.title-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .title-section {
    gap: 1.25rem;
  }
  .section-main-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .title-section {
    gap: 1rem;
  }
  .section-main-title {
    font-size: 1.75rem;
  }
}
.our-clients-text {
  color: #242728;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}

.section-title-and-period {
  width: 100%;
  padding: 0.625rem;
  border-radius: 0.875rem;
  background-color: #e5e7eb;
  margin: 4rem 0 1.5rem 0;
}

.clients-title {
  color: #242728;
  font-size: 64px;
  font-weight: 600;
  line-height: 100%px;
}

.title-section {
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-subtitle { /* modificat de mine 12.01.2026 */
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
  text-align: center;
}

.period-text { /* modificat de mine 12.01.2026 */
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.clients-list {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.clients-list::-webkit-scrollbar {
  height: 6px;
}
.clients-list::-webkit-scrollbar-track {
  background: transparent;
}
.clients-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.clients-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.segments-container {
  gap: 8px;
  padding: 16px 0;
  margin-top: 32px;
}

.segment {
  width: 40px;
  height: 4px;
  background-color: #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.segment:hover {
  background-color: #c0c0c0;
}
.segment.active {
  background-color: #4b5563;
  width: 60px;
}

.custom-badge {
  width: 25px;
  height: 15px;
  padding: 5px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #242728;
  border-radius: 10px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 300;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .section-title-and-period {
    margin: 1.88rem 0 1.5rem 0;
  }
  .clients-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 250px);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    grid-auto-flow: column;
    grid-auto-columns: 250px;
  }
  .clients-list::-webkit-scrollbar {
    height: 6px;
  }
  .clients-title {
    font-size: 32px;
    line-height: 40px;
    width: 50%;
    text-align: center;
  }
  .clients-subtitle {
    width: 90%;
    font-size: 14px;
  }
  .our-clients-text {
    font-size: 12px;
  }
  .period-text {
    font-size: 12px;
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .clients-list {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(1, 350px);
    grid-template-rows: repeat(2, auto);
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    grid-auto-flow: column;
    grid-auto-columns: 350px;
  }
  .clients-list::-webkit-scrollbar {
    height: 4px;
  }
  .segment {
    width: 30px;
    height: 3px;
  }
  .segment.active {
    height: 5px;
  }
  .title-section {
    display: none;
  }
}

/*# sourceMappingURL=clients.css.map */
