.carousel {
    overflow: hidden;
    position: relative;
  }

  .imgclasshomepg{
    height: 8rem;
    width: auto;
  }
  /*.alignclass{*/
    /* margin: auto auto; */
  /*  width: 100%;*/
    /* background-color: aqua; */
  /*  display: flex;*/
  /*  justify-content: center;*/
  /*  align-items: center;*/
  /*   gap: 40px; */

  }

  .thelogoclass{
    border-bottom: 2px gray solid;
  }

  .flexclass{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .flexclass1{
    object-fit: cover;
    /* background-color: red; */
    /* padding-left: 0.5rem; */
    padding-bottom: 1rem;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
    /* flex-shrink: 0; */
  }

  .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .indicator-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .indicator-dot.active {
    background-color: rgba(255, 255, 255, 1);
  }

  .boxshadowclass {
    /* box-shadow: 2px 4px 4px 0px #00000040;
    box-shadow: 2px 4px 4px 0px #00000040; */

    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;

  }

  .toparrow{
    position: fixed;
    z-index: 999;
    right: 2rem;
    bottom: 0;
  }
  .toparrowimg{
    height: 4rem;
    width: auto;
    object-position: center;
  
  }

  .swiper {
    width: 600px;
    height: 300px;
  }

  /* Another Corousel  */
  .carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .carousel-slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .navigation-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .nav-arrow-button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .indicator-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .single-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .single-indicator.active-dot {
    background-color: rgba(255, 255, 255, 1);
  }

  .requiredclass::after {
    padding: 3px;
    content: "*";
    color: red;
    font-size: 20px;
}