
    /* body:before {
      content: '';
      background-color: rgb(0 0 0 / 0.7);
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
    } */
    .containers {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      z-index: 2;
      /* height: 100vh; */
      background-color: #fff;
    }

    .containers .cards {
      vertical-align: top;
      width: 280px;
      height: 450px;
      position: relative;
      margin: 10px;
      box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.251);
      border-radius: 25px;
      background-color: rgba(255, 255, 255, 0.845);
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
      text-align: center;
    }

    .cards .content {
      padding: 20px;
      transition: 0.8s all ease;
      color: #ccc;
      transform: translateY(200px);
      opacity: 0;
    }

    .card-title {
      position: absolute;
      top: 10px;
      left: 10px;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 10px;
      font-size: 24px;
      /* Adjust font size as needed */
      margin: 0;
    }

    .card:hover .content {
      transform: translateY(0px);
      opacity: 1;
    }

    .cards img {
      position: absolute;
      filter: invert(82%) sepia(60%) saturate(2929%) hue-rotate(353deg) brightness(105%) contrast(103%);
      width: 140px;
      top: 50px;
      opacity: 0.2;
      z-index: -1;
    }

    .cards p {
      color: #fff;
    }

    /* h1 {
      color: #fff;
      text-align: center;
      z-index: 9;
      position: relative;
      margin-bottom: -20px;
      padding-bottom: 0;
      padding-top: 20px;
      font-weight: 400;
    } */
    .cards .content h2 {
      color: #fff;
      font-weight: 400;
    }

    .cards {
      padding: 20px;
    }

    .cards .content a {
      display: inline-block;
      margin-top: 20px;
      text-decoration: none;
      padding: 8px 30px 11px;
      border: 2px solid #fff;
      text-transform: uppercase;
      color: #fff;
      border-radius: 50px;
      box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.8);
      transition: 0.8s all ease;
    }

    /* .add .btn {
      display: inline-block;
      margin: 20px;
      text-decoration: none;
      padding: 8px 30px 11px;
      border: 2px solid #fff;
      text-transform: uppercase;
      color: #fff;
      border-radius: 50px;
      box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.8);
      transition: 0.8s all ease;
    } */
    .cards .content a:hover {
      background: #9C27B0;
    }

    @media only screen and (max-width:900px) {
      .containers {
        display: block;
      }
    }

    .add {
      background-color: rgb(255, 255, 255);
      text-align: center;


    }

    .add .btn {
      background-color: rgb(228, 174, 99);
    }

    .containers .img1 {
      background-image: url("https://user-images.githubusercontent.com/13468728/234031693-6bbaba7d-632c-4d7d-965f-75a76a549ce2.webp");
      background-size: cover;
      /* This ensures the image covers the whole background */
      background-repeat: no-repeat;
      /* This ensures the image doesn't repeat */
      width: 320px;
      /* Adjust the width as needed */
      height: 380px;
      /* Adjust the height as needed */
      list-style-type: none;
      /* Removes the default list bullet */
    }

    .card:hover .card-title {
      opacity: 0;
      /* Hide the title on hover */
    }

    .card {
      position: relative;
      /* width: 300px; */
      overflow: hidden;
      border: 1px solid #ddd;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* .card img {
      width: 393.771px;
      height: 262.510px;
    } */
    .card h2 {
      margin: 10px;
    }

    .card .description {
      position: absolute;
      bottom: 0;
      left: 0;
      /* text-align: justify; */
      width: 100%;
      background: #bfa67a;
      color: white;
      padding: 10px;
      height: 100%;
      box-sizing: border-box;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card:hover .description {
      opacity: 1;
    }

    .card .description p {
      color: #bfa67a;
    }

    .card span {
      display: none !important;

    }

    .wrapper h2 {
      font-size: 13px !important
    }

    .wrapper .description h2 {
      color: #fff;
      margin-bottom: 1px;
    }

    .wrapper p {
      margin: 5px;
      font-size: 13px;
    }

    .card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      /* Gap between cards */
      max-width: 1200px;
      /* Max width for better centering */
      width: 100%;
    }

    .card {
      position: relative;
      width: calc(33.333% - 16px);
      /* Three cards per row with gap accounted for */
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background-color: #fff;
    }

    .image-container {
      position: relative;
    }

    .card-image {
      width: 100%;
      height: auto;
    }

    .button-container {
      padding: 30px 0;
      /* 30px padding at the top and bottom */
      text-align: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      /* Dark transparent background */
      color: white;
      opacity: 0;
      /* Initially hidden */
      visibility: hidden;
      transition: opacity 0.5s, visibility 0.5s;
      padding: 20px;
    }

    .card {
      position: relative;
    }

    .button-container {
      margin-top: 10px;
    }

    .overlay h2 {
      font-size: 15px !important;
      text-decoration: underline;
      font-weight: 500;
    }

    .overlay-button:hover {
      background-color: #bfa67a;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgb(0 0 0 / 86%);
      color: #fff;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
    }

    .overlay p {
      font-size: 15px;
      /* font-weight: bold; */
    }

    @media (max-width: 768px) {
      .card {
        width: calc(50% - 16px);
        /* Two cards per row on small screens */
      }
    }

    @media (max-width: 480px) {
      .card {
        width: calc(100% - 16px);
        /* One card per row on extra small screens */
      }
    }

    body {
      /*font-family: Arial, sans-serif;*/
      background-color: #f0f0f0;
      padding-top: 20px;
      /* Optional: add some top padding to avoid overlap with fixed elements */
    }

    .card {
      position: relative;
      margin-bottom: 16px;
      /* Space between rows */
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      width: 100%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      /* Add transition for smooth hover effect */
    }

    .card:hover {
      transform: scale(1.03);
      /* Slight zoom effect on hover */
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      /* Increase shadow on hover */
    }

    .image-container {
      position: relative;
    }

    .card-image {
      width: 100%;
      height: auto;
      display: block;
      /* Ensure images fit properly */
    }

    .button-container {
      padding: 30px 0;
      /* 30px padding at the top and bottom of the button */
      text-align: center;
    }

    .overlay-button {
      padding: 8px 16px;
      border: none;
      border-radius: 4px;
      background-color: #bfa67a;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
      /* Smooth transition for button hover effect */
    }

    .overlay-button:hover {
      background-color: #bfa67a;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* background-color: rgba(0, 0, 0, 0.6); */
      background-color: rgb(0 0 0 / 91%);
      color: #fff;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      /* Smooth transitions */
      text-align: center;
      /* Center text inside the overlay */
      padding: 20px;
      /* Optional padding inside the overlay */
      box-sizing: border-box;
      /* Ensure padding is included in width and height calculations */
    }

    .overlay h2 {
      font-size: 24px;
      font-weight: bold;
      margin: 0 0 10px;
      /* Space below the <h2> */
      color: #fff;
    }

    .overlay p {
      font-size: 15px;
      line-height: 1.5;
      margin: 0;
      /* Remove default margin */
    }

    /* Ensure the overlay is visible on button click */
    .card.active .overlay {
      opacity: 1;
      visibility: visible;
    }

    .button-container h2 {
      font-size: 15px;
    }

    /* Tablet Responsive */
    @media(max-width:991px) {

      /* auditorium */
      .card img {
        width: 100%;
        height: auto;
      }
    }

    @media (min-width: 768px) {
      .container {
        width: 100%;
      }

