
.carousel-c1-a {
    position: relative;
    height: 35vh;
    width: 40vw;
    max-width: 500px;
    background: transparent!important;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-content-c1-a {
    position: relative;
    height: 28vh;
    margin-right: 50px;

    background: transparent!important;
}

.carousel-item-c1-a {

    background: transparent!important;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 50px);
    opacity: 0;
    transform: translateY(200px); /* Slightly larger initial translation for a smoother effect */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Slower transition */
    text-align: left;

    display: flex;
    flex-direction: column;
}

.carousel-item-c1-a.active {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item-c1-a.exiting {
    opacity: 0;
    transform: translateY(300px);
}

.Header-c1a {
    background: transparent!important;

    padding-bottom: 10px;
    font-size: 1rem;
}

/* Updated carousel pagination styles */
.carousel-pagination-c1-a {
    background: transparent!important;

    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;

    background: transparent!important;
}

.carousel-dot-c1-a {

    width: 8px;
    height: 8px;
    background: #b0b0b0!important; /* Light gray for inactive dots */
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
    transition: background 0.3s, opacity 0.3s, transform 0.3s;
}

.carousel-dot-c1-a.active {
    
    border: 1px solid #004080!important; /* Dark blue border for active dot */
    background-color: transparent!important;   /* White fill for active dot */
    opacity: 1;
    width: 14px;               /* Increase size when active */
    height: 14px;
    transform: scale(1.2);     /* Scale up for smoother effect */
}

.Header-c1a{
    background: transparent!important;

    font-size: 26px;
    font-weight: 750;

    color: rgb(6, 57, 112)!important;
}

.Body-c1a{
    background: transparent!important;

    padding: 10px 0;
    font-size: 15px;

    font-weight: 600;

    color: grey!important;
}

.Btn-c1a{
    background: transparent!important;

}

.btn-learnMore{
    
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 5px;
    background-color: rgb(6, 57, 112)!important;
    color: white;

    border: 0px;
}

.fa-bell-o{
    padding-right: 10px;
}

@media (max-width:1200px) {
    .carousel-c1-a {
        position: relative;
        height: 35vh;
        width: 100vh;
        background: transparent!important;
        border-radius: 10px;
        overflow: hidden;
        padding: 20px;
        box-sizing: border-box;
    }

    
}

@media (max-width:570px) {
    .carousel-c1-a {
        position: relative;
        height: 35vh;
        width: 100vw;
        background: transparent!important;
        border-radius: 10px;
        overflow: hidden;
        padding: 20px;
        box-sizing: border-box;
    }
    

    
}

