/*    body {
      background: #0a0a0a;
      color: #f5f5f5;
      font-family: "Segoe UI", sans-serif;
    }
    .heading {
      text-align: center;
      margin: 50px 0 30px;
      font-size: 2.5rem;
      font-weight: bold;
    }
    .heading span {
      color: #ffb703;
    }
    .box-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 0 30px;
    }
    .box {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      background: #1a1a1a;
    }
    .box:hover {
      transform: translateY(-10px);
    }
    .box img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .box:hover img {
      transform: scale(1.1);
    }
    .content {
      padding: 20px;
    }
    .tag h3 {
      margin: 0;
      font-size: 1.3rem;
      font-weight: bold;
      color: #ffb703;
    }
    .desc p {
      margin: 10px 0 15px;
      font-size: 0.95rem;
      color: #ddd;
    }
    .btns a {
      margin-right: 10px;
    }
    footer {
      background: #111;
      text-align: center;
      padding: 15px;
      font-size: 0.9rem;
    }*/

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
      
  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  #hr-projects {
    width: 80px;
    border-top: 3px solid #0d6efd;
  }
  #div-style {
    height: 180px;
  }
      
  /* GLOBAL STYLES
  --------------------------------------------- */
  /* Padding below the footer and lighter body text */
      
      
  /* CUSTOMIZE THE CAROUSEL
  -------------------------------------------- */
      
  /* Carousel base class */
  /* .carousel {
    margin-bottom: 4rem;
  }
      
  /* Since positioning the image, we need to help out the caption */
  /* .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
      
  /* Declare heights because of positioning of img element */
  /* .carousel-item {
    height: 32rem;
  }
      
  .carousel-item>img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
  } */
      
      
  /* MARKETING CONTENT
      -------------------------------------------------- */
      
  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
      
  .marketing h2 {
    font-weight: 400;
  }
      
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }
      
      
  /* Featurettes
      ------------------------- */
      
  .featurette-divider {
    margin: 5rem 0;
    /* Space out the Bootstrap <hr> more */
  }
      
  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
  }
      
      
  /* RESPONSIVE CSS
      -------------------------------------------------- */
      
  @media (min-width: 40em) {
      
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
      
    .featurette-heading {
      font-size: 50px;
    }
  }
      
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }

      body {
      background: #0b0c28;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
    }
    .heading {
      text-align: center;
      font-size: 2.5rem;
      font-weight: bold;
      margin: 2rem 0;
    }
    .heading span {
      color: #ffd700;
    }
    #filters {
      text-align: center;
      margin-bottom: 2rem;
    }
    #filters .btn {
      margin: 0.5rem;
      border-radius: 30px;
      padding: 0.5rem 1.2rem;
      background: #222;
      color: #fff;
      border: 1px solid #444;
      transition: all 0.3s ease;
    }
    #filters .btn:hover,
    #filters .btn.is-checked {
      background: #ffd700;
      color: #000;
    }
    .box-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
      padding: 0 2rem;
    }
    .box {
      background: #111;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.7);
    }
    .box img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .content {
      padding: 1rem;
      background: #222;
    }
    .tag h3 {
      font-size: 1.2rem;
      margin: 0;
      font-weight: 600;
    }
    .desc p {
      font-size: 0.9rem;
      color: #aaa;
      margin-top: 0.5rem;
    }
    .btns .btn {
      margin: 0.3rem;
      border-radius: 25px;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
    }
    /* Ensure project buttons are always visible */
.work .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work .content {
  position: relative;
  z-index: 2;
  background: #222;
  padding: 1rem;
  min-height: 120px; /* keeps enough space for text + buttons */
}

.work .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.work .btns a {
  z-index: 3;
  position: relative;
}

/* Make outline button actually visible */
.btn-outline-light {
  border: 2px solid #fff !important;
  color: #fff !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Mobile safe layout */
@media (max-width: 480px) {
  .work .btns {
    flex-direction: column;
    align-items: center;
  }
}

    footer {
      background: #111;
      color: #888;
      text-align: center;
      padding: 1rem 0;
      margin-top: 3rem;
    }