/* ===============================
   WRAPPER
================================*/
.dc-sc-wrapper{
    width:100%;
    position:relative;
    overflow:hidden;
}

.dc-sc-title{
    text-align:center;
    margin-bottom:80px;
}

/* ===============================
   LAYOUT
================================*/
.dc-sc-layout{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    margin: 130px 0;
}

.dc-sc-layout.reverse{
    flex-direction:row-reverse;
}

/* ===============================
   ITEMS SIDE
================================*/
.dc-sc-items{
    flex:0 0 48%;
    z-index:3;
}

.dc-sc-items-inner{
    display:flex;
    flex-direction:column;
    gap:80px;
}

.dc-sc-item{
    position:relative;
    background:#d9d9d9;
    padding:32px 40px;
    border-radius:16px;
    width:85%;
}

.dc-sc-item:nth-child(1),
.dc-sc-item:nth-child(3) {
    left: 11%;
}

/* CONNECTOR LINE */
.dc-sc-item:after{
    content:"";
    position:absolute;
    top:50%;
    /* right:-180px;
    width:180px; */
    right: -100px;
    width: 100px;
    height:3px;
    background:#cfcfcf;
    transform:translateY(-50%);
}

.connector-dot{
    position:absolute;
    top:50%;
    /* right:-192px; */
    right:-116px;
    width:18px;
    height:18px;
    background:#cfcfcf;
    border-radius:50%;
    transform:translateY(-50%);
    z-index:5;
}

.connector-dot-left {
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    background: #cfcfcf;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

/* ===============================
   RIGHT SIDE
================================*/
.dc-sc-right{
    flex:0 0 52%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* USE YOUR HALF BORDER IMAGE */
.dc-sc-right::before{
    content:"";
    position:absolute;
    /* width:900px;
    height:900px; */
    width: 750px;
    height: 750px;
    background:url("https://aurum.websitelaunching.com/wp-content/uploads/2026/03/Ellipse-12.png") no-repeat center;
    background-size:contain;
    /* right:-350px; */
    right: 238px;
    top:50%;
    transform:translateY(-50%);
    z-index:0;
}

/* IMAGE CIRCLE */
.dc-image-wrap{
    /* width:480px;
    height:480px; */
    width: 650px;
    height: 650px;
    border-radius:50%;
    overflow:hidden;
    position:relative;
    z-index:2;
}

.dc-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    height: 100% !important;
}

/* ===============================
   REVERSE SUPPORT
================================*/
.dc-sc-layout.reverse .dc-sc-item:after{
    left:-180px;
    right:auto;
}

.dc-sc-layout.reverse .connector-dot{
    left:-192px;
    right:auto;
}

.dc-sc-layout.reverse .dc-sc-right::before{
    left:-350px;
    right:auto;
}

/* ===============================
   RESPONSIVE
================================*/
@media(max-width:1400px){
    .dc-image-wrap{
        width:400px;
        height:400px;
    }

    .dc-sc-right::before{
        width:700px;
        height:700px;
        right:-250px;
    }
}

@media(max-width:1024px){
    .dc-sc-layout{
        flex-direction:column;
        gap:60px;
    }

    .dc-sc-layout.reverse{
        flex-direction:column;
    }

    .dc-sc-item{
        width:100%;
    }

    .dc-sc-item:after,
    .connector-dot{
        display:none;
    }

    .dc-sc-right::before{
        display:none;
    }

    .dc-image-wrap{
        width:320px;
        height:320px;
    }
}

/* ===============================
   RESPONSIVE POLISH (OVERRIDES ONLY)
   Keeps desktop untouched
================================*/
@media (max-width: 1200px) {
    .dc-sc-wrapper {
        overflow: visible;
    }

    .dc-sc-title {
        margin-bottom: 48px;
    }

    .dc-sc-layout {
        margin: 60px 0;
        gap: 36px;
        align-items: stretch;
    }

    .dc-sc-items {
        flex: 1 1 100%;
    }

    .dc-sc-items-inner {
        gap: 22px;
    }

    .dc-sc-item {
        width: 100%;
        max-width: 100%;
        left: 0 !important;
        padding: 22px 24px;
        border-radius: 14px;
    }

    .dc-sc-item:after,
    .connector-dot,
    .connector-dot-left {
        display: none !important;
    }

    .dc-sc-right {
        flex: 1 1 100%;
        margin-top: 50px;
        --dc-sc-tablet-image-size: min(420px, 82vw);
    }

    .dc-sc-right::before {
        display: block !important;
        width: calc(var(--dc-sc-tablet-image-size) + 100px);
        height: calc(var(--dc-sc-tablet-image-size) + 100px);
        right: auto;
        left: 28%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-image: url("https://aurum.websitelaunching.com/wp-content/uploads/2026/03/Ellipse-12.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 0;
    }

    .dc-sc-layout.reverse .dc-sc-right::before {
        left: 28%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    .dc-image-wrap {
        width: var(--dc-sc-tablet-image-size);
        height: var(--dc-sc-tablet-image-size);
        margin: 0 auto;
    }

    .dc-sc-item h4 {
        margin: 0 0 8px;
        line-height: 1.25;
    }

    .dc-sc-item p {
        margin: 0;
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    .dc-sc-title {
        margin-bottom: 32px;
    }

    .dc-sc-layout {
        margin: 36px 0;
        gap: 24px;
    }

    .dc-sc-items-inner {
        gap: 14px;
    }

    .dc-sc-item {
        padding: 16px 16px;
        border-radius: 12px;
    }

    .dc-sc-item h4 {
        margin-bottom: 6px;
        font-size: 18px;
    }

    .dc-sc-item p {
        font-size: 14px;
        line-height: 1.45;
    }

    .dc-image-wrap {
        width: min(300px, 84vw);
        height: min(300px, 84vw);
    }

    .dc-sc-right::before {
        width: min(380px, 95vw);
        height: min(380px, 95vw);
    }
}

/* Tablet fine-tune: keep ellipse better aligned with image */
@media (min-width: 768px) and (max-width: 1200px) {
    .dc-sc-right::before {
        left: 34%;
    }

    .dc-sc-layout.reverse .dc-sc-right::before {
        left: 34%;
    }
}
