@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #2563eb;
}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-image: linear-gradient(rgba(0, 255, 214, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 214, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}
.grecaptcha-badge{
    display: none;
}
.hero-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(39 39 39 / 25%)!important;
}

.nav-link {
    position: relative;
}
nav{
    transition: 0.4s;
    background-color: #16161985;
}
nav.active {
    transform: translateY(-200px);
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #60a5fa;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}
.b1_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.b1_bg img, .b1_bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.b1_bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.csp-u{
    background-image: radial-gradient(at top , #000a196e 10%, #18181b 65%);
    z-index: 2;
}
/* ÃÅ¡ÃÂ¾ÃÂ½Ã‘â€šÃÂµÃÂ¹ÃÂ½ÃÂµÃ‘â‚¬ */
.projects-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Ãâ€”ÃÂ°ÃÂ³ÃÂ¾ÃÂ»ÃÂ¾ÃÂ²ÃÂ¾Ã‘â€¡ÃÂ½Ã‘â€¹ÃÂ¹ ÃÂ±ÃÂ»ÃÂ¾ÃÂº */
.projects-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.projects-header h1 {
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 20%, #B8C6FF 60%, #D9A7FF 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    animation: fadeSlideDown 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    text-align: center;
}

.divider-glow {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #c084fc, #f472b6);
    border-radius: 6px;
    margin: 1rem auto 0;
    box-shadow: 0 0 12px rgba(123, 31, 162, 0.5);
    transition: width 0.4s ease;
}

.projects-header:hover .divider-glow {
    width: 180px;
}

/* ÃÂ¡ÃÂµÃ‘â€šÃÂºÃÂ° ÃÂ³ÃÂ°ÃÂ»ÃÂµÃ‘â‚¬ÃÂµÃÂ¸ */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

/* ÃÅ¡ÃÂ°Ã‘â‚¬Ã‘â€šÃÂ¾Ã‘â€¡ÃÂºÃÂ° ÃÂ¿Ã‘â‚¬ÃÂ¾ÃÂµÃÂºÃ‘â€šÃÂ° */
.gallery-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(18, 22, 35, 0.6);
    backdrop-filter: blur(2px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.6s forwards;
    animation-delay: calc(0.05s * var(--i, 1));
    text-decoration: none;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 45px -12px rgba(0, 0, 0, 0.7);
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #0a0c18;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08) rotate(0.5deg);
}

/* ÃÅ¾ÃÂ²ÃÂµÃ‘â‚¬ÃÂ»ÃÂµÃÂ¹ Ã¢â‚¬â€ ÃÂ²Ã‘ÂÃÂµÃÂ³ÃÂ´ÃÂ° ÃÂ²ÃÂ¸ÃÂ´ÃÂ¸ÃÂ¼Ã‘â€¹ÃÂ¹, Ã‘â€šÃÂµÃÂºÃ‘ÂÃ‘â€š ÃÂ½ÃÂµ ÃÂ¿Ã‘â‚¬ÃÂ¾ÃÂ¿ÃÂ°ÃÂ´ÃÂ°ÃÂµÃ‘â€š */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 10, 20, 0.92) 0%, rgba(8, 10, 20, 0.6) 70%, transparent 100%);
    padding: 1.5rem 1.2rem 1.2rem;
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 1;
    opacity: 0;
    transform: translateY(0);
    pointer-events: none;
}

.gallery-item:hover .project-overlay {
    background: linear-gradient(to top, rgba(8, 10, 20, 0.98) 0%, rgba(8, 10, 20, 0.75) 80%, rgba(0,0,0,0.3) 100%);
    padding-bottom: 1.5rem;
    opacity: 1;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(120deg, #fff, #c0b7ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3ff;
    background: rgba(59, 130, 246, 0.25);
    display: inline-block;
    width: fit-content;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.view-hint {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,240,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

/* ÃÂÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸ÃÂ¸ */
@keyframes fadeSlideDown {
    0% { opacity: 0; transform: translateY(-35px);}
    100% { opacity: 1; transform: translateY(0);}
}
@keyframes cardReveal {
    0% { opacity: 0; transform: translateY(40px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* Ãâ€ÃÂµÃÂºÃÂ¾Ã‘â‚¬ÃÂ°Ã‘â€šÃÂ¸ÃÂ²ÃÂ½Ã‘â€¹ÃÂµ Ã‘ÂÃÂ»ÃÂµÃÂ¼ÃÂµÃÂ½Ã‘â€šÃ‘â€¹ */
.bg-decoration {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
}
.bg-decoration-2 {
    bottom: -15%;
    left: -5%;
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,132,252,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .projects-container { padding: 2rem 1rem 3rem; }
    .photo-gallery { gap: 1.2rem; }
    .project-overlay { padding: 1rem 1rem; }
}

.footer-note {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.85rem;
    color: #6f7c91;
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.footer-note span { color: #b9c3ff; }

.fancybox__container {
    --fancybox-bg: rgba(10, 12, 22, 0.96);
    --fancybox-color: #fff;
}
.fancybox__slide {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
}
.fancybox__toolbar {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}
.fancybox__nav .fancybox__button {
    background: rgba(30, 35, 55, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    margin: 0 8px;
}
.fancybox__nav .fancybox__button:hover {
    background: #3b82f6;
}
.fancybox__caption {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 24px;
    font-size: 1rem;
    letter-spacing: 0.3px;
}
footer{
    position: relative;
    background-image: url(../../IMG/CVit1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -64px;
}
footer > *{
    position: relative;
    z-index: 1;
}
footer:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: radial-gradient(at top, #000a1924 10%, #18181b96 65%);
}



.hero-shell h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 5.2vw, 3.35rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.hero-shell h1 span {
    background: linear-gradient(120deg, #5eead4 0%, #86efac 28%, #d8b4fe 62%, #fda4af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 28px rgba(0, 255, 214, 0.18));
}





.section-head h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #f0fffa;
    text-shadow: 0 0 40px rgba(0, 255, 214, 0.2);
}

.section-head p {
    margin: 0 auto;
    max-width: 38rem;
    color: rgba(180, 230, 215, 0.65);
    font-size: 1rem;
}



@media (min-width: 900px) {
    .shape-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ux-parent--span-2 {
        grid-column: span 2;
    }
}

.ux-parent {
    width: 100%;
    margin-inline: auto;
    perspective: 1000px;
    perspective-origin: 50% 50%;
    min-height: 370px;
}
.ux-nm{
    position: absolute;
    bottom: 0;
    font-size: 5rem;
    opacity: .2;
    font-weight: 600;
    left: 16px;
    text-wrap: nowrap;
    text-transform: uppercase;
}
.ux-nm:before{
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 blue;
    top: 0;
    color: white;
    background: #23499d;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
}
.ux-nm:after{
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 red;
    top: 0;
    color: white;
    background: #23499d;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
}
.ux-parent--wide {
    max-width: none;
    width: 100%;
    height: 268px;
}

.ux-card {
    position: relative;
    height: 100%;
    border-radius: 50px;
    background: #2563eb;
    transform-style: preserve-3d;
    transition:
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.55s ease;
    box-shadow:
            rgba(5, 71, 17, 0) 40px 50px 25px -40px,
            rgba(5, 71, 17, 0.28) 0 25px 25px -5px;
}

.ux-parent:hover .ux-card {
    transform: rotate3d(1, 1, 0, 24deg);
    box-shadow: #ffffff1f 28px 48px 28px -38px, rgba(0, 255, 214, 0.12) 0 0 60px -10px, #4338ca1f 0 25px 35px 0;
}

/* Themes */
.ux-parent--mint {
    --ux-grad: linear-gradient(135deg, rgb(0, 255, 214) 0%, rgb(8, 226, 96) 100%);
    --ux-title: #00894d;
    --ux-body: rgba(0, 137, 78, 0.82);
    --ux-cta: #00c37b;
    --ux-orbit: rgba(0, 249, 203, 0.22);
    --ux-fill: #00894d;
}

.ux-parent--violet {
    --ux-grad: linear-gradient(145deg, #a855f7 0%, #6366f1 40%, #ec4899 100%);
    --ux-title: #3b0764;
    --ux-body: rgba(59, 7, 100, 0.85);
    --ux-cta: #7c3aed;
    --ux-orbit: rgba(216, 180, 254, 0.35);
    --ux-fill: #5b21b6;
}

.ux-parent--solar {
    --ux-grad: linear-gradient(135deg, #fbbf24 0%, #f97316 45%, #dc2626 100%);
    --ux-title: #7c2d12;
    --ux-body: rgba(124, 45, 18, 0.88);
    --ux-cta: #c2410c;
    --ux-orbit: rgba(254, 243, 199, 0.4);
    --ux-fill: #9a3412;
}

.ux-parent--ocean {
    --ux-grad: linear-gradient(155deg, #22d3ee 0%, #0284c7 50%, #1e3a8a 100%);
    --ux-title: #0c4a6e;
    --ux-body: rgba(12, 74, 110, 0.88);
    --ux-cta: #0369a1;
    --ux-orbit: rgba(125, 211, 252, 0.35);
    --ux-fill: #0e7490;
}

.ux-parent--prism {
    --ux-grad: conic-gradient(from 200deg at 65% 35%, #22d3ee, #818cf8, #f472b6, #facc15, #22d3ee);
    --ux-title: #0f172a;
    --ux-body: rgba(15, 23, 42, 0.88);
    --ux-cta: #4338ca;
    --ux-orbit: rgba(255, 255, 255, 0.35);
    --ux-fill: #312e81;
}

.ux-parent--void {
    /* --ux-grad: linear-gradient(160deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%); */
    --ux-title: #e3e3e6;
    --ux-body: rgba(203, 213, 225, 0.82);
    --ux-cta: #2563eb;
    --ux-orbit: rgba(167, 139, 250, 0.25);
    --ux-fill: #c084fc;
}

.ux-parent--void .ux-card {
    box-shadow:
            0 0 0 1px rgba(167, 139, 250, 0.2),
            rgba(5, 71, 17, 0) 40px 50px 25px -40px,
            rgba(0, 0, 0, 0.5) 0 25px 35px -5px;
}

/* Shape modifiers */
.ux-parent--cut .ux-card {
    border-radius: 36px;
    clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
}

.ux-parent--cut .ux-glass {
    border-radius: 32px !important;
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.ux-parent--wide .ux-card {
    border-radius: 44px;
}

.ux-parent--wide .ux-glass {
    border-radius: 48px;
    border-top-right-radius: 55%;
}

.ux-parent--wide .ux-content {
    padding: 2.25rem 52% 0 1.75rem !important;
}

.ux-parent--wide .ux-logo .ux-circle:nth-child(1) {
    width: 200px;
    height: 200px;
}

/* Glass */
.ux-glass {
    transform-style: preserve-3d;
    position: absolute;
    inset: 8px;
    border-radius: 55px;
    border-top-right-radius: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.82) 100%);
    transform: translate3d(0, 0, 25px);
    border-inline-start: 1px solid var(--glass-edge);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    overflow: hidden;
}

.ux-parent--void .ux-glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(15, 23, 42, 0.55) 100%);
    border-color: rgba(148, 163, 184, 0.25);
}

/* Logo orbits */
.ux-logo {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    transform-style: preserve-3d;
    pointer-events: none;
    z-index: 2;
}

.ux-circle {
    display: block;
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 0;
    inset-inline-end: 0;
    background: var(--ux-orbit);
    box-shadow: rgba(100, 100, 111, 0.25) -10px 10px 24px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.5s ease-in-out;
}

.ux-circle:nth-child(1) {
    width: 170px;
    transform: translate3d(0, 0, 20px);
    top: 8px;
    inset-inline-end: 8px;
}
.ux-circle:nth-child(2) {
    width: 140px;
    transform: translate3d(0, 0, 40px);
    top: 10px;
    inset-inline-end: 10px;
    backdrop-filter: blur(4px);
    transition-delay: 0.05s;
}
.ux-circle:nth-child(3) {
    width: 110px;
    transform: translate3d(0, 0, 60px);
    top: 17px;
    inset-inline-end: 17px;
    transition-delay: 0.1s;
}
.ux-circle:nth-child(4) {
    width: 80px;
    transform: translate3d(0, 0, 80px);
    top: 23px;
    inset-inline-end: 23px;
    transition-delay: 0.15s;
}
.ux-circle:nth-child(5) {
    width: 50px;
    transform: translate3d(0, 0, 100px);
    top: 30px;
    inset-inline-end: 30px;
    display: grid;
    place-content: center;
    transition-delay: 0.2s;
}

.ux-circle:nth-child(5) svg {
    width: 20px;
    fill: #fff;
}

.ux-parent:hover .ux-circle:nth-child(2) {
    transform: translate3d(0, 0, 60px);
}
.ux-parent:hover .ux-circle:nth-child(3) {
    transform: translate3d(0, 0, 80px);
}
.ux-parent:hover .ux-circle:nth-child(4) {
    transform: translate3d(0, 0, 100px);
}
.ux-parent:hover .ux-circle:nth-child(5) {
    transform: translate3d(0, 0, 120px);
}

/* Content */
.ux-content {
    padding: 100px 3.75rem 0 1.85rem;
    transform: translate3d(0, 0, 26px);
    position: relative;
    z-index: 3;
}

.ux-parent--wide .ux-logo .ux-circle:nth-child(2) {
    transform: translate3d(0, 0, 38px);
}

.ux-title {
    display: block;
    color: var(--ux-title);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    max-width: 250px;
}

.ux-text {
    display: block;
    margin-top: 1.05rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Bottom bar */
.ux-bottom {
    padding: 10px 12px;
    transform-style: preserve-3d;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translate3d(0, 0, 26px);
    z-index: 4;
}

.ux-social {
    display: flex;
    gap: 10px;
    transform-style: preserve-3d;
}

.ux-social-btn {
    font-weight: 500;
    padding: 6px 12px;
    background: #ffffff0d;
    border-radius: 14px;
    display: grid;
    place-content: center;
    cursor: pointer;
    box-shadow: rgba(5, 71, 17, 0.45) 0 8px 6px -5px;
    transition:
            transform 0.2s ease-in-out,
            box-shadow 0.2s ease-in-out,
            background 0.2s;
    backdrop-filter: blur(3px);
}

.ux-social-btn:nth-child(1) {
    transition-delay: 0.05s;
}
.ux-social-btn:nth-child(2) {
    transition-delay: 0.1s;
}
.ux-social-btn:nth-child(3) {
    transition-delay: 0.15s;
}

.ux-social-btn svg {
    width: 15px;
    height: 15px;
    fill: var(--ux-fill);
}

.ux-social-btn:hover {
    background: #0f172a;
    color: white;
}
.ux-social-btn:hover svg {
    fill: #fff;
}
.ux-social-btn:active {
    background: #ffea00;
}
.ux-social-btn:active svg {
    fill: #0f172a;
}

.ux-parent:hover .ux-social-btn {
    transform: translate3d(0, 0, 50px);
    box-shadow: rgba(5, 71, 17, 0.25) -5px 20px 12px 0;
    border: aliceblue;
}

.ux-more {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 42%;
    justify-content: flex-end;
    transition: transform 0.2s ease;
}

.ux-more:hover {
    transform: translate3d(0, 0, 10px);
}

.ux-more-btn {
    background: none;
    border: none;
    color: var(--ux-cta);
    font-weight: 800;
    font-size: 0.75rem;
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ux-more svg {
    fill: none;
    stroke: var(--ux-cta);
    stroke-width: 3px;
    max-height: 15px;
    width: 18px;
}




.stage-card h3 {
    margin: 0.4rem 0 0;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(0, 80, 55, 0.96);
}

.stage-card--b h3 {
    color: #3b0764;
}
.stage-card--c h3 {
    color: #7c2d12;
}
.stage-card--d h3 {
    color: #0c4a6e;
}

.stage-card p {
    margin: 0.55rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(0, 90, 60, 0.84);
}

.stage-card--b p {
    color: rgba(59, 7, 100, 0.8);
}
.stage-card--c p {
    color: rgba(120, 50, 10, 0.84);
}
.stage-card--d p {
    color: rgba(12, 74, 110, 0.84);
}



.stage-card .ux-social-btn svg {
    fill: #047857;
}
.stage-card--b .ux-social-btn svg {
    fill: #6d28d9;
}
.stage-card--c .ux-social-btn svg {
    fill: #c2410c;
}
.stage-card--d .ux-social-btn svg {
    fill: #0e7490;
}

.stage-card .ux-more-btn {
    color: inherit;
}



.stage-fab svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 520px) {
    .stage-shell {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .stage-fab {
        display: none;
    }

    .stage-wrap {
        max-width: 100%;
    }
}

.stage-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.stage-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.stage-dots button.is-active {
    background: #fff;
    transform: scale(1.35);
    box-shadow: 0 0 18px rgba(0, 255, 214, 0.55);
}

/* Footer */
.site-foot {
    text-align: center;
    padding: 3rem 1rem 3.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(180, 230, 215, 0.4);
    border-top: 1px solid rgba(0, 255, 214, 0.08);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .section--reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    [data-hero-motion] .hero-blob,
    [data-hero-motion] .hero-pill,
    [data-hero-motion] .hero-ring,
    [data-hero-motion] .hero-hex,
    [data-hero-motion] .hero-slab {
        transition: none;
    }
    .ux-card,
    .ux-circle,
    .ux-social-btn,
    .ux-more,
    .stage-track {
        transition: none !important;
    }
    .ux-parent:hover .ux-card {
        transform: none;
    }
    .ux-parent:hover .ux-circle:nth-child(2),
    .ux-parent:hover .ux-circle:nth-child(3),
    .ux-parent:hover .ux-circle:nth-child(4),
    .ux-parent:hover .ux-circle:nth-child(5) {
        transform: inherit;
    }
    .ux-parent:hover .ux-social-btn {
        transform: none;
    }
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--bg-color-white);
    border-radius: 16px;
    padding: 0;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    margin: 0 auto;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    z-index: -10;
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 16;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: overlay;
}

.mobile-menu-top {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
    padding: 4rem 2rem;
    padding-top: 6rem;
    z-index: 2;
}
.mobile-menu-top a.a-is-active {
    scale: unset;
}
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.a-is-active {
    background: #2563eb;
}

.mobile-menu-top a {
    display: flex;
    justify-content: space-between;
}

.mobile-menu .mobile-phone {
    font-weight: 700;
    font-size: 1.8rem;
}

.mobile-menu-bottom {
    z-index: 2;
    color: var(--txt-color-white);
    margin-top: auto;
    padding: 4rem 2rem;
    background: rgb(9 9 11 / 0.8);
}

.mobile-menu-bottom a {
    padding: 0;
}

.mobile-menu-bottom a:last-of-type {
    font-size: 1rem;
    margin-top: 20px;
    display: block;
}

.mobile-link {
    display: flex;
    justify-content: space-between;
}
/*modals*/
.modal-wrapper-mw {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform .3s ease, background .3s ease;
    backdrop-filter: blur(24px);
    z-index: 999999999;
    justify-content: end;
}

.modal-wrapper-mw.small-wh {
    display: block;
}

.modal-wrapper-mw.small-wh .modal-mw {
    border-radius: 12px 0 0 12px;
    width: 50% !important;
    position: inherit;
    right: 0;
    left: initial;
    bottom: 0;
    top: 0;
}

.modal-mw {
    opacity: 0;
    padding: 36px;
    transform: translateY(20%);
    transition: opacity .3s ease, transform .3s ease;
    background-color: #1e1940c2;
    display: flex;
    flex-direction: column;
    max-width: 87%;
    border-radius: 24px;
    --gradient-angle: 0deg;
    animation: rotate-gradient 5s infinite linear;
    width: 50%;
    justify-content: center;
    margin: unset;
}

.mw-form input::placeholder {
    color: white;
}

.modal-wrapper-mw button {
    padding: .75rem 1.8rem;
    border: 0;
    border-radius: 1.5rem;
    color: #000;
    background: #fff;
    font-size: 18px;
    line-height: 1.75rem;
    width: 100%;
    transition: 1.5s all;
}

.modal-wrapper-mw button:disabled {
    opacity: .4;
}

.mw-form input.clbk__input_checked {
    border: 2px solid #66ef61;
    color: #66ef61;
}

.mw-send-open-sck {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    align-items: center;
}

.modal-mw .mw-send-open-sck>div,
.modal-mw .mw-send-open-sck>div>a {
    font-size: 12px !important;
    color: hsla(0, 0%, 100%, .77) !important;
    font-weight: 700 !important;
    text-align: center;
    text-decoration: none;
}
.m-na-name,
span.mw-sp-00 {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 550;
    gap: 24px;
    text-transform: uppercase;
}

.close-modal-mw {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000 !important;

}

.mwS-close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.mw-form input,
.mw-form textarea {
    padding: .75rem 1.8rem;
    border: 2px solid #e9e9e9;
    border-radius: 1.5rem;
    color: #fff;
    font-size: 18px;
    line-height: 1.75rem;
    background: #3f3f3f03;
    width: 100%;
    transition: .5s all;
}

.mw-form textarea::placeholder {
    color: white;
}

.mw-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

.modal-mw iframe {
    border-radius: 24px;
}
@media (max-width: 1024px) {
    .none-991{
        display: none!important;
    }
}
@media (max-width: 991px) {
    .burger{
        display: flex;
    }
    .text-5xl{
        font-size: 2.4rem!important;
    }
    .phon{
        padding: 10px!important;
        font-size: 12px!important;
    }
    .mw-pb{
        flex-direction: column;
        align-items: center;
    }

    .modal-mw{
        width: 100%;
        border-radius: 24px 0 333px 42px;
    }
}


@keyframes noise-anim {
    0% {
        clip: rect(41px, 9999px, 19px, 0);
    }
    5% {
        clip: rect(95px, 9999px, 93px, 0);
    }
    10% {
        clip: rect(5px, 9999px, 44px, 0);
    }
    15% {
        clip: rect(33px, 9999px, 7px, 0);
    }
    20% {
        clip: rect(45px, 9999px, 68px, 0);
    }
    25% {
        clip: rect(69px, 9999px, 83px, 0);
    }
    30% {
        clip: rect(56px, 9999px, 55px, 0);
    }
    35% {
        clip: rect(68px, 9999px, 11px, 0);
    }
    40% {
        clip: rect(9px, 9999px, 100px, 0);
    }
    45% {
        clip: rect(40px, 9999px, 94px, 0);
    }
    50% {
        clip: rect(53px, 9999px, 82px, 0);
    }
    55% {
        clip: rect(38px, 9999px, 68px, 0);
    }
    60% {
        clip: rect(13px, 9999px, 35px, 0);
    }
    65% {
        clip: rect(1px, 9999px, 75px, 0);
    }
    70% {
        clip: rect(24px, 9999px, 100px, 0);
    }
    75% {
        clip: rect(22px, 9999px, 71px, 0);
    }
    80% {
        clip: rect(4px, 9999px, 91px, 0);
    }
    85% {
        clip: rect(78px, 9999px, 9px, 0);
    }
    90% {
        clip: rect(16px, 9999px, 95px, 0);
    }
    95% {
        clip: rect(55px, 9999px, 15px, 0);
    }
    100% {
        clip: rect(51px, 9999px, 72px, 0);
    }
}


@keyframes noise-anim-2 {
    0% {
        clip: rect(28px, 9999px, 91px, 0);
    }
    5% {
        clip: rect(21px, 9999px, 31px, 0);
    }
    10% {
        clip: rect(55px, 9999px, 66px, 0);
    }
    15% {
        clip: rect(24px, 9999px, 15px, 0);
    }
    20% {
        clip: rect(57px, 9999px, 5px, 0);
    }
    25% {
        clip: rect(55px, 9999px, 76px, 0);
    }
    30% {
        clip: rect(18px, 9999px, 4px, 0);
    }
    35% {
        clip: rect(66px, 9999px, 97px, 0);
    }
    40% {
        clip: rect(79px, 9999px, 51px, 0);
    }
    45% {
        clip: rect(55px, 9999px, 77px, 0);
    }
    50% {
        clip: rect(46px, 9999px, 28px, 0);
    }
    55% {
        clip: rect(31px, 9999px, 81px, 0);
    }
    60% {
        clip: rect(17px, 9999px, 37px, 0);
    }
    65% {
        clip: rect(93px, 9999px, 46px, 0);
    }
    70% {
        clip: rect(46px, 9999px, 28px, 0);
    }
    75% {
        clip: rect(64px, 9999px, 94px, 0);
    }
    80% {
        clip: rect(79px, 9999px, 8px, 0);
    }
    85% {
        clip: rect(29px, 9999px, 49px, 0);
    }
    90% {
        clip: rect(13px, 9999px, 46px, 0);
    }
    95% {
        clip: rect(38px, 9999px, 64px, 0);
    }
    100% {
        clip: rect(7px, 9999px, 88px, 0);
    }
}
.feed-video-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
}
.feed-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.feed-video-bg.loaded {
    opacity: 1;
}
.feed-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(4, 20, 40, 0.3) 0%,
            rgba(4, 20, 40, 0.5) 55%,
            rgba(8, 18, 36, 0.95) 100%
    );
}
.mw-status .service-list{
}
.mw-status span{
    font-weight: 600;
    color: white;
    display: block;
    text-transform: uppercase;
}
.mw-status > div{
    padding: 18px 24px;
    border-top: 1px solid white;
    margin: 10px 0;
}
.mw-pb{
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}
.mw-box-img{
    width: 44%;
    background-image: url(../../IMG/PEB.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #18181b;
    border-radius: 12px;
    margin: 8px;
}
.custom-btn{
    cursor: pointer;
}
.mini-notify .modal-mw{
    border-radius: 24px;
}
.mini-notify.modal-wrapper-mw{
    justify-content: center;
}