/* Start custom CSS for html, class: .elementor-element-27318fb *//* =========================================
   DIGIFYY ABOUT PAGE VARIABLES
========================================= */

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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.digifyy-about-page {
    overflow: hidden;
    background: var(--dap-black);
}

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

.dap-section {
    position: relative;
    padding: 115px 0;
}

.dap-section-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: var(--dap-cyan);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.dap-section-label::before {
    width: 28px;
    height: 2px;
    content: "";
    background: var(--dap-gold);
}

.dap-section-title {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--dap-white);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -2.8px;
}

.dap-section-title span {
    color: var(--dap-cyan);
}

.dap-description {
    max-width: 720px;
    margin: 0;
    color: var(--dap-text);
    font-size: 16px;
    line-height: 1.82;
}

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

/* =========================================
   BUTTONS
========================================= */

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

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

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

.dap-primary-btn > span {
    font-size: 19px;
    transition: transform 0.3s ease;
}

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

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

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

/* =========================================
   ABOUT HERO
========================================= */

.dap-hero {
    position: relative;
    min-height: 100vh;
    padding: 105px 0 85px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 217, 255, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 50%,
            rgba(212, 175, 55, 0.09),
            transparent 30%
        ),
        var(--dap-black);
}

.dap-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

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

.dap-glow-one {
    top: 80px;
    left: -180px;
    width: 440px;
    height: 440px;
    background: rgba(0, 217, 255, 0.1);
}

.dap-glow-two {
    right: -170px;
    bottom: 30px;
    width: 430px;
    height: 430px;
    background: rgba(212, 175, 55, 0.08);
}

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

.dap-eyebrow {
    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: #d9f9ff;
    background: rgba(0, 217, 255, 0.07);
    font-size: 11px;
    font-weight: 750;
}

.dap-eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dap-cyan);
    box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.12);
}

.dap-hero-content h1 {
    max-width: 760px;
    margin: 0 0 26px;
    color: var(--dap-white);
    font-size: clamp(50px, 6vw, 78px);
    font-weight: 850;
    line-height: 0.99;
    letter-spacing: -4px;
}

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

.dap-hero-content > p {
    max-width: 670px;
    margin: 0;
    color: var(--dap-text);
    font-size: 17px;
    line-height: 1.82;
}

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

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

.dap-hero-points div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d3dae2;
    font-size: 11px;
}

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

/* Hero image */

.dap-hero-visual {
    position: relative;
    padding-bottom: 40px;
}

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

.dap-hero-image-card img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.dap-hero-image-card:hover img {
    transform: scale(1.05);
}

.dap-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 5, 7, 0.96),
            rgba(3, 5, 7, 0.18) 70%
        ),
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.08),
            transparent 50%
        );
}

.dap-image-status {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(5, 9, 14, 0.78);
    backdrop-filter: blur(18px);
}

.dap-status-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.12);
}

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

.dap-image-status strong {
    color: var(--dap-white);
    font-size: 13px;
}

.dap-floating-stat {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 17px;
    border: 1px solid var(--dap-border);
    border-radius: 17px;
    background: rgba(8, 13, 20, 0.93);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.43);
    text-align: center;
    backdrop-filter: blur(18px);
    animation: dapFloat 4.5s ease-in-out infinite;
}

.dap-floating-stat strong {
    margin-bottom: 6px;
    color: var(--dap-cyan);
    font-size: 27px;
    font-weight: 850;
}

.dap-floating-stat span {
    max-width: 105px;
    color: #97a3b0;
    font-size: 9px;
    line-height: 1.45;
}

.dap-stat-one {
    top: 70px;
    left: -45px;
    width: 135px;
    min-height: 105px;
}

.dap-stat-two {
    right: -35px;
    bottom: 160px;
    width: 145px;
    min-height: 110px;
    border-color: rgba(212, 175, 55, 0.32);
    animation-delay: 1.2s;
}

.dap-stat-two strong {
    color: var(--dap-gold);
}

.dap-stat-three {
    right: 30px;
    bottom: -10px;
    width: 140px;
    min-height: 100px;
    animation-delay: 2.2s;
}

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

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

/* =========================================
   STORY SECTION
========================================= */

.dap-story-section {
    background: linear-gradient(180deg, #05080d, #030507);
}

.dap-story-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 90px;
}

.dap-story-image {
    position: relative;
}

.dap-image-frame {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--dap-border);
    border-radius: 28px;
    background: var(--dap-card);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.dap-image-frame img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dap-image-frame:hover img {
    transform: scale(1.05);
}

.dap-story-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 5, 7, 0.96),
            rgba(3, 5, 7, 0.12) 65%
        ),
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.1),
            transparent
        );
}

.dap-story-image-label {
    position: absolute;
    right: 23px;
    bottom: 23px;
    left: 23px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(5, 9, 14, 0.76);
    backdrop-filter: blur(17px);
}

.dap-story-image-label span {
    display: block;
    margin-bottom: 7px;
    color: var(--dap-cyan);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.dap-story-image-label strong {
    color: var(--dap-white);
    font-size: 15px;
}

.dap-story-features {
    display: grid;
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dap-story-features article {
    display: flex;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--dap-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    transition: all 0.3s ease;
}

.dap-story-features article:hover {
    border-color: rgba(0, 217, 255, 0.28);
    transform: translateY(-5px);
}

.dap-story-features article > span {
    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,
        var(--dap-cyan),
        var(--dap-gold)
    );
    font-size: 10px;
    font-weight: 900;
}

.dap-story-features strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

.dap-story-features p {
    margin: 0;
    color: #96a2b0;
    font-size: 11px;
    line-height: 1.65;
}

/* =========================================
   FOUNDER SECTION
========================================= */

.dap-founder-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(0, 217, 255, 0.07),
            transparent 32%
        ),
        var(--dap-dark);
}

.dap-founder-glow {
    position: absolute;
    right: -180px;
    bottom: 0;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.07);
    filter: blur(120px);
}

.dap-founder-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
}

.dap-founder-content blockquote {
    position: relative;
    margin: 30px 0;
    padding: 25px 25px 25px 28px;
    border-left: 3px solid var(--dap-gold);
    border-radius: 0 15px 15px 0;
    color: #e3e8ed;
    background: rgba(255, 255, 255, 0.028);
    font-family: Georgia, serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.65;
}

.dap-founder-details {
    display: grid;
    margin: 31px 0;
    padding: 23px 0;
    border-top: 1px solid var(--dap-border);
    border-bottom: 1px solid var(--dap-border);
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dap-founder-details div:not(:last-child) {
    border-right: 1px solid var(--dap-border);
}

.dap-founder-details small {
    display: block;
    margin-bottom: 7px;
    color: #7f8b98;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.dap-founder-details strong {
    color: var(--dap-white);
    font-size: 12px;
}

.dap-founder-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.dap-founder-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dap-white);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.dap-founder-social span {
    color: var(--dap-gold);
    font-size: 17px;
    transition: transform 0.3s ease;
}

.dap-founder-social:hover {
    color: var(--dap-cyan);
}

.dap-founder-social:hover span {
    transform: translate(4px, -4px);
}

/* Founder visual */

.dap-founder-visual {
    position: relative;
    padding: 30px 15px 50px;
}

.dap-founder-image-frame {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 30px;
    background: var(--dap-card);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 70px rgba(0, 217, 255, 0.05);
}

.dap-founder-image-frame img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.dap-founder-image-frame:hover img {
    transform: scale(1.05);
}

.dap-founder-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 5, 7, 0.97),
            rgba(3, 5, 7, 0.08) 65%
        ),
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.09),
            transparent
        );
}

.dap-founder-name-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(5, 9, 14, 0.78);
    backdrop-filter: blur(18px);
}

.dap-founder-name-card small {
    display: block;
    margin-bottom: 5px;
    color: var(--dap-cyan);
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.dap-founder-name-card strong {
    font-size: 17px;
}

.dap-founder-name-card > span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #001014;
    background: linear-gradient(
        135deg,
        var(--dap-cyan),
        var(--dap-gold)
    );
    font-size: 11px;
    font-weight: 900;
}

.dap-founder-badge {
    position: absolute;
    z-index: 4;
    min-width: 170px;
    padding: 17px;
    border: 1px solid var(--dap-border);
    border-radius: 15px;
    background: rgba(8, 13, 20, 0.94);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(17px);
    animation: dapFloat 4.5s ease-in-out infinite;
}

.dap-founder-badge span {
    display: block;
    margin-bottom: 5px;
    color: #8c98a5;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dap-founder-badge strong {
    font-size: 12px;
}

.dap-founder-badge-one {
    top: 100px;
    left: -40px;
}

.dap-founder-badge-two {
    right: -30px;
    bottom: 140px;
    border-color: rgba(212, 175, 55, 0.3);
    animation-delay: 1.5s;
}

/* =========================================
   MISSION AND VISION
========================================= */

.dap-purpose-section {
    background: var(--dap-black);
}

.dap-purpose-heading {
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.dap-purpose-heading .dap-section-label {
    justify-content: center;
}

.dap-purpose-heading .dap-section-title,
.dap-purpose-heading .dap-description {
    margin-inline: auto;
}

.dap-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dap-purpose-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border: 1px solid var(--dap-border);
    border-radius: 24px;
    background: var(--dap-card);
    transition: all 0.35s ease;
}

.dap-purpose-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
}

.dap-vision-card {
    border-color: rgba(212, 175, 55, 0.28);
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.1),
            transparent 40%
        ),
        var(--dap-card);
}

.dap-purpose-number {
    position: absolute;
    top: 30px;
    right: 32px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 48px;
    font-weight: 900;
}

.dap-purpose-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 18px;
    color: #001014;
    background: var(--dap-cyan);
    font-size: 19px;
    font-weight: 900;
}

.dap-vision-card .dap-purpose-icon {
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--dap-gold);
}

.dap-purpose-label {
    display: block;
    margin-bottom: 12px;
    color: var(--dap-gold);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.dap-purpose-card h3 {
    max-width: 520px;
    margin: 0 0 17px;
    font-size: 27px;
    line-height: 1.3;
    letter-spacing: -0.8px;
}

.dap-purpose-card > p {
    margin: 0;
    color: var(--dap-text);
    font-size: 14px;
    line-height: 1.78;
}

.dap-purpose-card ul {
    display: grid;
    margin: 27px 0 0;
    padding: 23px 0 0;
    border-top: 1px solid var(--dap-border);
    gap: 12px;
    list-style: none;
}

.dap-purpose-card li {
    position: relative;
    padding-left: 20px;
    color: #d2dae2;
    font-size: 12px;
}

.dap-purpose-card li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--dap-cyan),
        var(--dap-gold)
    );
}

/* =========================================
   VALUES SECTION
========================================= */

.dap-values-section {
    background: var(--dap-dark);
}

.dap-values-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.dap-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dap-value-card {
    position: relative;
    min-height: 350px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--dap-border);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.032),
            rgba(255, 255, 255, 0.01)
        ),
        var(--dap-card);
    transition: all 0.35s ease;
}

.dap-value-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-8px);
}

.dap-value-number {
    position: absolute;
    top: 27px;
    right: 27px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 31px;
    font-weight: 900;
}

.dap-value-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 16px;
    color: var(--dap-cyan);
    background: rgba(0, 217, 255, 0.08);
    font-size: 11px;
    font-weight: 900;
}

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

.dap-value-card h3 {
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 1.35;
}

.dap-value-card p {
    margin: 0;
    color: var(--dap-text);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================
   STATS SECTION
========================================= */

.dap-stats-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 105px 0;
    overflow: hidden;
}

.dap-stats-background {
    position: absolute;
    inset: 0;
}

.dap-stats-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dap-stats-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 4, 6, 0.98),
            rgba(2, 4, 6, 0.8)
        ),
        linear-gradient(
            to top,
            rgba(0, 217, 255, 0.08),
            transparent
        );
}

.dap-stats-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.dap-stats-content h2 {
    max-width: 670px;
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -3px;
}

.dap-stats-content h2 span {
    display: block;
    color: var(--dap-cyan);
}

.dap-stats-content p {
    max-width: 620px;
    margin: 0;
    color: var(--dap-text);
    font-size: 16px;
    line-height: 1.8;
}

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

.dap-stats-grid article {
    min-height: 180px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(8, 13, 20, 0.78);
    backdrop-filter: blur(18px);
    transition: transform 0.3s ease;
}

.dap-stats-grid article:hover {
    transform: translateY(-7px);
}

.dap-stats-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--dap-cyan);
    font-size: 39px;
    font-weight: 850;
}

.dap-stats-grid article:nth-child(2) strong,
.dap-stats-grid article:nth-child(3) strong {
    color: var(--dap-gold);
}

.dap-stats-grid span {
    color: #9aa6b3;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* =========================================
   PARTNER SECTION
========================================= */

.dap-partner-section {
    background: var(--dap-black);
}

.dap-partner-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.dap-partner-content .dap-primary-btn {
    margin-top: 30px;
}

.dap-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.dap-partner-grid article {
    padding: 27px;
    border: 1px solid var(--dap-border);
    border-radius: 19px;
    background: var(--dap-card);
    transition: all 0.3s ease;
}

.dap-partner-grid article:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-6px);
}

.dap-partner-grid article > span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 11px;
    color: #001014;
    background: linear-gradient(
        135deg,
        var(--dap-cyan),
        var(--dap-gold)
    );
    font-size: 10px;
    font-weight: 900;
}

.dap-partner-grid h3 {
    margin: 0 0 11px;
    font-size: 17px;
}

.dap-partner-grid p {
    margin: 0;
    color: var(--dap-text);
    font-size: 12px;
    line-height: 1.7;
}

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

.dap-final-cta {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 105px 0;
    overflow: hidden;
}

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

.dap-final-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dap-final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 4, 6, 0.98),
            rgba(2, 4, 6, 0.68)
        ),
        linear-gradient(
            to top,
            rgba(0, 217, 255, 0.09),
            transparent
        );
}

.dap-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;
}

.dap-final-cta-content {
    position: relative;
    z-index: 2;
}

.dap-final-cta-content h2 {
    max-width: 850px;
    margin: 0 0 23px;
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.dap-final-cta-content h2 span {
    display: block;
    color: var(--dap-cyan);
}

.dap-final-cta-content > p {
    max-width: 680px;
    margin: 0;
    color: var(--dap-text);
    font-size: 16px;
    line-height: 1.8;
}

.dap-final-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
    gap: 14px;
}

.dap-whatsapp-btn {
    color: var(--dap-white);
    border: 1px solid rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.1);
}

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

.dap-whatsapp-btn > span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    font-size: 8px;
    font-weight: 900;
}

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

.dap-floating-whatsapp {
    position: fixed;
    z-index: 9999;
    right: 23px;
    bottom: 23px;
    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: var(--dap-white);
    background: rgba(10, 27, 17, 0.95);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    text-decoration: none;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.dap-floating-whatsapp:hover {
    border-color: #25d366;
    transform: translateY(-5px);
}

.dap-floating-whatsapp > span {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    font-size: 9px;
    font-weight: 900;
}

.dap-floating-whatsapp small {
    display: block;
    margin-bottom: 3px;
    color: #91a499;
    font-size: 8px;
}

.dap-floating-whatsapp div {
    font-size: 11px;
    font-weight: 800;
}

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

@media (max-width: 1050px) {

    .dap-hero-wrapper,
    .dap-story-wrapper,
    .dap-founder-wrapper,
    .dap-partner-wrapper,
    .dap-stats-wrapper {
        gap: 50px;
    }

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

    .dap-stat-one {
        left: -15px;
    }

    .dap-stat-two,
    .dap-founder-badge-two {
        right: -10px;
    }

    .dap-founder-badge-one {
        left: -10px;
    }
}

@media (max-width: 900px) {

    .dap-section {
        padding: 90px 0;
    }

    .dap-hero-wrapper,
    .dap-story-wrapper,
    .dap-founder-wrapper,
    .dap-stats-wrapper,
    .dap-partner-wrapper {
        grid-template-columns: 1fr;
    }

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

    .dap-hero-content > p {
        margin-inline: auto;
    }

    .dap-eyebrow,
    .dap-hero-actions,
    .dap-hero-points {
        justify-content: center;
    }

    .dap-hero-visual,
    .dap-story-image,
    .dap-founder-visual {
        max-width: 700px;
        width: 100%;
        margin-inline: auto;
    }

    .dap-founder-content {
        order: 2;
    }

    .dap-founder-visual {
        order: 1;
    }

    .dap-purpose-grid {
        grid-template-columns: 1fr;
    }

    .dap-partner-content {
        max-width: 750px;
    }
}

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

@media (max-width: 650px) {

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

    .dap-section {
        padding: 72px 0;
    }

    .dap-hero {
        min-height: auto;
        padding: 70px 0 65px;
    }

    .dap-hero-content h1 {
        font-size: 45px;
        line-height: 1.02;
        letter-spacing: -2.5px;
    }

    .dap-hero-content > p {
        font-size: 15px;
    }

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

    .dap-hero-actions a {
        width: 100%;
    }

    .dap-hero-points {
        align-items: flex-start;
        flex-direction: column;
        max-width: 235px;
        margin-inline: auto;
        margin-top: 28px;
    }

    .dap-hero-image-card,
    .dap-hero-image-card img {
        min-height: 460px;
        height: 460px;
    }

    .dap-stat-one {
        top: 40px;
        left: 5px;
    }

    .dap-stat-two {
        right: 5px;
        bottom: 130px;
    }

    .dap-stat-three {
        display: none;
    }

    .dap-image-frame,
    .dap-image-frame img {
        min-height: 450px;
        height: 450px;
    }

    .dap-section-title {
        font-size: 36px;
        letter-spacing: -1.8px;
    }

    .dap-story-features,
    .dap-founder-details,
    .dap-values-grid,
    .dap-stats-grid,
    .dap-partner-grid {
        grid-template-columns: 1fr;
    }

    .dap-founder-details div {
        padding-bottom: 15px;
    }

    .dap-founder-details div:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--dap-border);
    }

    .dap-founder-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .dap-founder-actions .dap-primary-btn {
        width: 100%;
    }

    .dap-founder-social {
        justify-content: center;
    }

    .dap-founder-image-frame,
    .dap-founder-image-frame img {
        min-height: 500px;
        height: 500px;
    }

    .dap-founder-badge-one {
        top: 70px;
        left: 5px;
    }

    .dap-founder-badge-two {
        right: 5px;
        bottom: 120px;
    }

    .dap-purpose-card {
        padding: 30px 25px;
    }

    .dap-purpose-card h3 {
        font-size: 23px;
    }

    .dap-value-card {
        min-height: auto;
    }

    .dap-stats-content {
        text-align: center;
    }

    .dap-stats-content h2 {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .dap-final-cta {
        min-height: auto;
        padding: 80px 0;
    }

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

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

    .dap-final-actions {
        flex-direction: column;
    }

    .dap-final-actions a {
        width: 100%;
    }

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

    .dap-floating-whatsapp div {
        display: none;
    }
}

@media (max-width: 420px) {

    .dap-hero-content h1 {
        font-size: 39px;
    }

    .dap-section-title {
        font-size: 32px;
    }

    .dap-hero-image-card,
    .dap-hero-image-card img {
        min-height: 410px;
        height: 410px;
    }

    .dap-founder-image-frame,
    .dap-founder-image-frame img {
        min-height: 440px;
        height: 440px;
    }

    .dap-founder-badge {
        min-width: 145px;
    }

    .dap-founder-content blockquote {
        font-size: 17px;
    }

    .dap-final-cta-content h2 {
        font-size: 34px;
    }
}

/* =========================================
   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-44f98c5 *//* =========================================
   TEAM SECTION
========================================= */

.dap-team-section{
    padding:120px 0;
    background:#04070b;
}

.dap-team-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.dap-team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.dap-team-card{
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    background:#0d141d;
    transition:.35s;
}

.dap-team-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 30px 70px rgba(0,217,255,.12);
}

.featured-team{
    border-color:#d4af37;
}

.dap-team-image{
    position:relative;
    height:340px;
    overflow:hidden;
}

.dap-team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.dap-team-card:hover img{
    transform:scale(1.08);
}

.dap-team-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.92),
        transparent 65%
    );
}

.dap-team-content{
    padding:28px;
}

.dap-team-role{
    display:inline-block;
    margin-bottom:12px;
    color:#d4af37;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.dap-team-content h3{
    margin:0 0 15px;
    color:#fff;
    font-size:24px;
}

.dap-team-content p{
    color:#aeb9c7;
    line-height:1.8;
    font-size:14px;
}

.dap-team-skills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:25px;
}

.dap-team-skills span{
    padding:8px 15px;
    border-radius:50px;
    background:rgba(0,217,255,.08);
    border:1px solid rgba(0,217,255,.18);
    color:#00d9ff;
    font-size:11px;
    font-weight:700;
}

@media(max-width:1100px){

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

}

@media(max-width:768px){

.dap-team-grid{
grid-template-columns:1fr;
}

.dap-team-image{
height:300px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-90f484b *//* =========================================
   COMPANY JOURNEY SECTION
========================================= */

.dap-journey-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(0, 217, 255, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(212, 175, 55, 0.07),
            transparent 28%
        ),
        #030507;
}

.dap-journey-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    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;
}

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

.dap-journey-glow-left {
    top: 180px;
    left: -190px;
    width: 450px;
    height: 450px;
    background: rgba(0, 217, 255, 0.08);
}

.dap-journey-glow-right {
    right: -180px;
    bottom: 100px;
    width: 440px;
    height: 440px;
    background: rgba(212, 175, 55, 0.07);
}

/* =========================================
   JOURNEY HEADING
========================================= */

.dap-journey-heading {
    position: relative;
    z-index: 3;
    max-width: 830px;
    margin: 0 auto 75px;
    text-align: center;
}

.dap-journey-heading .dap-section-label {
    justify-content: center;
}

.dap-journey-heading .dap-section-title,
.dap-journey-heading .dap-description {
    margin-inline: auto;
}

/* =========================================
   JOURNEY TIMELINE
========================================= */

.dap-journey-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1080px;
    margin-inline: auto;
}

.dap-journey-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #00d9ff 12%,
        #d4af37 50%,
        #00d9ff 88%,
        transparent
    );
    transform: translateX(-50%);
}

.dap-journey-item {
    position: relative;
    display: grid;
    align-items: center;
    margin-bottom: 65px;
    grid-template-columns: 1fr 100px 1fr;
}

.dap-journey-item:last-child {
    margin-bottom: 0;
}

.dap-journey-left .dap-journey-card {
    grid-column: 1;
}

.dap-journey-left .dap-journey-dot {
    grid-column: 2;
    grid-row: 1;
}

.dap-journey-right .dap-journey-card {
    grid-column: 3;
}

.dap-journey-right .dap-journey-dot {
    grid-column: 2;
    grid-row: 1;
}

/* =========================================
   JOURNEY DOTS
========================================= */

.dap-journey-dot {
    position: relative;
    z-index: 5;
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    border: 8px solid #030507;
    border-radius: 50%;
    color: #001014;
    background: #00d9ff;
    box-shadow:
        0 0 0 1px rgba(0, 217, 255, 0.3),
        0 14px 35px rgba(0, 217, 255, 0.16);
}

.dap-gold-journey-dot {
    background: #d4af37;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 14px 35px rgba(212, 175, 55, 0.16);
}

.dap-journey-dot span {
    font-size: 12px;
    font-weight: 900;
}

/* =========================================
   JOURNEY CARDS
========================================= */

.dap-journey-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    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 25px 70px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.dap-journey-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;
}

.dap-journey-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(-8px);
}

.dap-journey-card:hover::before {
    opacity: 1;
}

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

.dap-current-label {
    position: absolute;
    top: 17px;
    right: -39px;
    width: 145px;
    padding: 7px;
    color: #100e03;
    background: #d4af37;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(42deg);
}

.dap-journey-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 20px;
}

.dap-journey-year {
    color: #d4af37;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.dap-journey-icon {
    display: inline-flex;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 13px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.08);
    font-size: 10px;
    font-weight: 900;
}

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

.dap-journey-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 820;
    line-height: 1.3;
    letter-spacing: -0.7px;
}

.dap-journey-card > p {
    margin: 0;
    color: #a6b1be;
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================
   JOURNEY TAGS
========================================= */

.dap-journey-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    gap: 8px;
}

.dap-journey-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    color: #b8effa;
    background: rgba(0, 217, 255, 0.06);
    font-size: 9px;
    font-weight: 700;
}

/* =========================================
   JOURNEY METRICS
========================================= */

.dap-journey-metrics {
    display: grid;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dap-journey-metrics div {
    position: relative;
}

.dap-journey-metrics div:first-child::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 38px;
    content: "";
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.dap-journey-metrics strong {
    display: block;
    margin-bottom: 6px;
    color: #00d9ff;
    font-size: 25px;
    font-weight: 850;
}

.dap-journey-metrics div:last-child strong {
    color: #d4af37;
}

.dap-journey-metrics span {
    color: #8f9ba8;
    font-size: 9px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* =========================================
   JOURNEY PROGRESS
========================================= */

.dap-journey-progress {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.dap-journey-progress > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

.dap-journey-progress span {
    color: #8f9ba8;
    font-size: 10px;
}

.dap-journey-progress strong {
    color: #38e37a;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dap-journey-progress-bar {
    height: 7px;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.09);
}

.dap-journey-progress-bar span {
    display: block;
    width: 86%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #d4af37
    );
    animation: dapJourneyProgress 1.8s ease both;
}

@keyframes dapJourneyProgress {
    from {
        max-width: 0;
    }

    to {
        max-width: 100%;
    }
}

/* =========================================
   JOURNEY CTA
========================================= */

.dap-journey-cta {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    margin-top: 70px;
    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.022);
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    backdrop-filter: blur(15px);
}

.dap-journey-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;
}

.dap-journey-cta-content > span {
    display: block;
    margin-bottom: 7px;
    color: #d4af37;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

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

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

@media (max-width: 900px) {

    .dap-journey-section {
        padding: 90px 0;
    }

    .dap-journey-wrapper {
        max-width: 760px;
    }

    .dap-journey-line {
        left: 36px;
        transform: none;
    }

    .dap-journey-item {
        display: grid;
        margin-bottom: 40px;
        grid-template-columns: 72px 1fr;
        gap: 22px;
    }

    .dap-journey-left .dap-journey-card,
    .dap-journey-right .dap-journey-card {
        grid-column: 2;
        grid-row: 1;
    }

    .dap-journey-left .dap-journey-dot,
    .dap-journey-right .dap-journey-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .dap-journey-dot {
        width: 68px;
        height: 68px;
    }

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

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

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

@media (max-width: 650px) {

    .dap-journey-section {
        padding: 72px 0;
    }

    .dap-journey-heading {
        margin-bottom: 55px;
    }

    .dap-journey-line {
        left: 25px;
    }

    .dap-journey-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .dap-journey-dot {
        width: 50px;
        height: 50px;
        border-width: 6px;
    }

    .dap-journey-dot span {
        font-size: 9px;
    }

    .dap-journey-card {
        padding: 25px 21px;
    }

    .dap-journey-card h3 {
        font-size: 20px;
    }

    .dap-journey-card > p {
        font-size: 12px;
    }

    .dap-journey-metrics {
        grid-template-columns: 1fr;
    }

    .dap-journey-metrics div:first-child::after {
        display: none;
    }

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

    .dap-journey-cta-icon {
        width: 50px;
        height: 50px;
    }

    .dap-journey-cta-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 420px) {

    .dap-journey-card-top {
        align-items: flex-start;
    }

    .dap-journey-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .dap-journey-card h3 {
        font-size: 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cabaf71 *//* =========================================
   AWARDS & CERTIFICATIONS SECTION
========================================= */

.dap-awards-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(0, 217, 255, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(212, 175, 55, 0.07),
            transparent 30%
        ),
        #080c12;
}

.dap-awards-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;
}

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

.dap-awards-glow-left {
    top: 130px;
    left: -190px;
    width: 450px;
    height: 450px;
    background: rgba(0, 217, 255, 0.08);
}

.dap-awards-glow-right {
    right: -180px;
    bottom: 60px;
    width: 440px;
    height: 440px;
    background: rgba(212, 175, 55, 0.07);
}

/* =========================================
   HEADING
========================================= */

.dap-awards-heading {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto 60px;
    text-align: center;
}

.dap-awards-heading .dap-section-label {
    justify-content: center;
}

.dap-awards-heading .dap-section-title,
.dap-awards-heading .dap-description {
    margin-inline: auto;
}

/* =========================================
   PLATFORM LOGOS
========================================= */

.dap-platform-grid {
    position: relative;
    z-index: 2;
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dap-platform-card {
    display: flex;
    min-height: 155px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 22px 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.dap-platform-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.04);
    transform: translateY(-6px);
}

.dap-platform-mark {
    display: inline-flex;
    width: 47px;
    height: 47px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 14px;
    color: #001014;
    background: #00d9ff;
    font-size: 17px;
    font-weight: 900;
}

.dap-gold-platform-mark {
    background: #d4af37;
}

.dap-platform-card strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
}

.dap-platform-card small {
    color: #8995a3;
    font-size: 9px;
    line-height: 1.5;
}

/* =========================================
   EXPERTISE CARDS
========================================= */

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

.dap-award-card {
    position: relative;
    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.035),
            rgba(255, 255, 255, 0.01)
        ),
        #0d141d;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.dap-award-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;
}

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

.dap-award-card:hover::before {
    opacity: 1;
}

.featured-award-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;
}

.dap-award-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.dap-award-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);
    font-size: 12px;
    font-weight: 900;
}

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

.dap-award-label {
    color: #d4af37;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.dap-award-card h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 820;
    line-height: 1.3;
    letter-spacing: -0.7px;
}

.dap-award-card > p {
    margin: 0;
    color: #a6b1be;
    font-size: 13px;
    line-height: 1.75;
}

.dap-award-card ul {
    display: grid;
    margin: 27px 0 0;
    padding: 23px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    gap: 12px;
    list-style: none;
}

.dap-award-card li {
    position: relative;
    padding-left: 20px;
    color: #d3dae2;
    font-size: 11px;
    line-height: 1.5;
}

.dap-award-card li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
}

/* =========================================
   TRUST SUMMARY
========================================= */

.dap-trust-summary {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    margin-top: 36px;
    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.022);
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    backdrop-filter: blur(15px);
}

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

.dap-trust-summary-content h3 {
    max-width: 560px;
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 760;
    line-height: 1.4;
}

.dap-trust-summary-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.dap-trust-summary-points div {
    padding: 17px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.024);
    text-align: center;
}

.dap-trust-summary-points strong {
    display: block;
    margin-bottom: 6px;
    color: #00d9ff;
    font-size: 19px;
    font-weight: 850;
}

.dap-trust-summary-points div:nth-child(even) strong {
    color: #d4af37;
}

.dap-trust-summary-points span {
    color: #8e9aa7;
    font-size: 8px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

@media (max-width: 1050px) {

    .dap-platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .dap-award-card:last-child {
        grid-column: 1 / -1;
    }

    .dap-trust-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .dap-awards-section {
        padding: 90px 0;
    }

    .dap-trust-summary-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .dap-awards-section {
        padding: 72px 0;
    }

    .dap-platform-grid,
    .dap-awards-grid {
        grid-template-columns: 1fr;
    }

    .dap-award-card:last-child {
        grid-column: auto;
    }

    .dap-platform-card {
        min-height: 135px;
    }

    .dap-award-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .dap-award-card h3 {
        font-size: 21px;
    }

    .dap-trust-summary {
        padding: 27px 22px;
    }

    .dap-trust-summary-content h3 {
        font-size: 20px;
    }

    .dap-trust-summary-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {

    .dap-trust-summary-points {
        grid-template-columns: 1fr;
    }

    .dap-award-top {
        align-items: flex-start;
        flex-direction: column;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-350e9ad *//* =========================================
   CLIENTS & TESTIMONIALS SECTION
========================================= */

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

.dap-clients-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;
}

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

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

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

/* =========================================
   SECTION HEADING
========================================= */

.dap-clients-heading {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto 58px;
    text-align: center;
}

.dap-clients-heading .dap-section-label {
    justify-content: center;
}

.dap-clients-heading .dap-section-title,
.dap-clients-heading .dap-description {
    margin-inline: auto;
}

/* =========================================
   CLIENT LOGO STRIP
========================================= */

.dap-client-logo-strip {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 36px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.022);
}

.dap-client-logo-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.dap-client-logo-card {
    display: flex;
    min-height: 105px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.dap-client-logo-card:hover {
    border-color: rgba(0, 217, 255, 0.28);
    background: rgba(0, 217, 255, 0.04);
    transform: translateY(-5px);
}

.dap-client-logo-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    border-radius: 10px;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #d4af37
    );
    font-size: 9px;
    font-weight: 900;
}

.dap-client-logo-card strong {
    color: #ffffff;
    font-size: 12px;
}

/* =========================================
   TESTIMONIAL GRID
========================================= */

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

.dap-testimonial-card {
    position: relative;
    display: flex;
    min-height: 450px;
    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;
}

.dap-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;
}

.dap-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);
}

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

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

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

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

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

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

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

.dap-testimonial-card > p {
    flex: 1;
    margin: 0;
    color: #d4dbe3;
    font-size: 16px;
    line-height: 1.85;
}

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

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

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

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

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

.dap-testimonial-avatar {
    display: inline-flex;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #001014;
    background: linear-gradient(
        135deg,
        #00d9ff,
        #72e9ff
    );
    font-size: 10px;
    font-weight: 900;
}

.dap-gold-avatar {
    background: linear-gradient(
        135deg,
        #d4af37,
        #f2d56e
    );
}

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

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

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

.dap-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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1050px) {

    .dap-client-logo-track {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .dap-review-summary-divider {
        display: none;
    }
}

@media (max-width: 900px) {

    .dap-clients-section {
        padding: 90px 0;
    }

    .dap-testimonial-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 650px) {

    .dap-clients-section {
        padding: 72px 0;
    }

    .dap-client-logo-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .dap-testimonial-card {
        padding: 28px 24px;
    }

    .dap-testimonial-card > p {
        font-size: 15px;
    }

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

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

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

@media (max-width: 420px) {

    .dap-client-logo-track {
        grid-template-columns: 1fr;
    }

    .dap-testimonial-card {
        padding: 25px 21px;
    }

    .dap-review-score > strong {
        font-size: 38px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97af067 *//* =========================================
   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 */