.holderCircle {
    width: 500px;
    height: 500px;
    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: 80px;
    height: 80px;
    position: absolute;
    background: #f2f2f2; /* Light gray background */
    color: #ed591e;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    transition: 0.5s;
}

.dotCircle .itemDot.active {
    color: #ffffff; /* White icon for active tab */
    background: #ed591e; /* Orange background for active tab */
    transition: 0.5s;
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
}

.dotCircle .itemDot:hover {
    color: #ffffff; /* White icon on hover */
    background: #ed591e; /* Orange background on hover */
    transition: 0.5s;
}

/* Adding dots for active tabs with depth */
.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.dotCircle .itemDot.active .forActive {
    display: block;
}

/* Lower dot (below the item) */
.dotCircle .itemDot .forActive::after {
    content: '';
    width: 12px; /* Larger size for the bottom dot */
    height: 12px;
    border: 3px solid #ed591e; /* Orange color for dot */
    bottom: -40px; /* Position below the item */
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    border-radius: 100%;
    background-color: #ed591e; /* Fill the dot */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Adding depth with shadow */
    filter: blur(1px); /* Slight blur to make it smooth */
}

/* Upper dot (above the item) */
.dotCircle .itemDot .forActive::before {
    content: '';
    width: 8px; /* Smaller size for the top dot */
    height: 8px;
    border: 3px solid #ed591e; /* Orange color for dot */
    top: -40px; /* Position above the item */
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    border-radius: 100%;
    background-color: #ed591e; /* Fill the dot */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Adding depth with shadow */
    filter: blur(1px); /* Slight blur to make it smooth */
}

.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 410px;
    height: 410px;
    border: 2px dotted #ed591e; /* Dotted border for the circle */
    border-radius: 100%;
    animation: rotation 100s infinite linear;
}

.contentCircle {
    width: 250px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 120px; /* Adjusted to move content upwards */
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: -20px; /* Adjusted to move content down slightly for vertical centering */
    right: 0;
    margin: auto;
    line-height: 1.5;
    padding-top: 30px; /* Added padding to move content down for better vertical centering */
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}

/* Update title styling to add more space on top for vertical centering */
.title-box .title {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 2px;
    color: #ed591e;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 20px; /* Added margin to push title down for better centering */
    margin-bottom: 10px; /* Reduced bottom margin to improve compactness */
}

/* Update paragraph inside CirItem to align with the rest of the content */
.title-box p {
    font-size: 17px;
    line-height: 1.8em;
    margin-top: 5px; /* Adjusted to provide balance with title */
}

.contentCircle .CirItem i {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
}

/* Styles for responsiveness */
@media only screen and (min-width: 300px) and (max-width: 599px) {
    .holderCircle {
        margin: 110px auto;
    }
    .dotCircle {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
}

/* Additional styles for other screen sizes can go here */
@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: 2px;
    position: relative;
    z-index: -1;
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
}

.title-box span {
    font-weight: 800;
    color: #640178;
}

.title-box p {
    font-size: 15px;
    line-height: 2em;
}
