/* =========================================================
   AARAV DIGITAL - FEATURED WORK
========================================================= */

#adp-featured-work {
    position: relative;
    overflow: hidden;

    padding: 25px 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 193, 7, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(255, 193, 7, 0.06),
            transparent 30%
        ),
        #050505;

    color: #fff;
}


/* =========================================================
   CONTAINER
========================================================= */

#adp-featured-work .adp-fw-container {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   GLOW
========================================================= */

#adp-featured-work .adp-fw-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

#adp-featured-work .adp-fw-glow-left {
    left: -220px;
    top: 35%;

    background: rgba(255, 193, 7, 0.08);
}

#adp-featured-work .adp-fw-glow-right {
    right: -220px;
    bottom: 10%;

    background: rgba(255, 193, 7, 0.06);
}


/* =========================================================
   HEADER
========================================================= */

#adp-featured-work .adp-fw-header {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}

#adp-featured-work .adp-fw-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #ffc107;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

#adp-featured-work .adp-fw-label span {
    width: 45px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #ffc107
    );
}

#adp-featured-work .adp-fw-header h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;

    color: #fff;
}

#adp-featured-work .adp-fw-header h2 span {
    display: block;

    color: #ffc107;

    text-shadow:
        0 0 25px rgba(255, 193, 7, 0.15);
}

#adp-featured-work .adp-fw-header p {
    max-width: 760px;

    margin: 22px auto 0;

    color: #999;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   PROJECT CARD
========================================================= */

#adp-featured-work .adp-fw-project {
    position: relative;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    min-height: 590px;

    border: 1px solid rgba(255, 193, 7, 0.55);

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255, 193, 7, 0.035),
            rgba(0, 0, 0, 0.85)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 0 60px rgba(255, 193, 7, 0.025);
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

#adp-featured-work .adp-fw-project-content {
    position: relative;

    padding: 65px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid rgba(255, 193, 7, 0.12);
}

#adp-featured-work .adp-fw-project-number {
    position: absolute;

    top: 28px;
    left: 30px;

    color: #ffc107;

    font-size: 15px;
    font-weight: 700;
}

#adp-featured-work .adp-fw-project-tag {
    margin-bottom: 18px;

    color: #ffc107;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

#adp-featured-work .adp-fw-project-content h3 {
    margin: 0 0 25px;

    font-size: clamp(40px, 4vw, 60px);

    line-height: 1.05;

    letter-spacing: -1.5px;

    color: #fff;
}

#adp-featured-work .adp-fw-project-content p {
    max-width: 480px;

    margin: 0;

    color: #a3a3a3;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES TAGS
========================================================= */

#adp-featured-work .adp-fw-services {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 28px;
}

#adp-featured-work .adp-fw-services span {
    padding: 8px 12px;

    border: 1px solid rgba(255, 193, 7, 0.3);

    border-radius: 30px;

    color: #d0d0d0;

    font-size: 11px;

    background: rgba(255, 193, 7, 0.025);

    transition:
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

#adp-featured-work .adp-fw-services span:hover {
    color: #ffc107;

    border-color: #ffc107;

    transform: translateY(-2px);
}


/* =========================================================
   BUTTON
========================================================= */

#adp-featured-work .adp-fw-btn {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 32px;

    padding: 14px 21px;

    border: 1px solid #ffc107;

    border-radius: 7px;

    color: #ffc107;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

#adp-featured-work .adp-fw-btn span {
    font-size: 23px;

    transition: transform .3s ease;
}

#adp-featured-work .adp-fw-btn:hover {
    background: #ffc107;

    color: #050505;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255, 193, 7, 0.15);
}

#adp-featured-work .adp-fw-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   VISUAL
========================================================= */

#adp-featured-work .adp-fw-visual {
    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 193, 7, 0.10),
            transparent 42%
        ),
        #080806;
}


/* top label */

#adp-featured-work .adp-fw-visual-label {
    position: absolute;

    top: 25px;
    right: 30px;

    color: rgba(255, 193, 7, 0.65);

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================================================
   CENTER
========================================================= */

#adp-featured-work .adp-fw-center {
    position: relative;

    z-index: 8;

    width: 205px;
    height: 205px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            #27200b,
            #0c0b06 65%,
            #050505
        );

    border: 2px solid rgba(255, 193, 7, 0.8);

    box-shadow:
        0 0 45px rgba(255, 193, 7, 0.14),
        inset 0 0 35px rgba(255, 193, 7, 0.08);

    animation: adpFWCenterPulse 4s ease-in-out infinite;
}

#adp-featured-work .adp-fw-center small {
    color: #bcbcbc;

    font-size: 9px;

    letter-spacing: 4px;
}

#adp-featured-work .adp-fw-center strong {
    margin-top: 7px;

    color: #ffc107;

    font-size: 30px;

    letter-spacing: 1px;
}

#adp-featured-work .adp-fw-center span {
    margin-top: 6px;

    color: #fff;

    font-size: 11px;

    letter-spacing: 3px;
}


/* =========================================================
   CIRCLES
========================================================= */

#adp-featured-work .adp-fw-circle {
    position: absolute;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    border-radius: 50%;

    color: #050505;

    z-index: 5;

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 0 25px rgba(255, 193, 7, 0.08);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

#adp-featured-work .adp-fw-circle:hover {
    transform: scale(1.07);

    box-shadow:
        0 0 40px rgba(255, 193, 7, 0.2);
}

#adp-featured-work .adp-fw-circle strong {
    font-size: 17px;
}

#adp-featured-work .fw-circle-icon {
    font-size: 25px;
}


/* positions */

#adp-featured-work .fw-circle-1 {
    top: 17%;
    left: 32%;

    background: #cbe86b;
}

#adp-featured-work .fw-circle-2 {
    top: 17%;
    right: 11%;

    background: #78df54;
}

#adp-featured-work .fw-circle-3 {
    top: 43%;
    right: 4%;

    background: #56d5d5;
}

#adp-featured-work .fw-circle-4 {
    bottom: 14%;
    left: 17%;

    background: #ffdb5c;
}

#adp-featured-work .fw-circle-5 {
    bottom: 11%;
    right: 18%;

    background: #e6b5ff;
}


/* =========================================================
   ORBIT
========================================================= */

#adp-featured-work .adp-fw-orbit {
    position: absolute;

    width: 330px;
    height: 330px;

    border: 1px solid rgba(255, 193, 7, 0.4);

    border-radius: 50%;

    animation:
        adpFWOrbit 16s linear infinite;
}

#adp-featured-work .adp-fw-orbit::before {
    content: "";

    position: absolute;

    inset: 16px;

    border: 1px dashed rgba(255, 193, 7, 0.2);

    border-radius: 50%;
}


/* orbit dots */

#adp-featured-work .adp-fw-orbit-dot {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ffc107;

    box-shadow:
        0 0 12px #ffc107,
        0 0 25px rgba(255, 193, 7, 0.5);
}

#adp-featured-work .fw-dot-1 {
    top: 19%;
    left: 52%;
}

#adp-featured-work .fw-dot-2 {
    right: 15%;
    top: 52%;
}

#adp-featured-work .fw-dot-3 {
    bottom: 18%;
    left: 35%;
}


/* =========================================================
   BOTTOM
========================================================= */

#adp-featured-work .adp-fw-bottom {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 28px;

    padding: 25px 10px;

    border-top: 1px solid rgba(255, 193, 7, 0.12);
}

#adp-featured-work .adp-fw-bottom-item {
    flex: 1;

    padding: 0 25px;

    border-right: 1px solid rgba(255, 193, 7, 0.12);
}

#adp-featured-work .adp-fw-bottom-item:first-child {
    padding-left: 0;
}

#adp-featured-work .adp-fw-bottom-item strong {
    display: block;

    color: #ffc107;

    font-size: 26px;
}

#adp-featured-work .adp-fw-bottom-item span {
    display: block;

    margin-top: 5px;

    color: #777;

    font-size: 11px;
}

#adp-featured-work .adp-fw-bottom-text {
    padding-left: 35px;

    color: #777;

    font-size: 12px;

    letter-spacing: .5px;
}

#adp-featured-work .adp-fw-bottom-text b {
    color: #ffc107;

    margin: 0 7px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes adpFWOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes adpFWCenterPulse {

    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 45px rgba(255, 193, 7, 0.14),
            inset 0 0 35px rgba(255, 193, 7, 0.08);
    }

    50% {
        transform: scale(1.035);

        box-shadow:
            0 0 65px rgba(255, 193, 7, 0.22),
            inset 0 0 45px rgba(255, 193, 7, 0.12);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    #adp-featured-work {
        padding: 90px 0;
    }

    #adp-featured-work .adp-fw-container {
        width: min(760px, calc(100% - 50px));
    }

    #adp-featured-work .adp-fw-project {
        grid-template-columns: 1fr;
    }

    #adp-featured-work .adp-fw-project-content {
        border-right: 0;

        border-bottom: 1px solid rgba(255, 193, 7, 0.12);
    }

    #adp-featured-work .adp-fw-visual {
        min-height: 520px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #adp-featured-work {
        padding: 75px 0;
    }

    #adp-featured-work .adp-fw-container {
        width: calc(100% - 34px);
    }


    /* Header */

    #adp-featured-work .adp-fw-header {
        margin-bottom: 42px;
    }

    #adp-featured-work .adp-fw-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    #adp-featured-work .adp-fw-label span {
        width: 24px;
    }

    #adp-featured-work .adp-fw-header h2 {
        font-size: 40px;

        line-height: 1.08;

        letter-spacing: -1px;
    }

    #adp-featured-work .adp-fw-header p {
        font-size: 14px;

        line-height: 1.7;

        margin-top: 18px;
    }


    /* Project */

    #adp-featured-work .adp-fw-project {
        min-height: auto;

        border-radius: 20px;
    }


    /* Content */

    #adp-featured-work .adp-fw-project-content {
        padding: 55px 25px 35px;
    }

    #adp-featured-work .adp-fw-project-number {
        top: 22px;
        left: 22px;
    }

    #adp-featured-work .adp-fw-project-tag {
        font-size: 9px;

        letter-spacing: 1.5px;
    }

    #adp-featured-work .adp-fw-project-content h3 {
        font-size: 38px;

        line-height: 1.05;
    }

    #adp-featured-work .adp-fw-project-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* Visual */

    #adp-featured-work .adp-fw-visual {
        min-height: 470px;
    }

    #adp-featured-work .adp-fw-visual-label {
        top: 20px;
        right: 20px;

        font-size: 8px;
    }


    /* Center */

    #adp-featured-work .adp-fw-center {
        width: 145px;
        height: 145px;
    }

    #adp-featured-work .adp-fw-center strong {
        font-size: 22px;
    }

    #adp-featured-work .adp-fw-center span {
        font-size: 8px;
    }


    /* Circles */

    #adp-featured-work .adp-fw-circle {
        width: 105px;
        height: 105px;
    }

    #adp-featured-work .adp-fw-circle strong {
        font-size: 13px;
    }

    #adp-featured-work .fw-circle-icon {
        font-size: 20px;
    }

    #adp-featured-work .fw-circle-1 {
        top: 17%;
        left: 8%;
    }

    #adp-featured-work .fw-circle-2 {
        top: 17%;
        right: 5%;
    }

    #adp-featured-work .fw-circle-3 {
        top: 43%;
        right: -2%;
    }

    #adp-featured-work .fw-circle-4 {
        bottom: 12%;
        left: 5%;
    }

    #adp-featured-work .fw-circle-5 {
        bottom: 10%;
        right: 7%;
    }


    /* Orbit */

    #adp-featured-work .adp-fw-orbit {
        width: 250px;
        height: 250px;
    }


    /* Bottom */

    #adp-featured-work .adp-fw-bottom {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

        padding-top: 25px;
    }

    #adp-featured-work .adp-fw-bottom-item {
        padding: 0;

        border-right: 0;
    }

    #adp-featured-work .adp-fw-bottom-item strong {
        font-size: 23px;
    }

    #adp-featured-work .adp-fw-bottom-item span {
        font-size: 10px;
    }

    #adp-featured-work .adp-fw-bottom-text {
        grid-column: 1 / -1;

        padding: 8px 0 0;

        font-size: 10px;
    }

}
/* =========================================================
   FEATURED PROJECT - GROWTH ORBIT VISUAL
========================================================= */

.adp-growth-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* -------------------------
   ORBIT RINGS
-------------------------- */

.adp-growth-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px dashed rgba(255, 193, 7, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.adp-growth-orbit.orbit-one {
    width: 330px;
    height: 330px;
    animation: adpOrbitRotate 18s linear infinite;
}

.adp-growth-orbit.orbit-two {
    width: 410px;
    height: 410px;
    border-color: rgba(255, 193, 7, 0.14);
    animation: adpOrbitRotateReverse 28s linear infinite;
}

/* -------------------------
   CENTER
-------------------------- */

.adp-growth-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 205px;
    height: 205px;

    transform: translate(-50%, -50%);

    border: 2px solid #f5bd00;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 193, 7, 0.12),
            rgba(0, 0, 0, 0.96) 65%
        );

    box-shadow:
        0 0 30px rgba(255, 193, 7, 0.18),
        inset 0 0 35px rgba(255, 193, 7, 0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 10;
    text-align: center;
}

.adp-growth-core span {
    color: #fff;
    font-size: 11px;
    letter-spacing: 6px;
    margin-left: 6px;
    margin-bottom: 12px;
}

.adp-growth-core strong {
    color: #ffbd00;
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.adp-growth-core small {
    color: #fff;
    font-size: 10px;
    letter-spacing: 5px;
    margin-top: 15px;
}

/* -------------------------
   NODES
-------------------------- */

.adp-growth-node {
    position: absolute;

    width: 112px;
    height: 112px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 15;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    cursor: pointer;

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

.adp-growth-node:hover {
    transform: scale(1.12);
    box-shadow:
        0 0 35px rgba(255,193,7,0.45);
}

.adp-node-icon {
    font-size: 27px;
    line-height: 1;
    margin-bottom: 8px;
    color: #111;
}

.adp-growth-node small {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.5px;
}

/* -------------------------
   NODE COLORS
-------------------------- */

.node-seo {
    background: #d4ed67;
}

.node-social {
    background: #75df4e;
}

.node-google {
    background: #50d0d5;
}

.node-content {
    background: #d59af0;
}

.node-media {
    background: #ffd85b;
}

/* -------------------------
   NODE POSITIONS
-------------------------- */

.node-seo {
    top: 18%;
    left: 31%;
}

.node-social {
    top: 17%;
    right: 19%;
}

.node-google {
    top: 42%;
    right: 10%;
}

.node-content {
    bottom: 11%;
    right: 27%;
}

.node-media {
    bottom: 15%;
    left: 18%;
}

/* -------------------------
   ORBIT ANIMATION
-------------------------- */

@keyframes adpOrbitRotate {

    0% {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    100% {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}

@keyframes adpOrbitRotateReverse {

    0% {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    100% {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

}

/* -------------------------
   FLOATING GLOW
-------------------------- */

.adp-growth-node::after {
    content: "";
    position: absolute;
    inset: -8px;

    border-radius: 50%;

    border: 1px solid rgba(255,193,7,0.15);

    animation: adpNodeGlow 3s ease-in-out infinite;
}

@keyframes adpNodeGlow {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .adp-growth-visual {
        height: 450px;
    }

    .adp-growth-orbit.orbit-one {
        width: 290px;
        height: 290px;
    }

    .adp-growth-orbit.orbit-two {
        width: 350px;
        height: 350px;
    }

    .adp-growth-core {
        width: 175px;
        height: 175px;
    }

    .adp-growth-node {
        width: 95px;
        height: 95px;
    }

    .node-seo {
        left: 23%;
    }

    .node-social {
        right: 15%;
    }

    .node-google {
        right: 5%;
    }

    .node-media {
        left: 12%;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .adp-growth-visual {
        height: 390px;
        min-height: 390px;
    }

    .adp-growth-orbit.orbit-one {
        width: 245px;
        height: 245px;
    }

    .adp-growth-orbit.orbit-two {
        width: 310px;
        height: 310px;
    }

    .adp-growth-core {
        width: 145px;
        height: 145px;
    }

    .adp-growth-core span {
        font-size: 8px;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .adp-growth-core strong {
        font-size: 24px;
    }

    .adp-growth-core small {
        font-size: 8px;
        letter-spacing: 3px;
        margin-top: 10px;
    }

    .adp-growth-node {
        width: 75px;
        height: 75px;
    }

    .adp-node-icon {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .adp-growth-node small {
        font-size: 10px;
    }

    .node-seo {
        top: 14%;
        left: 17%;
    }

    .node-social {
        top: 14%;
        right: 12%;
    }

    .node-google {
        top: 41%;
        right: 4%;
    }

    .node-content {
        bottom: 8%;
        right: 19%;
    }

    .node-media {
        bottom: 10%;
        left: 10%;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .adp-growth-visual {
        height: 350px;
    }

    .adp-growth-orbit.orbit-one {
        width: 220px;
        height: 220px;
    }

    .adp-growth-orbit.orbit-two {
        width: 275px;
        height: 275px;
    }

    .adp-growth-core {
        width: 130px;
        height: 130px;
    }

    .adp-growth-node {
        width: 68px;
        height: 68px;
    }

}
/* =========================================
   AEO / GEO PORTFOLIO SERVICE LINKS
========================================= */

.adp-fw-services a,
.adp-fw-services span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: all 0.25s ease;
}

.adp-fw-services a {
    color: inherit;
}

.adp-fw-services a:hover {
    color: #d6a82e;
}