/* ==========================================================
   Circular Content Switcher - Frontend Styles
   Developer: Sonu Rajpoot
   All class names prefixed with sr-ccs- (unique)
   ========================================================== */

/* ---------- Section Wrap ---------- */
.sr-ccs-section-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    overflow: hidden;
    padding: 20px;
    background-color: #000000;
}

/* ---------- Responsive Scaler ---------- */
.sr-ccs-responsive-scaler {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 1 / 1;
}

/* ---------- Main Wrapper ---------- */
.sr-ccs-wrapper {
    --sr-ccs-radius: 250px;
    --sr-ccs-transition: all 0.4s ease-in-out;
    position: relative;
    width: 650px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* ---------- Orbit Line ---------- */
.sr-ccs-orbit-line {
    position: absolute;
    width: calc(var(--sr-ccs-radius) * 2);
    height: calc(var(--sr-ccs-radius) * 2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-style: solid;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ---------- Central Display Circle ---------- */
.sr-ccs-central-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px;
    z-index: 10;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

/* ---------- Content Inner (fade) ---------- */
.sr-ccs-content-inner {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.sr-ccs-fade-text {
    opacity: 0;
}

/* ---------- Center Title ---------- */
.sr-ccs-display-title {
/*     color: #000000;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3; */
	display:none;
}

/* ---------- Center Description ---------- */
.sr-ccs-display-desc {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

/* ---------- Outer Orbit Nodes ---------- */
.sr-ccs-outer-node {
    position: absolute;
    width: 130px;
    height: 130px;
    background: #000000;
    border: 4px solid var(--sr-ccs-node-color, #00c3ff);
    border-style: solid;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--sr-ccs-transition);
    color: #ffffff;
    padding: 10px;
    /* Polar positioning using CSS cos/sin (supported in modern browsers) */
    left: calc(50% + cos(var(--sr-ccs-angle)) * var(--sr-ccs-radius));
    top: calc(50% - sin(var(--sr-ccs-angle)) * var(--sr-ccs-radius));
    transform: translate(-50%, -50%);
    text-decoration: none;
    box-sizing: border-box;
}

.sr-ccs-outer-node:hover {
    opacity: 0.9;
}

/* ---------- Active Node ---------- */
.sr-ccs-outer-node.sr-ccs-active {
    box-shadow: 0 0 35px var(--sr-ccs-node-color, #00c3ff);
    z-index: 30;
}

/* ---------- Node Icon ---------- */
.sr-ccs-node-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1;
    color: #ffffff;
}

.sr-ccs-node-icon i,
.sr-ccs-node-icon svg {
    font-size: inherit;
    fill: currentColor;
    display: inline-block;
}

/* ---------- Node Label ---------- */
.sr-ccs-node-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
    color: #ffffff;
}

/* ==========================================================
   RESPONSIVE SCALING — JS-Driven (auto-scale on resize)
   These CSS rules act as fallback:
   ========================================================== */
@media (max-width: 700px) {
    .sr-ccs-wrapper {
        transform: scale(0.8);
    }
}
@media (max-width: 550px) {
    .sr-ccs-wrapper {
        transform: scale(0.65);
    }
}
@media (max-width: 450px) {
    .sr-ccs-wrapper {
        transform: scale(0.5);
    }
}
@media (max-width: 350px) {
    .sr-ccs-wrapper {
        transform: scale(0.45);
    }
}
