:root {
      --bg-main: #0c0c0e;
      --bg-secondary: #131317;
      --bg-card: rgba(23, 23, 29, 0.82);
      --bg-card-hover: rgba(32, 32, 40, 0.95);
      --bg-glass: rgba(18, 18, 24, 0.7);
      --accent: #ff3b3b;
      --accent-glow: rgba(255, 59, 59, 0.35);
      --accent-gradient: linear-gradient(135deg, #ff3b3b 0%, #ea6020 100%);
      --accent-secondary: #ea6020;
      --text-main: #ffffff;
      --text-muted: #a0a0ab;
      --text-dim: #71717a;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 59, 59, 0.3);
      --border-hover: rgba(255, 255, 255, 0.2);
      --font-arabic: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
      --font-latin: 'Outfit', sans-serif;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-full: 9999px;
      --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
      --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 35px rgba(255, 59, 59, 0.25);
    }
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: var(--font-arabic);
      overflow-x: hidden;
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.7;
      overflow-x: hidden;
      position: relative;
      min-height: 100vh;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      outline: none;
      background: none;
      transition: var(--transition-smooth);
    }
    .container {
      width: 100%;
      max-width: 1240px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
      position: relative;
      z-index: 2;
    }
    .ambient-glow {
      position: fixed;
      width: 650px;
      height: 650px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent-glow) 0%, rgba(234, 96, 32, 0.08) 40%, transparent 70%);
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
      transition: transform 0.2s ease-out;
    }
    .glow-1 { top: -150px; right: -150px; }
    .glow-2 { top: 50%; left: -200px; }
    .glow-3 { bottom: 0; right: 10%; }
    .noise-bg {
      position: fixed;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 1;
    }
    .custom-cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 8px;
      height: 8px;
      background-color: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 999999;
      transform: translate3d(-50%, -50%, 0);
      box-shadow: 0 0 12px var(--accent), 0 0 20px rgba(255, 59, 59, 0.8);
      transition: opacity 0.2s ease, transform 0.1s ease, background-color 0.2s ease;
      opacity: 0;
    }
    .custom-cursor-outline {
      position: fixed;
      top: 0;
      left: 0;
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255, 59, 59, 0.55);
      border-radius: 50%;
      pointer-events: none;
      z-index: 999998;
      transform: translate3d(-50%, -50%, 0);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                  height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                  background-color 0.3s ease, 
                  border-color 0.3s ease,
                  transform 0.15s ease,
                  opacity 0.2s ease;
      opacity: 0;
    }
    .custom-cursor-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 59, 59, 0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 999997;
      transform: translate3d(-50%, -50%, 0);
      filter: blur(25px);
      transition: opacity 0.3s ease;
      opacity: 0;
    }
    .custom-cursor-outline.cursor-hover {
      width: 58px;
      height: 58px;
      border-color: var(--accent);
      background-color: rgba(255, 59, 59, 0.15);
      backdrop-filter: blur(1.5px);
      box-shadow: 0 0 25px rgba(255, 59, 59, 0.3);
    }
    .custom-cursor-dot.cursor-hover {
      transform: translate3d(-50%, -50%, 0) scale(1.6);
      background-color: #ffffff;
      box-shadow: 0 0 15px #ffffff, 0 0 25px var(--accent);
    }
    .custom-cursor-outline.cursor-click {
      transform: translate3d(-50%, -50%, 0) scale(0.8);
      border-color: #ea6020;
      background-color: rgba(234, 96, 32, 0.25);
    }
    @media (hover: none) and (pointer: coarse) {
      .custom-cursor-dot, .custom-cursor-outline, .custom-cursor-glow {
        display: none !important;
      }
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(255, 59, 59, 0.1);
      border: 1px solid rgba(255, 59, 59, 0.25);
      border-radius: var(--radius-full);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .section-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--accent);
      box-shadow: 0 0 10px var(--accent);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.6; }
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 16px;
      color: var(--text-main);
    }
    .section-title span.highlight {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 650px;
      margin-bottom: 40px;
    }
    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }
    .btn-primary {
      padding: 14px 34px;
      border-radius: var(--radius-full);
      background: var(--accent-gradient);
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      box-shadow: 0 8px 28px var(--accent-glow);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition-smooth);
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 35px rgba(255, 59, 59, 0.5);
    }
    .btn-secondary {
      padding: 14px 32px;
      border-radius: var(--radius-full);
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      font-weight: 600;
      font-size: 1.05rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition-smooth);
    }
    .btn-secondary:hover {
      border-color: var(--accent);
      background: rgba(255, 59, 59, 0.1);
      transform: translateY(-3px);
    }
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      z-index: 100;
      background: rgba(12, 12, 14, 0.75);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      transition: var(--transition-smooth);
    }
    .site-header.scrolled {
      height: 72px;
      background: rgba(12, 12, 14, 0.92);
      box-shadow: var(--shadow-sm);
      border-bottom: 1px solid rgba(255, 59, 59, 0.15);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.5px;
    }
    .site-brand-logo {
      height: 60px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
      transition: var(--transition-smooth);
    }
    .site-header.scrolled .site-brand-logo {
      height: 52px;
    }
    .site-brand-logo:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 0 14px rgba(255, 59, 59, 0.5));
    }
    .footer-brand-logo {
      height: 52px;
      max-width: 200px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-link {
      font-size: 0.98rem;
      font-weight: 500;
      color: var(--text-muted);
      position: relative;
      padding: 6px 0;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 2px;
      background: var(--accent-gradient);
      transition: var(--transition-smooth);
      border-radius: var(--radius-full);
    }
    .nav-link:hover, .nav-link.active {
      color: var(--text-main);
    }
    .nav-link:hover::after, .nav-link.active::after {
      width: 100%;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-header {
      padding: 10px 24px;
      border-radius: var(--radius-full);
      background: var(--accent-gradient);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 4px 20px var(--accent-glow);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-header:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(255, 59, 59, 0.5);
    }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85%;
      max-width: 360px;
      height: 100vh;
      background: rgba(15, 15, 19, 0.98);
      backdrop-filter: blur(20px);
      z-index: 200;
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-left: 1px solid var(--border-subtle);
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    }
    .mobile-drawer.open { right: 0; }
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      z-index: 199;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .drawer-header .site-brand-logo {
      height: 50px;
    }
    .drawer-close {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 30px;
    }
    .drawer-nav a {
      font-size: 1.25rem;
      font-weight: 600;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-nav a:hover, .drawer-nav a.active {
      color: var(--text-main);
      background: rgba(255, 59, 59, 0.1);
      border-right: 3px solid var(--accent);
    }
    .drawer-footer {
      padding-top: 20px;
      border-top: 1px solid var(--border-subtle);
    }
    .hero-section {
      padding-top: 160px;
      padding-bottom: 100px;
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-greeting {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .hero-greeting span.wave {
      display: inline-block;
      animation: wave 2.5s infinite;
      transform-origin: 70% 70%;
    }
    @keyframes wave {
      0%, 60%, 100% { transform: rotate(0deg); }
      10%, 30% { transform: rotate(14deg); }
      20% { transform: rotate(-8deg); }
      40% { transform: rotate(10deg); }
      50% { transform: rotate(-4deg); }
    }
    .hero-title {
      font-size: clamp(2.8rem, 5.5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -1px;
    }
    .hero-title span.glow-text {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    .hero-role {
      font-size: 1.35rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .hero-role-tag {
      font-size: 0.85rem;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      font-weight: 500;
    }
    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 580px;
    }
    .hero-btns {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-card-stack {
      position: relative;
      width: 100%;
      max-width: 440px;
    }
    .hero-main-card {
      background: linear-gradient(145deg, rgba(28, 28, 36, 0.95), rgba(18, 18, 24, 0.95));
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      position: relative;
      transform: rotate(-2deg);
      transition: var(--transition-smooth);
    }
    .hero-main-card:hover {
      transform: rotate(0deg) translateY(-8px);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-glow);
    }
    .hero-card-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }
    .hero-card-body { padding: 22px; }
    .hero-card-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 6px;
      font-family: var(--font-latin);
    }
    .hero-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .float-badge {
      position: absolute;
      padding: 12px 20px;
      background: rgba(18, 18, 24, 0.9);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 3;
      animation: float 4s ease-in-out infinite alternate;
    }
    .badge-exp { bottom: -20px; right: -25px; animation-delay: 0.5s; }
    .badge-rating { top: -20px; left: -20px; animation-delay: 1.5s; }
    .badge-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(255, 59, 59, 0.15);
      border: 1px solid rgba(255, 59, 59, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.2rem;
    }
    .badge-text strong {
      display: block;
      font-size: 1.1rem;
      color: #fff;
      font-family: var(--font-latin);
    }
    .badge-text span {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-10px); }
    }
    .clients-section {
      padding: 70px 0 80px 0;
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      background: linear-gradient(180deg, rgba(12, 12, 14, 0.9) 0%, rgba(18, 18, 24, 0.95) 50%, rgba(12, 12, 14, 0.9) 100%);
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    .clients-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .clients-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .marquee-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 15px 0;
      direction: ltr !important;
      mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
    }
    .marquee-track {
      display: flex;
      align-items: center;
      gap: 24px;
      width: max-content;
      animation: marquee-slide 25s linear infinite;
      will-change: transform;
    }
    .marquee-container:hover .marquee-track {
      animation-play-state: paused;
    }
    @keyframes marquee-slide {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-50%, 0, 0); }
    }
    .client-logo-card {
      width: 190px;
      height: 100px;
      flex-shrink: 0;
      background: rgba(22, 22, 28, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 22px;
      transition: var(--transition-smooth);
      position: relative;
      user-select: none;
    }
    .client-logo-card img {
      max-height: 52px;
      max-width: 88%;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.75);
      transition: var(--transition-smooth);
      pointer-events: none;
    }
    .client-logo-card:hover {
      border-color: var(--accent);
      background: rgba(255, 59, 59, 0.12);
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 12px 30px rgba(255, 59, 59, 0.25);
    }
    .client-logo-card:hover img {
      filter: grayscale(0%) opacity(1);
      transform: scale(1.12);
    }
    .about-section {
      padding: 120px 0;
      position: relative;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }
    .about-image-wrapper {
      position: relative;
    }
    .about-img-box {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 14px;
      position: relative;
      box-shadow: var(--shadow-md);
      transition: box-shadow 0.35s ease, border-color 0.35s ease;
      cursor: pointer;
    }
    .about-img-box:hover {
      border-color: rgba(255, 59, 59, 0.45);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 59, 59, 0.2);
    }
    .about-img-frame {
      position: relative;
      width: 100%;
      height: 460px;
      border-radius: calc(var(--radius-lg) - 6px);
      overflow: hidden;
      background: #000;
    }
    .about-img-base {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: calc(var(--radius-lg) - 6px);
      display: block;
    }
    .about-img-3d {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      opacity: 0;
      pointer-events: none;
      transform-origin: center center;
      transform: scale(1);
      transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 2;
    }
    .about-img-box:hover .about-img-3d {
      opacity: 1;
      transform: scale(1.05);
    }
    .about-glow-circle {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: var(--accent-gradient);
      filter: blur(50px);
      opacity: 0.4;
      bottom: -20px;
      left: -20px;
      z-index: 0;
    }
    .about-content { position: relative; z-index: 2; }
    .about-bio {
      font-size: 1.15rem;
      line-height: 1.9;
      color: #d4d4d8;
      margin-bottom: 32px;
      text-align: justify;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 36px;
    }
    .stat-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      text-align: center;
      transition: var(--transition-smooth);
    }
    .stat-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(255, 59, 59, 0.15);
    }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      font-family: var(--font-latin);
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .skills-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .skills-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .skill-chip {
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 600;
      color: #e4e4e7;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }
    .skill-chip:hover {
      border-color: var(--accent);
      background: rgba(255, 59, 59, 0.12);
      color: #fff;
    }
    .services-section {
      padding: 120px 0;
      background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 24, 0.5) 50%, transparent 100%);
      position: relative;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 38px 28px;
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent-gradient);
      opacity: 0;
      transition: var(--transition-smooth);
    }
    .service-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-accent);
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 59, 59, 0.15);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon-box {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: rgba(255, 59, 59, 0.12);
      border: 1px solid rgba(255, 59, 59, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      margin-bottom: 24px;
      transition: var(--transition-smooth);
    }
    .service-card:hover .service-icon-box {
      background: var(--accent-gradient);
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 6px 20px var(--accent-glow);
    }
    .service-title {
      font-size: 1.45rem;
      font-weight: 800;
      margin-bottom: 14px;
      color: var(--text-main);
    }
    .service-desc {
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid var(--border-subtle);
    }
    .service-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      color: #d4d4d8;
    }
    .service-check {
      color: var(--accent);
      font-size: 1rem;
    }
    .portfolio-section {
      padding: 120px 0;
      position: relative;
    }
    .behance-sync-bar {
      background: rgba(22, 22, 28, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 12px 20px;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      backdrop-filter: blur(12px);
    }
    .sync-status {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.92rem;
      color: var(--text-muted);
    }
    .sync-status strong { color: #fff; }
    .sync-pulse {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 10px #10b981;
      animation: pulse-green 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-green {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.6; }
    }
    .sync-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-sync {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: var(--radius-full);
      background: rgba(255, 59, 59, 0.12);
      border: 1px solid rgba(255, 59, 59, 0.3);
      color: #ff5e5e;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .btn-sync:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px var(--accent-glow);
    }
    .sync-icon.spinning {
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .btn-behance-profile {
      font-size: 0.85rem;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 8px 14px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      font-weight: 500;
    }
    .btn-behance-profile:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.2);
    }
    .portfolio-filters {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .filter-btn {
      padding: 10px 24px;
      border-radius: var(--radius-full);
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      font-weight: 600;
      font-size: 0.95rem;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .filter-count {
      font-size: 0.82rem;
      opacity: 0.8;
      font-family: var(--font-latin);
    }
    .filter-btn:hover {
      color: var(--text-main);
      border-color: var(--border-hover);
    }
    .filter-btn.active {
      background: var(--accent-gradient);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 6px 20px var(--accent-glow);
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 32px;
      min-height: 300px;
    }
    .project-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .project-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 59, 59, 0.15);
    }
    .project-img-holder {
      position: relative;
      width: 100%;
      aspect-ratio: 808 / 632;
      overflow: hidden;
      background: #1a1a20;
    }
    .project-img {
      width: 100%;
      height: 100%;
      aspect-ratio: 808 / 632;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .project-card:hover .project-img {
      transform: scale(1.08);
    }
    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(12, 12, 14, 0.95) 100%);
      opacity: 0.8;
      transition: var(--transition-smooth);
    }
    .project-card:hover .project-overlay { opacity: 0.95; }
    .project-actions {
      position: absolute;
      top: 14px;
      left: 14px;
      display: flex;
      gap: 8px;
      opacity: 0;
      transform: translateY(-8px);
      transition: var(--transition-smooth);
      z-index: 3;
    }
    .project-card:hover .project-actions {
      opacity: 1;
      transform: translateY(0);
    }
    .project-btn-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(18, 18, 24, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-subtle);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: var(--transition-smooth);
    }
    .project-btn-icon:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.1);
    }
    .project-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .project-cat-badge {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 8px;
    }
    .project-title {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
      line-height: 1.4;
      font-family: var(--font-latin), var(--font-arabic);
    }
    .project-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border-subtle);
    }
    .behance-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      font-family: var(--font-latin);
    }
    .behance-link:hover { color: var(--accent); }
    .cta-section {
      padding: 120px 0;
      position: relative;
    }
    .cta-box {
      background: linear-gradient(135deg, rgba(28, 28, 38, 0.95) 0%, rgba(18, 18, 24, 0.95) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: 28px;
      padding: 70px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -150px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
      filter: blur(60px);
      pointer-events: none;
    }
    .cta-question {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .cta-main-title {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
    }
    .cta-desc {
      font-size: 1.2rem;
      color: #d4d4d8;
      max-width: 600px;
      margin: 0 auto 40px auto;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .my-sites-hub {
      margin-top: 50px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .my-sites-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .social-channels-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .channel-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-full);
      font-size: 0.95rem;
      font-weight: 600;
      color: #e4e4e7;
      transition: var(--transition-smooth);
    }
    .channel-pill .channel-icon {
      font-size: 1.15rem;
      display: flex;
      align-items: center;
    }
    .channel-pill:hover {
      border-color: var(--accent);
      color: #fff;
      background: rgba(255, 59, 59, 0.15);
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(255, 59, 59, 0.25);
    }
    .site-footer {
      padding: 50px 0;
      border-top: 1px solid var(--border-subtle);
      background: #09090b;
      position: relative;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-copy {
      font-size: 0.95rem;
      color: var(--text-dim);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .developer-credit {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-full);
      font-size: 0.82rem;
      color: var(--text-muted);
      transition: var(--transition-smooth);
    }
    .developer-credit:hover {
      background: rgba(255, 59, 59, 0.08);
      border-color: rgba(255, 59, 59, 0.35);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 59, 59, 0.15);
    }
    .developer-link {
      color: var(--accent);
      font-weight: 800;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: var(--transition-smooth);
    }
    .developer-link:hover {
      color: #fff;
      text-shadow: 0 0 10px rgba(255, 59, 59, 0.8);
    }
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: var(--transition-smooth);
    }
    .social-btn:hover {
      color: #fff;
      border-color: var(--accent);
      background: rgba(255, 59, 59, 0.15);
      transform: translateY(-3px);
    }
    .scroll-top-btn {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--accent-gradient);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 6px 20px var(--accent-glow);
      z-index: 90;
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      transition: var(--transition-smooth);
    }
    .scroll-top-btn.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .scroll-top-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(255, 59, 59, 0.6);
    }
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal-backdrop.active {
      opacity: 1;
      pointer-events: auto;
    }
    .modal-card {
      background: #141419;
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 540px;
      padding: 36px;
      position: relative;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
      transform: scale(0.95);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .modal-backdrop.active .modal-card { transform: scale(1); }
    .modal-close {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }
    .modal-close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }
    .modal-title {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .modal-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 24px;
    }
    .form-group { margin-bottom: 18px; }
    .form-label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: #e4e4e7;
      margin-bottom: 8px;
    }
    .form-input, .form-textarea, .form-select {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      color: #fff;
      font-family: inherit;
      font-size: 0.95rem;
      transition: var(--transition-smooth);
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(255, 59, 59, 0.05);
      box-shadow: 0 0 15px rgba(255, 59, 59, 0.2);
    }
    .form-select option {
      background: #141419;
      color: #fff;
    }
    .lightbox-modal .modal-card {
      max-width: 900px;
      padding: 16px;
      background: #0f0f13;
    }
    .lightbox-img {
      width: 100%;
      max-height: 75vh;
      object-fit: contain;
      border-radius: var(--radius-md);
    }
    .lightbox-caption {
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      padding: 0 8px;
    }
    .modal-backdrop.project-modal {
      align-items: flex-start;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 40px 16px;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
    }
    .modal-backdrop.project-modal::-webkit-scrollbar {
      width: 8px;
    }
    .modal-backdrop.project-modal::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 4px;
    }
    .project-modal-card {
      max-width: 960px;
      width: 100%;
      margin: 0 auto;
      max-height: none;
      height: auto;
      overflow: visible;
      padding: 36px 30px 28px;
      background: #0f0f13;
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
    }
    .project-modal-card .modal-close {
      position: sticky;
      top: 10px;
      left: 10px;
      z-index: 30;
      float: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    }
    .project-modal-header {
      text-align: right;
    }
    .project-modal-badge {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
      background: rgba(255, 59, 59, 0.12);
      border: 1px solid rgba(255, 59, 59, 0.3);
      padding: 4px 14px;
      border-radius: var(--radius-full);
      margin-bottom: 10px;
    }
    .project-modal-title {
      font-size: 1.65rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 8px;
    }
    .project-modal-author {
      font-size: 0.9rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .project-modal-author strong {
      color: #fff;
    }
    .project-modal-desc {
      font-size: 0.95rem;
      color: #d4d4d8;
      line-height: 1.8;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      margin-top: 10px;
    }
    .project-modal-media-wrapper {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
      margin: 0;
      background: transparent;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }
    .project-modal-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      border-radius: 0;
      border: none;
      box-shadow: none;
      margin: 0;
      padding: 0;
      transition: opacity 0.3s ease;
    }
    .project-modal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border-subtle);
    }
    .project-modal-nav {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pm-nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      font-size: 0.9rem;
      font-weight: 600;
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .pm-nav-btn:hover {
      background: rgba(255, 59, 59, 0.15);
      border-color: var(--accent);
      color: #fff;
    }
    .project-modal-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .project-card {
      cursor: pointer;
    }
    @media (max-width: 1200px) {
      .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
      }
      .hero-grid {
        gap: 40px;
      }
      .about-grid {
        gap: 50px;
      }
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    @media (max-width: 992px) {
      .site-header {
        height: 72px;
      }
      .nav-links, .btn-header {
        display: none !important;
      }
      .menu-toggle {
        display: flex !important;
      }
      .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }
      .hero-greeting {
        margin-left: auto;
        margin-right: auto;
      }
      .hero-role {
        justify-content: center;
        font-size: 1.25rem;
      }
      .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
      }
      .hero-btns {
        justify-content: center;
      }
      .hero-card-stack {
        max-width: 420px;
        margin: 0 auto;
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
      }
      .about-content .section-badge {
        margin-left: auto;
        margin-right: auto;
      }
      .about-bio {
        text-align: center;
        font-size: 1.05rem;
      }
      .about-img-frame {
        max-width: 460px;
        margin: 0 auto;
      }
      .skills-title {
        text-align: center;
      }
      .skills-container {
        justify-content: center;
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    @media (max-width: 768px) {
      .site-header {
        height: 66px;
      }
      .site-header.scrolled {
        height: 58px;
      }
      .site-brand-logo {
        height: 46px;
        max-width: 160px;
      }
      .site-header.scrolled .site-brand-logo {
        height: 40px;
      }
      .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
      }
      .hero-title {
        font-size: 2.5rem;
      }
      .section-title {
        font-size: 2rem;
      }
      .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
      }
      .services-section, .portfolio-section, .about-section, .clients-section {
        padding: 70px 0;
      }
      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .service-card {
        padding: 30px 22px;
      }
      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .portfolio-filters {
        gap: 8px;
        margin-bottom: 32px;
      }
      .filter-btn {
        padding: 8px 16px;
        font-size: 0.88rem;
      }
      .cta-box {
        padding: 44px 22px;
        border-radius: 20px;
      }
      .cta-title {
        font-size: 1.9rem;
      }
      .cta-desc {
        font-size: 1rem;
        margin-bottom: 28px;
      }
      .cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }
      .cta-btns .btn-primary, .cta-btns .btn-secondary {
        width: 100%;
        justify-content: center;
      }
      .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      .footer-socials {
        justify-content: center;
      }
    }
    @media (max-width: 576px) {
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }
      .hero-title {
        font-size: 2.1rem;
        letter-spacing: -0.5px;
      }
      .hero-greeting {
        font-size: 0.88rem;
        padding: 4px 12px;
      }
      .hero-role {
        font-size: 1.05rem;
        gap: 8px;
      }
      .hero-role-tag {
        font-size: 0.78rem;
        padding: 3px 10px;
      }
      .hero-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 28px;
      }
      .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }
      .hero-btns .btn-primary, .hero-btns .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
      }
      .hero-card-stack {
        max-width: 100%;
      }
      .hero-main-card {
        transform: none;
      }
      .hero-card-img {
        height: 220px;
      }
      .hero-card-body {
        padding: 16px;
      }
      .hero-card-title {
        font-size: 1.05rem;
      }
      .float-badge {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 12px;
      }
      .badge-exp {
        bottom: -12px;
        right: 0;
      }
      .badge-rating {
        top: -12px;
        left: 0;
      }
      .badge-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
      }
      .badge-text strong {
        font-size: 0.9rem;
      }
      .badge-text span {
        font-size: 0.7rem;
      }
      .about-img-frame {
        height: 340px;
        max-width: 100%;
      }
      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 24px;
      }
      .stat-card {
        padding: 14px 6px;
      }
      .stat-number {
        font-size: 1.5rem;
      }
      .stat-label {
        font-size: 0.72rem;
      }
      .skill-chip {
        padding: 6px 12px;
        font-size: 0.78rem;
      }
      .client-logo-card {
        height: 60px;
        min-width: 130px;
        padding: 0 16px;
      }
      .client-logo-card img {
        max-height: 32px;
      }
      .project-img-holder {
        height: auto;
        aspect-ratio: 808 / 632;
      }
      .project-body {
        padding: 18px;
      }
      .project-title {
        font-size: 1.05rem;
      }
      .channel-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
      }
      .modal-card {
        padding: 24px 16px;
        margin: 12px;
        border-radius: 16px;
      }
      .modal-title {
        font-size: 1.35rem;
      }
      .modal-desc {
        font-size: 0.85rem;
        margin-bottom: 18px;
      }
      .form-input, .form-textarea, .form-select {
        padding: 10px 14px;
        font-size: 0.9rem;
      }
      .scroll-top-btn {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
      }
    }
    @media (max-width: 380px) {
      .hero-title {
        font-size: 1.85rem;
      }
      .section-title {
        font-size: 1.65rem;
      }
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .stat-number {
        font-size: 1.7rem;
      }
      .filter-btn {
        width: 100%;
        justify-content: center;
      }
      .float-badge {
        position: static;
        margin-top: 10px;
      }
    }
    @media (max-width: 992px), (hover: none) and (pointer: coarse) {
      .custom-cursor-dot,
      .custom-cursor-outline,
      .custom-cursor-glow {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
      }
      body {
        cursor: auto !important;
      }
      a, button, input, select, textarea {
        cursor: pointer !important;
      }
    }
