
* {
    font-family: 'Vazirmatn', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a16;
    color: #e2e8f0;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-border {
    position: relative;
    border-radius: 0.5rem;
    background: linear-gradient(to right, #0a0a16, #12122e, #0a0a16);
    z-index: 1;
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    padding: 2px;
    background: linear-gradient(45deg, #4f46e5, #8b5cf6, #ec4899);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.gradient-border2 {
    position: relative;
    border-radius: 0.5rem;
    background: linear-gradient(to right, #0a0a16, #12122e, #0a0a16);
    z-index: 1;
}
 

.neon-glow {
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5),
                0 0 20px rgba(139, 92, 246, 0.3),
                0 0 30px rgba(236, 72, 153, 0.2);
}

.neon-text {
    text-shadow: 0 0 5px rgba(79, 70, 229, 0.7),
                 0 0 10px rgba(139, 92, 246, 0.5);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(79, 70, 229, 0.4);
}

.project-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(18, 18, 46, 0.7);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: scale(1.03) translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.tech-pill {
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    transition: all 0.3s ease;
}

.tech-pill:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.5);
}

.dragon-logo {
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #4f46e5, #8b5cf6, #ec4899);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.scroll-down {
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-reverse {
    animation: floating-reverse 7s ease-in-out infinite;
}

@keyframes floating-reverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #4f46e5, 0 0 10px #8b5cf6; }
    to { box-shadow: 0 0 10px #4f46e5, 0 0 20px #8b5cf6, 0 0 30px #ec4899; }
}

.rotate-slow {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.1) 0%, rgba(10, 10, 22, 0) 70%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    transform: perspective(1000px) rotateX(60deg) scale(1.8);
    transform-origin: center top;
    opacity: 0.4;
}

.hero-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #0a0a16, transparent);
}


 .glitch {
            position: relative;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 var(--accent);
            animation: glitch-animation 3s infinite linear alternate-reverse;
            clip: rect(44px, 450px, 56px, 0);
        }
        
        .glitch::after {
            left: -2px;
            text-shadow: 2px 0 var(--primary);
            animation: glitch-animation 2s infinite linear alternate-reverse;
            clip: rect(24px, 450px, 36px, 0);
        }
        
        @keyframes glitch-animation {
            0% { clip: rect(24px, 450px, 90px, 0); }
            20% { clip: rect(62px, 450px, 78px, 0); }
            40% { clip: rect(15px, 450px, 33px, 0); }
            60% { clip: rect(94px, 450px, 68px, 0); }
            80% { clip: rect(37px, 450px, 82px, 0); }
            100% { clip: rect(53px, 450px, 27px, 0); }
        }
        
/* 
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a16;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #4f46e5;
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #ec4899;
    animation: glitch-2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: none; opacity: 1; }
    50% { transform: translateX(-2px); opacity: 0.8; }
}

@keyframes glitch-2 {
    0%, 100% { transform: none; opacity: 1; }
    50% { transform: translateX(2px); opacity: 0.8; }
} */
/* 
.service-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(79, 70, 229, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #12122e;
    border-radius: 0.375rem;
    z-index: -1;
} */

.progress-bar {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    border-radius: 4px;
    transition: width 1s ease;
}

.stats-item {
    position: relative;
    z-index: 1;
}

.stats-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 0.5rem;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.stats-item:hover::before {
    transform: scale(1);
    opacity: 1;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: rgba(79, 70, 229, 0.1);
    z-index: 0;
}

.cursor-glow {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 12, 255, 0.73) 0%, rgba(114, 59, 241, 0.675) 40%, transparent 70%);
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: all 0.1s ease;
    opacity: 0;
}

.three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateZ(-10px) scale(2);
    background-size: cover;
    background-position: center;
}

.perspective-container {
    perspective: 1000px;
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.tilt-card:hover {
    transform: rotateX(5deg) rotateY(5deg);
}

.tilt-card-content {
    transform-style: preserve-3d;
}

.tilt-card-icon {
    transform: translateZ(30px);
}

.tilt-card-title {
    transform: translateZ(20px);
}

.tilt-card-text {
    transform: translateZ(10px);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #4f46e5, #8b5cf6);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #4338ca, #7c3aed);
}

.code-typing {
    border-right: 2px solid #8b5cf6;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(30, end) infinite alternate,
               blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #8b5cf6 }
}

.hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 100;
    opacity: 0.05;
}

#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.4;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(39, 28, 243, 0.663);
    animation: blob-move-1 20s ease-in-out infinite alternate;
}

.blob-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(34, 0, 255, 0.711);
    animation: blob-move-2 25s ease-in-out infinite alternate;
}
@media (max-width:500px) { 
    .blob-2 {
        width: 200px;
    }
}
.blob-3 {
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: rgba(225, 20, 122, 0.501);
    animation: blob-move-3 30s ease-in-out infinite alternate;
}

@keyframes blob-move-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes blob-move-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -80px) scale(1.3); }
}

@keyframes blob-move-3 {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-40%, -60%) scale(1.1); }
}

.radial-progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.radial-progress svg {
    transform: rotate(-90deg);
}

.radial-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.radial-progress .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.radial-progress .progress {
    stroke: url(#radialGradient);
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    transition: stroke-dashoffset 1s ease;
}

.radial-progress .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4f46e5, #8b5cf6, #ec4899);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4f46e5, #8b5cf6);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 30px;
    height: 2px;
    background: linear-gradient(to left, #4f46e5, #8b5cf6);
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #8b5cf6;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #8b5cf6 }
}

.nav-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.clip-path-slant {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.clip-path-slant-reverse {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.clip-path-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.clip-path-wave {
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 85%,
        75% 90%,
        50% 85%,
        25% 90%,
        0% 85%
    );
}

.clip-path-wave-reverse {
    clip-path: polygon(
        0% 15%,
        25% 10%,
        50% 15%,
        75% 10%,
        100% 15%,
        100% 100%,
        0% 100%
    );
}

.custom-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 78px;
}

.custom-shape-divider .shape-fill {
    fill: #12122e;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.5), rgba(168, 85, 247, 0.5));
    top: 0;
    bottom: 0;
    right: 50%;
    margin-right: -2px;
    border-radius: 4px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    right: 0;
}

.timeline-item:nth-child(even) {
    right: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom right, #6366f1, #a855f7);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        right: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 50px;
        padding-left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        right: 0;
    }
    
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        right: 10px;
        left: auto;
    }
}

      .glitch-B {
            position: relative;
        }
        
        .glitch-B::before,
        .glitch-B::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch-B::before {
            left: 2px;
            text-shadow: -2px 0 #ff00c1;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim-B 5s infinite linear alternate-reverse;
        }
        
        .glitch-B::after {
            left: -2px;
            text-shadow: -2px 0 #00fff9;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim2-B 5s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-anim-B {
            0% { clip: rect(31px, 9999px, 94px, 0); }
            4.16666667% { clip: rect(91px, 9999px, 100px, 0); }
            8.33333333% { clip: rect(38px, 9999px, 26px, 0); }
            12.5% { clip: rect(67px, 9999px, 78px, 0); }
            16.66666667% { clip: rect(66px, 9999px, 84px, 0); }
            20.83333333% { clip: rect(40px, 9999px, 78px, 0); }
            25% { clip: rect(19px, 9999px, 67px, 0); }
            29.16666667% { clip: rect(94px, 9999px, 98px, 0); }
            33.33333333% { clip: rect(91px, 9999px, 74px, 0); }
            37.5% { clip: rect(37px, 9999px, 5px, 0); }
            41.66666667% { clip: rect(4px, 9999px, 53px, 0); }
            45.83333333% { clip: rect(80px, 9999px, 44px, 0); }
            50% { clip: rect(35px, 9999px, 88px, 0); }
            54.16666667% { clip: rect(93px, 9999px, 62px, 0); }
            58.33333333% { clip: rect(5px, 9999px, 29px, 0); }
            62.5% { clip: rect(82px, 9999px, 59px, 0); }
            66.66666667% { clip: rect(51px, 9999px, 10px, 0); }
            70.83333333% { clip: rect(46px, 9999px, 84px, 0); }
            75% { clip: rect(56px, 9999px, 12px, 0); }
            79.16666667% { clip: rect(21px, 9999px, 5px, 0); }
            83.33333333% { clip: rect(89px, 9999px, 30px, 0); }
            87.5% { clip: rect(68px, 9999px, 27px, 0); }
            91.66666667% { clip: rect(86px, 9999px, 89px, 0); }
            95.83333333% { clip: rect(38px, 9999px, 99px, 0); }
            100% { clip: rect(69px, 9999px, 84px, 0); }
        }
        
        @keyframes glitch-anim2-B {
            0% { clip: rect(65px, 9999px, 100px, 0); }
            4.16666667% { clip: rect(84px, 9999px, 57px, 0); }
            8.33333333% { clip: rect(75px, 9999px, 93px, 0); }
            12.5% { clip: rect(94px, 9999px, 100px, 0); }
            16.66666667% { clip: rect(48px, 9999px, 49px, 0); }
            20.83333333% { clip: rect(15px, 9999px, 79px, 0); }
            25% { clip: rect(71px, 9999px, 20px, 0); }
            29.16666667% { clip: rect(36px, 9999px, 93px, 0); }
            33.33333333% { clip: rect(2px, 9999px, 53px, 0); }
            37.5% { clip: rect(12px, 9999px, 38px, 0); }
            41.66666667% { clip: rect(70px, 9999px, 19px, 0); }
            45.83333333% { clip: rect(15px, 9999px, 56px, 0); }
            50% { clip: rect(25px, 9999px, 89px, 0); }
            54.16666667% { clip: rect(82px, 9999px, 73px, 0); }
            58.33333333% { clip: rect(67px, 9999px, 54px, 0); }
            62.5% { clip: rect(16px, 9999px, 51px, 0); }
            66.66666667% { clip: rect(99px, 9999px, 34px, 0); }
            70.83333333% { clip: rect(44px, 9999px, 93px, 0); }
            75% { clip: rect(67px, 9999px, 88px, 0); }
            79.16666667% { clip: rect(44px, 9999px, 19px, 0); }
            83.33333333% { clip: rect(28px, 9999px, 63px, 0); }
            87.5% { clip: rect(82px, 9999px, 33px, 0); }
            91.66666667% { clip: rect(93px, 9999px, 59px, 0); }
            95.83333333% { clip: rect(91px, 9999px, 67px, 0); }
            100% { clip: rect(35px, 9999px, 56px, 0); }
        }
         



        
        .service-card {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: -95%;
            left: -20%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: 0.5s;
            transform: rotate(45deg);
        }
        
        .service-card:hover::before {
            top: 95%;
            left: 20%;
        }
        
        .service-icon {
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
        }
        