@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* Client card wrapper – fixed uniform size */
.prague-clients-wrapper {
  position: relative;
  width: 100%;
  height: 260px; /* adjust once, applies to all */
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Client image – force equal size */
.prague-clients-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio, crops if needed */
  display: block;
}

.prague-footer .footer-content-outer {
  padding: 140px 0px 25px;
}

/* === SERVICES SECTION GRID FIX === */

/* Row container */
.prague_services {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Each card wrapper */
.prague_services .portfolio-item-wrapp {
  width: 33.3333%;
  padding: 15px;
  box-sizing: border-box;
}

/* Card height consistency */
.prague-services-wrapper {
  background: #ffffff;
  height: 100%;
  padding: 40px 30px;
  text-align: center;
}

/* Tablet */
@media (max-width: 991px) {
  .prague_services .portfolio-item-wrapp {
    width: 50%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .prague_services .portfolio-item-wrapp {
    width: 100%;
  }
}

.prague-services-wrapper img {
  width: 70px;
  margin-bottom: 15px !important;
}
.prague-services-wrapper p {
  line-height: normal !important;
  padding-top: 15px !important;
}

.project-detail-parallax-item .detail-parallax-item-footer {
  max-width: none !important;
}


.work-section {
  padding: 4rem 0;
  background: #fff;
}

.work-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  padding: 0 1.5rem;
}

.work-left {
  width: 30%;
  min-width: 250px;
}

.work-right {
  width: 70%;
  flex: 1;
}

.work-label {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #999;
}

.work-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0.625rem 0 2.5rem;
  line-height: 1.2;
}

.work-name-list {
  list-style: none;
  padding: 0;
  border-left: 1px solid #ddd;
}

.work-name-list li {
  padding: 0.75rem 1.25rem;
  color: #999;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.work-name-list li:hover {
  color: #666;
}

.work-name-list li.active {
  color: #000;
  font-weight: 600;
  position: relative;
}

.work-name-list li.active::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 100%;
  width: 3px;
  background: #000;
}

/* Card */
.work-content-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  background: #fff;
  padding: clamp(1.5rem, 3vw, 3.125rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.fade-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fade-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* Left content */
.work-text-wrap {
  width: 100%;
  flex: 1;
}

.project-title {
  font-size: clamp(1.25rem, 2.5vw, 1.375rem);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.project-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-details li {
  margin-bottom: 0.625rem;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #444;
  line-height: 1.5;
}

/* Image */
.work-image-wrap {
  width: 45%;
  flex-shrink: 0;
  min-width: 250px;
}

.work-image-wrap img {
  width: 225%;
  max-width: 225%;
  height: clamp(200px, 25vw, 280px);
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .work-container {
    flex-direction: column;
    gap: 3rem;
    padding: 0 1.25rem;
  }

  .work-left,
  .work-right {
    width: 100%;
  }

  .work-name-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-left: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .work-name-list::-webkit-scrollbar {
    height: 4px;
  }

  .work-name-list::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .work-name-list::-webkit-scrollbar-thumb {
    background: #ccc;
  }

  .work-name-list li {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.75rem 1rem;
  }

  .work-name-list li.active::before {
    display: none;
  }

  .work-name-list li.active {
    border-bottom: 3px solid #000;
  }

  .work-content-card {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .work-text-wrap,
  .work-image-wrap {
    width: 100%;
    min-width: auto;
  }

  .work-image-wrap img {
    height: clamp(180px, 30vw, 240px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .work-section {
    padding: 3rem 0;
  }

  .work-container {
    gap: 2rem;
    padding: 0 1rem;
  }

  .work-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .work-content-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .project-title {
    font-size: 1.25rem;
  }

  .project-details li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .work-name-list li {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .work-image-wrap img {
    height: 180px;
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .work-container {
    padding: 0 0.75rem;
  }

  .work-content-card {
    padding: 1.25rem;
  }

  .work-name-list {
    gap: 0.5rem;
  }

  .work-name-list li {
    padding: 0.5rem;
    font-size: 0.8125rem;
  }

  .work-image-wrap img {
    height: 160px;
  }
}

/* Base layout */
.social-content {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.social-content li {
  position: relative;
}

/* Base glass button */
.social-content a {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.55);
  /* backdrop-filter: blur(14px);
                    -webkit-backdrop-filter: blur(14px); */

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;

  /* box-shadow:
                        0 10px 30px rgba(0, 0, 0, 0.6),
                        inset 0 1px 0 rgba(255, 255, 255, 0.05); */

  transition: all 0.25s ease;
}

/* Icon */
.social-content a i {
  font-size: 18px;
  transition: all 0.25s ease;
}

/* BRAND COLORS */
.social-content a .fa-facebook {
  color: #1877f2;
}

.social-content .facebook {
  border: 1px solid #1877f2 !important;
}

.social-content a .fa-twitter {
  color: #1da1f2;
}

.social-content .twitter {
  border: 1px solid #1da1f2 !important;
}

.social-content a .fa-linkedin {
  color: #0a66c2;
}

.social-content .linkedin {
  border: 1px solid #0a66c2 !important;
}

.social-content a .fa-envelope {
  color: #34a853;
}

.social-content .email {
  border: 1px solid #34a853 !important;
}

/* Hover glow per brand */
.social-content a:hover {
  transform: translateY(-2px);
}

.social-content a:hover .fa-facebook {
  text-shadow: 0 0 10px rgba(24, 119, 242, 0.8);
}

.social-content a:hover .fa-twitter {
  text-shadow: 0 0 10px rgba(29, 161, 242, 0.8);
}

.social-content a:hover .fa-linkedin {
  text-shadow: 0 0 10px rgba(10, 102, 194, 0.8);
}

.social-content a:hover .fa-envelope {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Header alignment fix */
.prague-header .prague-social-nav .social-content {
  right: -5px;
  top: 75px;
}

.enable_overlay,
.overlay {
  height: 100%;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.prague-shortcode-parent
.overlay {
  height: 100%;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.prague-shortcode-parent .prague-shortcode-heading.light .parent-subtitle,
.prague-shortcode-parent .prague-shortcode-heading.light .parent-title {
    color: #000000;
}