 body{
    overflow-x: hidden;
 }
    .breadcrumb-header {
      background: url('your-image.jpg') no-repeat center center;
      background-size: cover;
      position: relative;
      padding: 100px 0;
      color: white;
      text-align: center;
    }

    .breadcrumb-header::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
      z-index: 0;
    }

    .breadcrumb-header .container {
      position: relative;
      z-index: 1;
    }

    .breadcrumb-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .breadcrumb-header .breadcrumb {
      justify-content: center;
      background: transparent;
      margin-top: 10px;
    }

    .breadcrumb-header .breadcrumb-item a {
      color: #ffffff;
      text-decoration: none;
    }

    .breadcrumb-header .breadcrumb-item.active {
      color: #ffffff;
    }

    .breadcrumb-header .breadcrumb-item + .breadcrumb-item::before {
      color: #fff;
      content: "»";
    }


     /* main categroy section  */

       .category-section {
      padding: 60px 0;
      text-align: center;
      margin-top: 40px;
    }
    .title-section{
      display: flex;
      margin-bottom: 40px;
    justify-content: space-between;
    align-items: center;
    }

    .title-section h4{
text-decoration: none;
color: black;
    }

    .category-title {
      font-size: 2.5rem;
      font-weight: bold;
      
    }
    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      background-color: #fff;
      color: #000;
      transition: all 0.3s ease-in-out;
    }
    .category-card:hover {
      background: linear-gradient(to bottom right, #14525c, #0B2E33);
      color: #fff;
      transform: translateY(-5px);
    }
    .category-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .card-body h5 {
      font-size: 1.25rem;
      font-weight: 600;
    }
    .show-more-btn {
      background-color: #0B2E33;
      color: white;
      border-radius: 10px;
      padding: 8px 16px;
      font-weight: 500;
      transition: background 0.3s;
    }
    .show-more-btn:hover {
      background-color: #0B2E33;
    }
