.vahana h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  .vahana .card {
    position: relative;
    background-color: #0c1f3f;
  }
  .vahana .card::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transition: 0.6s;
    z-index: 0;
    background-color: #3e1a59;
  }
  .vahana .card:hover {
    box-shadow: 0.063rem 0.063rem 1.25rem 0.375rem rgba(0, 0, 0, 0.53);
  }
  .vahana .card:nth-child(1)::before {
    bottom: 0;
    right: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
  }
  .vahana .card:nth-child(2)::before {
    bottom: 0;
    left: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
  }
  .vahana .card:nth-child(3)::before {
    top: 0;
    right: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
  }
  .vahana .card:nth-child(4)::before {
    top: 0;
    left: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
  }
  .vahana .card p {
    transition: 0.8s;
  }

  .vahana .card:hover::before {
    clip-path: circle(110vw at 100% 100%);
  }

  .vahana .card:hover p {
    color: #fff;
  }

  @media screen and (min-width: 62.5rem) {
      .vahana  .circle {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
  }

  .vahana .card:nth-child(1) .circle {
    background: url("../assets/vahanas/1.png") no-repeat 50% 50%/cover;
    bottom: 0;
    right: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
  }

  .vahana .card:nth-child(2) .circle {
    background: url("../assets/vahanas/2.png") no-repeat 50% 50%/cover;
    bottom: 0;
    left: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
  }

  .vahana .card:nth-child(3) .circle {
    background: url("../assets/vahanas/3.png") no-repeat 50% 50%/cover;
    top: 0;
    right: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
  }

  .vahana .card:nth-child(4) .circle {
    background: url("../assets/vahanas/4.png") no-repeat 50% 50%/cover;
    top: 0;
    left: 0;
    clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
  }