@font-face {
  font-family: Shabnam;
  src: url("/fonts/Shabnam.ttf");
}

@font-face {
  font-family: number;
  src: url("/fonts/Tanha-FD.ttf");
}

:root {
  --gold: #C9A84C;
  --gold-light: #F0C060;
  --gold-dark: #8B6914;
  --blue: #1A6FD4;
  --blue-deep: #0A2A5E;
  --blue-glow: #3B9EFF;
  --black: #050810;
  --black-card: #0C1220;
  --black-soft: #111827;
  --white: #F5F0E8;
  --white-dim: rgba(245, 240, 232, 0.702);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Shabnam;
  cursor: none !important;
}

html {
  scroll-behavior: auto;
}

body {
  background: #050810;
  color: #F5F0E8;
  overflow-x: hidden;
  cursor: none;
}

.navbar,
.navbar *,
.nav-link,
.navbar a {
  cursor: none !important;
}

/* Z-DEPTH CANVAS — full viewport, fixed */
#z-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.logo-center {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation:
    logoNeon 3s ease-in-out infinite,
    neonFlicker 2s linear infinite;
}


.logo-header {
  height: 170px;
  width: auto;
  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {

  0%,
  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 2px #D4AF37) drop-shadow(0 0 5px rgba(212, 175, 55, .45)) drop-shadow(0 0 2px #046307) drop-shadow(0 0 5px rgba(4, 99, 7, .45)) drop-shadow(0 0 3px #0B3D91) drop-shadow(0 0 8px rgba(11, 61, 145, .35));
  }

  50% {
    transform: scale(1.05);
    filter:
      drop-shadow(0 0 4px #D4AF37) drop-shadow(0 0 10px rgba(212, 175, 55, .75)) drop-shadow(0 0 4px #046307) drop-shadow(0 0 10px rgba(4, 99, 7, .75)) drop-shadow(0 0 6px #0B3D91) drop-shadow(0 0 14px rgba(11, 61, 145, .60));
  }
}

@keyframes neonFlicker {

  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }

  20%,
  24%,
  55% {
    opacity: .92;
  }

  21%,
  56% {
    opacity: .98;
  }
}

header {
  height: 0px;
  position: relative !important;
  pointer-events: auto !important;
}

.navbar-active {
  color: #C9A84C !important;
}

.navbar-collapse {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  gap: 70px;
  padding-left: 30px;
}

.nav-right {
  justify-content: flex-end;
  gap: 70px;
  padding-right: 90px;
}

.navbar {
  height: 90px;
  padding: 0 30px;
  top: 50px;
  background-color: rgba(0, 0, 0, 0.600);
  border-radius: 30px 30px 30px 30px;
  border: 1px solid rgba(218, 165, 32, 0.150);
  position: relative !important;
  overflow: visible;
  z-index: 1;
}

.nav-link {
  text-align: center;
  color: white;
  font-size: 25px;
  transition: 0.6s;
}

.nav-link:hover {
  color: #C9A84C;
}

nav .item {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  cursor: pointer;
  z-index: 5;
  min-width: 25%;
  height: 60px;
  line-height: 60px;
  text-align: center;
}


/* ===========================
   Dropdown
=========================== */

.nav-item.dropdown {
  position: relative;
}

/* لینک اصلی */

.dropdown-toggle-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* فلش */
.arrow {
  width: 14px;
  height: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  flex-shrink: 0;

  transform-origin: center center;
}

/* خود آیکون */
.arrow i {
  display: block;
  font-size: 12px;
  color: #C9A84C;

  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}

/* فقط آیکون بچرخد */
.nav-item.dropdown:hover .arrow i {
  transform: rotate(180deg);
}

/* ===========================
   Menu
=========================== */

.dropdown-content {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 230px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(15, 15, 20, .55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s;
  z-index: 999;
}

/* نمایش */
.nav-item.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  transition:
    .3s ease;
  margin: 4px 0;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, .08);
  color: #C9A84C;
  padding-left: 24px;
  transform: translateX(6px);
}


.dropdown-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(201, 168, 76, .7),
      rgba(255, 255, 255, .15),
      rgba(201, 168, 76, .4));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}


.header2 {
  width: 100%;
  height: 65vh;
  margin-top: 110px;
  margin-bottom: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* CUSTOM CURSOR */
#cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  background: #C9A84C;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #C9A84C;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}

/* کانتینر */
.text-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 230px;
}

/* باکس متن */
.word-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 55px;
}

/* متن */
.word {
  font-size: 130px;
  font-weight: 800;
  color: rgb(255, 255, 255);
  transition:
    filter 1.8s ease,
    opacity 1.8s ease,
    transform 1.8s ease,
    text-shadow 1.8s ease;
  user-select: none;
  white-space: nowrap;
}

/* حالت مات */
.blur {
  filter: blur(10px);
  opacity: .28;
  transform: scale(.96);
}

/* حالت شفاف */
.clear {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1.03);
  text-shadow:
    0 0 10px rgb(0, 0, 0),
    0 0 30px rgba(0, 0, 0, 0);
}

/* فریم */
.frame-text-head {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;

  transition:
    all 1.8s cubic-bezier(.22, 1, .36, 1);

  will-change: transform;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.700);
  font-size: 25px;
  z-index: 2;
  animation: float 2s ease-in-out infinite;
}

.scroll-line {
  width: 3px;
  height: 55px;
  background: linear-gradient(to bottom, #C9A84C, transparent);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}




/* Floating badges */

.floating {
  position: absolute;
  animation: floatBadge 4s ease-in-out infinite;
  margin-top: 25px;
}

@keyframes react {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-badge-r {
  font-size: 75px;
  color: #61DBFB;
  display: block;
  animation: react 10s linear infinite;
}

.floating-badge-n {
  font-size: 60px;
  color: #fdffff;
}

.floating-badge-threejs {
  width: 90px;
  height: 80px;
  filter: brightness(0) invert(1);
}

.floating-badge-W {
  font-size: 60px;
  color: #21759B;
}

.floating-badge-c {
  color: #FFD700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
  font-size: 50px;
}

.floating-badge.blue-ty {
  font-size: 60px;
}

.floating-badge-h {
  font-size: 60px;
  color: #9b3321;
}

.floating-badge-css {
  font-size: 60px;
  color: #1572B6;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}


/* END: Hero Section */

/* ========== CTA ========== */
#cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.cta-title .gold {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-title .blue {
  background: linear-gradient(90deg, var(--blue-glow), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-sub {
  font-size: 18px;
  color: var(--white-dim);
  margin-bottom: 56px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(12, 18, 32, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--white);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  backdrop-filter: blur(10px);
}

.cta-input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.cta-input:focus {
  border-color: var(--gold);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(80px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-80px);
}

/* LOADING */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}

.loading-logo {
  font-size: 70px;
  font-weight: 1000;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #F0C060, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.loading-bar-outer {
  width: 300px;
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-inner {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #F0C060, #cfb55f, #145ee7);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.loading-text {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 2px;
}

/* =========================
  Services
========================= */
.srv {
  color: white;
  text-shadow: text-center;
  text-align: center;
  font-size: 75px;
}

.Services {
  height: auto;
  border: 1px solid rgba(218, 165, 32, 0.150);
  border-radius: 15px;
  margin-bottom: 300px;
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.sc-card {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  transition: transform .8s ease;
  cursor: pointer;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .06),
      rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.sc-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* فقط بک‌گراند کلیپ می‌شود */
  border-radius: 15px;
  z-index: 0;
}

.sc-card:hover {
  transform: translateY(-8px);
  transition: transform .8s ease;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, .45);
}

canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 15px;
  overflow: hidden;
}

/* ========================= */
/* Hover Background */
/* ========================= */

.sc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .6s ease;
  z-index: 0;

  background:
    radial-gradient(circle at 50% 115%,
      rgba(24, 95, 165, .95) 0%,
      rgba(24, 95, 165, .55) 30%,
      rgba(24, 95, 165, .15) 55%,
      transparent 75%);
}

.sc-card::after {

  content: "";
  position: absolute;
  inset: -25%;
  opacity: 0;
  transition: .6s ease;
  z-index: 0;

  background:
    radial-gradient(circle at 80% 15%,
      rgba(255, 255, 255, .08),
      transparent 35%),

    radial-gradient(circle at 20% 90%,
      rgba(24, 95, 165, .25),
      transparent 50%);

  filter: blur(70px);
}

.sc-card:hover::before,
.sc-card:hover::after {
  opacity: 1;
}

.sc-card.blue::before {

  background:
    radial-gradient(circle at 50% 115%,
      rgba(24, 95, 165, .95) 0%,
      rgba(24, 95, 165, .55) 30%,
      rgba(24, 95, 165, .15) 55%,
      transparent 75%);
}

.sc-card.blue::after {

  background:
    radial-gradient(circle at 80% 15%,
      rgba(170, 220, 255, .10),
      transparent 35%),

    radial-gradient(circle at 20% 90%,
      rgba(24, 95, 165, .30),
      transparent 50%);

}

.sc-card.green::before {

  background:
    radial-gradient(circle at 50% 115%,
      rgba(15, 110, 86, .95) 0%,
      rgba(15, 110, 86, .55) 30%,
      rgba(15, 110, 86, .15) 55%,
      transparent 75%);
}

.sc-card.green::after {

  background:
    radial-gradient(circle at 80% 15%,
      rgba(170, 255, 230, .10),
      transparent 35%),

    radial-gradient(circle at 20% 90%,
      rgba(15, 110, 86, .30),
      transparent 50%);
}

.sc-card.purple::before {

  background:
    radial-gradient(circle at 50% 115%,
      rgba(153, 53, 86, .95) 0%,
      rgba(153, 53, 86, .55) 30%,
      rgba(153, 53, 86, .15) 55%,
      transparent 75%);
}

.sc-card.purple::after {

  background:
    radial-gradient(circle at 80% 15%,
      rgba(255, 215, 235, .10),
      transparent 35%),

    radial-gradient(circle at 20% 90%,
      rgba(153, 53, 86, .30),
      transparent 50%);
}

/* Light Border */

.sc-card {

  box-shadow:

    inset 0 1px rgba(255, 255, 255, .08),

    0 0 0 rgba(0, 0, 0, 0);

}

.sc-card:hover {

  box-shadow:

    0 25px 70px rgba(0, 0, 0, .55),

    inset 0 1px rgba(255, 255, 255, .2);

}

/* Noise */

.sc-card .noise {

  position: absolute;

  inset: 0;

  opacity: .03;

  mix-blend-mode: screen;

  background-image: url("https://grainy-gradients.vercel.app/noise.svg");

}

.sc-icon-wrap {
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.22, 1, .36, 1);
  position: absolute;
}

.sc-icon-wrap i {
  font-size: 40px;
}

.sc-card:hover .sc-icon-wrap {
  transform: scale(1.2) rotate(-5deg);
}

.sc-body {
  padding: 30px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.sc-top {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  margin-left: 50px;
  margin-bottom: 8px;
}

.sc-num {
  margin-top: 5px;
  font-size: 30px;
  opacity: 0.55;
  transition: opacity 0.3s;
  flex-shrink: 0;
  color: white;
}

.sc-card:hover .sc-num {
  opacity: 1;
  color: #C9A84C;
}

.sc-title {
  align-items: center;
  font-size: 35px;
  font-weight: 500;
  color: #F5F0E8;
}

.sc-desc {
  font-size: 18px;
  color: #adadad;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 0.5px solid;
}

/* =========================
    FILTER WRAPPER
========================= */

.portfolio-section {
  background: rgba(63, 63, 63, 0.3);
  backdrop-filter: blur(1px);
  border-radius: 15px;
  border: 1px solid rgba(218, 165, 32, 0.150);
  padding: 20px;
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.filter-buttons {
  position: relative;
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.800);
  padding: 10px;
  border-radius: 60px;
}

/* ACTIVE ANIMATION */

.active-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 110px;
  height: 55px;
  background: #C9A84C;
  border-radius: 40px;
  transition: 0.4s ease;
  z-index: 1;
}

.filter-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  color: white;
  padding: 14px 30px;
  cursor: pointer;
  border-radius: 40px;
  font-size: 20px;
  transition: 0.3s;
}

.filter-btn:hover {
  color: rgb(204, 116, 0);
}

/* =========================
    CARDS
========================= */

.Recent {
  color: white;
  text-shadow: text-center;
  text-align: center;
  font-size: 75px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border-color: black;
  height: 320px;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */

.overlay-cards {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.1));

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding: 30px;

  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.card:hover .overlay-cards {
  opacity: 1;
  pointer-events: auto;
}

/* TEXT */

.content h3 {
  color: #a3a3a3;
  font-size: 28px;
  margin-bottom: 8px;
}

.content p {
  color: #d8d8d8;
  font-size: 15px;
}

/* LINK BUTTON */

.arrow-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-size: 40px;
  transition: 0.5s;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.arrow-btn:hover {
  background-color: #C9A84C;
  color: white;
  transform: rotate(45deg);
}

/* HOVER EFFECT */
.card:hover {
  border-color: #C9A84C;
}

.card:hover img {
  transform: scale(1.08);
}

.card:hover .overlay-cards {
  opacity: 1;
}

/* HIDE ITEMS */

.hide {
  display: none;
}

/* =========================
    LOAD MORE BUTTONS
========================= */

.more-buttons {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.more-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: none;
  background: black;
  color: #C9A84C;
  padding: 16px 34px;
  border-radius: 50px;
  border: 1px solid #C9A84C;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.more-btn:hover {
  background: #C9A84C;
  color: rgb(0, 0, 0);
  transform: translateY(-5px);
}

.hidden-btn {
  display: none;
}


.fade-bottom {
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 93%);
}



.text-hero {
  color: white;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
  line-height: 100%;
  user-select: none;
  font-weight: 700;
  text-transform: uppercase;
}

.text-main-title1 {
  margin-top: 400px;
  margin-bottom: 200px;
  color: white;
  text-shadow: 0 0 20px rgb(255, 230, 0);
  line-height: 100%;
  user-select: none;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-main-title {
  margin-top: 300px;
  margin-bottom: 300px;
  color: white;
  text-shadow: 0 0 20px rgb(255, 230, 0);
  line-height: 100%;
  user-select: none;
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================
    skills
========================= */

.skills {
  color: white;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
  text-align: center;
  font-size: 70px;
}

.skills-container {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(1px);
  border-radius: 15px;
  border: 1px solid rgba(218, 165, 32, 0.150);
  padding: 20px;
  width: 100%;
  max-width: 1500px;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 40px;
}

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.progress {
  width: 150px;
  height: 200px;
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(#2c2c2c 0deg, #2c2c2c 360deg);
  box-shadow: inset 0 50px 0 0 #d4af37;
}

.progress::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 180px;
  background: #0a0a0a;
  border-radius: 15px;
  border: 1px solid #1f1f1f;
}

.text-p {
  padding-top: 20px;
  font-size: 30px;
}

.text-js {
  padding-top: 30px;
  font-size: 17px;
}

.text-react {
  font-size: 30px;
  margin-top: 14vh;
  color: #61DBFB;
}

.text-threejs {
  position: absolute;
  font-size: 25px;
  color: #ffffff;
  margin-top: 14vh;
}

.text-bootstrap {
  padding-top: 40px;
  font-size: 25px;
  color: #7952B3;
}

.text-wp {
  margin: 0;
  font-size: 23px;
  color: #21759B;
}

/* ================= ICON BASE ================= */
.icon-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ================= INDIVIDUAL ICONS ================= */

/* HTML */
.icon-html i {
  font-size: 100px;
  color: #bb2904;
}

/* CSS */
.icon-css i {
  font-size: 101px;
  color: #264DE4;
}

.icon-bootstrap i {
  font-size: 80px;
  color: #7952B3;
}

/* JavaScript */
.icon-js i {
  font-size: 85px;
  color: #F7DF1E;
  text-shadow: 0 0 10px rgba(247, 223, 30, 0.4);
}

/* React */
.icon-react i {
  margin-bottom: 50px;
  position: absolute;
  font-size: 105px;
  color: #61DBFB;
  animation: spin 10s linear infinite;
}

/* Three.js */
.threejs {
  margin-bottom: 50px;
  width: 110px;
  height: 110px;
  filter: brightness(0) invert(1);
}

.icon-wp {
  font-size: 85px;
  color: #21759B;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*foot*/
.foot {
  margin-top: 300px;
  margin-bottom: 100px;
  background-color: rgba(0, 0, 0, 0.600);
  border-radius: 30px 30px 30px 30px;
  border: 1px solid rgba(218, 165, 32, 0.300);
  width: 40%;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.foot-label {
  text-align: center;
  font-size: 65px;
  letter-spacing: 0.1em;
  color: #C9A84C;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.span-p {
  color: #ff2020;
}

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A84C;
}

.dots .dot.mid {
  width: 6px;
  height: 6px;
  background: #C9A84C;
}

.dots .dash {
  width: 60px;
  height: 2px;
  background: #1A6FD4;
}

.icons-row {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.icon-wrap {
  padding-top: 5px;
  background: rgb(56, 56, 56);
  width: 150px;
  height: 100px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ── BASE ICON BUTTON ── */
.icon-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  filter: grayscale(1) brightness(0.6);
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.4s ease,
    filter 0.3s ease;
}

.icon-btn svg {
  width: 26px;
  height: 26px;
  fill: #888888;
  position: relative;
  z-index: 2;
  transition: fill 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.icon-btn:hover {
  filter: grayscale(0) brightness(1);
  transform: translateY(-30px) scale(1.20);
}

.icon-btn:hover svg {
  fill: #ffffff;
  transform: scale(1.08);
}

.icon-btn:active {
  transform: translateY(-3px) scale(1.06);
}

/* ── INSTAGRAM ── */
.icon-btn.ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  box-shadow: 0 14px 36px -6px rgba(220, 39, 67, 0.55);
}

.icon-btn.ig .ripple-ring {
  color: #dc2743;
}

/* ── TELEGRAM ── */
.icon-btn.tg:hover {
  background: #24a1de;
  border-color: transparent;
  box-shadow: 0 14px 36px -6px rgba(36, 161, 222, 0.55);
}

.icon-btn.tg .ripple-ring {
  color: #24a1de;
}

/* ── GITHUB ── */
.icon-btn.gh:hover {
  background: #24292f;
  border-color: transparent;
  box-shadow: 0 14px 36px -6px rgba(230, 237, 243, 0.22);
}

.icon-btn.gh .ripple-ring {
  color: #6e7681;
}

/* ── GMAIL ── */
.icon-btn.gmail:hover {
  background: #ea4335;
  border-color: transparent;
  box-shadow: 0 14px 36px -6px rgba(234, 67, 53, 0.55);
}

.icon-btn.gmail .ripple-ring {
  color: #ea4335;
}

/* ── PHONE ── */
.icon-btn.phone:hover {
  background: #34c759;
  border-color: transparent;
  box-shadow: 0 14px 36px -6px rgba(52, 199, 89, 0.55);
}

.icon-btn.phone .ripple-ring {
  color: #34c759;
}

/* ── RIPPLE RING ── */
.ripple-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  border: 2px solid currentColor;
}

.icon-btn:hover .ripple-ring {
  animation: ringOut 0.6s ease-out forwards;
}

@keyframes ringOut {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

/* ── LABEL ── */
.icon-label {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
  letter-spacing: 0.05em;
  user-select: none;
  transition: color 0.3s ease;
}

.icon-wrap:has(.icon-btn:hover) .icon-label {
  color: #ffffff;
}

/* ── FOOT BOTTOM ── */
.foot-bottom {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 11px;
  color: #3a3a3a;
  letter-spacing: 0.08em;
}

.foot-bottom::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
  margin-bottom: 1.2rem;
}

/*card-services*/

.text-main-3d {
  margin-top: 200px;
  margin-bottom: 200px;
  font-size: 13rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 15px;
  text-shadow:
    0 0 10px #cccccc,
    0 0 20px #cacaca,
    0 0 40px #838383,
    0 10px 20px rgba(0, 0, 0, .5);
}

.span-web {
  color: rgb(18, 0, 180);
}

.text-main-js {
  margin-top: 200px;
  margin-bottom: 200px;
  font-size: 13rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 15px;
  text-shadow:
    0 0 10px #cccccc,
    0 0 20px #cacaca,
    0 0 40px #838383,
    0 10px 20px rgba(0, 0, 0, .5);
}

.span-js {
  color: #dfbd00;
}

.text-main-wp {
  margin-top: 200px;
  margin-bottom: 200px;
  font-size: 10rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 15px;
  text-shadow:
    0 0 10px #cccccc,
    0 0 20px #cacaca,
    0 0 40px #838383,
    0 10px 20px rgba(0, 0, 0, .5);
}

.span-wp {
  color: rgb(45, 143, 0)
}


/* ========================= */
/*  card-srv */
/* ========================= */

.card-srv {
  position: relative;
  width: 410px;
  height: 550px;
  border-radius: 40px;
  padding: 2px;
  background:
    linear-gradient(145deg,
      rgba(212, 159, 0, 0.160) 0%,
      rgba(32, 57, 168, 0.160) 12%,
      rgba(100, 150, 13, 0.160) 38%,
      rgba(212, 159, 0, 0.160) 65%,
      rgba(74, 92, 42, 0.160) 82%,
      rgba(212, 159, 0, 0.160) 100%);

  overflow: hidden;
  cursor: pointer;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .6);

  transition:
    box-shadow .45s ease;
}

.card-srv:hover {
  box-shadow:
    0 0 10px rgba(32, 8, 255, 0.9),
    0 0 30px rgba(157, 218, 53, 0.45),
    0 0 80px rgba(212, 160, 0, .25),
    0 0 80px rgba(19, 2, 168, 0.5);
}

/* ========================= */
/* RGB LIQUID BORDER */
/* ========================= */

.liquid-border {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 5px;

  opacity: 0;
  transition: opacity .45s ease;

  background: linear-gradient(135deg,
      #d4a000 0%,
      #2039A8 12%,
      #63960d 38%,
      #D4A000 65%,
      #4A5C2A 82%,
      #D4A000 100%);

  background-size: 300% 300%;
  animation: borderFlow 7s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: 20;
}


.liquid-border::before {
  content: "";
  position: absolute;
  inset: -25px;
  border-radius: 60px;

  background:
    radial-gradient(circle,
      rgba(0, 191, 255, .95) 0%,
      rgba(0, 191, 255, .5) 40%,
      transparent 75%);

  filter: blur(35px);
  z-index: -1;
}

.card-srv:hover .liquid-border {
  opacity: 1;
}

/* ========================= */
/* APPLE REFLECTION */
/* ========================= */

.reflection {
  position: absolute;

  top: -50%;
  left: -150%;

  width: 55%;
  height: 200%;

  z-index: 15;

  pointer-events: none;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .28),
      rgba(255, 255, 255, .05),
      transparent);

  transform: rotate(25deg);
}

.card-srv:hover .reflection {
  animation:
    reflectionMove 1.7s ease;
}


/* ========================= */

.inner {
  position: absolute;
  inset: 4px;
  border-radius: 36px;
  overflow: hidden;
}

.inner img {
  padding-top: 25px;
  width: 100%;
  height: 90%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform .6s ease;
}

.card-srv:hover .inner img {
  transform: scale(1.18);
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .95),
      rgba(0, 0, 0, .25),
      transparent);
}

/* ========================= */
/* GLASS PANEL */
/* ========================= */

.glass {
  position: absolute;
  z-index: 30;
  /* بالاتر از overlay */
  left: 12px;
  right: 12px;
  bottom: 12px;

  padding: 24px;
  border-radius: 28px;

  background: linear-gradient(135deg,
      rgba(78, 78, 78, 0.5),
      rgba(165, 165, 165, .5),
      rgba(78, 78, 78, .25));

  backdrop-filter: blur(15px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .15);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .25),
    inset 0 -1px 1px rgba(255, 255, 255, .05),
    0 15px 35px rgba(0, 0, 0, .45);

  isolation: isolate;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, .18),
      transparent 35%);

  pointer-events: none;
  z-index: 0;
}

.glass>* {
  position: relative;
  z-index: 1;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, .18),
      transparent 35%);

  pointer-events: none;
}

.glass .title {
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.verify {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: #006eff;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;
}

.glass p {
  color: #e7e7e7;
  line-height: 1.6;
}

.btn-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-btn {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  padding: 10px 80px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 21px;
  color: #000000;
  font-weight: 600;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #e9edf3 50%,
      #cfd6de 100%);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .9),
    inset 0 -1px 2px rgba(180, 190, 200, .25),
    0 10px 25px rgba(0, 0, 0, .12),
    0 0 15px rgba(255, 255, 255, .25);

  transition: all .45s ease;
  overflow: hidden;

}

/* =======================
   BUTTON 
======================= */
.magnetic-btn {
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.generate-btn {
  position: relative;
  padding: 10px 40px;
  border-radius: 60px;
  border: 2px solid rgba(9, 11, 31, .35);
  background: rgb(9, 11, 31);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  overflow: hidden;
  font-weight: 500;
  box-shadow:
    inset 0 0 20px rgba(95, 95, 255, .2),
    0 0 20px rgba(70, 70, 255, .2);
    text-decoration: none;
}

.generate-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #002aff;
  filter: blur(35px);
  opacity: .8;
  transition: .4s;
}

.generate-btn:hover::before {
  width: 180px;
  height: 180px;
}

.generate-btn:hover {
  box-shadow:
    inset 0 0 25px rgba(120, 120, 255, .35),
    0 0 30px rgba(80, 80, 255, .6);
}

.generate-btn span {
  position: relative;
  z-index: 2;
}

/* ========================= */
/* contatct page */
/* ========================= */

/* =========================================
contact-canvas
========================================= */

#contact-canvas {
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =========================================
   MAIN
========================================= */

.contact-page {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
  z-index: 5;
  pointer-events: none;
}


/* =========================================
   ORBIT SYSTEM
========================================= */

.orbit-system {
  top: 60px;
  position: relative;
  width: min(750px, 90vw);
  height: min(750px, 90vw);
  transform-style: preserve-3d;
  transition: transform .2s ease-out;
  pointer-events: none;
}

.orbit-system .contact-node {
  pointer-events: auto;
}

/* =========================================
   ORBITS
========================================= */

.orbit {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 36, .12);
  box-shadow:
    0 0 15px rgba(212, 168, 36, .03),
    inset 0 0 15px rgba(212, 168, 36, .02);
  pointer-events: none;
}

.orbit::after {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  border: 1px solid rgba(52, 168, 83, .08);

}

.orbit-1 {

  width: 38%;
  height: 38%;
}

.orbit-2 {

  width: 50%;
  height: 50%;
}

.orbit-3 {

  width: 63%;
  height: 63%;
}

.orbit-4 {

  width: 77%;
  height: 77%;
}

.orbit-5 {

  width: 91%;
  height: 91%;
}

.orbit-system {
  animation: orbitRotate 120s linear infinite;
}

.contact-node {
  animation: iconCounterRotate 120s linear infinite;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes iconCounterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}


/* =========================================
   ORBIT DOTS
========================================= */

.orbit-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a824;
  box-shadow:
    0 0 5px #d4a824,
    0 0 15px rgba(212, 168, 36, .7);
  z-index: 3;
}


.dot-1 {
  left: 50%;
  top: 28%;
}

.dot-2 {
  left: 27%;
  top: 39%;
}

.dot-3 {
  right: 25%;
  top: 37%;
}

.dot-4 {
  left: 50%;
  bottom: 27%;
}

.dot-5 {
  right: 33%;
  bottom: 35%;
}


/* =========================================
   CENTER
========================================= */

.center-content {
  margin-top: 70px;
  position: fixed !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
  width: 250px;
}

.center-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(212, 168, 36, .15),
      rgba(212, 168, 36, .04) 30%,
      transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.center-content h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #a79101;
  text-shadow:
    0 0 10px rgba(212, 168, 36, .35),
    0 0 25px rgba(212, 168, 36, .12);
}

.center-content p {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .3px;
}


/* =========================================
   CONTACT NODES
========================================= */

.contact-node {
  pointer-events: auto;
  position: absolute;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  z-index: 30;
  transition:
    transform .35s cubic-bezier(.2, .8, .2, 1),
    filter .35s ease;
}

.contact-node {
  transition:
    filter .35s ease;
}

.contact-node:hover {
  filter:
    drop-shadow(0 0 15px rgba(212, 168, 36, .25));
}

.contact-node:hover .node-icon {
  transform: scale(1.08);
}

/* =========================================
   ICON
========================================= */

.node-icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 30%,
      rgba(255, 255, 255, .08),
      rgba(3, 10, 17, .85) 65%);
  border: 1px solid rgba(212, 168, 36, .65);
  box-shadow:
    0 0 8px rgba(212, 168, 36, .28),
    0 0 25px rgba(212, 168, 36, .12),
    inset 0 0 15px rgba(212, 168, 36, .08);
  backdrop-filter: blur(5px);
  transition: .35s ease;
}


.node-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(212, 168, 36, .12);
}


.node-icon::after {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: inherit;
  background: radial-gradient(circle,
      rgba(212, 168, 36, .13),
      transparent 65%);
  z-index: -1;
  filter: blur(8px);
}


.contact-node:hover .node-icon {
  border-color: #e0b94f;
  box-shadow:
    0 0 10px rgba(224, 185, 79, .7),
    0 0 35px rgba(212, 168, 36, .3),
    inset 0 0 20px rgba(212, 168, 36, .15);
}


.node-icon i {
  font-size: 50px;
  color: #fff4f4;
  text-shadow:
    0 0 8px rgba(255, 255, 255, .25);
}


/* =========================================
   TEXT
========================================= */

.node-info {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.node-info strong {
  font-size: 13px;
  font-weight: 500;
  color: #f0d994;
}


.node-info span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
}


/* =========================================
   NODE POSITIONS
========================================= */

/* Telegram */

.node-telegram {
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
}

/* Instagram */

.node-instagram {
  left: 12%;
  top: 29%;
}

/* GitHub */

.node-GitHub {
  right: 12%;
  top: 29%;
}

/* Email */

.node-email {
  left: 14%;
  bottom: 22%;
}

/* Phone */

.node-phone {
  right: 14%;
  bottom: 22%;
}

/* =========================================
   HOME SMALL ICON
========================================= */

.node-home .node-icon {
  width: 55px;
  height: 55px;
}

.node-home .node-icon i {
  font-size: 19px;
}

/* =====================================================
   DEFAULT ICON
===================================================== */

.node-icon {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 30%,
      rgba(255, 255, 255, .08),
      rgba(3, 10, 17, .9) 65%);

  border: 1px solid rgba(212, 168, 36, .65);
  box-shadow:
    0 0 8px rgba(212, 168, 36, .28),
    0 0 25px rgba(212, 168, 36, .12),
    inset 0 0 15px rgba(212, 168, 36, .08);
  backdrop-filter: blur(6px);
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    transform .35s cubic-bezier(.2, .8, .2, 1);
}


/* حلقه بیرونی */

.node-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 36, .12);
  transition:
    border-color .35s ease,
    box-shadow .35s ease;
}


/* Glow */

.node-icon::after {
  content: "";
  position: absolute;
  inset: -17px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(212, 168, 36, .14),
      transparent 68%);
  filter: blur(9px);
  z-index: -1;
  opacity: .8;
  transition:
    background .35s ease,
    opacity .35s ease;
}


.node-icon i {
  position: relative;
  z-index: 5;
  font-size: 30px;
  color: #f5f5f5;
  transition:
    color .35s ease,
    filter .35s ease,
    transform .35s cubic-bezier(.2, .8, .2, 1);
}


/* =====================================================
   GENERAL HOVER
===================================================== */

.contact-node:hover .node-icon {
  transform: scale(1.08);
}

.contact-node:hover .node-icon i {
  transform: scale(1.12);
}


/* =====================================================
   TELEGRAM
===================================================== */

.node-telegram:hover .node-icon {
  border-color: #24a1de;
  background:
    radial-gradient(circle,
      rgba(34, 158, 217, .16),
      rgba(3, 10, 17, .92) 68%);
  box-shadow:
    0 0 10px rgba(34, 158, 217, .8),
    0 0 30px rgba(34, 158, 217, .45),
    0 0 55px rgba(34, 158, 217, .15),
    inset 0 0 18px rgba(34, 158, 217, .18);
}


.node-telegram:hover .node-icon::before {
  border-color: rgba(34, 158, 217, .45);
  box-shadow:
    0 0 15px rgba(34, 158, 217, .3);
}


.node-telegram:hover .node-icon::after {

  background:
    radial-gradient(circle,
      rgba(34, 158, 217, .28),
      transparent 68%);
}


.node-telegram:hover .node-icon i {
  color: #229ED9;
  filter:
    drop-shadow(0 0 8px rgba(34, 158, 217, .8));
}


/* =====================================================
   INSTAGRAM
===================================================== */

.node-instagram:hover .node-icon {
  border-color: #E1306C;
  background:
    linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow:
    0 0 10px rgba(225, 48, 108, .7),
    0 0 30px rgba(225, 48, 108, .35),
    0 0 55px rgba(131, 58, 180, .18),
    inset 0 0 18px rgba(225, 48, 108, .15);
}

.node-instagram:hover .node-icon::before {
  border-color: rgba(225, 48, 108, .4);
}


.node-instagram:hover .node-icon::after {
  background:
    radial-gradient(circle,
      rgba(225, 48, 108, .25),
      rgba(131, 58, 180, .12),
      transparent 70%);
}


.node-instagram:hover .node-icon i {
  background:
    linear-gradient(45deg,
      #FEDA75,
      #FA7E1E,
      #D62976,
      #962FBF,
      #4F5BD5);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 7px rgba(214, 41, 118, .65));
}


/* =====================================================
GitHub
===================================================== */

.node-GitHub:hover .node-icon {
  border-color: #24292f;
  background:
    #24292f;
  box-shadow: 0 14px 36px -6px rgba(230, 237, 243, 0.22);
}


.node-GitHub:hover .node-icon::before {
  border-color: rgba(255, 255, 255, 0.42);
}


.node-GitHub:hover .node-icon::after {
  background:
    radial-gradient(circle,
      rgba(253, 254, 255, 0.27),
      transparent 68%);
}


.node-GitHub:hover .node-icon i {
  color: #ffffff;
  filter:
    drop-shadow(0 0 8px rgba(255, 254, 254, 0.8));
}


/* =====================================================
   EMAIL
===================================================== */

.node-email:hover .node-icon {
  border-color: #ea4335;
  background:
    radial-gradient(circle,
      rgba(234, 67, 53, .15),
      rgba(3, 10, 17, .92) 68%);
  box-shadow:
    0 0 10px rgba(234, 67, 53, .7),
    0 0 30px rgba(234, 67, 53, .35),
    0 0 55px rgba(251, 188, 5, .12),
    inset 0 0 18px rgba(234, 67, 53, .15);
}


.node-email:hover .node-icon::before {
  border-color: rgba(234, 67, 53, .4);
}


.node-email:hover .node-icon::after {
  background:
    radial-gradient(circle,
      rgba(234, 67, 53, .25),
      transparent 68%);
}


.node-email:hover .node-icon i {
  color: #EA4335;
  filter:
    drop-shadow(0 0 8px rgba(234, 67, 53, .75));
}


/* =====================================================
   PHONE
===================================================== */

.node-phone:hover .node-icon {

  border-color: #34c759;
  background:
    radial-gradient(circle,
      rgba(52, 168, 83, .16),
      rgba(3, 10, 17, .92) 68%);
  box-shadow:
    0 0 10px rgba(52, 168, 83, .7),
    0 0 30px rgba(52, 168, 83, .35),
    0 0 55px rgba(52, 168, 83, .14),
    inset 0 0 18px rgba(52, 168, 83, .16);
}


.node-phone:hover .node-icon::before {
  border-color: rgba(52, 168, 83, .42);
}


.node-phone:hover .node-icon::after {
  background:
    radial-gradient(circle,
      rgba(52, 168, 83, .27),
      transparent 68%);
}


.node-phone:hover .node-icon i {
  color: #34A853;
  filter:
    drop-shadow(0 0 8px rgba(52, 168, 83, .8));
}

.node-whatsapp:hover .node-icon {
  border-color: #fff !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, .75), 0 0 28px rgba(255, 255, 255, .25), inset 0 0 16px rgba(255, 255, 255, .08) !important;
}

.node-whatsapp:hover .node-icon::before {
  border-color: rgba(255, 255, 255, .4) !important;
}

.node-whatsapp:hover .node-icon::after {
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 70%) !important;
}

.node-whatsapp:hover .node-icon i {
  color: #fff !important;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .9)) !important;
}

.center-content {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 100 !important;
}

.center-content,
.center-content * {
  animation: none !important;
}

/* ========================= */
/* About page */
/* ========================= */
.about-text {
  margin-top: 250px;
  font-size: 100px;
  margin-bottom: 100px;
  background: linear-gradient(180deg, #11783C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-about-1 {
  font-size: 50px;
}

.text-about-2 {
  line-height: 55px;
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.text-about-2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 500px;
  height: 5px;
  background: linear-gradient(90deg, #1A6FD4, #11783C, #C9A84C);
  border-radius: 999px;
}

.text-span-about {
  color: #C9A84C;
}

.text-span-about1 {
  color: #1A6FD4;
  ;
}

.text-span-about2 {
  color: #11783C;
}

.about-heading {
  position: relative;
}

.text-p-about {
  line-height: 30px;
}

.img-about {
  height: 580px;
  width: 700px;
  border-radius: 15px;
}

.btn-about {
  padding: 20px;
  color: white;
  border: 1px solid rgba(139, 105, 20, 0.5);
  cursor: pointer;
  transition: transform 0.08s ease;
}

.btn-about:hover {
  transform: none;
  color: white;
  border: 1px solid rgb(139, 105, 20);
}

.btn-about:active {
  transform: scale(0.92);
  background-color: #11783C !important;
  border: 3px solid rgb(255, 183, 0) !important;
}

.text-learn {
  color: #C9A84C;
  text-align: center;
  font-size: 50px;
  margin-top: 100px;
}

.img-learn {
  height: 100%;
  width: 100%;
  border: 1px solid rgba(139, 105, 20, 0.6);
  border-radius: 15px;
}

.expertise-about {
  display: flex;
  gap: 40px;
  perspective: 1000px;
}

.card-3d {
  clip-path: url(#item-2);
  width: 500px;
  height: 350px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 165, 32, 0.150);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.box-about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.icon-cd {
  font-size: 85px;
  color: #185FA5;
}

.icon-iw {
  font-size: 85px;
  color: #993556;
  ;
}

.icon-wp {
  font-size: 85px;
  color: #21759B;
}

.title-about {
  color: #ffffff;
  font-size: 30px;
}

.subtitle-about {
  padding: 0 30px;
  color: rgb(204, 204, 204);
  font-size: 18px;
}

@media only screen and (max-width: 320px) {

  .loading-logo {
    font-size: 50px;
  }

  .loading-bar-outer {
    width: 200px;
  }

  .logo-header-small {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    animation:
      logoNeon 3s ease-in-out infinite,
      neonFlicker 2s linear infinite;
  }

  .logo-small {
    width: 90px;
    height: auto;
    animation: logoBreath 4s ease-in-out infinite;
  }

  /* دکمه همبرگری */
  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 5px;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .icon-bars {
    color: #fff;
    font-size: 28px;
  }

  /* پنل منو */
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 92%;

    padding: 15px;

    background: rgba(15, 15, 20, .55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 22px;

    box-shadow:
      0 15px 40px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 255, 255, .06);

    z-index: 9999;
  }

  .dropdown-content {
    width: 99%;
    background: rgba(15, 15, 20, 0.950);
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: unset;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .dropdown-toggle-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    color: #fff;
    border-radius: 12px;
    transition: .3s;
  }

  .nav-link:hover,
  .dropdown-toggle-custom:hover {
    background: rgba(255, 255, 255, .06);
    color: #C9A84C;
  }

  /* کانتینر */
  .text-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  /* متن */
  .word {
    font-size: 70px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    transition:
      filter 1.8s ease,
      opacity 1.8s ease,
      transform 1.8s ease,
      text-shadow 1.8s ease;
    user-select: none;
    white-space: nowrap;
  }

  /* فریم شناور */
  .frame-text-head {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
      top 1.8s cubic-bezier(.22, 1, .36, 1),
      transform 1.8s cubic-bezier(.22, 1, .36, 1);
  }

  /* Floating badges */
  .floating {
    position: absolute;
    animation: floatBadge 4s ease-in-out infinite;
    margin-top: 25px;
  }

  .floating-badge-r {
    margin-top: -35px;
    font-size: 40px;
    color: #61DBFB;
    display: block;
    animation: react 10s linear infinite;
  }

  .floating-badge-n {
    margin-top: -35px;
    font-size: 35px;
    color: #fdffff;
  }

  .floating-badge-W {
    margin-left: 5%;
    margin-top: 70px;
    font-size: 40px;
    color: #21759B;
  }

  .floating-badge-c {
    margin-top: -150px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
    font-size: 35px;
  }

  .floating-badge.blue-ty {
    font-size: 35px;
    margin-top: -5px;
    border-color: rgba(59, 158, 255, 0.3);
    color: var(--blue-glow);
  }

  .floating-badge-h {
    margin-top: 0px;
    font-size: 40px;
    color: #9b3321;
  }

  .floating-badge-css {
    margin-top: 20px;
    font-size: 40px;
    color: #1572B6;
  }

  .floating-badge-threejs {
    margin-top: 160px;
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 16px;
  }

  .scroll-line {
    width: 3px;
    height: 40px;
  }

  .text-main-title1 {
    font-size: 21px;
  }

  .srv {
    font-size: 40px;
  }

  .sc-top {
    margin-top: 40px;
  }

  .sc-icon-wrap i {
    font-size: 22px;
  }

  .sc-body {
    padding: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .sc-num {
    margin-top: 5px;
    font-size: 20px;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
    color: white;
  }

  .sc-title {
    font-size: 20px;
  }

  .sc-desc {
    font-size: 15px;
    color: #adadad;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .sc-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid;
  }

  /* cards*/

  .Recent {
    font-size: 35px;
  }


  .filter-wrapper {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .filter-buttons {
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    width: 100%;
    max-width: 300px;
  }

  .filter-btn {
    font-size: 15px;
  }

  .active-bg {
    display: none;
  }

  .filter-btn.active {
    border-radius: 15px;
    width: 85%;
    height: 80%;
    background: #C9A84C;
    color: #000;
  }

  .cards {
    border-radius: none;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    overflow: hidden;
    width: 100%;
    height: 130px;
  }

  /* TEXT */

  .content h3 {
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-bottom: 4px;
  }

  .content p {
    color: #a3a3a3;
    font-size: 15px;
  }

  /* LINK BUTTON */

  .arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .overlay-cards {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.300),
        rgba(0, 0, 0, 0.100));
    padding: 10px;
  }

  .text-main-title {
    font-size: 30px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-card {
    width: 100%;
  }

  /* footer */
  .foot {
    width: 90%;
  }

  .foot-label {
    font-size: 40px;
  }

  .span-p {
    color: #ff2020;
  }

  .icons-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .icons-row::-webkit-scrollbar {
    display: none;
  }

  .icon-wrap {
    flex: 0 0 80px;
    width: 80px;
    height: 90px;
  }

  .icon-btn {
    width: 46px;
    height: 46px;
  }

  .icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .icon-label {
    font-size: 11px;
  }


  /******card-services*********/

  .text-main-3d {
    font-size: 3.5rem;
  }

  .text-main-js {
    font-size: 2.5rem;
  }

  .text-main-wp {
    font-size: 1rem;
  }


  /* ========================= */
  /* card-srv */

  .card-srv {
    margin: 0 auto;
    width: 280px;
    height: 400px;
    margin-bottom: 30px;
  }

  /* ========================= */
  /* GLASS PANEL */
  /* ========================= */

  .glass {
    padding: 10px;
  }

  .glass h2 {
    font-size: 22px;
  }

  .verify {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .glass p {
    font-size: 13px;
  }

  /* =======================
   BUTTON 
======================= */

  .generate-btn {
    padding: 8px 25px;
    font-size: 15px;
  }

  /* ========================= */
  /* About page */
  /* ========================= */
  .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-row .about-image {
    order: 1;
  }

  .about-row .about-text-1 {
    order: 2;
  }

  .about-text {
    font-size: 50px;
  }

  .img-about {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 50px;
  }

  .text-about-1 {
    font-size: 28px;
    text-align: center;
  }

  .text-about-2 {
    font-size: 15px;
    text-align: center;
  }

  .text-about-2::after {
    width: 300px;
  }

  .text-p-about {
    font-size: 12px;
    text-align: center;
  }

  .btn-about {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 10px;
  }

  .text-learn {
    font-size: 35px;
  }

  .article-learn {
    padding-top: 15px;
  }

  .expertise-about {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .card-3d {
    width: 90%;
    max-width: 500px;
    height: 350px;
  }

  .title-about {
    font-size: 22px;
    text-align: center;
  }

  .subtitle-about {
    padding: 0 25px;
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }

  .icon-cd,
  .icon-iw,
  .icon-wp {
    font-size: 70px;
  }

  /* ========================= */
  /* contatct page */
  /* ========================= */

  .orbit-system {
    width: 285px;
    height: 285px;
  }

  .contact-node {
    width: 75px;
  }

  .node-icon {
    width: 44px;
    height: 44px;
  }

  .node-icon i {
    font-size: 20px;
  }

  .node-info {
    margin-top: 6px;
    gap: 1px;
  }

  .node-info strong {
    font-size: 9px;
  }

  .node-info span {
    font-size: 7px;
  }

  .center-content {
    width: 140px;
  }

  .center-content h1 {
    font-size: 27px;
  }

  .center-content p {
    font-size: 9px;
  }

  .center-glow {
    width: 130px;
    height: 130px;
  }

  /* Positions */

  .node-telegram {
    left: 50%;
    top: 0%;
  }

  .node-instagram {
    left: -2%;
    top: 25%;
  }

  .node-GitHub {
    right: -2%;
    top: 25%;
  }

  .node-email {
    left: 0%;
    bottom: 9%;
  }

  .node-phone {
    right: 0%;
    bottom: 9%;
  }

}

@media only screen and (min-width: 321px) and (max-width: 375px) {
  .loading-logo {
    font-size: 50px;
  }

  .loading-bar-outer {
    width: 200px;
  }

  .logo-header-small {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    animation:
      logoNeon 3s ease-in-out infinite,
      neonFlicker 2s linear infinite;
  }

  .logo-small {
    width: 90px;
    height: auto;
    animation: logoBreath 4s ease-in-out infinite;
  }

  .navbar {
    width: 95%;
  }

  /* دکمه همبرگری */
  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 5px;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .icon-bars {
    color: #fff;
    font-size: 28px;
  }

  /* پنل منو */
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 92%;

    padding: 15px;

    background: rgba(15, 15, 20, .55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 22px;

    box-shadow:
      0 15px 40px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 255, 255, .06);

    z-index: 9999;
  }

  .dropdown-content {
    width: 99%;
    background: rgba(15, 15, 20, 0.950);
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: unset;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .dropdown-toggle-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    color: #fff;
    border-radius: 12px;
    transition: .3s;
  }

  .nav-link:hover,
  .dropdown-toggle-custom:hover {
    background: rgba(255, 255, 255, .06);
    color: #C9A84C;
  }

  /* کانتینر */
  .text-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  /* متن */
  .word {
    font-size: 75px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    transition:
      filter 1.8s ease,
      opacity 1.8s ease,
      transform 1.8s ease,
      text-shadow 1.8s ease;
    user-select: none;
    white-space: nowrap;
  }

  /* فریم شناور */
  .frame-text-head {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
      top 1.8s cubic-bezier(.22, 1, .36, 1),
      transform 1.8s cubic-bezier(.22, 1, .36, 1);
  }

  /* Floating badges */
  .floating {
    position: absolute;
    animation: floatBadge 4s ease-in-out infinite;
    margin-top: 25px;
  }

  .floating-badge-r {
    margin-top: -35px;
    font-size: 45px;
    color: #61DBFB;
    display: block;
    animation: react 10s linear infinite;
  }

  .floating-badge-n {
    margin-top: -35px;
    font-size: 40px;
    color: #fdffff;
  }

  .floating-badge-W {
    margin-left: 5%;
    margin-top: 70px;
    font-size: 45px;
    color: #21759B;
  }

  .floating-badge-c {
    margin-top: -150px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
    font-size: 40px;
  }

  .floating-badge.blue-ty {
    font-size: 40px;
    margin-top: -5px;
    border-color: rgba(59, 158, 255, 0.3);
    color: var(--blue-glow);
  }

  .floating-badge-h {
    margin-top: 0px;
    font-size: 45px;
    color: #9b3321;
  }

  .floating-badge-css {
    margin-top: 20px;
    font-size: 45px;
    color: #1572B6;
  }

  .floating-badge-threejs {
    margin-top: 160px;
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 16px;
  }

  .scroll-line {
    width: 3px;
    height: 40px;
  }

  .text-main-title1 {
    font-size: 28px;
  }

  .srv {
    font-size: 45px;
  }

  .sc-top {
    margin-top: 40px;
  }

  .sc-icon-wrap i {
    font-size: 22px;
  }

  .sc-body {
    padding: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .sc-num {
    margin-top: 5px;
    font-size: 22px;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
    color: white;
  }

  .sc-title {
    font-size: 25px;
  }

  .sc-desc {
    font-size: 15px;
    color: #adadad;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .sc-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid;
  }

  /* cards*/

  .Recent {
    font-size: 45px;
  }

  .filter-wrapper {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .filter-buttons {
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    width: 100%;
    max-width: 300px;
  }

  .filter-btn {
    font-size: 18px;
  }

  .active-bg {
    display: none;
  }

  .filter-btn.active {
    border-radius: 15px;
    width: 85%;
    height: 80%;
    background: #C9A84C;
    color: #000;
  }

  .cards {
    border-radius: none;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    overflow: hidden;
    width: 100%;
    height: 160px;
  }

  /* TEXT */

  .content h3 {
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-bottom: 4px;
  }

  .content p {
    color: #a3a3a3;
    font-size: 15px;
  }

  /* LINK BUTTON */

  .arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .overlay-cards {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.300),
        rgba(0, 0, 0, 0.100));
    padding: 10px;
  }

  .text-main-title {
    font-size: 35px;
  }

  .skills {
    font-size: 80px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-card {
    width: 100%;
  }

  /* footer */
  .foot {
    width: 90%;
  }

  .foot-label {
    font-size: 50px;
  }

  .span-p {
    color: #ff2020;
  }

  .icons-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .icons-row::-webkit-scrollbar {
    display: none;
  }

  .icon-wrap {
    flex: 0 0 80px;
    width: 90px;
    height: 100px;
  }

  .icon-btn {
    width: 53px;
    height: 53px;
  }

  .icon-btn svg {
    width: 23px;
    height: 23px;
  }

  .icon-label {
    font-size: 12px;
  }


  /******card-services*********/

  .text-main-3d {
    font-size: 4rem;
  }

  .text-main-js {
    font-size: 3rem;
  }

  .text-main-wp {
    font-size: 1rem;
  }


  /* ========================= */
  /* card-srv */

  .card-srv {
    margin: 0 auto;
    width: 330px;
    height: 450px;
    margin-bottom: 30px;
  }

  /* ========================= */
  /* GLASS PANEL */
  /* ========================= */

  .glass {
    padding: 10px;
  }

  .glass h2 {
    font-size: 22px;
  }

  .verify {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .glass p {
    font-size: 13px;
  }

  /* =======================
   BUTTON 
======================= */

  .generate-btn {
    padding: 8px 25px;
    font-size: 15px;
  }

  /* ========================= */
  /* About page */
  /* ========================= */
  .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-row .about-image {
    order: 1;
  }

  .about-row .about-text-1 {
    order: 2;
  }

  .about-text {
    font-size: 60px;
  }

  .img-about {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 50px;
  }

  .text-about-1 {
    font-size: 30px;
    text-align: center;
  }

  .text-about-2 {
    font-size: 17px;
    text-align: center;
  }

  .text-about-2::after {
    width: 350px;
  }

  .text-p-about {
    font-size: 15px;
    text-align: center;
  }

  .btn-about {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 13px;
  }

  .text-learn {
    font-size: 35px;
  }

  .article-learn {
    padding-top: 15px;
  }

  .expertise-about {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .card-3d {
    width: 90%;
    max-width: 500px;
    height: 350px;
  }

  .title-about {
    font-size: 22px;
    text-align: center;
  }

  .subtitle-about {
    padding: 0 25px;
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }

  .icon-cd,
  .icon-iw,
  .icon-wp {
    font-size: 70px;
  }

  /* ========================= */
  /* contatct page */
  /* ========================= */
  .orbit-system {
    width: 315px;
    height: 315px;
  }

  .contact-node {
    width: 80px;
  }

  .node-icon {
    width: 47px;
    height: 47px;
  }

  .node-icon i {
    font-size: 21px;
  }

  .node-info {
    margin-top: 7px;
    gap: 2px;
  }

  .node-info strong {
    font-size: 10px;
  }

  .node-info span {
    font-size: 8px;
  }

  .center-content {
    width: 150px;
  }

  .center-content h1 {
    font-size: 29px;
  }

  .center-content p {
    font-size: 9px;
  }

  .center-glow {
    width: 140px;
    height: 140px;
  }

  /* Positions */

  .node-telegram {
    left: 50%;
    top: 0%;
  }

  .node-instagram {
    left: 0%;
    top: 25%;
  }

  .node-GitHub {
    right: 0%;
    top: 25%;
  }

  .node-email {
    left: 2%;
    bottom: 9%;
  }

  .node-phone {
    right: 2%;
    bottom: 9%;
  }
}

@media only screen and (min-width: 376px) and (max-width: 425px) {
  .loading-logo {
    font-size: 50px;
  }

  .loading-bar-outer {
    width: 200px;
  }

  .logo-header-small {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    animation:
      logoNeon 3s ease-in-out infinite,
      neonFlicker 2s linear infinite;
  }

  .logo-small {
    width: 90px;
    height: auto;
    animation: logoBreath 4s ease-in-out infinite;
  }

  .navbar {
    width: 95%;
  }

  /* دکمه همبرگری */
  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 5px;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .icon-bars {
    color: #fff;
    font-size: 28px;
  }

  /* پنل منو */
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 92%;

    padding: 15px;

    background: rgba(15, 15, 20, .55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 22px;

    box-shadow:
      0 15px 40px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 255, 255, .06);

    z-index: 9999;
  }

  .dropdown-content {
    width: 99%;
    background: rgba(15, 15, 20, 0.950);
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: unset;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .dropdown-toggle-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    color: #fff;
    border-radius: 12px;
    transition: .3s;
  }

  .nav-link:hover,
  .dropdown-toggle-custom:hover {
    background: rgba(255, 255, 255, .06);
    color: #C9A84C;
  }

  /* کانتینر */
  .text-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  /* متن */
  .word {
    font-size: 80px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    transition:
      filter 1.8s ease,
      opacity 1.8s ease,
      transform 1.8s ease,
      text-shadow 1.8s ease;
    user-select: none;
    white-space: nowrap;
  }

  /* فریم شناور */
  .frame-text-head {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
      top 1.8s cubic-bezier(.22, 1, .36, 1),
      transform 1.8s cubic-bezier(.22, 1, .36, 1);
  }

  /* Floating badges */
  .floating {
    position: absolute;
    animation: floatBadge 4s ease-in-out infinite;
    margin-top: 25px;
  }

  .floating-badge-r {
    margin-top: -35px;
    font-size: 50px;
    color: #61DBFB;
    display: block;
    animation: react 10s linear infinite;
  }

  .floating-badge-n {
    margin-top: -35px;
    font-size: 45px;
    color: #fdffff;
  }

  .floating-badge-W {
    margin-left: 5%;
    margin-top: 70px;
    font-size: 50px;
    color: #21759B;
  }

  .floating-badge-c {
    margin-top: -150px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
    font-size: 45px;
  }

  .floating-badge.blue-ty {
    font-size: 45px;
    margin-top: -5px;
    border-color: rgba(59, 158, 255, 0.3);
    color: var(--blue-glow);
  }

  .floating-badge-h {
    margin-top: 0px;
    font-size: 50px;
    color: #9b3321;
  }

  .floating-badge-css {
    margin-top: 25px;
    font-size: 50px;
    color: #1572B6;
  }

  .floating-badge-threejs {
    margin-top: 160px;
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
  }


  .scroll-indicator {
    bottom: 20px;
    font-size: 20px;
  }

  .scroll-line {
    width: 3px;
    height: 40px;
  }

  .text-main-title1 {
    font-size: 30px;
  }

  .srv {
    font-size: 48px;
  }

  .sc-top {
    margin-top: 40px;
  }

  .sc-icon-wrap i {
    font-size: 22px;
  }

  .sc-body {
    padding: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .sc-num {
    margin-top: 5px;
    font-size: 25px;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
    color: white;
  }

  .sc-title {
    font-size: 30px;
  }

  .sc-desc {
    font-size: 16px;
    color: #adadad;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .sc-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid;
  }

  /* cards*/

  .Recent {
    font-size: 48px;
  }

  .filter-wrapper {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .filter-buttons {
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    width: 100%;
    max-width: 300px;
  }

  .filter-btn {
    font-size: 18px;
  }

  .active-bg {
    display: none;
  }

  .filter-btn.active {
    border-radius: 15px;
    width: 85%;
    height: 80%;
    background: #C9A84C;
    color: #000;
  }

  .cards {
    border-radius: none;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    overflow: hidden;
    width: 100%;
    height: 200px;
  }

  /* TEXT */

  .content h3 {
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-bottom: 4px;
  }

  .content p {
    color: #a3a3a3;
    font-size: 15px;
  }

  /* LINK BUTTON */

  .arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .overlay-cards {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.300),
        rgba(0, 0, 0, 0.100));
    padding: 15px;
  }

  .text-main-title {
    font-size: 38px;
  }

  .skills {
    font-size: 80px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-card {
    width: 100%;
  }

  /* footer */
  .foot {
    width: 90%;
  }

  .foot-label {
    font-size: 55px;
  }

  .span-p {
    color: #ff2020;
  }

  .icons-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .icons-row::-webkit-scrollbar {
    display: none;
  }

  .icon-wrap {
    flex: 0 0 80px;
    width: 90px;
    height: 100px;
  }

  .icon-btn {
    width: 53px;
    height: 53px;
  }

  .icon-btn svg {
    width: 23px;
    height: 23px;
  }

  .icon-label {
    font-size: 12px;
  }

  /******card-services*********/

  .text-main-3d {
    font-size: 4.5rem;
  }

  .text-main-js {
    font-size: 3.5rem;
  }

  .text-main-wp {
    font-size: 1.5rem;
  }


  /* ========================= */
  /* card-srv */

  .card-srv {
    margin: 0 auto;
    width: 350px;
    height: 480px;
    margin-bottom: 30px;
  }

  /* ========================= */
  /* GLASS PANEL */
  /* ========================= */

  .glass {
    padding: 10px;
  }

  .glass h2 {
    font-size: 22px;
  }

  .verify {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .glass p {
    font-size: 13px;
  }

  /* =======================
   BUTTON 
======================= */

  .generate-btn {
    padding: 8px 25px;
    font-size: 15px;
  }

  /* ========================= */
  /* About page */
  /* ========================= */
  .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-row .about-image {
    order: 1;
  }

  .about-row .about-text-1 {
    order: 2;
  }

  .about-text {
    font-size: 65px;
  }

  .img-about {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 50px;
  }

  .text-about-1 {
    font-size: 33px;
    text-align: center;
  }

  .text-about-2 {
    font-size: 20px;
    text-align: center;
  }

  .text-about-2::after {
    width: 400px;
  }

  .text-p-about {
    font-size: 17px;
    text-align: center;
  }

  .btn-about {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 15px;
  }

  .text-learn {
    font-size: 38px;
  }

  .article-learn {
    padding-top: 15px;
  }

  .expertise-about {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .card-3d {
    width: 90%;
    max-width: 500px;
    height: 350px;
  }

  .title-about {
    font-size: 30px;
    text-align: center;
  }

  .subtitle-about {
    padding: 0 25px;
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }

  .icon-cd,
  .icon-iw,
  .icon-wp {
    font-size: 73px;
  }

  /* ========================= */
  /* contatct page */
  /* ========================= */

  .orbit-system {
    width: 345px;
    height: 345px;
  }

  .contact-node {
    width: 90px;
  }

  .node-icon {
    width: 50px;
    height: 50px;
  }

  .node-icon i {
    font-size: 22px;
  }

  .node-info {
    margin-top: 8px;
    gap: 2px;
  }

  .node-info strong {
    font-size: 10px;
  }

  .node-info span {
    font-size: 8px;
  }

  .center-content {
    width: 160px;
  }

  .center-content h1 {
    font-size: 30px;
  }

  .center-content p {
    font-size: 10px;
  }

  .center-glow {
    width: 150px;
    height: 150px;
  }

  /* Positions */

  .node-telegram {
    left: 50%;
    top: 0%;
  }

  .node-instagram {
    left: 1%;
    top: 25%;
  }

  .node-GitHub {
    right: 1%;
    top: 25%;
  }

  .node-email {
    left: 3%;
    bottom: 10%;
  }

  .node-phone {
    right: 3%;
    bottom: 10%;
  }
}

@media only screen and (min-width: 426px) and (max-width: 480px) {

  .loading-logo {
    font-size: 50px;
  }

  .loading-bar-outer {
    width: 200px;
  }

  .logo-header-small {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    animation:
      logoNeon 3s ease-in-out infinite,
      neonFlicker 2s linear infinite;
  }

  .logo-small {
    width: 90px;
    height: auto;
    animation: logoBreath 4s ease-in-out infinite;
  }

  .navbar {
    width: 95%;
  }

  /* دکمه همبرگری */
  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 5px;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .icon-bars {
    color: #fff;
    font-size: 28px;
  }

  /* پنل منو */
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 92%;

    padding: 15px;

    background: rgba(15, 15, 20, .55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 22px;

    box-shadow:
      0 15px 40px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 255, 255, .06);

    z-index: 9999;
  }

  .dropdown-content {
    width: 99%;
    background: rgba(15, 15, 20, 0.950);
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: unset;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .dropdown-toggle-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    color: #fff;
    border-radius: 12px;
    transition: .3s;
  }

  .nav-link:hover,
  .dropdown-toggle-custom:hover {
    background: rgba(255, 255, 255, .06);
    color: #C9A84C;
  }

  /* کانتینر */
  .text-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  /* متن */
  .word {
    font-size: 80px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    transition:
      filter 1.8s ease,
      opacity 1.8s ease,
      transform 1.8s ease,
      text-shadow 1.8s ease;
    user-select: none;
    white-space: nowrap;
  }

  /* فریم شناور */
  .frame-text-head {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
      top 1.8s cubic-bezier(.22, 1, .36, 1),
      transform 1.8s cubic-bezier(.22, 1, .36, 1);
  }

  /* Floating badges */
  .floating {
    position: absolute;
    animation: floatBadge 4s ease-in-out infinite;
    margin-top: 25px;
  }

  .floating-badge-r {
    margin-top: -35px;
    font-size: 50px;
    color: #61DBFB;
    display: block;
    animation: react 10s linear infinite;
  }

  .floating-badge-n {
    margin-top: -35px;
    font-size: 45px;
    color: #fdffff;
  }

  .floating-badge-W {
    margin-left: 5%;
    margin-top: 70px;
    font-size: 50px;
    color: #21759B;
  }

  .floating-badge-c {
    margin-top: -150px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
    font-size: 45px;
  }

  .floating-badge.blue-ty {
    font-size: 45px;
    margin-top: -5px;
    border-color: rgba(59, 158, 255, 0.3);
    color: var(--blue-glow);
  }

  .floating-badge-h {
    margin-top: 0px;
    font-size: 50px;
    color: #9b3321;
  }

  .floating-badge-css {
    margin-top: 25px;
    font-size: 50px;
    color: #1572B6;
  }

  .floating-badge-threejs {
    margin-top: 160px;
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 20px;
  }

  .scroll-line {
    width: 3px;
    height: 40px;
  }

  .text-main-title1 {
    font-size: 30px;
  }

  .srv {
    font-size: 48px;
  }

  .sc-top {
    margin-top: 40px;
  }

  .sc-icon-wrap i {
    font-size: 22px;
  }

  .sc-body {
    padding: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .sc-num {
    margin-top: 5px;
    font-size: 25px;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
    color: white;
  }

  .sc-title {
    font-size: 30px;
  }

  .sc-desc {
    font-size: 16px;
    color: #adadad;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .sc-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid;
  }

  /* cards*/

  .Recent {
    font-size: 48px;
  }

  .filter-wrapper {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .filter-buttons {
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    width: 100%;
    max-width: 300px;
  }

  .filter-btn {
    font-size: 18px;
  }

  .active-bg {
    display: none;
  }

  .filter-btn.active {
    border-radius: 15px;
    width: 85%;
    height: 80%;
    background: #C9A84C;
    color: #000;
  }

  .cards {
    border-radius: none;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    overflow: hidden;
    width: 100%;
    height: 200px;
  }

  /* TEXT */

  .content h3 {
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-bottom: 4px;
  }

  .content p {
    color: #a3a3a3;
    font-size: 15px;
  }

  /* LINK BUTTON */

  .arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .overlay-cards {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.300),
        rgba(0, 0, 0, 0.100));
    padding: 15px;
  }

  .text-main-title {
    font-size: 38px;
  }

  .skills {
    font-size: 80px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-card {
    width: 100%;
  }

  /* footer */
  .foot {
    width: 90%;
  }

  .foot-label {
    font-size: 55px;
  }

  .span-p {
    color: #ff2020;
  }

  .icons-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .icons-row::-webkit-scrollbar {
    display: none;
  }

  .icon-wrap {
    flex: 0 0 80px;
    width: 90px;
    height: 100px;
  }

  .icon-btn {
    width: 53px;
    height: 53px;
  }

  .icon-btn svg {
    width: 23px;
    height: 23px;
  }

  .icon-label {
    font-size: 12px;
  }

  /******card-services*********/

  .text-main-3d {
    font-size: 4.5rem;
  }

  .text-main-js {
    font-size: 3.5rem;
  }

  .text-main-wp {
    font-size: 1.5rem;
  }


  /* ========================= */
  /* card-srv */

  .card-srv {
    margin: 0 auto;
    width: 350px;
    height: 480px;
    margin-bottom: 30px;
  }

  /* ========================= */
  /* GLASS PANEL */
  /* ========================= */

  .glass {
    padding: 10px;
  }

  .glass h2 {
    font-size: 22px;
  }

  .verify {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .glass p {
    font-size: 13px;
  }

  /* =======================
   BUTTON 
======================= */

  .generate-btn {
    padding: 8px 25px;
    font-size: 15px;
  }

  /* ========================= */
  /* About page */
  /* ========================= */
  .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-row .about-image {
    order: 1;
  }

  .about-row .about-text-1 {
    order: 2;
  }

  .about-text {
    font-size: 65px;
  }

  .img-about {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 50px;
  }

  .text-about-1 {
    font-size: 33px;
    text-align: center;
  }

  .text-about-2 {
    font-size: 20px;
    text-align: center;
  }

  .text-about-2::after {
    width: 400px;
  }

  .text-p-about {
    font-size: 17px;
    text-align: center;
  }

  .btn-about {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 15px;
  }

  .text-learn {
    font-size: 38px;
  }

  .article-learn {
    padding-top: 15px;
  }

  .expertise-about {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .card-3d {
    width: 90%;
    max-width: 500px;
    height: 350px;
  }

  .title-about {
    font-size: 30px;
    text-align: center;
  }

  .subtitle-about {
    padding: 0 25px;
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }

  .icon-cd,
  .icon-iw,
  .icon-wp {
    font-size: 73px;
  }

  /* ========================= */
  /* contatct page */
  /* ========================= */
  .orbit-system {
    width: 380px;
    height: 380px;
  }

  .contact-node {
    width: 100px;
  }

  .node-icon {
    width: 54px;
    height: 54px;
  }

  .node-icon i {
    font-size: 24px;
  }

  .node-info {
    margin-top: 9px;
    gap: 2px;
  }

  .node-info strong {
    font-size: 11px;
  }

  .node-info span {
    font-size: 9px;
  }

  .center-content {
    width: 170px;
  }

  .center-content h1 {
    font-size: 32px;
  }

  .center-content p {
    font-size: 10px;
  }

  .center-glow {
    width: 160px;
    height: 160px;
  }

  /* Positions */

  .node-telegram {
    left: 50%;
    top: 0%;
  }

  .node-instagram {
    left: 2%;
    top: 25%;
  }

  .node-GitHub {
    right: 2%;
    top: 25%;
  }

  .node-email {
    left: 4%;
    bottom: 10%;
  }

  .node-phone {
    right: 4%;
    bottom: 10%;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {

  .logo-center {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation:
      logoNeon 3s ease-in-out infinite,
      neonFlicker 2s linear infinite;
  }


  .logo-header {
    height: 120px;
    width: auto;
    animation: logoBreath 4s ease-in-out infinite;
  }

  .navbar-collapse {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .nav-left {
    gap: 15px;
    padding-left: 10px;
  }

  .nav-right {
    gap: 20px;
    padding-right: 10px;
  }

  .navbar {
    padding: 0 20px;

  }

  .nav-link {
    font-size: 18px;
  }

  /* کانتینر */
  .text-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  /* باکس متن */
  .word-box {
    padding: 35px 50px;
  }

  /* متن */
  .word {
    font-size: 80px;
    font-weight: 800;
  }

  /* فریم شناور */
  .frame-text-head {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
      top 1.8s cubic-bezier(.22, 1, .36, 1),
      transform 1.8s cubic-bezier(.22, 1, .36, 1);
  }

  /* Floating badges */
  .floating {
    position: absolute;
    animation: floatBadge 4s ease-in-out infinite;
    margin-top: 25px;
  }

  .floating-badge-r {
    font-size: 55px;
    color: #61DBFB;
    display: block;
    animation: react 10s linear infinite;
  }

  .floating-badge-n {
    margin-top: -35px;
    margin-left: 20px;
    font-size: 50px;
    color: #fdffff;
  }

  .floating-badge-W {
    margin-left: 5%;
    margin-top: 80px;
    font-size: 55px;
    color: #21759B;
  }

  .floating-badge-c {
    margin-top: -150px;
    margin-right: 20px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
    font-size: 50px;
  }

  .floating-badge.blue-ty {
    font-size: 50px;
    border-color: rgba(59, 158, 255, 0.3);
    color: var(--blue-glow);
  }

  .floating-badge-h {
    margin-top: 0px;
    font-size: 55px;
    color: #9b3321;
  }

  .floating-badge-css {
    margin-top: 25px;
    font-size: 55px;
    color: #1572B6;
  }

  .floating-badge-threejs {
    margin-top: 160px;
    width: 65px;
    height: 65px;
    filter: brightness(0) invert(1);
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 20px;
  }

  .scroll-line {
    width: 3px;
    height: 40px;
  }

  .text-main-title1 {
    font-size: 50px;
  }

  .srv {
    font-size: 60px;
  }

  .sc-top {
    margin-top: 40px;
  }

  .sc-icon-wrap i {
    font-size: 22px;
  }

  .sc-body {
    padding: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .sc-num {
    margin-top: 5px;
    font-size: 25px;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
    color: white;
  }

  .sc-title {
    font-size: 30px;
  }

  .sc-desc {
    font-size: 16px;
    color: #adadad;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .sc-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid;
  }

  /* cards*/

  .Recent {
    font-size: 60px;
  }

  .filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }

  .filter-buttons {
    width: 80%;
    height: 65px;
  }

  /* ACTIVE ANIMATION */

  .active-bg {
    width: 6px;
    height: 45px;
  }

  .filter-btn {
    font-size: 16px;
  }

  .cards {
    border-radius: none;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    overflow: hidden;
    width: 100%;
    height: 350px;
  }

  /* TEXT */

  .content h3 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    margin-bottom: 4px;
  }

  .content p {
    color: #d3d3d3;
    font-size: 20px;
  }

  /* LINK BUTTON */

  .arrow-btn {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .overlay-cards {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.300),
        rgba(0, 0, 0, 0.100));
    padding: 30px;
  }

  .text-main-title {
    font-size: 30px;
  }

  .skills {
    font-size: 80px;
  }

  .skills-container {
    grid-template-columns: repeat(3, 1fr);
  }

  /* footer */
  .foot {
    width: 90%;
  }

  .foot-label {
    font-size: 55px;
  }

  .span-p {
    color: #ff2020;
  }

  .icons-row {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .icon-wrap {
    width: 100px;
    height: 110px;
  }

  .icon-btn {
    width: 60px;
    height: 60px;
  }

  .icon-btn svg {
    width: 26px;
    height: 26px;
  }

  .icon-label {
    font-size: 13px;
  }

  /******card-services*********/

  .text-main-3d {
    font-size: 8rem;
  }

  .text-main-js {
    font-size: 7rem;
  }

  .text-main-wp {
    font-size: 4.5rem;
  }


  /* ========================= */
  /* card-srv */

  .card-srv {
    width: 350px;
    height: 480px;
    margin-bottom: 30px;
  }

  /* ========================= */
  /* GLASS PANEL */
  /* ========================= */

  .glass {
    padding: 10px;
  }

  .glass h2 {
    font-size: 22px;
  }

  .verify {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .glass p {
    font-size: 13px;
  }

  /* =======================
   BUTTON 
======================= */

  .generate-btn {
    padding: 10px 28px;
    font-size: 17px;
  }

  /* ========================= */
  /* About page */
  /* ========================= */
  .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-row .about-image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-row .about-text-1 {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    font-size: 65px;
  }

  .img-about {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 50px;
  }

  .text-about-1 {
    font-size: 40px;
    text-align: center;
  }

  .text-about-2 {
    font-size: 25px;
    text-align: center;
  }

  .text-about-2::after {
    width: 670px;
  }

  .text-p-about {
    font-size: 20px;
    text-align: center;
  }

  .btn-about {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 18px;
    font-size: 16px;
  }

  .text-learn {
    font-size: 38px;
  }

  .expertise-about {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .card-3d {
    width: 45%;
  }

  .title-about {
    font-size: 30px;
    text-align: center;
  }

  .subtitle-about {
    padding: 0 25px;
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }

  .icon-cd,
  .icon-iw,
  .icon-wp {
    font-size: 73px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {

  .logo-center {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation:
      logoNeon 3s ease-in-out infinite,
      neonFlicker 2s linear infinite;
  }


  .logo-header {
    height: 120px;
    width: auto;
    animation: logoBreath 4s ease-in-out infinite;
  }

  .navbar-collapse {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .nav-left {
    gap: 20px;
    padding-left: 15px;
  }

  .nav-right {
    gap: 25px;
    padding-right: 15px;
  }

  .navbar {
    padding: 0 20px;

  }

  .nav-link {
    font-size: 22px;
  }

  /* کانتینر */
  .text-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  /* باکس متن */
  .word-box {
    padding: 35px 50px;
  }

  /* متن */
  .word {
    font-size: 80px;
    font-weight: 800;
  }

  /* فریم شناور */
  .frame-text-head {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
      top 1.8s cubic-bezier(.22, 1, .36, 1),
      transform 1.8s cubic-bezier(.22, 1, .36, 1);
  }

  /* Floating badges */
  .floating {
    position: absolute;
    animation: floatBadge 4s ease-in-out infinite;
    margin-top: 25px;
  }

  .floating-badge-r {
    font-size: 55px;
    color: #61DBFB;
    display: block;
    animation: react 10s linear infinite;
  }

  .floating-badge-n {
    margin-top: -35px;
    margin-left: 20px;
    font-size: 50px;
    color: #fdffff;
  }

  .floating-badge-W {
    margin-left: 5%;
    margin-top: 80px;
    font-size: 55px;
    color: #21759B;
  }

  .floating-badge-c {
    margin-top: -150px;
    margin-right: 20px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .45));
    font-size: 50px;
  }

  .floating-badge.blue-ty {
    font-size: 50px;
    border-color: rgba(59, 158, 255, 0.3);
    color: var(--blue-glow);
  }

  .floating-badge-h {
    margin-top: 0px;
    font-size: 55px;
    color: #9b3321;
  }

  .floating-badge-css {
    margin-top: 25px;
    font-size: 55px;
    color: #1572B6;
  }

  .floating-badge-threejs {
    margin-top: 160px;
    width: 65px;
    height: 65px;
    filter: brightness(0) invert(1);
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 20px;
  }

  .scroll-line {
    width: 3px;
    height: 40px;
  }

  .text-main-title1 {
    font-size: 75px;
  }

  .srv {
    font-size: 70px;
  }

  .sc-top {
    margin-top: 40px;
  }

  .sc-icon-wrap i {
    font-size: 25px;
  }

  .sc-body {
    padding: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .sc-num {
    margin-top: 5px;
    font-size: 25px;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
    color: white;
  }

  .sc-title {
    font-size: 30px;
  }

  .sc-desc {
    font-size: 16px;
    color: #adadad;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .sc-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid;
  }

  /* cards*/

  .Recent {
    font-size: 70px;
  }

  .filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }

  .filter-buttons {
    width: 58%;
    height: 65px;
  }

  /* ACTIVE ANIMATION */

  .active-bg {
    width: 6px;
    height: 45px;
  }

  .filter-btn {
    font-size: 16px;
  }

  .cards {
    border-radius: none;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    overflow: hidden;
    width: 100%;
    height: 350px;
  }

  /* TEXT */

  .content h3 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    margin-bottom: 4px;
  }

  .content p {
    color: #d3d3d3;
    font-size: 20px;
  }

  /* LINK BUTTON */

  .arrow-btn {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .overlay-cards {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.300),
        rgba(0, 0, 0, 0.100));
    padding: 30px;
  }

  .text-main-title {
    font-size: 38px;
  }

  .skills {
    font-size: 80px;
  }

  .skills-container {
    grid-template-columns: repeat(3, 1fr);
  }

  /* footer */
  .foot {
    width: 90%;
  }

  .foot-label {
    font-size: 65px;
  }

  .span-p {
    color: #ff2020;
  }

  .icons-row {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .icon-wrap {
    width: 110px;
    height: 120px;
  }

  .icon-btn {
    width: 65px;
    height: 65px;
  }

  .icon-btn svg {
    width: 30px;
    height: 30px;
  }

  .icon-label {
    font-size: 14px;
  }

  /******card-services*********/

  .text-main-3d {
    font-size: 10rem;
  }

  .text-main-js {
    font-size: 8rem;
  }

  .text-main-wp {
    font-size: 5.5rem;
  }


  /* ========================= */
  /* card-srv */

  .card-srv {
    width: 300px;
    height: 480px;
    margin-bottom: 30px;
  }

  /* ========================= */
  /* GLASS PANEL */
  /* ========================= */

  .glass {
    padding: 10px;
  }

  .glass h2 {
    font-size: 22px;
  }

  .verify {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .glass p {
    font-size: 13px;
  }

  /* =======================
   BUTTON 
======================= */

  .generate-btn {
    padding: 10px 28px;
    font-size: 17px;
  }


  /* ========================= */
  /* About page */
  /* ========================= */

  .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-row .about-image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-row .about-text-1 {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    font-size: 75px;
  }

  .img-about {
    width: 90%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 50px;
  }

  .text-about-1 {
    font-size: 45px;
    text-align: center;
  }

  .text-about-2 {
    font-size: 30px;
    text-align: center;
  }

  .text-about-2::after {
    width: 930px;
  }

  .text-p-about {
    font-size: 25px;
    text-align: center;
  }

  .btn-about {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 18px;
    font-size: 16px;
  }

  .text-learn {
    font-size: 44px;
  }

  .expertise-about {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .card-3d {
    width: 45%;
  }

  .title-about {
    font-size: 30px;
    text-align: center;
  }

  .subtitle-about {
    padding: 0 25px;
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }

  .icon-cd,
  .icon-iw,
  .icon-wp {
    font-size: 73px;
  }
}

/* =======================
  @media only screen and (min-width: 1025px) and (max-width: 1440px) {
} 
======================= */