        @import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Platypi:ital,wght@0,300..800;1,300..800&family=Prosto+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #009b85;
            --secondary: #003686;
            --accent: #68002a;
            --dark: #0a0a0f;
            --darker: #111;
        }

        body {
            font-family: "Roboto", sans-serif;
            background: #0e0f12;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 30px 60px;
            max-width: 600px;
            left: 0;
            right: 0;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            mix-blend-mode: difference;
        }

        .logo {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -2px;
            color: #fff;
        }

        .nav-menu {
            display: flex;
            gap: 50px;
            list-style: none;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }

        .menu-btn {
            width: 30px;
            height: 20px;
            display: none;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }

        .menu-btn span {
            width: 100%;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .char {
            display: inline-block;
            will-change: transform;
        }
        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            animation: float 8s ease-in-out infinite;
        }

        .orb1 {
            width: 500px;
            height: 500px;
            background: #004f43;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb2 {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            bottom: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .orb3 {
            width: 300px;
            height: 300px;
            background: var(--accent);
            top: 50%;
            left: 50%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-50px, 50px) scale(0.9); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(50px, 10vw, 105px);
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -5px;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.89);
            background-clip: text;
        }

        .hero .subtitle {
            font-size: clamp(18px, 3vw, 28px);
            color: rgba(255,255,255,0.6);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 50px;
        }

       
.hero-cta {
  position: relative;
  display: inline-block;
  padding: 20px 50px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
}

.hero-cta .border {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-cta span {
  display: inline-block;
}

        /* Services */
        .services {
            padding: 150px 60px;
            background: #0e0f12;
            position: relative;
        }

        .section-title {
            font-size: clamp(40px, 8vw, 100px);
            font-weight: 700;
            letter-spacing: -3px;
            margin-bottom: 100px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: radial-gradient(50% 50% at 93.7% 8.1%, #b8c7d929 0%, rgba(4, 7, 13, 0) 100%);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            transition: 0.5s;
            cursor: pointer;
        }

        .service-card::after {
            content: '';
            position: absolute;
            border: 1px solid #18342c;
            width: 60%;
            height: 80%;
            padding: 6px;
            display: flex;
            top: 0px;
            left: 0;
            border-radius: 19px;
            border-right: 0;
            border-top-right-radius: 0;
            border-bottom: 0;
            border-bottom-left-radius: 0;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
            transition: 0.5s;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
        }

        .service-number {
            font-size: 120px;
            font-weight: 700;
            color: rgba(0, 255, 136, 0.1);
            position: absolute;
            top: -20px;
            right: 20px;
            line-height: 1;
        }

        .service-card h3 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            z-index: 2;
        }

        .service-card p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
            position: relative;
            z-index: 2;
        }

        .service-icon {
            font-size: 60px;
            margin-bottom: 30px;
            display: block;
            position: relative;
            z-index: 2;
        }

        
  .services {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .services .section-title {
    margin-bottom: 60px;
  }


  .services-grid {
    display: flex;
    gap: 60px;
    height: 100%;
    align-items: baseline;
    padding: 0;
    position: absolute;
    right: -0%; /* شروع خارج از صفحه */
  }

  .service-card {
    min-width: 300px;
    max-width: 380px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    flex-shrink: 0;
    text-align: center;
    font-weight: 700;
  }




        /* Projects */
        .projects {
            padding: 150px 60px;
            background: var(--darker);
        }

        .projects-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .project-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 200px;
            align-items: center;
        }

        .project-item:nth-child(even) {
            direction: rtl;
        }

        .project-item:nth-child(even) > * {
            direction: ltr;
        }

        .project-image {
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 255, 136, 0.1);
            opacity: 0;
            transition: 0.5s;
        }

        .project-item:hover .project-image::after {
            opacity: 1;
        }

        .project-info h3 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .project-info .category {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(0, 255, 136, 0.1);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            border: 1px solid var(--primary);
        }

        .project-info p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255,255,255,0.6);
            margin-bottom: 40px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .project-link:hover {
            gap: 20px;
        }

        /* Contact */
        .contact {
            padding: 200px 60px;
            background: var(--dark);
            text-align: center;
        }

        .contact h2 {
            font-size: clamp(50px, 10vw, 120px);
            font-weight: 700;
            letter-spacing: -4px;
            margin-bottom: 50px;
            line-height: 1;
        }

        .contact-email {
            font-size: clamp(30px, 6vw, 80px);
            font-weight: 300;
            color: var(--primary);
            text-decoration: none;
            display: inline-block;
            position: relative;
            letter-spacing: -2px;
        }

        .contact-email::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: 0.5s;
        }

        .contact-email:hover::after {
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 80px;
        }

        .social-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        /* Footer */
        footer {
            padding: 60px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.3);
            font-size: 14px;
            letter-spacing: 1px;
        }


.section2 {
  background: #0e0f12;
  position: relative;
  text-align: center;
}
.section2 h2 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}
svg {
  width: 300px;
  height: 400px;
  display: block;
  margin: auto;
}
path {
  stroke: #22c55e;
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
        .typewriter {
  font-family: sans-serif;
  color: #fff;
  padding-left: 30px;
  display: block;
}
.typewriter-text {
  padding-right: 10px;
  color: var(--primary);
  border-right: solid var(--primary) 7px;
  text-transform: uppercase;
  animation: cursor 1s ease-in-out infinite;
  font-weight: bold;
}
@keyframes cursor {
  from { border-color: var(--primary); }
  to { border-color: transparent; }
}

@media (max-width: 767.98px) {
  .typewriter { font-size: 35px; }
}
@media (min-width: 768px) {
  .typewriter { font-size: 60px; }
}






.container-box {
    background: #0e0f12;
  font-family: "Inter", sans-serif;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: baseline;
  min-height: 100vh;
}


.step-box {
  background: #111317;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.step-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 16px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  color: #00aaff;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
  transition: all 0.3s;
}

.step.disabled {
  color: #555;
  border-color: transparent;
  background: rgba(255,255,255,0.02);
}

.step-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 0px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 620px;
  text-align: center;
  background-color: #111116;
    justify-content: center;
}

.cards {
  flex: 1.3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.card {
  background: #1a1b1f;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  color: #ccc;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}

.chart-placeholder {
  height: 80px;
  background: linear-gradient(to right, #2b2d33, #1a1b1f);
  border-radius: 8px;
  margin: 10px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #aaa;
}

.small-card {
  grid-column: 1 / span 2;
  background: #15171b;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
}

.small-card h5 {
  margin-bottom: 12px;
  color: #999;
  font-size: 14px;
}

.progress-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 13px;
}

.progress {
  flex: 1;
  height: 4px;
  background: #222;
  margin: 0 8px;
  border-radius: 4px;
  overflow: hidden;
}

.progress div {
  height: 100%;
  background: linear-gradient(90deg, #00aaff, #0077ff);
}

.text-block {
  flex: 1;
  color: #ccc;
}

.text-block h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.text-block h3 span {
  color: #00aaff;
  margin-right: 8px;
  font-weight: 600;
}

















    :root{--bg:#0f1720;--panel:#0b1220;--gutter:#0b2633;--text:#dbeafe;--muted:#7f8b97;--accent:#562a82;}
    .window{width:1100px;max-width:95vw;height:620px;background:var(--panel);border-radius:10px;box-shadow:0 20px 60px rgba(0,0,0,.6),inset 0 1px rgba(255,255,255,.02);overflow:hidden;display:flex;flex-direction:column}
    .titlebar{height:46px;display:flex;align-items:center;padding:0 14px;border-bottom:1px solid rgba(255,255,255,.02)}
    .controls{display:flex;gap:8px;margin-inline-start:auto}
    .dot{width:12px;height:12px;border-radius:50%;background:#ff5f56;box-shadow:inset 0 -2px rgba(0,0,0,.2)}
    .dot:nth-child(2){background:#ffbd2e}
    .dot:nth-child(3){background:#27c93f}
    .tabs{display:flex;gap:8px;align-items:center}
    .tab{padding:6px 10px;border-radius:6px;background:transparent;color:var(--muted);font-size:13px}

    .editor{flex:1;display:flex;overflow:hidden}
    .gutter{width:64px;background:linear-gradient(180deg, rgba(10,20,26,.9), rgba(8,12,16,.9));padding:14px 8px;color:var(--muted);font-size:13px;user-select:none}
    .content{flex:1;padding:14px 18px;overflow:auto;position:relative}
    pre{margin:0;font-family:inherit;font-size:14px;line-height:1.6;color:var(--text);white-space:pre;min-height:100%;}
    .line-number{display:block;padding:0 6px;opacity:.9;height:24px}

    .brand{position:absolute;right:18px;bottom:18px;display:flex;gap:10px;align-items:center;opacity:.98}
    .brand .logo{font-weight:700;color:var(--accent);font-size:36px;letter-spacing:.5px}
    .brand .sub{font-size:13px;color:var(--muted)}

    /* caret */
    .caret{width:2px;background:var(--text);display:inline-block;vertical-align:bottom;margin-right:2px;height:1.25em;opacity:0}


  pre {
    position: relative;
    background: #1e1e1e;
    color: #ccc;
    padding-left: 50px;
    border-radius: 10px;
    font-family: "Fira Code", monospace;
    font-size: 15px;
    line-height: 1.6em;
    overflow: hidden;
    counter-reset: linenumber;
  }

  pre code {
    display: block;
    white-space: pre;
  }

  /* شماره خط‌ها */
  pre code span.line {
    display: block;
    counter-increment: linenumber;
  }
  pre code span.line::before {
    content: counter(linenumber);
    position: absolute;
    left: 10px;
    width: 30px;
    text-align: right;
    color: #555;
  }






:not(pre) > code[class*="language-"], pre[class*="language-"] {
  background: #0b1220;
}


.service-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.service-modal.active {
    pointer-events: auto;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-modal.active .service-modal-overlay {
    opacity: 1;
}

.service-modal-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0e0e0e;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

.service-modal.active .service-modal-content {
    transform: translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 40px;
    color: #fff;
    z-index: 999;
    cursor: pointer;
}
.service-icon img {
  position: absolute;
left: -20px;
  top: 21px;
  opacity: 0.1;
  width: 200px;
  height: 200px;
}
.service-icon {
  height: 50px;
}
.service-modal-body {
    display: flex;
    gap: 60px;
    padding: 100px 10%;
    height: 100%;
    align-items: center;
}

.service-modal-image img {
    max-width: 450px;
    border-radius: 16px;
}

.service-modal-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-modal-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
}


.service-nav {
position: absolute;
  top: auto;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
  bottom: 30px;
}

.service-nav:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%) scale(1.1);
}

.service-nav.prev {
  left: -80px;
  right: 0;
  margin: auto;
}
.service-nav.next {
  right: -80px;
  left: 0;
  margin: auto;
}

/* انیمیشن اسلاید */
.slide-out-left {
    animation: slideOutLeft 0.35s forwards;
}
.slide-out-right {
    animation: slideOutRight 0.35s forwards;
}
.slide-in-left {
    animation: slideInLeft 0.35s forwards;
}
.slide-in-right {
    animation: slideInRight 0.35s forwards;
}

@keyframes slideOutLeft {
    to { transform: translateX(-80px); opacity: 0; }
}
@keyframes slideOutRight {
    to { transform: translateX(80px); opacity: 0; }
}
@keyframes slideInLeft {
    from { transform: translateX(-80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
    from { transform: translateX(80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


/* موبایل */
@media (max-width: 900px) {
    .service-modal-body {
        flex-direction: column;
        text-align: center;
    }
}




.cta-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.cta-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(0.8);
}

.cta-phone {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.cta-icons {
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.cta-icons a {
    font-size: 28px;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icons a:hover {
    background: rgba(74, 222, 128, 0.2);
    transform: translateY(-3px) scale(1.05);
    border-color: #4ade80;
}
.skils-title {
  text-align: center;font-size: 11rem;margin-top: -43vh;z-index: 2;position: relative;opacity: 0.4;color: var(--primary);
 opacity: 0;
  transform: scale(0.2) translateY(-190px);
  color: var(--primary);
}
.contact-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-icons .icon {
  font-size: 24px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 182px;
}

.contact-icons .icon:hover {
  background: rgba(74,222,128,0.2);
  transform: scale(1.1) translateY(-3px);
  border-color: #4ade80;
}

.hero-cta svg.border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-cta svg rect {
  fill: none;
  stroke: #00ffff;
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  border-radius: 8px;
}




.contact-modal {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  z-index: 1000;
}

.contact-modal-overlay {
  position: absolute;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
}

.contact-modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  color: #fff;
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  padding: 40px;
  box-sizing: border-box;
}

.contact-modal.open .contact-modal-content {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.contact-modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

.contact-modal-image img {
  max-width: 300px;
  border-radius: 15px;
}

.contact-modal-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #4ade80;
}

.contact-modal-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icons .icon {
  font-size: 20px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.contact-icons .icon:hover {
  background: rgba(74,222,128,0.2);
  transform: scale(1.1) translateY(-3px);
  border-color: #4ade80;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #333;
  color: #fff;
  font-size: 16px;
}

.contact-form button {
  padding: 14px 24px;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  background: #4ade80;
  color: #111;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: #22c55e;
}


  .wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .scroll-container {
    display: flex;
    gap: 100px;
    font-size: 3rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.9;
  }

  .scroll-container span {
    display: inline-block;
    transition: color 0.3s ease;
  }

  .scroll-container span:hover {
    color: var(--accent);
  }

  /* فید در دو سمت صفحه */
  .fade-left,
  .fade-right {
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

  .fade-left {
    left: 0;
    background: linear-gradient(to right, #0e0f12 0%, transparent 100%);
  }

  .fade-right {
    right: 0;
    background: linear-gradient(to left, #0e0f12 0%, transparent 100%);
  }


        /* Responsive */
        @media (max-width: 768px) {


            nav {
                padding: 20px 30px;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--darker);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.5s;
            }

            .nav-menu.active {
                right: 0;
            }

            .menu-btn {
                display: flex;
                z-index: 1001;
            }

            .services, .projects, .contact {
                padding: 100px 30px;
            }

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

            .project-item {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 100px;
            }

            .project-image {
                height: 400px;
            }

            .social-links {
                flex-direction: column;
                gap: 20px;
            }
        }