#sideHolderCircle{
   margin-top: -90px;
   margin-left: -70px;
}
.holderCircle {
    width: 560px;
    height: 560px;
    border-radius: 100%;
    margin: 60px auto;
    position: relative;
}

.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}

.dotCircle .itemDot {
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    /* Gradient with #c03b32 (red) and #090134 (blue) */
    background: #c03b32; /* Fallback color for older browsers */
    background: -moz-linear-gradient(left, #c03b32 0%, #090134 100%); /* Firefox 3.6-15 */
    background: -webkit-linear-gradient(left, #c03b32 0%, #090134 100%); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #c03b32 0%, #090134 100%); /* Modern browsers */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c03b32', endColorstr='#090134', GradientType=1); 
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 150px !important;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #fff;
    overflow: hidden;
    padding: 10px;
}
.dotCircle .itemDot img{
    width: calc(100% - 0px); /* Reduce image width to account for padding */
    height: calc(100% - 0px); /* Reduce image height to account for padding */
    object-fit: contain; /* Ensure image fits nicely within its box */
    display: block;
    margin: auto;
}
.round {
    position: absolute;
    left: 50px;
    top: 45px;
    width: 470px;
    height: 470px;
    border: 5px dotted #fff;
    border-radius: 100%;
    -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    background: #7d4ac7; /* Old browsers */
    background: -moz-linear-gradient(left, #7d4ac7 0%, #a733bb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #7d4ac7 0%, #a733bb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #7d4ac7 0%, #a733bb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1); /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
}
.contentCircle {
    width: 260px;
    border-radius: 100%;
    color: #fff;
    position: relative;
    top: 170px;
    left: 49%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 85%;
    height: 80%;
    top: 0;
    right: 0;
    margin: auto;
    /* line-height: 200px; */
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(0.9);
    transition: 0.5s;
}

/* Media Queries */
@media only screen and (min-width: 300px) and (max-width: 599px) {
    #sideHolderCircle {
        margin-top: -410px;
        margin-left: 170px;
    }
    .holderCircle {
        width: 280px;
        height: 280px;
        margin: 30px auto;
    }
    
    .dotCircle {
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .dotCircle .itemDot {
        display: block;
        width: 75px;
        height: 75px;
        line-height: 75px !important;
        padding: 5px;
    }
    .round {
        position: absolute;
        left: 25px;
        top: 22.5px;
        width: 235px;
        height: 235px;
    }
    .contentCircle {
        display: none;
    }
    
    .contentCircle .CirItem {
        font-size: 10px;
        width: 85%;
        height: 80%;
        top: 0;
        right: 0;
        margin: auto;
    }
    
}

/* Placeholder for additional media queries */
@media only screen and (min-width: 600px) and (max-width: 767px) { }
@media only screen and (min-width: 768px) and (max-width: 991px) { }
@media only screen and (min-width: 992px) and (max-width: 1199px) { }
@media only screen and (min-width: 1200px) and (max-width: 1499px) { }

.title-box .title {
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: -2;
}

.title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    font-weight: 800;
    color: #c03b32;
    font-size: 24px;
}

.title-box p {
    font-size: 17px;
    line-height: 2em;
}
