    
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 25px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  margin: 20px 0px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  /* list-style: inside; */
  padding: 5px 12px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}




/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
    /* Filter Tabs */
    .portfolio-filters {
      list-style: none;
      padding: 0;
      margin: 20px 0 40px;
      gap: 10px;
    }

    .portfolio-filters li {
      cursor: pointer;
      display: inline-block;
      padding: 12px 24px;
      font-size: 18px;
      font-weight: 500;
      color: #94c12b;
      border: 1px solid #94c12b;
      border-radius: 4px;
      transition: all 0.3s ease-in-out;
      user-select: none;
      margin: 0 8px 8px 0;
    }

    .portfolio-filters li.filter-active,
    .portfolio-filters li:hover {
      background-color: #94c12b;
      color: white;
      font-weight: 700;
    }


    .portfolio-item {
      text-align: center;
    }

    .portfolio-content {
      cursor: pointer;
      position: relative;
      overflow: hidden;
      height: 250px;
      border-radius: 6px;
      box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
      margin-bottom: 12px;
    }

    .portfolio-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
      border-radius: 6px;
    }

    .portfolio-content:hover img {
      transform: scale(1.1);
    }

    /* Overlay */
    .portfolio-info {
      opacity: 0;
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      font-size: 16px;
      transition: opacity 0.3s ease;
      pointer-events: none;
      border-radius: 6px;
    }

    .portfolio-content:hover .portfolio-info {
      opacity: 1;
      pointer-events: auto;
    }

    .portfolio-info .preview-link {
      margin-top: 8px;
      font-size: 28px;
      color: white;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .portfolio-info .preview-link:hover {
      color: #94c12b;
    }

    /* Product Titles */
    .product_title {
      font-size: 15px;
      font-weight: 800;
      color: #555;
      text-transform: uppercase;
      padding: 0 5px;
      word-break: break-word;
      min-height: 40px;
    }

    /* Responsive fixes */
    @media (max-width: 575px) {
      .portfolio-filters li {
        font-size: 14px;
        padding: 10px 14px;
        margin: 0 5px 5px 0;
      }
    }

    .portfolio-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      padding: 10px;
    }

    .portfolio-filters li {
      cursor: pointer;
      padding: 16px;
      font-size: 18px;
      font-weight: 500;
      color: #94c12b;
      border: 1px solid #94c12b;
      border-radius: 3px;
      transition: all 0.3s ease;
      margin: 0 10px 5px;
    }

    .portfolio-filters li:hover,
    .portfolio-filters li.filter-active {
      background-color: #94c12b;
      color: #fff;
      font-weight: 700;
    }

    /* Flex container for items */
    .portfolio-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 20px;
    }

    .portfolio-row.center-last-row {
      justify-content: center;
    }

    /* Portfolio item sizing */
    .portfolio-item {
      flex: 0 0 23%;
      /* roughly 4 cols with gap */
      max-width: 23%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    @media (max-width: 991px) {
      .portfolio-item {
        flex: 0 0 31%;
        max-width: 31%;
      }
    }

    @media (max-width: 767px) {
      .portfolio-item {
        flex: 0 0 48%;
        max-width: 48%;
      }
    }

    @media (max-width: 480px) {
      .portfolio-item {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    .portfolio-content {
      width: 100%;
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .portfolio-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .portfolio-content:hover img {
      transform: scale(1.1);
    }

    .portfolio-info {
      opacity: 0;
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: opacity 0.3s ease;
      pointer-events: none;
      text-align: center;
    }

    .portfolio-content:hover .portfolio-info {
      opacity: 1;
      pointer-events: auto;
    }

    .product_title {
      margin-top: 10px;
      font-weight: 700;
      font-size: 14px;
      color: #444;
      text-transform: uppercase;
    }

    

    /* MAP CSS START */
    .locations-wrapper {
      position: relative;
      background: url('../images/map.jpg') no-repeat center center;
      background-size: cover;
      padding-top: 40%;
      /* reduced from 50% to 30% */
      border-radius: 20px;
      margin: 0px 20px;
      overflow: hidden;
    }

    .map-pin {
      position: absolute;
      width: 16px;
      height: 16px;
      background-color: #94c12b;
      border-radius: 50%;
      border: 3px solid white;
      z-index: 2;
      animation: pulse 1.5s infinite ease-in-out;
    }

    /* Pulse keyframes */
    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.5);
        opacity: 0.5;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Example positions (tweak as needed) */
    .pin1 {
      top: 19.5%;
      left: 49%;
    }

    .pin2 {
      top: 41.5%;
      left: 51%;
    }

    .pin3 {
      top: 54%;
      left: 50%;
    }

    .pin4 {
      top: 89%;
      left: 59%;
    }

    @media (max-width: 768px) {
      .locations-wrapper {
        margin: 0px 10px;
        padding-top: 40%;
        /* reduced from 70% to 40% */
      }

    }

    /* MAP CSS END */




/* ================================
   Responsive Adjustments
   ================================ */

@media (max-width: 767.98px) {

  .portfolio-section .col-md-9,
  .portfolio-section .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .portfolio-description {
    padding-top: 0;
  }
}

/* Desktop view: Set fixed height */
@media (min-width: 992px) {
  .portfolio-slider-wrapper {
    height: 75vh;
    overflow-y: auto;
    place-content: center;
  }
}

/* Mobile/Tablet: Let it expand naturally */
@media (max-width: 991.98px) {
  .portfolio-slider-wrapper {
    height: auto;
  }
}