  /* Ensure Roboto is used if available */
  body {
      font-family: 'Roboto', sans-serif;
  }

  /* --- Section Container --- */
  .our-work-section {
    padding: 0px 12vw;
    padding-top: 40px;
    background-color: #fff;
  }

  /* --- Section Title --- */
  .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    border-left: 5px solid #1D939A;
    padding-left: 15px;
    line-height: 1;
  }

  /* --- Grid Layout --- */
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-bottom: 40px;
  }

  /* --- Individual Work Item Box --- */
  .work-item {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1; 
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease; 
  }

  .work-item:hover {
    transform: scale(1.02);
  }

  /* --- Gradient Overlay --- */
  .work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
  }

  /* --- Item Title --- */
  .work-item-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

  /* --- View More Container --- */
  .view-more-container {
    display: flex;
    justify-content: flex-start; 
  }

  /* --- NEW VIEW MORE BUTTON STYLES --- */
  .view-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Keeps items centered during transition */
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-decoration: none;
    color: #1D939A; /* Primary Color */
    margin-top: 10px;
  }

  /* State 1: Dots */
  .vm-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    transform: translateX(0);
  }

  .vm-dots span {
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
    display: block;
  }

  /* State 2: Arrow */
  .vm-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateX(-15px); /* Start slightly left */
  }

  .vm-arrow svg {
    width: 24px;
    height: 24px;
  }

  /* --- HOVER EFFECTS --- */
  
  /* 1. Hide Dots (Slide Right & Fade Out) */
  .view-more-btn:hover .vm-dots {
    opacity: 0;
    transform: translateX(15px);
  }

  /* 2. Show Arrow (Slide to Center & Fade In) */
  .view-more-btn:hover .vm-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* --- Responsive --- */
  @media screen and (max-width: 991px) {
    .our-work-section {
        padding: 60px 5vw; 
    }
    .work-grid {
      grid-template-columns: repeat(2, 1fr); 
    }
  }

  @media screen and (max-width: 767px) {
    .work-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }