:root {
    --zitro-bg: #090d12;
    --zitro-panel: #111820;
    --zitro-panel-soft: #18222d;
    --zitro-text: #f7f9fc;
    --zitro-muted: #aeb8c5;
    --zitro-primary: #ffc700;
    --zitro-primary-strong: #ff9900;
    --zitro-primary-soft: #ffdd5e;
    --zitro-yellow: #ffc700;
    --zitro-yellow-soft: #ffdd5e;
    --zitro-orange: #ff9900;
    --zitro-border: rgba(255, 255, 255, 0.09);
    --zitro-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    --color-primary: #ffc700;
    --color-primary-alt: rgba(255, 199, 0, 0.82);
    --color-primary-2nd: #ffc700;
    --color-primary-3rd: #ffc700;
    --color-subtitle: #ffc700;
    --gradient-box: linear-gradient(to right, #ffc700, #ff9900);
    --gradient-one: linear-gradient(to right bottom, #ffc700, #ff9900);
    --gradient-two: linear-gradient(to right, #ffc700, #ff9900);
    --text-gradient-one: linear-gradient(to right, #ffc700, #ff9900);
}

html {
    scroll-behavior: smooth;
}

body.zitro-software-site {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 199, 0, 0.07), transparent 24rem),
        var(--zitro-bg);
    color: var(--zitro-text);
    overflow-x: hidden;
}

body.zitro-software-site p {
    font-weight: 700 !important;
}

.zitro-icon-wrap {
    font-style: normal;
    line-height: 1;
}

.zitro-icon {
    display: inline-block;
    fill: none;
    height: 1em;
    overflow: visible;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    vertical-align: -0.125em;
    width: 1em;
}

.zitro-background-marks {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.zitro-background-marks span {
    animation: zitro-mark-float var(--mark-duration) linear infinite;
    animation-delay: var(--mark-delay);
    background: linear-gradient(
        to bottom right,
        rgba(255, 199, 0, var(--mark-alpha)) 25%,
        rgba(255, 153, 0, var(--mark-alpha)) 100%
    );
    border-radius: 0 50% 0 50%;
    bottom: -120px;
    box-shadow: 0 0 42px rgba(255, 199, 0, calc(var(--mark-alpha) * 0.55));
    height: var(--mark-size);
    left: var(--mark-left);
    position: absolute;
    transform: translate3d(0, 0, 0) rotate(var(--mark-rotate));
    width: var(--mark-size);
    will-change: opacity, transform;
}

.zitro-background-marks span:nth-child(1) {
    --mark-left: 8%;
    --mark-size: 22px;
    --mark-alpha: 0.12;
    --mark-rotate: -18deg;
    --mark-duration: 34s;
    --mark-delay: -9s;
}

.zitro-background-marks span:nth-child(2) {
    --mark-left: 19%;
    --mark-size: 54px;
    --mark-alpha: 0.075;
    --mark-rotate: 16deg;
    --mark-duration: 48s;
    --mark-delay: -24s;
}

.zitro-background-marks span:nth-child(3) {
    --mark-left: 33%;
    --mark-size: 30px;
    --mark-alpha: 0.09;
    --mark-rotate: 42deg;
    --mark-duration: 39s;
    --mark-delay: -16s;
}

.zitro-background-marks span:nth-child(4) {
    --mark-left: 48%;
    --mark-size: 76px;
    --mark-alpha: 0.055;
    --mark-rotate: -8deg;
    --mark-duration: 58s;
    --mark-delay: -31s;
}

.zitro-background-marks span:nth-child(5) {
    --mark-left: 61%;
    --mark-size: 26px;
    --mark-alpha: 0.105;
    --mark-rotate: 24deg;
    --mark-duration: 36s;
    --mark-delay: -4s;
}

.zitro-background-marks span:nth-child(6) {
    --mark-left: 73%;
    --mark-size: 44px;
    --mark-alpha: 0.08;
    --mark-rotate: -34deg;
    --mark-duration: 44s;
    --mark-delay: -20s;
}

.zitro-background-marks span:nth-child(7) {
    --mark-left: 84%;
    --mark-size: 18px;
    --mark-alpha: 0.14;
    --mark-rotate: 12deg;
    --mark-duration: 32s;
    --mark-delay: -13s;
}

.zitro-background-marks span:nth-child(8) {
    --mark-left: 92%;
    --mark-size: 64px;
    --mark-alpha: 0.06;
    --mark-rotate: 38deg;
    --mark-duration: 52s;
    --mark-delay: -27s;
}

@keyframes zitro-mark-float {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) rotate(var(--mark-rotate));
    }

    12%,
    72% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(0, -120vh, 0) rotate(calc(var(--mark-rotate) + 36deg));
    }
}

.zitro-skip-link {
    background: var(--zitro-yellow);
    color: #080b0f;
    font-weight: 800;
    left: 16px;
    padding: 12px 18px;
    position: fixed;
    top: -100px;
    transition: top 0.2s ease;
    z-index: 99999;
}

.zitro-skip-link:focus {
    top: 16px;
}

[id] {
    scroll-margin-top: 110px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--zitro-yellow);
    outline-offset: 4px;
}

.zitro-software-site .tmp-header-area-start.header--transparent,
.zitro-software-site .tmp-header-area-start.header--sticky.sticky {
    background: rgba(9, 13, 18, 0.9);
    border-bottom: 1px solid var(--zitro-border);
    backdrop-filter: blur(18px);
}

.zitro-software-site .tmp-mainmenu > li > a {
    color: #e7ebf1;
    font-size: 15px;
    font-weight: 700;
}

.zitro-software-site .tmp-mainmenu > li > a:hover,
.zitro-software-site .tmp-mainmenu > li > a:focus-visible {
    color: var(--zitro-yellow);
}

.zitro-logo {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
    text-decoration: none;
}

.zitro-logo__wordmark {
    color: var(--zitro-yellow);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
}

.zitro-logo__wordmark::before {
    background: var(--zitro-yellow);
    border-radius: 0 50% 0 50%;
    content: "";
    display: inline-block;
    height: 0.56em;
    margin-right: 0.26em;
    transition: transform 0.25s ease;
    width: 0.56em;
}

.zitro-logo:hover .zitro-logo__wordmark::before,
.zitro-logo:focus-visible .zitro-logo__wordmark::before {
    transform: rotate(-8deg) scale(1.06);
}

.zitro-logo__wordmark span {
    color: #eeeeee;
    font-weight: 300;
    letter-spacing: -0.045em;
}

.zitro-logo__wordmark span::before {
    color: var(--zitro-yellow);
    content: "®";
    font-size: 0.4em;
    left: -0.04em;
    position: relative;
    top: -0.5em;
}

.zitro-software-site .tmp-menu-bars,
.zitro-software-site .social-link a {
    color: var(--zitro-text);
}

.zitro-software-site .tmp-menu-bars:hover,
.zitro-software-site .social-link a:hover {
    color: #07090c;
}

.zitro-software-site .actions-area .tmp-menu-bars {
    border-color: #050505;
    color: #ffffff;
}

.zitro-software-site .actions-area .tmp-menu-bars::after {
    background: #050505;
}

.zitro-software-site .actions-area .tmp-menu-bars:hover,
.zitro-software-site .actions-area .tmp-menu-bars:focus-visible {
    border-color: #ffffff;
    color: #050505;
}

.zitro-software-site .actions-area .tmp-menu-bars:hover::after,
.zitro-software-site .actions-area .tmp-menu-bars:focus-visible::after {
    background: #ffffff;
    opacity: 1;
    transform: scale(1);
}

.zitro-lang-switch {
    border: 1px solid rgba(255, 199, 0, 0.4);
    border-radius: 50%;
    color: var(--zitro-yellow);
    display: inline-grid;
    font-size: 13px;
    font-weight: 800;
    height: 42px;
    min-width: 42px;
    place-items: center;
    transition: background-color 180ms ease, color 180ms ease;
}

.zitro-lang-switch:hover,
.zitro-lang-switch:focus-visible {
    background: var(--zitro-yellow);
    color: var(--zitro-bg);
}

.zitro-software-site .tmp-btn {
    background: var(--zitro-yellow);
    border-color: var(--zitro-yellow);
    color: #0b0d10;
    font-weight: 800;
}

.zitro-software-site .tmp-btn:hover {
    background: var(--zitro-orange);
    border-color: var(--zitro-orange);
    color: #080b0f;
}

.zitro-software-site .tmp-btn.btn-border {
    background: transparent;
    color: var(--zitro-yellow);
}

.zitro-software-site .tmp-btn.btn-border:hover {
    background: var(--zitro-yellow);
    color: #080b0f;
}

.zitro-software-site .scrollToTop {
    border: 1px solid rgba(255, 199, 0, 0.32);
    bottom: 20px;
    right: 20px;
}

.scrollToTop .arrowUp .zitro-icon {
    height: 19px;
    width: 19px;
}

.zitro-scroll-top {
    background-color: #0f0f0f;
    border: 1px solid rgba(255, 204, 37, 0.32);
    padding: 0;
    z-index: 1000;
}

.zitro-scroll-top .arrowUp {
    background: transparent;
    color: #ffffff;
    transition: color 200ms ease;
}

.zitro-scroll-top.is-majority-filled .arrowUp {
    color: #050505;
}

.zitro-scroll-wave-definition {
    display: none;
}

.zitro-floating-contact {
    align-items: center;
    background: linear-gradient(135deg, var(--zitro-yellow) 25%, var(--zitro-orange) 100%);
    border: 0;
    border-radius: 50%;
    bottom: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
    color: #050505;
    cursor: pointer;
    display: flex;
    height: 55px;
    justify-content: center;
    padding: 0;
    position: fixed;
    right: 20px;
    transition: bottom 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 55px;
    z-index: 1000;
}

.zitro-floating-contact.chat-visible {
    bottom: 90px;
}

.zitro-floating-contact:hover,
.zitro-floating-contact:focus-visible {
    box-shadow: 0 14px 34px rgba(255, 199, 0, 0.24);
    color: #050505;
    transform: translateY(-8%);
}

.zitro-floating-contact:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.zitro-floating-contact .zitro-icon-wrap,
.zitro-floating-contact .zitro-icon {
    height: 24px;
    width: 24px;
}

.zitro-software-site .scrollToTop .water svg use,
.zitro-software-site .scrollToTop symbol path {
    fill: var(--zitro-yellow) !important;
}

@media only screen and (max-width: 575px) {
    .zitro-floating-contact {
        height: 40px;
        width: 40px;
    }

    .zitro-floating-contact.chat-visible {
        bottom: 70px;
    }

    .zitro-floating-contact .zitro-icon-wrap,
    .zitro-floating-contact .zitro-icon {
        height: 19px;
        width: 19px;
    }
}

.zitro-text-link {
    color: var(--zitro-yellow);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    margin-left: 24px;
    padding: 12px 0;
    text-decoration: underline;
    text-decoration-color: rgba(255, 199, 0, 0.35);
    text-underline-offset: 5px;
}

.zitro-text-link:hover {
    color: var(--zitro-yellow-soft);
    text-decoration-color: currentColor;
}

.zitro-hero {
    --zitro-bg: #0d1117;
    --zitro-text: #f2f6fb;
    --zitro-yellow: #ffcc25;
    --zitro-orange: #ff8a00;
    --color-primary: #ffcc25;
    --color-primary-alt: rgba(255, 204, 37, 0.86);
    --color-primary-2nd: #ffcc25;
    --color-primary-3rd: #ffd95c;
    --color-subtitle: #ffcc25;
    --gradient-box: linear-gradient(to right, #ffcc25, #ffd95c);
    --gradient-one: linear-gradient(to right bottom, #ffcc25, #58d7ff);
    --gradient-two: linear-gradient(to right, #ffcc25, #f6f0a8);
    --text-gradient-one: linear-gradient(to right, #ffcc25, #58d7ff);
    background:
        radial-gradient(circle at 70% 28%, rgba(255, 199, 0, 0.16), transparent 28rem),
        radial-gradient(circle at 10% 20%, rgba(255, 153, 0, 0.08), transparent 24rem),
        linear-gradient(135deg, #090d12 0%, #121922 52%, #090d12 100%);
    color: var(--zitro-text);
}

.zitro-hero.rpp-banner-two-area::before,
.zitro-hero.rpp-banner-two-area::after {
    background: #ffc700;
}

.zitro-hero .title {
    color: var(--zitro-text);
}

.zitro-hero .banner-two-main-wrapper .inner .disc {
    color: #ffffff;
    font-weight: 400 !important;
}

@media only screen and (min-width: 992px) {
    .zitro-hero .banner-two-main-wrapper .inner .disc {
        min-height: 170px;
    }
}

.zitro-hero .tmp-btn {
    background: var(--zitro-yellow);
    border-color: var(--zitro-yellow);
    color: #111111;
    font-weight: 500;
    padding-inline: 33px;
}

.zitro-hero .tmp-btn:hover {
    background: var(--zitro-orange);
    border-color: var(--zitro-orange);
    color: #081018;
}

.zitro-hero .zitro-text-link {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    padding: 0;
    text-decoration: none;
}

.zitro-hero .social-link.banner a {
    color: #ffffff;
}

.zitro-hero .banner-right-content {
    width: 100%;
}

.zitro-hero-code-rain {
    background: transparent;
    height: 711px;
    isolation: isolate;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    max-width: 548px;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.zitro-code-rain::after {
    background-image:
        linear-gradient(rgba(255, 199, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 199, 0, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
    opacity: 0.65;
    position: absolute;
    z-index: 2;
}

.zitro-code-rain__canvas,
.zitro-code-rain__fallback,
.zitro-code-rain__scan {
    inset: 0;
    position: absolute;
}

.zitro-code-rain__canvas {
    height: 100%;
    opacity: 0;
    transition: opacity 0.45s ease;
    width: 100%;
    z-index: 1;
}

.zitro-code-rain.is-animated .zitro-code-rain__canvas {
    opacity: 1;
}

.zitro-code-rain__fallback {
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
    overflow: hidden;
    padding: 70px 28px 90px;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.zitro-code-rain.is-animated .zitro-code-rain__fallback {
    opacity: 0.025;
}

.zitro-code-rain__fallback span {
    color: rgba(255, 199, 0, 0.72);
    display: block;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: clamp(11px, 1.05vw, 15px);
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 0 14px rgba(255, 199, 0, 0.42);
    white-space: nowrap;
}

.zitro-code-rain__fallback span:nth-child(3n + 1) {
    transform: translateX(10%);
}

.zitro-code-rain__fallback span:nth-child(3n + 2) {
    opacity: 0.55;
    transform: translateX(-7%);
}

.zitro-code-rain__fallback span:nth-child(4n) {
    color: rgba(255, 221, 94, 0.9);
    transform: translateX(18%);
}

.zitro-code-rain__scan {
    background: linear-gradient(180deg, transparent, rgba(255, 199, 0, 0.11), transparent);
    height: 26%;
    opacity: 0.8;
    top: -28%;
    z-index: 2;
}

.zitro-code-rain.is-animated .zitro-code-rain__scan {
    animation: zitro-code-scan 6s linear infinite;
}

@keyframes zitro-code-scan {
    to {
        transform: translateY(500%);
    }
}

@keyframes up-down-2 {
    0% {
        transform: translateY(-10px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .zitro-background-marks {
        display: none;
    }

    .zitro-code-rain__scan {
        animation: none !important;
        display: none;
    }
}

.zitro-software-site .subtitle,
.zitro-software-site .service-card-icon,
.zitro-software-site .card-icon,
.zitro-software-site .price-sub-title,
.zitro-software-site .edu-sub-title,
.zitro-software-site .ex-subtitle {
    color: var(--zitro-yellow);
}

.zitro-software-site .section-head .title,
.zitro-software-site .service-title a,
.zitro-software-site .year-title,
.zitro-software-site .service-card-num,
.zitro-software-site .custom-title,
.zitro-software-site .edu-title,
.zitro-software-site .ex-name,
.zitro-software-site .portfolio-card-title a,
.zitro-software-site .main-title,
.zitro-software-site .ft-title {
    color: var(--zitro-text);
}

.zitro-software-site .description,
.zitro-software-site .service-para,
.zitro-software-site .year-para,
.zitro-software-site .counter-para,
.zitro-software-site .edu-para,
.zitro-software-site .ex-para,
.zitro-software-site .card-para,
.zitro-software-site .portfoli-card-para,
.zitro-software-site .zitro-model-text {
    color: var(--zitro-muted);
}

.zitro-software-site .service-card-v1,
.zitro-software-site .year-of-expariance-wrapper,
.zitro-software-site .counter-card,
.zitro-software-site .service-card-v2,
.zitro-software-site .progress-wrapper,
.zitro-software-site .education-experience-card,
.zitro-software-site .experience-content,
.zitro-software-site .latest-portfolio-card,
.zitro-software-site .my-skill-card,
.zitro-software-site .price-plan-card,
.zitro-contact-card,
.zitro-faq-item,
.zitro-legal-card,
.zitro-error-card {
    background: linear-gradient(145deg, rgba(24, 34, 45, 0.97), rgba(13, 19, 26, 0.97));
    border: 1px solid var(--zitro-border);
    border-radius: 8px;
    box-shadow: var(--zitro-shadow);
}

.zitro-software-site .service-card-v1 {
    height: 100%;
    min-height: 250px;
}

.zitro-software-site .service-card-v1:hover,
.zitro-software-site .counter-card:hover,
.zitro-software-site .service-card-v2:hover,
.zitro-software-site .education-experience-card:hover,
.zitro-software-site .price-plan-card:hover {
    border-color: rgba(255, 199, 0, 0.45);
    transform: translateY(-4px);
}

.zitro-software-site .service-card-v1,
.zitro-software-site .counter-card,
.zitro-software-site .service-card-v2,
.zitro-software-site .education-experience-card,
.zitro-software-site .price-plan-card {
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.zitro-software-site .service-card-icon {
    background: rgba(255, 199, 0, 0.08);
    border: 1px solid rgba(255, 199, 0, 0.18);
}

.zitro-software-site .service-card-num span {
    color: var(--zitro-yellow);
}

.zitro-approach .year-of-expariance-wrapper {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.zitro-approach .year-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    margin: 16px 0 20px;
}

.zitro-approach .counter-title {
    color: var(--zitro-yellow);
    font-size: 36px;
    letter-spacing: -0.04em;
}

.zitro-software-site .service-card-user-image img,
.zitro-software-site .experiences-wrap-right-content img {
    border-radius: 8px;
}

.zitro-skill-card {
    height: 100%;
    min-height: 390px;
    padding: 46px;
}

.zitro-skill-heading {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.zitro-skill-heading i {
    align-items: center;
    background: rgba(255, 199, 0, 0.1);
    border: 1px solid rgba(255, 199, 0, 0.22);
    border-radius: 50%;
    color: var(--zitro-yellow);
    display: inline-flex;
    flex: 0 0 58px;
    font-size: 23px;
    height: 58px;
    justify-content: center;
}

.zitro-skill-heading .custom-title {
    margin: 0;
}

.zitro-check-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.zitro-check-list li {
    color: #e6ebf2;
    font-weight: 700;
    line-height: 1.55;
    list-style: none;
    padding-left: 30px;
    position: relative;
}

.zitro-check-list li::before {
    border-color: var(--zitro-yellow);
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    height: 12px;
    left: 3px;
    position: absolute;
    top: 5px;
    transform: rotate(45deg);
    width: 7px;
}

.zitro-software-site .education-experience-card {
    min-height: 245px;
}

.zitro-software-site .education-experience-card .edu-title {
    font-size: 34px;
    margin: 10px 0 16px;
}

.zitro-software-site .experiences-wrapper.v2 {
    margin-top: 80px;
}

.zitro-software-site .experience-content {
    margin-bottom: 24px;
    padding: 26px 30px;
}

.zitro-software-site .experience-content .ex-name {
    font-size: 28px;
    margin-bottom: 10px;
}

.zitro-technology-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zitro-technology-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--zitro-border);
    border-radius: 8px;
    color: #e7ebf1;
    display: flex;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    min-height: 82px;
    padding: 18px;
    text-align: center;
}

.zitro-technology-item:hover {
    background: rgba(255, 199, 0, 0.08);
    border-color: rgba(255, 199, 0, 0.38);
    color: var(--zitro-yellow);
}

.zitro-software-site .tpm-custom-box-bg {
    background:
        radial-gradient(circle at 12% 25%, rgba(255, 199, 0, 0.08), transparent 30rem),
        #0d131a;
    border-bottom: 1px solid var(--zitro-border);
    border-top: 1px solid var(--zitro-border);
    padding-bottom: 120px;
}

.zitro-software-site .latest-portfolio-area {
    padding-top: 120px;
}

.zitro-software-site .latest-portfolio-card {
    overflow: hidden;
}

.zitro-software-site .latest-portfolio-card .img-box img {
    aspect-ratio: 1.24 / 1;
    object-fit: cover;
}

.zitro-software-site .portfolio-card-content-wrap {
    align-items: flex-start;
    padding: 28px;
}

.zitro-software-site .portfolio-card-content-wrap .content-left {
    max-width: calc(100% - 72px);
}

.zitro-solution-copy {
    color: var(--zitro-muted);
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
}

.zitro-software-site .tmp-arrow-icon-btn {
    background: rgba(255, 199, 0, 0.1);
    border-color: rgba(255, 199, 0, 0.25);
    color: var(--zitro-yellow);
}

.zitro-software-site .services-widget.v1 .service-item {
    border-color: var(--zitro-border);
}

.zitro-software-site .services-widget.v1 .my-skill-card {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: 90px minmax(180px, 0.75fr) 1.5fr auto;
    min-height: 170px;
    padding: 28px 34px;
}

.zitro-software-site .services-widget.v1 .card-icon {
    align-items: center;
    background: rgba(255, 199, 0, 0.09);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 50%;
    display: flex;
    font-size: 28px;
    height: 72px;
    justify-content: center;
    width: 72px;
}

.zitro-software-site .services-widget.v1 .read-more-btn {
    color: var(--zitro-yellow);
    white-space: nowrap;
}

.zitro-software-site .services-widget .active-bg {
    background: linear-gradient(145deg, rgba(28, 39, 51, 0.98), rgba(16, 23, 31, 0.98));
    border: 1px solid rgba(255, 199, 0, 0.24);
}

.zitro-software-site .price-plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
}

.zitro-software-site .price-plan-card.active {
    border-color: rgba(255, 199, 0, 0.52);
    box-shadow: 0 28px 80px rgba(255, 199, 0, 0.09);
}

.zitro-model-title {
    color: var(--zitro-text);
    font-size: 34px;
    line-height: 1.15;
    margin: 20px 0;
}

.zitro-model-text {
    line-height: 1.7;
    margin-bottom: 26px;
}

.zitro-software-site .price-plan-card .check-box {
    margin-bottom: 30px;
}

.zitro-software-site .price-plan-card .tmp-button-here {
    margin-top: auto;
}

.zitro-software-site .check-box-item .box-icon {
    color: var(--zitro-yellow);
}

.zitro-faq-list {
    display: grid;
    gap: 18px;
    margin: 0 auto;
    max-width: 980px;
}

.zitro-faq-item {
    overflow: clip;
}

.zitro-faq-item summary {
    align-items: center;
    color: var(--zitro-text);
    cursor: pointer;
    display: flex;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    gap: 24px;
    justify-content: space-between;
    list-style: none;
    padding: 28px 32px;
}

.zitro-faq-item summary::-webkit-details-marker {
    display: none;
}

.zitro-faq-item summary i {
    color: var(--zitro-yellow);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.zitro-faq-item[open] summary i {
    transform: rotate(45deg);
}

.zitro-faq-answer {
    border-top: 1px solid var(--zitro-border);
    padding: 24px 32px 30px;
    transform-origin: top;
}

.zitro-faq-answer p {
    color: var(--zitro-muted);
    line-height: 1.75;
    margin: 0;
}

.zitro-contact-card {
    overflow: hidden;
    padding: 44px;
}

.zitro-contact-image {
    border-radius: 8px;
    overflow: hidden;
}

.zitro-contact-image img {
    aspect-ratio: 1.16 / 1;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.zitro-contact-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.zitro-phone-link {
    align-items: center;
    color: var(--zitro-text);
    display: inline-flex;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    gap: 14px;
}

.zitro-phone-link i {
    align-items: center;
    background: rgba(255, 199, 0, 0.1);
    border: 1px solid rgba(255, 199, 0, 0.24);
    border-radius: 50%;
    color: var(--zitro-yellow);
    display: inline-flex;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.zitro-phone-link small {
    color: var(--zitro-muted);
    display: block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.zitro-phone-link:hover {
    color: var(--zitro-yellow);
}

.zitro-footer {
    background: #0b1016;
    border-top: 1px solid var(--zitro-border);
    position: relative;
}

.zitro-footer .description,
.zitro-footer .ft-link a,
.zitro-footer .ft-link li {
    color: var(--zitro-muted);
}

.zitro-footer .ft-link a:hover {
    color: var(--zitro-yellow);
}

.zitro-footer .footer-bg-img {
    opacity: 0.14;
    pointer-events: none;
}

.zitro-software-site .copyright-area-one {
    background: #070a0e;
    border-top: 1px solid var(--zitro-border);
}

.zitro-software-site .copy-right-para,
.zitro-software-site .copyright-area-one a {
    color: var(--zitro-muted);
}

.zitro-software-site .copyright-area-one a:hover {
    color: var(--zitro-yellow);
}

.zitro-mobile-contact {
    display: grid;
    gap: 12px;
}

.zitro-mobile-contact a {
    align-items: center;
    color: var(--zitro-text);
    display: flex;
    gap: 12px;
}

.zitro-mobile-contact a i {
    color: var(--zitro-yellow);
}

.zitro-software-site .tmp-popup-mobile-menu,
.zitro-software-site .tmp-sidebar-area {
    background: #0e141c;
}

.zitro-software-site .tmp-sidebar-area .title,
.zitro-software-site .tmp-popup-mobile-menu .tmp-mainmenu a {
    color: var(--zitro-text);
}

.zitro-software-site .tmp-sidebar-area .disc,
.zitro-software-site .tmp-sidebar-area .number {
    color: var(--zitro-muted);
}

.zitro-software-site .tmp-sidebar-area .short-contact-area .single-contact > i {
    align-items: center;
    border: 1px solid var(--zitro-border);
    border-radius: 5px;
    color: var(--zitro-yellow);
    display: inline-flex;
    flex: 0 0 45px;
    height: 45px;
    justify-content: center;
}

.zitro-software-site .overlay_close_side_menu {
    border: 0;
}

.zitro-legal-page,
.zitro-error-page {
    min-height: 75vh;
}

.zitro-legal-hero {
    background:
        radial-gradient(circle at 80% 0, rgba(255, 199, 0, 0.12), transparent 28rem),
        #0d131a;
    border-bottom: 1px solid var(--zitro-border);
    padding: 220px 0 90px;
}

.zitro-legal-hero .title {
    color: var(--zitro-text);
    font-size: clamp(48px, 7vw, 86px);
    margin-top: 18px;
}

.zitro-legal-content {
    padding: 90px 0 130px;
}

.zitro-legal-card {
    color: var(--zitro-muted);
    line-height: 1.75;
    margin: 0 auto;
    max-width: 1060px;
    padding: clamp(28px, 5vw, 70px);
}

.zitro-legal-card h2,
.zitro-legal-card h3,
.zitro-legal-card h4 {
    color: var(--zitro-text);
    margin-bottom: 18px;
    margin-top: 36px;
}

.zitro-legal-card h2:first-child,
.zitro-legal-card h3:first-child {
    margin-top: 0;
}

.zitro-legal-card a {
    color: var(--zitro-yellow);
    overflow-wrap: anywhere;
    text-decoration: underline;
}

.zitro-error-content {
    padding: 230px 0 130px;
}

.zitro-error-card {
    margin: 0 auto;
    max-width: 820px;
    padding: 70px;
    text-align: center;
}

.zitro-error-card .subtitle {
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
}

.zitro-error-card h1 {
    color: var(--zitro-text);
    font-size: clamp(42px, 6vw, 70px);
    margin-bottom: 18px;
}

.zitro-error-card p {
    color: var(--zitro-muted);
    margin-bottom: 30px;
}

body.zitro-modal-open {
    overflow: hidden;
}

.zitro-contact-modal {
    background: transparent;
    border: 0;
    color: var(--zitro-text);
    margin: auto;
    max-height: calc(100vh - 40px);
    max-width: 920px;
    overflow: visible;
    padding: 0;
    width: calc(100% - 40px);
}

.zitro-contact-modal::backdrop {
    backdrop-filter: blur(9px);
    background: rgba(4, 7, 11, 0.88);
}

.zitro-contact-modal[open] {
    animation: zitro-modal-enter 240ms ease-out both;
}

.zitro-contact-modal__surface {
    background:
        radial-gradient(circle at 95% 0, rgba(255, 255, 255, 0.19), transparent 260px),
        linear-gradient(145deg, #ffdd5e 0%, var(--zitro-primary) 48%, var(--zitro-orange) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: clamp(30px, 5vw, 60px);
    position: relative;
}

.zitro-contact-modal__close {
    align-items: center;
    background: rgba(8, 13, 19, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: 22px;
    top: 22px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    width: 48px;
    z-index: 2;
}

.zitro-contact-modal__close:hover,
.zitro-contact-modal__close:focus-visible {
    background: #fff;
    color: var(--zitro-bg);
    transform: rotate(8deg);
}

.zitro-contact-modal__heading {
    max-width: 700px;
    padding-right: 54px;
}

.zitro-contact-modal__eyebrow {
    color: rgba(8, 13, 19, 0.78);
    display: block;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.zitro-contact-modal__heading h2 {
    color: #080d13;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 0.98;
    margin-bottom: 16px;
}

.zitro-contact-modal__heading p {
    color: rgba(8, 13, 19, 0.86);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0;
}

.zitro-contact-form {
    margin-top: 34px;
}

.zitro-contact-form__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zitro-contact-form__field {
    margin-bottom: 20px;
}

.zitro-contact-form__field label {
    color: #080d13;
    display: block;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
}

.zitro-contact-form__field input,
.zitro-contact-form__field textarea {
    background: #fff;
    border: 2px solid rgba(8, 13, 19, 0.16);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(96, 5, 20, 0.1);
    color: #101820;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    padding: 15px 17px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    width: 100%;
}

.zitro-contact-form__field input {
    min-height: 56px;
}

.zitro-contact-form__field textarea {
    min-height: 150px;
    resize: vertical;
}

.zitro-contact-form__field input:focus,
.zitro-contact-form__field textarea:focus {
    border-color: #111820;
    box-shadow: 0 0 0 4px rgba(17, 24, 32, 0.16);
}

.zitro-contact-form__field input[aria-invalid="true"],
.zitro-contact-form__field textarea[aria-invalid="true"] {
    border-color: #791525;
}

.zitro-contact-form__error {
    color: #57101b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 7px;
}

.zitro-contact-form__notice {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    color: #111820;
    display: flex;
    font-weight: 700;
    gap: 10px;
    line-height: 1.45;
    margin-top: 24px;
    padding: 14px 16px;
}

.zitro-contact-form__notice i {
    font-size: 20px;
    margin-top: 1px;
}

.zitro-contact-form__notice--error {
    color: #791525;
}

.zitro-contact-form__notice--success {
    color: #185c3a;
}

.zitro-contact-form__footer {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.zitro-contact-form__footer p {
    color: rgba(8, 13, 19, 0.82);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
    max-width: 520px;
}

.zitro-contact-form__footer a {
    color: #080d13;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.zitro-contact-form__submit {
    align-items: center;
    background: #111820;
    border: 1px solid #111820;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    gap: 14px;
    min-height: 56px;
    padding: 13px 25px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.zitro-contact-form__submit:hover,
.zitro-contact-form__submit:focus-visible {
    background: #fff;
    color: #111820;
    transform: translateY(-2px);
}

.zitro-contact-form__honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

@keyframes zitro-modal-enter {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media only screen and (max-width: 1199px) {
    .zitro-software-site .services-widget.v1 .my-skill-card {
        grid-template-columns: 80px 1fr 1.5fr;
    }

    .zitro-software-site .services-widget.v1 .read-more-btn {
        grid-column: 2 / -1;
    }
}

@media only screen and (max-width: 991px) {
    .zitro-hero .mt--100 {
        margin-top: 40px !important;
    }

    .zitro-hero-code-rain {
        height: 560px;
        margin-inline: auto;
    }

    .zitro-technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zitro-software-site .latest-portfolio-card {
        margin-top: 40px !important;
    }

    .zitro-software-site .services-widget.v1 .my-skill-card {
        grid-template-columns: 74px 1fr;
    }

    .zitro-software-site .services-widget.v1 .card-para,
    .zitro-software-site .services-widget.v1 .read-more-btn {
        grid-column: 2;
    }

    .zitro-software-site .price-plan-card {
        height: auto;
        margin-bottom: 30px;
        min-height: 0;
    }
}

@media only screen and (max-width: 767px) {
    .zitro-hero-code-rain {
        height: 460px;
    }

    .zitro-logo__wordmark {
        font-size: 28px;
    }

    .zitro-skill-card {
        min-height: 0;
        padding: 30px 24px;
    }

    .zitro-technology-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zitro-technology-item {
        font-size: 15px;
        min-height: 66px;
    }

    .zitro-software-site .services-widget.v1 .my-skill-card {
        display: block;
        padding: 28px 24px;
    }

    .zitro-software-site .services-widget.v1 .card-title,
    .zitro-software-site .services-widget.v1 .card-para,
    .zitro-software-site .services-widget.v1 .read-more-btn {
        display: block;
        margin-top: 20px;
    }

    .zitro-contact-card {
        padding: 24px;
    }

    .zitro-contact-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .zitro-faq-item summary {
        font-size: 18px;
        padding: 22px;
    }

    .zitro-faq-answer {
        padding: 20px 22px 24px;
    }

    .zitro-legal-hero {
        padding: 160px 0 60px;
    }

    .zitro-legal-content {
        padding: 60px 0 90px;
    }

    .zitro-error-card {
        padding: 44px 24px;
    }

    .zitro-contact-modal {
        max-height: calc(100vh - 20px);
        width: calc(100% - 20px);
    }

    .zitro-contact-modal__surface {
        border-radius: 20px;
        max-height: calc(100vh - 20px);
        padding: 28px 20px;
    }

    .zitro-contact-modal__close {
        height: 42px;
        right: 16px;
        top: 16px;
        width: 42px;
    }

    .zitro-contact-modal__heading {
        padding-right: 38px;
    }

    .zitro-contact-modal__heading h2 {
        font-size: 36px;
    }

    .zitro-contact-modal__heading p {
        font-size: 16px;
    }

    .zitro-contact-form__grid {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .zitro-contact-form__footer {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .zitro-contact-form__submit {
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
