/* Start custom CSS for html, class: .elementor-element-598947f *//* =========================================
   DIGIFYY HERO SECTION
========================================= */

:root {
    --digifyy-cyan: #00d9ff;
    --digifyy-cyan-dark: #009fc2;
    --digifyy-gold: #d4af37;
    --digifyy-gold-light: #f1d36e;
    --digifyy-black: #030507;
    --digifyy-dark: #080c12;
    --digifyy-card: #0d141d;
    --digifyy-white: #ffffff;
    --digifyy-text: #aeb9c7;
    --digifyy-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--digifyy-black);
    color: var(--digifyy-white);
    font-family: "Inter", Arial, sans-serif;
}

.digifyy-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.digifyy-hero-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 217, 255, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 35%,
            rgba(212, 175, 55, 0.1),
            transparent 30%
        ),
        var(--digifyy-black);
}

.digifyy-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.digifyy-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.glow-left {
    top: 120px;
    left: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 217, 255, 0.11);
}

.glow-right {
    right: -150px;
    bottom: 30px;
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, 0.09);
}

.digifyy-hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 75px;
}

/* =========================================
   HERO CONTENT
========================================= */

.digifyy-hero-content {
    position: relative;
    z-index: 3;
}

.digifyy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 9px 15px;
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 50px;
    color: #d8f8ff;
    background: rgba(0, 217, 255, 0.07);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(12px);
}

.badge-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--digifyy-cyan);
    box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.12);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(0, 217, 255, 0.12);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(0, 217, 255, 0.03);
    }
}

.digifyy-hero-title {
    max-width: 720px;
    margin: 0 0 25px;
    color: var(--digifyy-white);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 850;
    line-height: 0.99;
    letter-spacing: -4px;
}

.digifyy-hero-title span {
    display: block;
    color: var(--digifyy-cyan);
    background: linear-gradient(
        90deg,
        var(--digifyy-cyan),
        var(--digifyy-gold-light)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digifyy-hero-description {
    max-width: 650px;
    margin: 0;
    color: var(--digifyy-text);
    font-size: 17px;
    line-height: 1.8;
}

.digifyy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.digifyy-primary-btn,
.digifyy-secondary-btn {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.digifyy-primary-btn {
    color: #001014;
    background: linear-gradient(
        135deg,
        var(--digifyy-cyan),
        var(--digifyy-gold-light)
    );
    box-shadow: 0 16px 45px rgba(0, 217, 255, 0.22);
}

.digifyy-primary-btn:hover {
    color: #001014;
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 217, 255, 0.34);
}

.digifyy-primary-btn span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.digifyy-primary-btn:hover span {
    transform: translateX(5px);
}

.digifyy-secondary-btn {
    color: var(--digifyy-white);
    border: 1px solid var(--digifyy-border);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(14px);
}

.digifyy-secondary-btn:hover {
    color: var(--digifyy-cyan);
    border-color: var(--digifyy-cyan);
    transform: translateY(-4px);
}

/* =========================================
   TRUST AREA
========================================= */

.digifyy-hero-trust {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 38px;
}

.digifyy-avatar-group {
    display: flex;
    align-items: center;
}

.digifyy-avatar-group span {
    display: inline-flex;
    width: 41px;
    height: 41px;
    align-items: center;
    justify-content: center;
    margin-left: -9px;
    border: 2px solid var(--digifyy-black);
    border-radius: 50%;
    color: #001014;
    background: var(--digifyy-cyan);
    font-size: 10px;
    font-weight: 900;
}

.digifyy-avatar-group span:first-child {
    margin-left: 0;
}

.digifyy-avatar-group span:nth-child(2) {
    background: var(--digifyy-gold);
}

.digifyy-avatar-group span:nth-child(3) {
    color: white;
    background: #253343;
}

.digifyy-avatar-group span:nth-child(4) {
    background: #f4f4f4;
}

.digifyy-stars {
    color: var(--digifyy-gold);
    font-size: 13px;
    letter-spacing: 3px;
}

.digifyy-trust-content p {
    margin: 5px 0 0;
    color: var(--digifyy-text);
    font-size: 11px;
}

.digifyy-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.digifyy-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d2dae3;
    font-size: 11px;
    font-weight: 650;
}

.digifyy-hero-feature span {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #001014;
    background: var(--digifyy-cyan);
    font-size: 9px;
    font-weight: 900;
}

/* =========================================
   HERO IMAGE
========================================= */

.digifyy-hero-visual {
    position: relative;
}

.digifyy-main-image-card {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 30px;
    background: var(--digifyy-card);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 70px rgba(0, 217, 255, 0.08);
}

.digifyy-main-image-card::before {
    position: absolute;
    z-index: 4;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    content: "";
    background: linear-gradient(
        145deg,
        rgba(0, 217, 255, 0.7),
        transparent 32%,
        transparent 70%,
        rgba(212, 175, 55, 0.55)
    );
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#ffffff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.digifyy-main-image-card > img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.digifyy-main-image-card:hover > img {
    transform: scale(1.05);
}

.digifyy-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 5, 7, 0.96) 0%,
            rgba(3, 5, 7, 0.3) 52%,
            rgba(3, 5, 7, 0.1) 100%
        ),
        linear-gradient(
            90deg,
            rgba(0, 217, 255, 0.08),
            transparent 50%
        );
}

.digifyy-dashboard-header {
    position: absolute;
    z-index: 5;
    top: 22px;
    right: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(3, 5, 7, 0.66);
    backdrop-filter: blur(18px);
}

.digifyy-dashboard-live {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #f5f8fb;
    font-size: 11px;
    font-weight: 750;
}

.digifyy-dashboard-live span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #36e278;
    box-shadow: 0 0 0 5px rgba(54, 226, 120, 0.14);
}

.digifyy-dashboard-date {
    color: #9ca8b5;
    font-size: 10px;
}

.digifyy-dashboard-bottom {
    position: absolute;
    z-index: 5;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(5, 9, 14, 0.8);
    grid-template-columns: 1fr auto 1fr;
    backdrop-filter: blur(18px);
}

.digifyy-dashboard-metric {
    text-align: center;
}

.digifyy-dashboard-metric small {
    display: block;
    margin-bottom: 8px;
    color: #aeb9c7;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.digifyy-dashboard-metric strong {
    color: var(--digifyy-cyan);
    font-size: 27px;
    font-weight: 850;
}

.digifyy-dashboard-metric:last-child strong {
    color: var(--digifyy-gold);
}

.digifyy-dashboard-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
}

/* =========================================
   FLOATING CARDS
========================================= */

.digifyy-floating-card {
    position: absolute;
    z-index: 8;
    display: flex;
    min-width: 205px;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(8, 13, 20, 0.93);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    animation: digifyyFloating 4s ease-in-out infinite;
}

.conversion-card {
    top: 22%;
    left: -70px;
}

.revenue-card {
    right: -55px;
    bottom: 33%;
    animation-delay: 1.2s;
}

.campaign-card {
    right: 25px;
    bottom: -32px;
    animation-delay: 2.2s;
}

.digifyy-floating-icon {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #001014;
    font-weight: 900;
}

.cyan-icon {
    background: var(--digifyy-cyan);
}

.gold-icon {
    background: var(--digifyy-gold);
}

.green-icon {
    background: #36e278;
}

.digifyy-floating-card small {
    display: block;
    margin-bottom: 4px;
    color: #98a4b2;
    font-size: 10px;
}

.digifyy-floating-card strong {
    color: white;
    font-size: 14px;
}

@keyframes digifyyFloating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

/* =========================================
   STATS BAR
========================================= */

.digifyy-stats-bar {
    position: relative;
    z-index: 5;
    display: grid;
    margin-top: 100px;
    padding: 30px;
    border: 1px solid var(--digifyy-border);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.028);
    grid-template-columns: repeat(4, 1fr);
    backdrop-filter: blur(15px);
}

.digifyy-stat-item {
    position: relative;
    padding: 0 25px;
    text-align: center;
}

.digifyy-stat-item:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 46px;
    content: "";
    background: var(--digifyy-border);
    transform: translateY(-50%);
}

.digifyy-stat-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--digifyy-cyan);
    font-size: 30px;
    font-weight: 850;
}

.digifyy-stat-item:nth-child(3) strong {
    color: var(--digifyy-gold);
}

.digifyy-stat-item span {
    color: var(--digifyy-text);
    font-size: 11px;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-hero-wrapper {
        gap: 45px;
    }

    .conversion-card {
        left: -25px;
    }

    .revenue-card {
        right: -20px;
    }
}

@media (max-width: 900px) {

    .digifyy-hero-section {
        padding-top: 80px;
    }

    .digifyy-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .digifyy-hero-content {
        max-width: 780px;
        margin-inline: auto;
        text-align: center;
    }

    .digifyy-hero-badge {
        justify-content: center;
    }

    .digifyy-hero-description {
        margin-inline: auto;
    }

    .digifyy-hero-actions,
    .digifyy-hero-trust,
    .digifyy-hero-features {
        justify-content: center;
    }

    .digifyy-hero-visual {
        max-width: 700px;
        width: 100%;
        margin-inline: auto;
    }

    .digifyy-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .digifyy-stat-item:nth-child(2)::after {
        display: none;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-container {
        width: min(100% - 28px, 1180px);
    }

    .digifyy-hero-section {
        min-height: auto;
        padding: 65px 0 55px;
    }

    .digifyy-hero-title {
        font-size: 47px;
        line-height: 1.02;
        letter-spacing: -2.5px;
    }

    .digifyy-hero-description {
        font-size: 15px;
    }

    .digifyy-hero-actions {
        flex-direction: column;
    }

    .digifyy-primary-btn,
    .digifyy-secondary-btn {
        width: 100%;
    }

    .digifyy-hero-trust {
        flex-direction: column;
    }

    .digifyy-hero-features {
        align-items: flex-start;
        flex-direction: column;
        max-width: 220px;
        margin: 28px auto 0;
    }

    .digifyy-main-image-card {
        min-height: 465px;
    }

    .digifyy-main-image-card > img {
        height: 465px;
    }

    .digifyy-dashboard-header {
        top: 14px;
        right: 14px;
        left: 14px;
    }

    .digifyy-dashboard-bottom {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 17px 10px;
    }

    .digifyy-dashboard-metric strong {
        font-size: 21px;
    }

    .digifyy-floating-card {
        min-width: 158px;
        padding: 10px;
    }

    .conversion-card {
        top: 22%;
        left: -5px;
    }

    .revenue-card {
        right: -5px;
        bottom: 34%;
    }

    .campaign-card {
        display: none;
    }

    .digifyy-floating-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .digifyy-floating-card strong {
        font-size: 11px;
    }

    .digifyy-floating-card small {
        font-size: 8px;
    }

    .digifyy-stats-bar {
        margin-top: 80px;
        padding: 25px 12px;
    }

    .digifyy-stat-item {
        padding: 0 8px;
    }

    .digifyy-stat-item strong {
        font-size: 23px;
    }

    .digifyy-stat-item span {
        font-size: 9px;
    }
}

@media (max-width: 420px) {

    .digifyy-hero-title {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .digifyy-main-image-card {
        min-height: 410px;
    }

    .digifyy-main-image-card > img {
        height: 410px;
    }

    .digifyy-dashboard-date {
        display: none;
    }

    .digifyy-floating-card {
        min-width: 145px;
    }
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-697dad5 *//* =========================================
   CLIENT LOGO STRIP
========================================= */

.digifyy-client-strip {
    position: relative;
    padding: 38px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #080c12;
}

.digifyy-client-strip::before,
.digifyy-client-strip::after {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 120px;
    height: 100%;
    content: "";
    pointer-events: none;
}

.digifyy-client-strip::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #080c12,
        transparent
    );
}

.digifyy-client-strip::after {
    right: 0;
    background: linear-gradient(
        -90deg,
        #080c12,
        transparent
    );
}

.digifyy-client-label {
    margin: 0 0 27px;
    color: #6f7b89;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1.8px;
    text-align: center;
    text-transform: uppercase;
}

.digifyy-client-logos {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.digifyy-client-logo {
    color: #65717f;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.5px;
    text-align: center;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.digifyy-client-logo:hover {
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================
   ABOUT SECTION
========================================= */

.digifyy-about-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #030507 0%,
            #05090e 100%
        );
}

.digifyy-about-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
    pointer-events: none;
}

.digifyy-about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.about-glow-one {
    top: 15%;
    left: -170px;
    width: 400px;
    height: 400px;
    background: rgba(0, 217, 255, 0.08);
}

.about-glow-two {
    right: -180px;
    bottom: 5%;
    width: 430px;
    height: 430px;
    background: rgba(212, 175, 55, 0.07);
}

.digifyy-about-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 90px;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.digifyy-about-visual {
    position: relative;
    padding: 35px 20px 55px 0;
}

.digifyy-about-image-card {
    position: relative;
    min-height: 585px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 29px;
    background: #0d141d;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.5),
        0 0 65px rgba(0, 217, 255, 0.05);
}

.digifyy-about-image-card::before {
    position: absolute;
    z-index: 4;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    content: "";
    background: linear-gradient(
        145deg,
        rgba(0, 217, 255, 0.55),
        transparent 34%,
        transparent 70%,
        rgba(212, 175, 55, 0.45)
    );
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#ffffff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.digifyy-about-image-card img {
    width: 100%;
    height: 585px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.digifyy-about-image-card:hover img {
    transform: scale(1.055);
}

.digifyy-about-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 5, 7, 0.97) 0%,
            rgba(3, 5, 7, 0.42) 48%,
            rgba(3, 5, 7, 0.08) 100%
        ),
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.1),
            transparent 52%
        );
}

.digifyy-about-image-content {
    position: absolute;
    z-index: 5;
    right: 25px;
    bottom: 25px;
    left: 25px;
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    background: rgba(4, 8, 13, 0.76);
    backdrop-filter: blur(17px);
}

.digifyy-about-image-content span {
    display: block;
    margin-bottom: 8px;
    color: #00d9ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.digifyy-about-image-content strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
}

.digifyy-about-floating-card {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 13, 20, 0.94);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.46);
    text-align: center;
    backdrop-filter: blur(18px);
    animation: digifyyAboutFloat 4.5s ease-in-out infinite;
}

.experience-box {
    right: -28px;
    bottom: 5px;
    width: 170px;
    min-height: 145px;
    border-color: rgba(0, 217, 255, 0.3);
    border-radius: 21px;
}

.project-box {
    top: 75px;
    left: -40px;
    width: 145px;
    min-height: 112px;
    border-color: rgba(212, 175, 55, 0.36);
    border-radius: 17px;
    animation-delay: 1.2s;
}

.satisfaction-box {
    top: 245px;
    right: -25px;
    width: 135px;
    min-height: 105px;
    border-radius: 16px;
    animation-delay: 2.2s;
}

.experience-box strong {
    color: #d4af37;
    font-size: 43px;
    line-height: 1;
}

.project-box strong,
.satisfaction-box strong {
    color: #00d9ff;
    font-size: 28px;
    line-height: 1;
}

.project-box span {
    margin-bottom: 7px;
}

.experience-box span,
.project-box span,
.satisfaction-box span {
    max-width: 120px;
    margin-top: 8px;
    color: #9ca8b6;
    font-size: 10px;
    line-height: 1.5;
}

@keyframes digifyyAboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================
   ABOUT CONTENT
========================================= */

.digifyy-section-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: #00d9ff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.digifyy-section-label::before {
    width: 28px;
    height: 2px;
    content: "";
    background: #d4af37;
}

.digifyy-section-title {
    max-width: 760px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(39px, 5vw, 59px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -2.7px;
}

.digifyy-section-title span {
    color: #00d9ff;
}

.digifyy-section-description {
    max-width: 700px;
    margin: 0;
    color: #aeb9c7;
    font-size: 16px;
    line-height: 1.82;
}

.digifyy-section-description
+ .digifyy-section-description {
    margin-top: 15px;
}

.digifyy-about-features {
    display: grid;
    margin: 34px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.digifyy-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.026);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.digifyy-about-feature:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.045);
    transform: translateY(-5px);
}

.digifyy-feature-number {
    display: inline-flex;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 10px;
    font-weight: 900;
}

.digifyy-about-feature h3 {
    margin: 1px 0 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.digifyy-about-feature p {
    margin: 0;
    color: #96a2b0;
    font-size: 11px;
    line-height: 1.65;
}

.digifyy-about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

.digifyy-about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: color 0.3s ease;
}

.digifyy-about-text-link span {
    color: #d4af37;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.digifyy-about-text-link:hover {
    color: #00d9ff;
}

.digifyy-about-text-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-about-wrapper {
        gap: 55px;
    }

    .project-box {
        left: -15px;
    }

    .experience-box,
    .satisfaction-box {
        right: -10px;
    }
}

@media (max-width: 900px) {

    .digifyy-client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .digifyy-about-section {
        padding: 90px 0;
    }

    .digifyy-about-wrapper {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .digifyy-about-visual {
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
    }

    .digifyy-about-content {
        max-width: 760px;
        margin-inline: auto;
    }
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-client-strip {
        padding: 32px 0;
    }

    .digifyy-client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .digifyy-client-logo {
        font-size: 16px;
    }

    .digifyy-about-section {
        padding: 72px 0;
    }

    .digifyy-about-visual {
        padding: 15px 0 45px;
    }

    .digifyy-about-image-card {
        min-height: 460px;
        border-radius: 23px;
    }

    .digifyy-about-image-card img {
        height: 460px;
    }

    .digifyy-about-image-content {
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 17px;
    }

    .digifyy-about-image-content strong {
        font-size: 14px;
    }

    .project-box {
        top: 38px;
        left: 8px;
        width: 122px;
        min-height: 94px;
    }

    .experience-box {
        right: 8px;
        bottom: 0;
        width: 140px;
        min-height: 118px;
    }

    .satisfaction-box {
        display: none;
    }

    .experience-box strong {
        font-size: 34px;
    }

    .project-box strong {
        font-size: 24px;
    }

    .digifyy-section-title {
        font-size: 37px;
        letter-spacing: -1.8px;
    }

    .digifyy-section-description {
        font-size: 15px;
    }

    .digifyy-about-features {
        grid-template-columns: 1fr;
    }

    .digifyy-about-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .digifyy-about-actions .digifyy-primary-btn {
        width: 100%;
    }

    .digifyy-about-text-link {
        justify-content: center;
    }
}

@media (max-width: 420px) {

    .digifyy-about-image-card {
        min-height: 410px;
    }

    .digifyy-about-image-card img {
        height: 410px;
    }

    .digifyy-section-title {
        font-size: 33px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-867d969 *//* =========================================
   SERVICES SECTION
========================================= */

.digifyy-services-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #080c12 0%,
            #05080d 100%
        );
}

.digifyy-services-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 62px 62px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 18%,
        black 82%,
        transparent
    );
    pointer-events: none;
}

.digifyy-services-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.services-glow-one {
    top: 10%;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 217, 255, 0.08);
}

.services-glow-two {
    bottom: 5%;
    left: -180px;
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, 0.07);
}

.digifyy-services-heading {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.digifyy-services-heading-content {
    max-width: 820px;
}

.digifyy-services-heading-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.digifyy-services-heading-link span {
    color: #d4af37;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.digifyy-services-heading-link:hover {
    color: #00d9ff;
    border-color: #00d9ff;
}

.digifyy-services-heading-link:hover span {
    transform: translate(4px, -4px);
}

/* =========================================
   SERVICES GRID
========================================= */

.digifyy-services-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.digifyy-service-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        ),
        #0d141d;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.digifyy-service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    opacity: 0;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
    transition: opacity 0.35s ease;
}

.digifyy-service-card:hover {
    border-color: rgba(0, 217, 255, 0.32);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.36),
        0 0 45px rgba(0, 217, 255, 0.045);
    transform: translateY(-10px);
}

.digifyy-service-card:hover::before {
    opacity: 1;
}

.featured-service-card {
    border-color: rgba(212, 175, 55, 0.35);
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.12),
            transparent 38%
        ),
        #0d141d;
}

.digifyy-popular-label {
    position: absolute;
    top: 18px;
    right: -42px;
    width: 160px;
    padding: 7px;
    color: #100d03;
    background: #d4af37;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(42deg);
}

.digifyy-service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 27px;
    gap: 20px;
}

.digifyy-service-icon {
    display: inline-flex;
    width: 61px;
    height: 61px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 17px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.08);
    box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.04);
}

.digifyy-service-icon span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.gold-service-icon {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.32);
    background: rgba(212, 175, 55, 0.08);
}

.social-service-icon {
    color: #ffffff;
    border-color: rgba(121, 89, 255, 0.32);
    background: rgba(121, 89, 255, 0.12);
}

.automation-service-icon {
    color: #36e278;
    border-color: rgba(54, 226, 120, 0.3);
    background: rgba(54, 226, 120, 0.08);
}

.digifyy-service-number {
    color: rgba(255, 255, 255, 0.09);
    font-size: 37px;
    font-weight: 900;
    line-height: 1;
}

.digifyy-service-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.digifyy-service-card > p,
.digifyy-service-image-content > p {
    margin: 0;
    color: #a4afbd;
    font-size: 13px;
    line-height: 1.75;
}

.digifyy-service-list {
    display: grid;
    margin: 25px 0 30px;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.digifyy-service-list li {
    position: relative;
    padding-left: 20px;
    color: #d5dce4;
    font-size: 12px;
    line-height: 1.5;
}

.digifyy-service-list li::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.07);
}

.digifyy-service-link {
    position: absolute;
    right: 34px;
    bottom: 32px;
    left: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #00d9ff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.digifyy-service-link span {
    color: #d4af37;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.digifyy-service-link:hover span {
    transform: translateX(5px);
}

/* =========================================
   IMAGE SERVICE CARDS
========================================= */

.service-image-card {
    padding: 0;
}

.digifyy-service-image {
    position: relative;
    height: 205px;
    overflow: hidden;
}

.digifyy-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-image-card:hover .digifyy-service-image img {
    transform: scale(1.08);
}

.digifyy-service-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(13, 20, 29, 1),
            rgba(13, 20, 29, 0.08) 75%
        ),
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.08),
            transparent
        );
}

.digifyy-service-image-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    color: #ffffff;
    background: rgba(5, 9, 14, 0.68);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.digifyy-service-image-content {
    padding: 25px 30px 34px;
}

.digifyy-service-image-content .digifyy-service-top {
    margin-bottom: 18px;
}

.digifyy-service-image-content .digifyy-service-icon {
    width: 51px;
    height: 51px;
    border-radius: 14px;
}

.digifyy-service-image-content h3 {
    font-size: 21px;
}

.service-image-card .digifyy-service-link {
    position: static;
    margin-top: 24px;
}

/* =========================================
   SERVICES CTA
========================================= */

.digifyy-services-bottom-cta {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    padding: 34px 38px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 21px;
    background:
        linear-gradient(
            100deg,
            rgba(0, 217, 255, 0.08),
            rgba(212, 175, 55, 0.05)
        ),
        rgba(255, 255, 255, 0.025);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
    gap: 30px;
    backdrop-filter: blur(15px);
}

.digifyy-services-cta-label {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.digifyy-services-cta-content h3 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .digifyy-services-section {
        padding: 90px 0;
    }

    .digifyy-services-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 48px;
    }

    .digifyy-services-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-services-section {
        padding: 72px 0;
    }

    .digifyy-services-grid {
        grid-template-columns: 1fr;
    }

    .digifyy-service-card {
        min-height: 450px;
        padding: 28px;
    }

    .digifyy-service-link {
        right: 28px;
        bottom: 27px;
        left: 28px;
    }

    .service-image-card {
        padding: 0;
    }

    .digifyy-service-image {
        height: 220px;
    }

    .digifyy-service-image-content {
        padding: 24px 25px 30px;
    }

    .service-image-card .digifyy-service-link {
        position: static;
    }

    .digifyy-services-bottom-cta {
        padding: 27px 22px;
    }

    .digifyy-services-bottom-cta .digifyy-primary-btn {
        width: 100%;
    }

    .digifyy-services-cta-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 420px) {

    .digifyy-service-card {
        min-height: 460px;
    }

    .digifyy-service-card h3 {
        font-size: 21px;
    }

    .digifyy-service-image {
        height: 195px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c7c070a *//* =========================================
   WHY CHOOSE DIGIFYY SECTION
========================================= */

.digifyy-why-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(0, 217, 255, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(212, 175, 55, 0.07),
            transparent 30%
        ),
        #030507;
}

.digifyy-why-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 18%,
        black 82%,
        transparent
    );
    pointer-events: none;
}

.digifyy-why-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.why-glow-left {
    top: 100px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: rgba(0, 217, 255, 0.08);
}

.why-glow-right {
    right: -170px;
    bottom: 40px;
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, 0.07);
}

.digifyy-why-heading {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.digifyy-why-heading .digifyy-section-label {
    justify-content: center;
}

.digifyy-why-heading .digifyy-section-title,
.digifyy-why-heading .digifyy-section-description {
    margin-inline: auto;
}

/* =========================================
   WHY CARDS
========================================= */

.digifyy-why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.digifyy-why-card {
    position: relative;
    min-height: 385px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        ),
        #0d141d;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.digifyy-why-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    opacity: 0;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
    transition: opacity 0.35s ease;
}

.digifyy-why-card:hover {
    border-color: rgba(0, 217, 255, 0.32);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.4),
        0 0 45px rgba(0, 217, 255, 0.04);
    transform: translateY(-9px);
}

.digifyy-why-card:hover::before {
    opacity: 1;
}

.featured-why-card {
    border-color: rgba(212, 175, 55, 0.34);
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.11),
            transparent 40%
        ),
        #0d141d;
}

.digifyy-why-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 35px;
}

.digifyy-why-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 16px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.08);
}

.digifyy-why-icon span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.gold-why-icon {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}

.green-why-icon {
    color: #38e37a;
    border-color: rgba(56, 227, 122, 0.3);
    background: rgba(56, 227, 122, 0.08);
}

.purple-why-icon {
    color: #a28bff;
    border-color: rgba(162, 139, 255, 0.3);
    background: rgba(162, 139, 255, 0.08);
}

.digifyy-why-number {
    color: rgba(255, 255, 255, 0.08);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.digifyy-why-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.6px;
}

.digifyy-why-card > p {
    margin: 0;
    color: #a4afbd;
    font-size: 13px;
    line-height: 1.75;
}

.digifyy-why-highlight {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.digifyy-why-highlight span {
    max-width: 110px;
    color: #8f9ba9;
    font-size: 10px;
    line-height: 1.5;
}

.digifyy-why-highlight strong {
    color: #d4af37;
    font-size: 29px;
    font-weight: 850;
}

.digifyy-why-mini-tags {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    gap: 7px;
}

.digifyy-why-mini-tags span {
    padding: 7px 9px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    color: #bdefff;
    background: rgba(0, 217, 255, 0.06);
    font-size: 9px;
    font-weight: 700;
}

.digifyy-why-progress {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.digifyy-progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

.digifyy-progress-heading span {
    color: #8f9ba9;
    font-size: 10px;
}

.digifyy-progress-heading strong {
    color: #38e37a;
    font-size: 13px;
}

.digifyy-progress-bar {
    height: 6px;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
}

.digifyy-progress-bar span {
    display: block;
    width: 92%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #38e37a
    );
}

.digifyy-support-status {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #cbd3dc;
    font-size: 11px;
    font-weight: 650;
}

.support-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38e37a;
    box-shadow: 0 0 0 5px rgba(56, 227, 122, 0.12);
    animation: supportPulse 2s ease-in-out infinite;
}

@keyframes supportPulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(56, 227, 122, 0.12);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(56, 227, 122, 0.02);
    }
}

/* =========================================
   BENEFITS STRIP
========================================= */

.digifyy-benefits-strip {
    position: relative;
    z-index: 2;
    display: grid;
    margin-top: 28px;
    padding: 26px 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.024);
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    backdrop-filter: blur(15px);
}

.digifyy-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d3dbe3;
    font-size: 11px;
    font-weight: 650;
}

.digifyy-benefit-item span {
    display: inline-flex;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 9px;
    font-weight: 900;
}

/* =========================================
   PROCESS SECTION
========================================= */

.digifyy-process-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(0, 217, 255, 0.06),
            transparent 35%
        ),
        #080c12;
}

.digifyy-process-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 65px;
    gap: 40px;
}

.digifyy-process-heading-content {
    max-width: 800px;
}

.digifyy-process-badge {
    display: flex;
    min-width: 185px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(212, 175, 55, 0.055);
    font-size: 12px;
    font-weight: 750;
    text-align: center;
}

.digifyy-process-badge span {
    display: block;
    margin-bottom: 7px;
    color: #d4af37;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   PROCESS TIMELINE
========================================= */

.digifyy-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.digifyy-process-timeline::before {
    position: absolute;
    z-index: 0;
    top: 37px;
    right: 8%;
    left: 8%;
    height: 1px;
    content: "";
    background: linear-gradient(
        90deg,
        rgba(0, 217, 255, 0.25),
        #00d9ff,
        #d4af37,
        rgba(212, 175, 55, 0.25)
    );
}

.digifyy-process-card {
    position: relative;
    z-index: 2;
    padding-top: 2px;
}

.digifyy-process-step {
    display: flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 8px solid #080c12;
    border-radius: 50%;
    color: #001014;
    background: #00d9ff;
    box-shadow:
        0 0 0 1px rgba(0, 217, 255, 0.28),
        0 12px 30px rgba(0, 217, 255, 0.12);
    font-size: 13px;
    font-weight: 900;
}

.gold-process-step {
    background: #d4af37;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.28),
        0 12px 30px rgba(212, 175, 55, 0.12);
}

.digifyy-process-content {
    min-height: 390px;
    padding: 30px 27px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.032),
            rgba(255, 255, 255, 0.01)
        ),
        #0d141d;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.digifyy-process-card:hover .digifyy-process-content {
    border-color: rgba(0, 217, 255, 0.28);
    transform: translateY(-8px);
}

.digifyy-process-small-label {
    display: block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.digifyy-process-content h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.digifyy-process-content p {
    margin: 0;
    color: #9faab8;
    font-size: 13px;
    line-height: 1.75;
}

.digifyy-process-content ul {
    display: grid;
    margin: 25px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 11px;
    list-style: none;
}

.digifyy-process-content li {
    position: relative;
    padding-left: 18px;
    color: #d4dbe3;
    font-size: 11px;
    line-height: 1.5;
}

.digifyy-process-content li::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: #00d9ff;
}

/* =========================================
   PROCESS CTA
========================================= */

.digifyy-process-cta {
    display: grid;
    align-items: center;
    margin-top: 45px;
    padding: 34px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 21px;
    background:
        linear-gradient(
            100deg,
            rgba(0, 217, 255, 0.07),
            rgba(212, 175, 55, 0.05)
        ),
        rgba(255, 255, 255, 0.02);
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    backdrop-filter: blur(15px);
}

.digifyy-process-cta-icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 24px;
    font-weight: 900;
}

.digifyy-process-cta-content span {
    display: block;
    margin-bottom: 7px;
    color: #d4af37;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.digifyy-process-cta-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 750;
    line-height: 1.4;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .digifyy-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .digifyy-process-timeline::before {
        display: none;
    }
}

@media (max-width: 900px) {

    .digifyy-why-section,
    .digifyy-process-section {
        padding: 90px 0;
    }

    .digifyy-benefits-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .digifyy-process-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .digifyy-process-cta {
        align-items: flex-start;
        grid-template-columns: auto 1fr;
    }

    .digifyy-process-cta .digifyy-primary-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-why-section,
    .digifyy-process-section {
        padding: 72px 0;
    }

    .digifyy-why-grid,
    .digifyy-process-timeline,
    .digifyy-benefits-strip {
        grid-template-columns: 1fr;
    }

    .digifyy-why-card {
        min-height: 365px;
        padding: 27px;
    }

    .digifyy-why-highlight,
    .digifyy-why-mini-tags,
    .digifyy-why-progress,
    .digifyy-support-status {
        right: 27px;
        bottom: 27px;
        left: 27px;
    }

    .digifyy-process-badge {
        width: 100%;
    }

    .digifyy-process-step {
        margin-left: 0;
    }

    .digifyy-process-content {
        min-height: auto;
    }

    .digifyy-process-cta {
        padding: 26px 22px;
        grid-template-columns: 1fr;
    }

    .digifyy-process-cta-icon {
        width: 50px;
        height: 50px;
    }

    .digifyy-process-cta-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 420px) {

    .digifyy-why-card h3,
    .digifyy-process-content h3 {
        font-size: 20px;
    }

    .digifyy-benefits-strip {
        padding: 22px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-73d1369 *//* =========================================
   PORTFOLIO SECTION
========================================= */

.digifyy-portfolio-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(0, 217, 255, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(212, 175, 55, 0.06),
            transparent 28%
        ),
        #030507;
}

.digifyy-portfolio-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
    pointer-events: none;
}

.digifyy-portfolio-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.portfolio-glow-left {
    top: 150px;
    left: -190px;
    width: 440px;
    height: 440px;
    background: rgba(0, 217, 255, 0.08);
}

.portfolio-glow-right {
    right: -180px;
    bottom: 80px;
    width: 430px;
    height: 430px;
    background: rgba(212, 175, 55, 0.07);
}

.digifyy-portfolio-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.digifyy-portfolio-heading-content {
    max-width: 830px;
}

.digifyy-portfolio-heading-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.digifyy-portfolio-heading-link span {
    color: #d4af37;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.digifyy-portfolio-heading-link:hover {
    color: #00d9ff;
    border-color: #00d9ff;
}

.digifyy-portfolio-heading-link:hover span {
    transform: translate(4px, -4px);
}

/* =========================================
   PORTFOLIO GRID
========================================= */

.digifyy-portfolio-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 320px 320px 360px;
    gap: 22px;
}

.digifyy-portfolio-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background: #0d141d;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.digifyy-portfolio-large {
    grid-row: 1 / 3;
}

.digifyy-portfolio-wide {
    grid-column: 1 / -1;
}

.digifyy-portfolio-card::before {
    position: absolute;
    z-index: 4;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    content: "";
    opacity: 0;
    background: linear-gradient(
        145deg,
        rgba(0, 217, 255, 0.65),
        transparent 35%,
        transparent 70%,
        rgba(212, 175, 55, 0.5)
    );
    pointer-events: none;
    transition: opacity 0.35s ease;
    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#ffffff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.digifyy-portfolio-card:hover::before {
    opacity: 1;
}

.digifyy-portfolio-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.digifyy-portfolio-card:hover > img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.digifyy-portfolio-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(2, 4, 6, 0.98) 0%,
            rgba(2, 4, 6, 0.7) 38%,
            rgba(2, 4, 6, 0.12) 78%
        ),
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.1),
            transparent 48%
        );
}

.digifyy-portfolio-top {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 22px;
    left: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.digifyy-portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.digifyy-portfolio-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    background: rgba(4, 8, 13, 0.63);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.digifyy-project-number {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 800;
}

.digifyy-portfolio-content {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.digifyy-portfolio-large .digifyy-portfolio-content {
    padding: 38px;
}

.digifyy-project-type {
    display: block;
    margin-bottom: 10px;
    color: #00d9ff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.digifyy-portfolio-content h3 {
    max-width: 560px;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.digifyy-portfolio-large .digifyy-portfolio-content h3 {
    font-size: 35px;
    letter-spacing: -1.2px;
}

.digifyy-portfolio-content p {
    max-width: 620px;
    margin: 0 0 20px;
    color: #aeb9c7;
    font-size: 13px;
    line-height: 1.75;
}

.digifyy-project-results {
    display: grid;
    max-width: 570px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.digifyy-project-results div {
    position: relative;
}

.digifyy-project-results div:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 35px;
    content: "";
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-50%);
}

.digifyy-project-results strong {
    display: block;
    margin-bottom: 6px;
    color: #d4af37;
    font-size: 24px;
    font-weight: 850;
}

.digifyy-project-results span {
    color: #9ba7b5;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.digifyy-small-project-result {
    display: flex;
    align-items: center;
    margin: 17px 0;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    gap: 12px;
}

.digifyy-small-project-result strong {
    color: #d4af37;
    font-size: 21px;
}

.digifyy-small-project-result span {
    color: #a6b0bd;
    font-size: 10px;
}

.digifyy-project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.digifyy-project-link span {
    color: #d4af37;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.digifyy-project-link:hover {
    color: #00d9ff;
}

.digifyy-project-link:hover span {
    transform: translateX(5px);
}

.digifyy-portfolio-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 38px;
    padding: 28px 32px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(
            100deg,
            rgba(0, 217, 255, 0.07),
            rgba(212, 175, 55, 0.05)
        ),
        rgba(255, 255, 255, 0.025);
    gap: 30px;
}

.digifyy-portfolio-bottom p {
    max-width: 610px;
    margin: 0;
    color: #c8d0d9;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   RESULTS SECTION
========================================= */

.digifyy-results-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.digifyy-results-background {
    position: absolute;
    inset: 0;
}

.digifyy-results-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.digifyy-results-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 4, 6, 0.98) 0%,
            rgba(2, 4, 6, 0.9) 48%,
            rgba(2, 4, 6, 0.72) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 217, 255, 0.07),
            transparent 45%
        );
}

.digifyy-results-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    pointer-events: none;
}

.digifyy-results-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 85px;
}

.digifyy-results-content h2 {
    max-width: 660px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 63px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -3px;
}

.digifyy-results-content h2 span {
    display: block;
    color: #00d9ff;
}

.digifyy-results-content > p {
    max-width: 630px;
    margin: 0;
    color: #b1bcc9;
    font-size: 16px;
    line-height: 1.8;
}

.digifyy-results-features {
    display: grid;
    margin: 30px 0 34px;
    gap: 13px;
}

.digifyy-results-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8dfe6;
    font-size: 12px;
}

.digifyy-results-features span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 9px;
    font-weight: 900;
}

.digifyy-results-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.digifyy-result-card {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 21px;
    background: rgba(8, 13, 20, 0.78);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.digifyy-result-card:hover {
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-8px);
}

.gold-result-card {
    border-color: rgba(212, 175, 55, 0.3);
}

.gold-result-card:hover {
    border-color: rgba(212, 175, 55, 0.55);
}

.digifyy-result-icon {
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 13px;
    color: #001014;
    background: #00d9ff;
    font-size: 18px;
    font-weight: 900;
}

.gold-result-card .digifyy-result-icon {
    background: #d4af37;
}

.digifyy-result-card > strong {
    display: block;
    margin-bottom: 8px;
    color: #00d9ff;
    font-size: 39px;
    font-weight: 850;
    line-height: 1;
}

.gold-result-card > strong {
    color: #d4af37;
}

.digifyy-result-card > span {
    color: #aeb9c7;
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.digifyy-result-progress {
    position: absolute;
    right: 28px;
    bottom: 27px;
    left: 28px;
    height: 6px;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.09);
}

.digifyy-result-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
    animation: digifyyProgressLoad 1.8s ease both;
}

@keyframes digifyyProgressLoad {

    from {
        max-width: 0;
    }

    to {
        max-width: 100%;
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .digifyy-results-wrapper {
        gap: 50px;
    }
}

@media (max-width: 900px) {

    .digifyy-portfolio-section,
    .digifyy-results-section {
        padding: 90px 0;
    }

    .digifyy-portfolio-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .digifyy-portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .digifyy-portfolio-card,
    .digifyy-portfolio-large,
    .digifyy-portfolio-wide {
        min-height: 440px;
        grid-row: auto;
        grid-column: auto;
    }

    .digifyy-results-wrapper {
        grid-template-columns: 1fr;
    }

    .digifyy-results-content {
        max-width: 760px;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-portfolio-section,
    .digifyy-results-section {
        padding: 72px 0;
    }

    .digifyy-portfolio-card,
    .digifyy-portfolio-large,
    .digifyy-portfolio-wide {
        min-height: 420px;
    }

    .digifyy-portfolio-content,
    .digifyy-portfolio-large .digifyy-portfolio-content {
        padding: 24px;
    }

    .digifyy-portfolio-large .digifyy-portfolio-content h3,
    .digifyy-portfolio-content h3 {
        font-size: 24px;
    }

    .digifyy-project-results {
        gap: 10px;
    }

    .digifyy-project-results strong {
        font-size: 19px;
    }

    .digifyy-project-results span {
        font-size: 7px;
    }

    .digifyy-portfolio-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px 22px;
    }

    .digifyy-portfolio-bottom .digifyy-primary-btn {
        width: 100%;
    }

    .digifyy-results-section {
        min-height: auto;
    }

    .digifyy-results-content {
        text-align: center;
    }

    .digifyy-results-content h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .digifyy-results-features {
        max-width: 310px;
        margin-inline: auto;
        margin-bottom: 32px;
        text-align: left;
    }

    .digifyy-results-content .digifyy-primary-btn {
        width: 100%;
    }

    .digifyy-results-cards {
        grid-template-columns: 1fr;
    }

    .digifyy-result-card {
        min-height: 210px;
    }
}

@media (max-width: 420px) {

    .digifyy-portfolio-card,
    .digifyy-portfolio-large,
    .digifyy-portfolio-wide {
        min-height: 400px;
    }

    .digifyy-portfolio-top {
        top: 16px;
        right: 16px;
        left: 16px;
    }

    .digifyy-project-results {
        grid-template-columns: repeat(3, 1fr);
    }

    .digifyy-results-content h2 {
        font-size: 35px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-65d7866 *//* =========================================
   TESTIMONIALS SECTION
========================================= */

.digifyy-testimonials-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(0, 217, 255, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(212, 175, 55, 0.07),
            transparent 30%
        ),
        #030507;
}

.digifyy-testimonials-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 62px 62px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 16%,
        black 84%,
        transparent
    );
    pointer-events: none;
}

.digifyy-testimonials-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.testimonials-glow-left {
    top: 120px;
    left: -190px;
    width: 440px;
    height: 440px;
    background: rgba(0, 217, 255, 0.08);
}

.testimonials-glow-right {
    right: -180px;
    bottom: 30px;
    width: 430px;
    height: 430px;
    background: rgba(212, 175, 55, 0.07);
}

.digifyy-testimonials-heading {
    position: relative;
    z-index: 2;
    max-width: 830px;
    margin: 0 auto 58px;
    text-align: center;
}

.digifyy-testimonials-heading .digifyy-section-label {
    justify-content: center;
}

.digifyy-testimonials-heading .digifyy-section-title,
.digifyy-testimonials-heading .digifyy-section-description {
    margin-inline: auto;
}

/* =========================================
   TESTIMONIAL CARDS
========================================= */

.digifyy-testimonials-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.digifyy-testimonial-card {
    position: relative;
    display: flex;
    min-height: 460px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.034),
            rgba(255, 255, 255, 0.01)
        ),
        #0d141d;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.digifyy-testimonial-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    opacity: 0;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
    transition: opacity 0.35s ease;
}

.digifyy-testimonial-card:hover {
    border-color: rgba(0, 217, 255, 0.32);
    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.4),
        0 0 45px rgba(0, 217, 255, 0.04);
    transform: translateY(-9px);
}

.digifyy-testimonial-card:hover::before {
    opacity: 1;
}

.featured-testimonial-card {
    border-color: rgba(212, 175, 55, 0.35);
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.12),
            transparent 38%
        ),
        #0d141d;
}

.digifyy-featured-review-label {
    position: absolute;
    top: 18px;
    right: -40px;
    width: 155px;
    padding: 7px;
    color: #110e03;
    background: #d4af37;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(42deg);
}

.digifyy-testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
}

.digifyy-testimonial-stars {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 4px;
}

.digifyy-quote-icon {
    color: rgba(0, 217, 255, 0.16);
    font-family: Georgia, serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.6;
}

.featured-testimonial-card .digifyy-quote-icon {
    color: rgba(212, 175, 55, 0.2);
}

.digifyy-testimonial-text {
    flex: 1;
    margin: 0;
    color: #d4dbe3;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
}

.digifyy-testimonial-result {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 28px;
    padding: 19px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.digifyy-testimonial-result span {
    color: #8f9ba8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.digifyy-testimonial-result strong {
    color: #00d9ff;
    font-size: 27px;
    font-weight: 850;
}

.featured-testimonial-card .digifyy-testimonial-result strong {
    color: #d4af37;
}

.digifyy-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
}

.digifyy-author-avatar {
    display: inline-flex;
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #73eaff
    );
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0, 217, 255, 0.16);
}

.gold-author-avatar {
    background: linear-gradient(
        135deg,
        #d4af37,
        #f2d56e
    );
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.16);
}

.digifyy-testimonial-author strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.digifyy-testimonial-author span {
    color: #8f9ba8;
    font-size: 10px;
}

/* =========================================
   REVIEW SUMMARY
========================================= */

.digifyy-review-summary {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    margin-top: 35px;
    padding: 30px 35px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background:
        linear-gradient(
            100deg,
            rgba(0, 217, 255, 0.06),
            rgba(212, 175, 55, 0.04)
        ),
        rgba(255, 255, 255, 0.024);
    grid-template-columns: 1.4fr auto repeat(3, 1fr);
    gap: 30px;
    backdrop-filter: blur(15px);
}

.digifyy-review-score {
    display: flex;
    align-items: center;
    gap: 18px;
}

.digifyy-review-score > strong {
    color: #ffffff;
    font-size: 44px;
    font-weight: 850;
    line-height: 1;
}

.digifyy-review-stars {
    margin-bottom: 6px;
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 3px;
}

.digifyy-review-score span,
.digifyy-review-stat span {
    color: #909ca9;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.digifyy-review-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
}

.digifyy-review-stat {
    text-align: center;
}

.digifyy-review-stat strong {
    display: block;
    margin-bottom: 7px;
    color: #00d9ff;
    font-size: 25px;
    font-weight: 850;
}

.digifyy-review-stat:nth-last-child(2) strong {
    color: #d4af37;
}

/* =========================================
   FINAL CTA SECTION
========================================= */

.digifyy-final-cta-section {
    position: relative;
    display: flex;
    min-height: 720px;
    align-items: center;
    overflow: hidden;
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.digifyy-final-cta-background {
    position: absolute;
    inset: 0;
}

.digifyy-final-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}

.digifyy-final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 4, 6, 0.98) 0%,
            rgba(2, 4, 6, 0.93) 47%,
            rgba(2, 4, 6, 0.75) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 217, 255, 0.08),
            transparent 50%
        );
}

.digifyy-final-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
    pointer-events: none;
}

.digifyy-final-cta-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 0.75fr;
    gap: 85px;
}

.digifyy-final-cta-content h2 {
    max-width: 770px;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(45px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.digifyy-final-cta-content h2 span {
    display: block;
    color: #00d9ff;
}

.digifyy-final-cta-content > p {
    max-width: 680px;
    margin: 0;
    color: #b5bfca;
    font-size: 16px;
    line-height: 1.82;
}

.digifyy-final-cta-features {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 35px;
    gap: 14px;
}

.digifyy-final-cta-features div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d7dee6;
    font-size: 11px;
    font-weight: 650;
}

.digifyy-final-cta-features span {
    display: inline-flex;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 9px;
    font-weight: 900;
}

.digifyy-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.digifyy-whatsapp-btn {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 25px;
    border: 1px solid rgba(37, 211, 102, 0.38);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(37, 211, 102, 0.09);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.digifyy-whatsapp-btn:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.16);
    transform: translateY(-4px);
}

.digifyy-whatsapp-symbol {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    font-size: 9px;
    font-weight: 900;
}

/* =========================================
   FINAL CTA AUDIT CARD
========================================= */

.digifyy-final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 25px;
    background: rgba(8, 13, 20, 0.88);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(20px);
}

.digifyy-final-cta-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
}

.digifyy-cta-card-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(212, 175, 55, 0.27);
    border-radius: 50px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.07);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.digifyy-final-cta-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 29px;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -1px;
}

.digifyy-final-cta-card > p {
    margin: 0;
    color: #a7b2bf;
    font-size: 13px;
    line-height: 1.75;
}

.digifyy-cta-audit-list {
    display: grid;
    margin: 27px 0;
    gap: 12px;
}

.digifyy-cta-audit-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #d4dbe3;
    background: rgba(255, 255, 255, 0.024);
    font-size: 11px;
}

.digifyy-cta-audit-list span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 9px;
    font-weight: 900;
}

.digifyy-cta-availability {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.digifyy-availability-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #38e37a;
    box-shadow: 0 0 0 6px rgba(56, 227, 122, 0.11);
    animation: digifyyAvailabilityPulse 2s ease-in-out infinite;
}

.digifyy-cta-availability small {
    display: block;
    margin-bottom: 4px;
    color: #8f9ba8;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.digifyy-cta-availability strong {
    color: #ffffff;
    font-size: 12px;
}

@keyframes digifyyAvailabilityPulse {

    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(56, 227, 122, 0.11);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(56, 227, 122, 0.02);
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-final-cta-wrapper {
        gap: 50px;
    }

    .digifyy-review-summary {
        grid-template-columns: 1.4fr repeat(3, 1fr);
    }

    .digifyy-review-divider {
        display: none;
    }
}

@media (max-width: 900px) {

    .digifyy-testimonials-section,
    .digifyy-final-cta-section {
        padding: 90px 0;
    }

    .digifyy-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .digifyy-testimonial-card {
        min-height: auto;
    }

    .digifyy-review-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .digifyy-final-cta-wrapper {
        grid-template-columns: 1fr;
    }

    .digifyy-final-cta-content {
        max-width: 800px;
    }

    .digifyy-final-cta-card {
        max-width: 680px;
        width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-testimonials-section,
    .digifyy-final-cta-section {
        padding: 72px 0;
    }

    .digifyy-testimonial-card {
        padding: 28px;
    }

    .digifyy-testimonial-text {
        font-size: 15px;
    }

    .digifyy-review-summary {
        padding: 25px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }

    .digifyy-review-score {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .digifyy-review-stat:last-child {
        grid-column: 1 / -1;
    }

    .digifyy-final-cta-section {
        min-height: auto;
    }

    .digifyy-final-cta-content {
        text-align: center;
    }

    .digifyy-final-cta-content h2 {
        font-size: 41px;
        letter-spacing: -2px;
    }

    .digifyy-final-cta-features {
        align-items: flex-start;
        flex-direction: column;
        max-width: 270px;
        margin-inline: auto;
        margin-bottom: 34px;
        text-align: left;
    }

    .digifyy-final-cta-actions {
        flex-direction: column;
    }

    .digifyy-final-cta-actions .digifyy-primary-btn,
    .digifyy-whatsapp-btn {
        width: 100%;
    }

    .digifyy-final-cta-card {
        padding: 29px 23px;
    }

    .digifyy-final-cta-card h3 {
        font-size: 25px;
    }
}

@media (max-width: 420px) {

    .digifyy-testimonial-card {
        padding: 25px 22px;
    }

    .digifyy-final-cta-content h2 {
        font-size: 35px;
    }

    .digifyy-review-score > strong {
        font-size: 38px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8bac112 *//* =========================================
   CONTACT SECTION
========================================= */

.digifyy-contact-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(0, 217, 255, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(212, 175, 55, 0.07),
            transparent 30%
        ),
        #05080d;
}

.digifyy-contact-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 62px 62px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
    pointer-events: none;
}

.digifyy-contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.contact-glow-left {
    top: 120px;
    left: -190px;
    width: 440px;
    height: 440px;
    background: rgba(0, 217, 255, 0.08);
}

.contact-glow-right {
    right: -180px;
    bottom: 50px;
    width: 430px;
    height: 430px;
    background: rgba(212, 175, 55, 0.07);
}

.digifyy-contact-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 85px;
}

/* =========================================
   CONTACT CONTENT
========================================= */

.digifyy-contact-title {
    max-width: 700px;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -3px;
}

.digifyy-contact-title span {
    display: block;
    color: #00d9ff;
}

.digifyy-contact-description {
    max-width: 650px;
    margin: 0;
    color: #aeb9c7;
    font-size: 16px;
    line-height: 1.82;
}

.digifyy-contact-benefits {
    display: grid;
    margin: 32px 0;
    gap: 18px;
}

.digifyy-contact-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.digifyy-contact-benefits > div > span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 8px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 10px;
    font-weight: 900;
}

.digifyy-contact-benefits strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
}

.digifyy-contact-benefits p {
    margin: 0;
    color: #929eac;
    font-size: 11px;
    line-height: 1.6;
}

.digifyy-contact-information {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.digifyy-contact-info-card {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    color: inherit;
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

a.digifyy-contact-info-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.04);
    transform: translateY(-4px);
}

.digifyy-contact-info-icon {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #001014;
    background: #00d9ff;
    font-size: 13px;
    font-weight: 900;
}

.gold-contact-icon {
    background: #d4af37;
}

.whatsapp-contact-icon {
    color: #ffffff;
    background: #25d366;
    font-size: 9px;
}

.location-contact-icon {
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
}

.digifyy-contact-info-card small {
    display: block;
    margin-bottom: 5px;
    color: #8995a3;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.digifyy-contact-info-card strong {
    color: #ffffff;
    font-size: 11px;
    line-height: 1.4;
}

.digifyy-contact-response {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
    padding: 17px;
    border: 1px solid rgba(56, 227, 122, 0.17);
    border-radius: 14px;
    background: rgba(56, 227, 122, 0.045);
}

.digifyy-response-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #38e37a;
    box-shadow: 0 0 0 6px rgba(56, 227, 122, 0.11);
    animation: digifyyResponsePulse 2s ease-in-out infinite;
}

.digifyy-contact-response small {
    display: block;
    margin-bottom: 4px;
    color: #83908e;
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.digifyy-contact-response strong {
    color: #ffffff;
    font-size: 12px;
}

@keyframes digifyyResponsePulse {

    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(56, 227, 122, 0.11);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(56, 227, 122, 0.02);
    }
}

/* =========================================
   CONTACT FORM CARD
========================================= */

.digifyy-contact-form-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 26px;
    background: rgba(10, 16, 24, 0.94);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 65px rgba(0, 217, 255, 0.045);
    backdrop-filter: blur(20px);
}

.digifyy-contact-form-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
}

.digifyy-contact-form-heading {
    margin-bottom: 30px;
}

.digifyy-contact-form-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.digifyy-contact-form-heading h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -1px;
}

.digifyy-contact-form-heading p {
    margin: 0;
    color: #9eabba;
    font-size: 13px;
    line-height: 1.7;
}

.digifyy-contact-form {
    display: grid;
    gap: 18px;
}

.digifyy-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.digifyy-form-group {
    display: grid;
    gap: 8px;
}

.digifyy-form-group label {
    color: #d7dee6;
    font-size: 11px;
    font-weight: 750;
}

.digifyy-form-group input,
.digifyy-form-group select,
.digifyy-form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    background: #070c12;
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.digifyy-form-group input,
.digifyy-form-group select {
    min-height: 53px;
    padding: 0 15px;
}

.digifyy-form-group textarea {
    min-height: 135px;
    padding: 15px;
    resize: vertical;
}

.digifyy-form-group input::placeholder,
.digifyy-form-group textarea::placeholder {
    color: #65717f;
}

.digifyy-form-group select {
    color: #a8b3c0;
    cursor: pointer;
}

.digifyy-form-group select option {
    color: #ffffff;
    background: #070c12;
}

.digifyy-form-group input:focus,
.digifyy-form-group select:focus,
.digifyy-form-group textarea:focus {
    border-color: #00d9ff;
    background: #090f17;
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.07);
    outline: none;
}

.digifyy-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #8793a1;
    font-size: 10px;
    line-height: 1.6;
    cursor: pointer;
}

.digifyy-form-consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 1px;
    accent-color: #00d9ff;
}

.digifyy-contact-submit {
    display: inline-flex;
    width: 100%;
    min-height: 57px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 14px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #f0d16b
    );
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.18);
    font-family: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.digifyy-contact-submit span {
    font-size: 19px;
    transition: transform 0.3s ease;
}

.digifyy-contact-submit:hover {
    box-shadow: 0 22px 55px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.digifyy-contact-submit:hover span {
    transform: translateX(5px);
}

.digifyy-form-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    color: #778390;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
/* =========================================
   DIGIFYY PREMIUM FOOTER
========================================= */

.dap-footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(0, 217, 255, 0.09),
            transparent 35%
        ),
        #020304;
}

.dap-footer::before {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
    pointer-events: none;
}

.dap-footer-glow {
    position: absolute;
    top: -250px;
    left: 50%;
    width: 650px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.07);
    filter: blur(130px);
    transform: translateX(-50%);
    pointer-events: none;
}

/* =========================================
   FOOTER MAIN GRID
========================================= */

.dap-footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    padding-bottom: 58px;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 55px;
}

/* =========================================
   BRAND COLUMN
========================================= */

.dap-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.dap-footer-logo-icon {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.18);
    font-size: 22px;
    font-weight: 900;
}

.dap-footer-logo-text {
    color: #ffffff;
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -1.2px;
}

.dap-footer-brand > p {
    max-width: 430px;
    margin: 24px 0 0;
    color: #929eac;
    font-size: 13px;
    line-height: 1.8;
}

.dap-footer-contact-mini {
    display: grid;
    margin-top: 24px;
    gap: 11px;
}

.dap-footer-contact-mini a,
.dap-footer-contact-mini div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9aa6b3;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dap-footer-contact-mini a:hover {
    color: #00d9ff;
}

.dap-footer-contact-mini span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 7px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.06);
    font-size: 9px;
    font-weight: 900;
}

/* =========================================
   SOCIAL LINKS
========================================= */

.dap-footer-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 27px;
    gap: 10px;
}

.dap-footer-socials a {
    display: inline-flex;
    width: 41px;
    height: 41px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    color: #a1acb8;
    background: rgba(255, 255, 255, 0.025);
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dap-footer-socials a:hover {
    color: #001014;
    border-color: #00d9ff;
    background: #00d9ff;
    transform: translateY(-4px);
}

/* =========================================
   FOOTER LINK COLUMNS
========================================= */

.dap-footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.dap-footer-column h3 {
    position: relative;
    margin: 0 0 13px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.dap-footer-column h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
}

.dap-footer-column a {
    position: relative;
    padding-left: 0;
    color: #8f9ba8;
    font-size: 11px;
    line-height: 1.7;
    text-decoration: none;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.dap-footer-column a::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background: #00d9ff;
    transition: width 0.3s ease;
}

.dap-footer-column a:hover {
    padding-left: 15px;
    color: #00d9ff;
}

.dap-footer-column a:hover::before {
    width: 8px;
}

/* =========================================
   NEWSLETTER AREA
========================================= */

.dap-footer-newsletter {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    margin-bottom: 45px;
    padding: 32px;
    border: 1px solid rgba(0, 217, 255, 0.16);
    border-radius: 21px;
    background:
        linear-gradient(
            100deg,
            rgba(0, 217, 255, 0.065),
            rgba(212, 175, 55, 0.045)
        ),
        rgba(255, 255, 255, 0.02);
    grid-template-columns: 1fr auto;
    gap: 35px;
    backdrop-filter: blur(16px);
}

.dap-footer-newsletter-content > span {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.dap-footer-newsletter-content h3 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.dap-footer-newsletter-form {
    display: flex;
    min-width: 450px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: #080d13;
}

.dap-footer-newsletter-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    outline: none;
}

.dap-footer-newsletter-form input::placeholder {
    color: #65717f;
}

.dap-footer-newsletter-form button {
    display: inline-flex;
    min-width: 135px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-family: inherit;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.dap-footer-newsletter-form button:hover {
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

.dap-footer-newsletter-form button span {
    font-size: 17px;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.dap-footer-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-template-columns: 1fr auto auto;
    gap: 28px;
}

.dap-footer-bottom p,
.dap-footer-bottom-links a {
    margin: 0;
    color: #65717f;
    font-size: 10px;
    text-decoration: none;
}

.dap-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dap-footer-bottom-links a {
    transition: color 0.3s ease;
}

.dap-footer-bottom-links a:hover {
    color: #00d9ff;
}

.dap-back-to-top {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 11px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.06);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dap-back-to-top:hover {
    color: #001014;
    background: #00d9ff;
    transform: translateY(-4px);
}

/* Screen-reader-only label */

.dap-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .dap-footer-main {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 35px;
    }

    .dap-footer-newsletter-form {
        min-width: 380px;
    }
}

@media (max-width: 900px) {

    .dap-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .dap-footer-newsletter {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .dap-footer-newsletter-form {
        min-width: 0;
        width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .dap-footer {
        padding: 68px 0 24px;
    }

    .dap-footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .dap-footer-column h3 {
        margin-bottom: 8px;
    }

    .dap-footer-newsletter {
        padding: 25px 20px;
    }

    .dap-footer-newsletter-content h3 {
        font-size: 19px;
    }

    .dap-footer-newsletter-form {
        align-items: stretch;
        flex-direction: column;
        padding: 7px;
    }

    .dap-footer-newsletter-form button {
        width: 100%;
    }

    .dap-footer-bottom {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .dap-footer-bottom-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .dap-back-to-top {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 420px) {

    .dap-footer-logo-text {
        font-size: 24px;
    }

    .dap-footer-newsletter-content h3 {
        font-size: 18px;
    }

    .dap-footer-socials a {
        width: 38px;
        height: 38px;
    }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */

.digifyy-floating-whatsapp {
    position: fixed;
    z-index: 9999;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 17px 9px 9px;
    border: 1px solid rgba(37, 211, 102, 0.38);
    border-radius: 50px;
    color: #ffffff;
    background: rgba(11, 27, 18, 0.94);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(37, 211, 102, 0.08);
    text-decoration: none;
    backdrop-filter: blur(15px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.digifyy-floating-whatsapp:hover {
    border-color: #25d366;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 38px rgba(37, 211, 102, 0.16);
    transform: translateY(-5px);
}

.digifyy-floating-wa-icon {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.24);
    font-size: 9px;
    font-weight: 900;
}

.digifyy-floating-wa-text {
    font-size: 11px;
    font-weight: 800;
}

.digifyy-floating-wa-text small {
    display: block;
    margin-bottom: 3px;
    color: #8ba294;
    font-size: 8px;
    font-weight: 600;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .digifyy-contact-wrapper {
        gap: 50px;
    }

    .digifyy-footer-top {
        gap: 35px;
    }

    .digifyy-newsletter-form {
        min-width: 380px;
    }
}

@media (max-width: 900px) {

    .digifyy-contact-section {
        padding: 90px 0;
    }

    .digifyy-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .digifyy-contact-content {
        max-width: 760px;
    }

    .digifyy-contact-form-card {
        max-width: 760px;
        width: 100%;
    }

    .digifyy-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .digifyy-footer-newsletter {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .digifyy-newsletter-form {
        min-width: 0;
        width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .digifyy-contact-section {
        padding: 72px 0;
    }

    .digifyy-contact-title {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .digifyy-contact-description {
        font-size: 15px;
    }

    .digifyy-contact-information,
    .digifyy-form-row {
        grid-template-columns: 1fr;
    }

    .digifyy-contact-form-card {
        padding: 29px 22px;
    }

    .digifyy-contact-form-heading h3 {
        font-size: 26px;
    }

    .digifyy-form-trust {
        align-items: center;
        flex-direction: column;
        gap: 7px;
    }

    .digifyy-footer-section {
        padding-top: 65px;
    }

    .digifyy-footer-top {
        grid-template-columns: 1fr;
    }

    .digifyy-footer-newsletter {
        padding: 25px 20px;
    }

    .digifyy-footer-newsletter h3 {
        font-size: 19px;
    }

    .digifyy-newsletter-form {
        align-items: stretch;
        flex-direction: column;
        padding: 7px;
    }

    .digifyy-newsletter-form button {
        min-height: 47px;
    }

    .digifyy-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .digifyy-footer-bottom > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .digifyy-floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 8px;
    }

    .digifyy-floating-wa-text {
        display: none;
    }
}

@media (max-width: 420px) {

    .digifyy-contact-title {
        font-size: 34px;
    }

    .digifyy-contact-form-card {
        padding: 26px 18px;
    }

    .digifyy-contact-form-heading h3 {
        font-size: 23px;
    }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .digifyy-response-dot,
    .digifyy-floating-whatsapp {
        animation: none;
        transition: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-abea40e *//* =========================================
   DIGIFYY PREMIUM FOOTER
========================================= */

.dap-footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(0, 217, 255, 0.09),
            transparent 35%
        ),
        #020304;
}

.dap-footer::before {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
    pointer-events: none;
}

.dap-footer-glow {
    position: absolute;
    top: -250px;
    left: 50%;
    width: 650px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.07);
    filter: blur(130px);
    transform: translateX(-50%);
    pointer-events: none;
}

/* =========================================
   FOOTER MAIN GRID
========================================= */

.dap-footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    padding-bottom: 58px;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 55px;
}

/* =========================================
   BRAND COLUMN
========================================= */

.dap-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.dap-footer-logo-icon {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.18);
    font-size: 22px;
    font-weight: 900;
}

.dap-footer-logo-text {
    color: #ffffff;
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -1.2px;
}

.dap-footer-brand > p {
    max-width: 430px;
    margin: 24px 0 0;
    color: #929eac;
    font-size: 13px;
    line-height: 1.8;
}

.dap-footer-contact-mini {
    display: grid;
    margin-top: 24px;
    gap: 11px;
}

.dap-footer-contact-mini a,
.dap-footer-contact-mini div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9aa6b3;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dap-footer-contact-mini a:hover {
    color: #00d9ff;
}

.dap-footer-contact-mini span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 7px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.06);
    font-size: 9px;
    font-weight: 900;
}

/* =========================================
   SOCIAL LINKS
========================================= */

.dap-footer-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 27px;
    gap: 10px;
}

.dap-footer-socials a {
    display: inline-flex;
    width: 41px;
    height: 41px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    color: #a1acb8;
    background: rgba(255, 255, 255, 0.025);
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dap-footer-socials a:hover {
    color: #001014;
    border-color: #00d9ff;
    background: #00d9ff;
    transform: translateY(-4px);
}

/* =========================================
   FOOTER LINK COLUMNS
========================================= */

.dap-footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.dap-footer-column h3 {
    position: relative;
    margin: 0 0 13px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.dap-footer-column h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
}

.dap-footer-column a {
    position: relative;
    padding-left: 0;
    color: #8f9ba8;
    font-size: 11px;
    line-height: 1.7;
    text-decoration: none;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.dap-footer-column a::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background: #00d9ff;
    transition: width 0.3s ease;
}

.dap-footer-column a:hover {
    padding-left: 15px;
    color: #00d9ff;
}

.dap-footer-column a:hover::before {
    width: 8px;
}

/* =========================================
   NEWSLETTER AREA
========================================= */

.dap-footer-newsletter {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    margin-bottom: 45px;
    padding: 32px;
    border: 1px solid rgba(0, 217, 255, 0.16);
    border-radius: 21px;
    background:
        linear-gradient(
            100deg,
            rgba(0, 217, 255, 0.065),
            rgba(212, 175, 55, 0.045)
        ),
        rgba(255, 255, 255, 0.02);
    grid-template-columns: 1fr auto;
    gap: 35px;
    backdrop-filter: blur(16px);
}

.dap-footer-newsletter-content > span {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.dap-footer-newsletter-content h3 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.dap-footer-newsletter-form {
    display: flex;
    min-width: 450px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: #080d13;
}

.dap-footer-newsletter-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    outline: none;
}

.dap-footer-newsletter-form input::placeholder {
    color: #65717f;
}

.dap-footer-newsletter-form button {
    display: inline-flex;
    min-width: 135px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-family: inherit;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.dap-footer-newsletter-form button:hover {
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

.dap-footer-newsletter-form button span {
    font-size: 17px;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.dap-footer-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-template-columns: 1fr auto auto;
    gap: 28px;
}

.dap-footer-bottom p,
.dap-footer-bottom-links a {
    margin: 0;
    color: #65717f;
    font-size: 10px;
    text-decoration: none;
}

.dap-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dap-footer-bottom-links a {
    transition: color 0.3s ease;
}

.dap-footer-bottom-links a:hover {
    color: #00d9ff;
}

.dap-back-to-top {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 11px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.06);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dap-back-to-top:hover {
    color: #001014;
    background: #00d9ff;
    transform: translateY(-4px);
}

/* Screen-reader-only label */

.dap-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .dap-footer-main {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 35px;
    }

    .dap-footer-newsletter-form {
        min-width: 380px;
    }
}

@media (max-width: 900px) {

    .dap-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .dap-footer-newsletter {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .dap-footer-newsletter-form {
        min-width: 0;
        width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .dap-footer {
        padding: 68px 0 24px;
    }

    .dap-footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .dap-footer-column h3 {
        margin-bottom: 8px;
    }

    .dap-footer-newsletter {
        padding: 25px 20px;
    }

    .dap-footer-newsletter-content h3 {
        font-size: 19px;
    }

    .dap-footer-newsletter-form {
        align-items: stretch;
        flex-direction: column;
        padding: 7px;
    }

    .dap-footer-newsletter-form button {
        width: 100%;
    }

    .dap-footer-bottom {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .dap-footer-bottom-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .dap-back-to-top {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 420px) {

    .dap-footer-logo-text {
        font-size: 24px;
    }

    .dap-footer-newsletter-content h3 {
        font-size: 18px;
    }

    .dap-footer-socials a {
        width: 38px;
        height: 38px;
    }
}/* End custom CSS */