 .ceoBody {
        font-size: 16px;
      }
      .ceoBody body{
        font-family: Roboto,sans-serif;
        letter-spacing: .5px;
        background: #4c73c8 url(/img/ceo/BG_Dash.svg) left center no-repeat;
        padding: 0;
        margin: 0;
        font-size: 16px;
        height: 100vh;
      }
      .customCarouselCEO .carousel-control.left{
        float: left;
        font-size: 50px;
        color: #abb6e3;
        opacity: 1;
        padding: 22px;
        margin-left: -35px;
        left: 0;
        top: 4px;
        border-radius: 0;
        border-top-left-radius: 15px;
        background: transparent;
      }
      .customCarouselCEO .carousel-control.right{
        float: right;
        font-size: 50px;
        color: #abb6e3;
        opacity: 1;
        padding: 22px;
        margin-right: -25px;
        border-top-right-radius: 15px;
        right: 0;
        top:4px;
        border-radius: 0;
        border-top-right-radius: 15px;
        background: transparent;
      }
      .customCarouselCEO .carousel-control .glyphicon-chevron-left,.customCarouselCEO  .carousel-control .glyphicon-chevron-right,.customCarouselCEO  .carousel-control .icon-next,.customCarouselCEO  .carousel-control .icon-prev {
        position: absolute;
        top: 6px;
        z-index: 5;
        display: inline-block;
        margin-top: 0px;
        font-size: 1rem;
      }
      @media(max-width: 1440px){
        .ceoBody, .ceoBody body{
          font-size: 14px;
        }
      }
      @media(max-width: 1366px){
        .ceoBody, .ceoBody body{
          font-size: 11px;
        }
      }
      @media(max-width: 1200px){
        .ceoBody, .ceoBody body{
          font-size: 10px;
        }
      }
      @media screen and (min-width: 768px){
        .customCarouselCEO .carousel-control .glyphicon-chevron-right,.customCarouselCEO  .carousel-control .icon-next {
          margin-right: -10px;
          left: 0px;
        }
        .customCarouselCEO .carousel-control .glyphicon-chevron-left,.customCarouselCEO  .carousel-control .icon-prev {
          margin-left: -10px;
          left: 10px;
        }
      }
      .tabData .tab-content{
        padding: 15px;
      }
/* ---------Bhashini CSS START Here--------- */

.bhashini-dropdown {
    position: fixed;
    z-index: 1000;
}

.bhashini-dropdown-btn {
    display: flex;
    background-color: #2743A3;
    color: #fff !important;
    padding: 1rem 1.12rem;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    width: 13.75rem;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    font-family: "Noto Sans";

}


.bhashini-dropdown-btn-icon {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bhashini-dropdown-content {
    display: none;
    position: absolute;
    max-height: 25rem;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    /* bottom: 100%; */
    border-radius: 0.5rem;
    border: 1px solid var(--Grey-Grey-45, #737373);
    background: rgba(255, 255, 255, 0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bhashini-dropdown-content>div {
    color: black;
    padding: .62rem 1rem;
    text-decoration: none;
    display: flex;
}



.bhashini-dropdown-content div:hover {
    background-color: #f1f1f1;
}

.bhashini-dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.bhashini-branding {
    background-color: #fff;
    color: #555;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    bottom: 0;
    justify-content: end;
    align-items: center;
    gap: .5rem;
    font-size: .625rem;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: auto;
}

.bhashini-dropdown-btn-text {
    color: #fff;
    font-family: "Noto Sans";
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    margin-bottom: auto;
}


.bhashini-dropdown-content.show-up {
    display: block;
    bottom: 100%;
}

.bhashini-dropdown-content.show-down {
    display: block;
    top: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.bhashini-feedback-div {
    margin-right: auto;
    /* position: absolute; */
    /* top: -120%;
    left: 36%; */
    /* padding: 1rem .75rem;
    border-radius: 0.25rem;
    background: #F4FAFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: max-content;
    margin-top: 5%;
    margin-left: auto; */
}


.bhashini-feedback-button {
    display: flex;
    gap: .5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    
}


.bhashini-feedback-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 1rem
}

.bhashini-feedback-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.star-rating {
    display: flex;
    gap: .75rem;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
}

textarea {
    width: 100%;
    height: 80px;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-feedback {
    margin-top: 10px;
    background-color: #2743A3;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: max-content;
    float: right;
}

.bhashini-feedback-star-container {
    display: flex;
    gap: .75rem;
    flex-direction: column;
}



.star-rating {
    display: flex;
    gap: .75rem;
}

.star {
    width: 30px;
    height: 29px;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.star svg path {
    fill: #D9D9D9;
    /* Default (Unfilled) */
}

.star.hovered svg path,
.star.selected svg path {
    fill: #FBBC04;
    /* Highlighted & Selected */
}



.feedback-textarea {
    margin-top: 1.12rem;
    padding: 1rem;
}


.bhashini-feedback-heading {
    font-size: 1.12rem;
}


#suggested-feedback-checkbox {
    margin-top: 1.12rem;
}



.feedback-suggested-feedback {
    margin-top: 1.12rem;
    padding: 1rem;
}
/* ---------Bhashini CSS END Here--------- */