.box-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .box {
      background-color: #fff;
      padding: 30px;
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .gap{
     margin:10px 0px
    }

    .col-gap{
      margin-bottom: 50px;
    }

    .marble-menu{
      color: white;
      margin-bottom: 5px;
    }

    @media (max-width: 768px) {
      .box {
        width: 100%;
      }
    }
