  .carousel-caption {
    background-color: rgb(0 0 0 / 56%);
    background-image: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 0%));
    width: 100%;
    position: absolute;
    right: 0% !important;
    bottom: 0px;
    left: 0% !important;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    text-align: center;
  }

  .bannerBtn {
    color: #ffffff;
    border-radius: 9px !important;
    border-color: white;
    background: #7D1456 !important;
    padding: 10px 40px;
    box-shadow: 1px 1px 10px #7e455561;
  }

  .title3 {
    font-family: sans-serif !important;
    font-weight: 600 !important;
    font-size: 30px;
  }

  #sliderImg {

    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;

  }

  .carousel-control-next-icon {
    padding: 26px 22px;
    background-color: #78091459;
    border-radius: 5px;
  }

  .carousel-control-prev-icon {
    padding: 26px 22px;
    background-color: #78091459;
    border-radius: 5px;
  }


  .carousel-control-next,
  .carousel-control-prev {
    width: 5%;
  }

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  ::-webkit-scrollbar-thumb {
    background: #888;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .scrolldiv {
    width: 100%;
    height: 48vh;
    overflow-y: auto;
    padding: 10px 10px 10px 10px;
    margin: auto;
  }

  .scrolldiv-content {
    width: 100%;
    height: 40vh;
  }


  /* slider2 */
  .intro-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    border-radius: 0px 0px 150px 150px;
    background-color: #ecffc5;
  }

  .banner-left-side {
    z-index: 5;
  }

  .overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #4b1e78ad, #4b1e78bd);
    z-index: 1;
  }

  .intro-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 100px;
    gap: 50px;
    padding: 20px;
  }

  .carousel-control-next,
  .carousel-control-prev {
    bottom: 100px;
  }

  .intro-section h1 {
    /* font-family: 'Playfair Display', serif; */
    /* font-family: Arial, sans-serif; */
    font-weight: 800 !important;
    font-size: 35px;
    /* margin-bottom: 20px; */
    color: #ecffc5 !important;
    line-height: 1.2 !important;
  }

  .intro-image {
    z-index: 5;
  }

  .intro-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 0, 255, 0.69) 0%, rgba(51, 49, 29, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: rotateRays 10s linear infinite;
    z-index: 1;
  }

  font {
    font-size: 22px !important;
    line-height: 1.5;
    font-weight: 500;
    color: white !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }

  @keyframes rotateRays {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @media(max-width: 768px) {
    .intro-image::before {
      width: 100%;
      height: 40%;
    }

    .intro-section{
      border-radius: 0 !important;
    }

    .intro-section h1 {
      font-size: 20px;
      margin-bottom: 0;
      text-align: center;
    }

    font {
      font-size: 16px !important;
    }
  }