 :root{
    --bg:#0D1117;
    --bg-soft:#141b26;
    --panel:#161d29;
    --line:rgba(255,255,255,0.08);
    --text:#EAEFF5;
    --text-dim:#8B96A5;
    --amber:#5eead4;
    --amber-dim:#0D1117;
    --teal:#5eead4;
    --pink:#e0577c;
  }
  *{margin:0;padding:0;
        font-family:'Playfair Display',serif;
  }
  body{

    background:var(--bg);
    color:var(--text);
    /* font-family:'Inter',sans-serif; */
    overflow-x:hidden;
  }
  .wrap{
    max-width:1300px;
    margin:0 auto;
    padding:0 40px;
  }
/* HEADER */
header{
  border-bottom:1px solid var(--line);
  background:rgba(13,17,23,0.85);
  backdrop-filter:blur(8px);
  position:sticky;
  top:0;
  z-index:50;
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:20px;
  color:#fff;
  white-space:nowrap;
}

.logo .mark{
  width:36px;
  height:36px;
  flex-shrink:0;
  border-radius:9px;
  background:linear-gradient(145deg,var(--amber),#5eead4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-family:'JetBrains Mono',monospace;
  font-size:14px;
}

.logo small{
  display:block;
  font-family:'Inter',sans-serif;
  font-size:11px;
  color:var(--text-dim);
  font-weight:400;
}

/* NAV */
.navlinks{
  display:flex;
  gap:25px;
  list-style:none;
  margin:0;
  padding:0;
}

.navlinks a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.navlinks a:hover{
  color:var(--amber);
}

/* BUTTON */
.navcta{
  background:var(--amber);
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:6px;
  cursor:pointer;
}

.navcta:hover{
  background:#5eead4;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  background:transparent;
  border:none;
  color:#fff;
  font-size:28px;
  cursor:pointer;
  padding:0;
}


/* =========================
   MOBILE
========================= */
/* =========================================
   MOBILE HEADER - COMPLETE
========================================= */

@media (max-width: 768px) {

  /* Header */
  header {
    width: 100%;
  }

  /* Navigation */
  header nav {
    position: relative;
    width: 100%;
    height: 55px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  /* =========================
     LOGO
  ========================= */

  .logo {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0;
    padding: 0;

    white-space: nowrap;
  }

  /* MW box */
  .logo .mark {
    width: 36px;
    height: 36px;
    min-width: 36px;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Muhammad Waqas */
  .logo > div:last-child {
    display: block;
    font-size: 17px;
    line-height: 1.1;
  }

  /* Subtitle */
  .logo small {
    display: none;
  }

  /* =========================
     DESKTOP NAV HIDE
  ========================= */

  .navlinks {
    display: none;
  }

  /* Contact Us hide */
  .desktop-contact {
    display: none;
  }

  .navcta {
    display: none;
  }

  /* =========================
     HAMBURGER
  ========================= */

  .menu-toggle {
    display: block;

    position: absolute;
    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    width: 35px;
    height: 35px;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;

    color: #fff;

    font-size: 28px;
    line-height: 35px;

    cursor: pointer;
  }

  /* =========================
     MOBILE OPEN MENU
  ========================= */

  .navlinks.active {
    display: flex;

    position: absolute;
    top: 55px;
    left: 0;

    width: 100%;

    flex-direction: column;
    gap: 0;

    margin: 0;
    padding: 10px 20px;

    box-sizing: border-box;

    background: #0d1117;

    border-top: 1px solid var(--line);

    z-index: 100;
  }

  .navlinks.active li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navlinks.active a {
    display: block;

    width: 100%;

    padding: 12px 0;

    color: #fff;
    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  header nav {
    height: 52px;
    padding: 7px 8px;
  }

  .logo {
    left: 6px;
    gap: 6px;
  }

  .logo .mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
  }

  .logo > div:last-child {
    font-size: 15px;
  }

  .menu-toggle {
    right: 7px;
    font-size: 26px;
  }

  .navlinks.active {
    top: 52px;
  }

}
.menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}

@media (max-width:768px){
  .menu-toggle{
    display:block;
  }

  .navlinks{
    display:none;
  }

  .navlinks.active{
    display:flex;
  }
}

/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 700px;

    padding: 90px 0 110px;

    overflow: hidden;

    background: #0D1117;
}


/* =========================================
   BACKGROUND VIDEO
========================================= */

.hero-bg-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;

    pointer-events: none;
}


/* =========================================
   VIDEO DARK OVERLAY
========================================= */

.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.45);
    z-index: 1;
    pointer-events: none;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero .wrap {
    position: relative;

    z-index: 5;
}


.hero-grid {
    position: relative;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 60px;

    align-items: center;

    z-index: 5;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 5;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--teal);
    background: rgba(143, 203, 242, 0.08);
    border: 1px solid rgba(143, 203, 242, 0.25);
    padding: 7px 14px;
    border-radius: 20px;
    margin-bottom: 26px;
}


.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow:
        0 0 0 3px rgba(143, 203, 242, 0.2);
}


/* =========================================
   HEADING
========================================= */

.hero h1 {
     font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0;
}


.hero h1 .tag {
    color: var(--amber);
 font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.42em;
    display: block;
    margin-top: 14px;
    /* font-family: 'Inter', sans-serif; */
}


/* =========================================
   DESCRIPTION
========================================= */

.lede {
    margin-top: 22px;

    font-size: 17px;

    line-height: 1.65;

    color: var(--text-dim);

    max-width: 480px;
}


/* =========================================
   TRUST
========================================= */

.trust {
    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    color: var(--text-dim);
}


.stars {
    color: var(--amber);

    letter-spacing: 2px;

    font-size: 15px;
}


/* =========================================
   SKILLS
========================================= */

.stack {
    margin-top: 22px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.chip {
    display: flex;

    align-items: center;

    gap: 7px;

    font-family: 'JetBrains Mono', monospace;

    font-size: 12.5px;

    color: var(--text);

    background: rgba(13, 17, 23, 0.75);

    border: 1px solid var(--line);

    padding: 8px 13px;

    border-radius: 8px;

    backdrop-filter: blur(5px);
}


/* =========================================
   BUTTONS
========================================= */

.ctas {
    margin-top: 36px;

    display: flex;

    align-items: center;

    gap: 18px;
}


.btn-primary {
    background: var(--amber);

    color: #0D1117;

    border: none;

    padding: 16px 28px;

    border-radius: 10px;

    font-weight: 600;

    font-size: 15px;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 10px;

    transition:
        transform 0.15s ease,
        box-shadow 0.2s;

    font-family: 'Inter', sans-serif;
}


.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(79, 168, 232, 0.25);
}


.btn-primary .arrow-circle {
    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #0D1117;

    color: var(--amber);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;
}


.btn-secondary {
    color: var(--text);

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    border-bottom: 1px solid var(--line);

    padding-bottom: 2px;
}


.btn-secondary:hover {
    border-color: var(--teal);

    color: var(--teal);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.art {
    position: relative;

    display: flex;

    justify-content: center;

    z-index: 5;
}


.photo-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    /* aspect-ratio: 1 / 1.05; */
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--line);
    /* background: var(--panel); */
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.6);
}


.photo-frame img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center 15%;

    display: block;

    filter:
        grayscale(15%)
        contrast(1.03);
}


/* =========================================
   FLOATING CARD
========================================= */

.floating-card {
    position: absolute;

    left: -22px;

    bottom: 34px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: rgba(13, 17, 23, 0.9);

    border: 1px solid var(--line);

    border-radius: 12px;

    padding: 14px 18px;

    box-shadow:
        0 20px 40px -16px rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(10px);
}


.floating-icon {
    width: 34px;
    height: 34px;

    border-radius: 9px;

    background: var(--amber);

    color: var(--bg);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 15px;

    flex-shrink: 0;
}


.floating-title {
    font-family: 'Space Grotesk', sans-serif;

    font-weight: 700;

    font-size: 15px;
}


.floating-sub {
    font-size: 12.5px;

    color: var(--text-dim);

    margin-top: 2px;
}


/* =========================================
   ORBIT BADGE
========================================= */

.orbit-badge {
    position: absolute;

    top: -26px;

    right: -6px;

    width: 110px;
    height: 110px;

    z-index: 10;
}


.orbit-badge svg {
    animation: spin 14s linear infinite;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.orbit-center {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 11px;

    font-weight: 700;

    color: var(--amber);

    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 980px) {

    .hero {
        min-height: auto;

        padding: 80px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .art {
        margin: 0 auto;
    }

    .floating-card {
        left: 12px;
    }

    .orbit-badge {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .hero {
        padding: 65px 0 75px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .lede {
        font-size: 15px;
    }

    .trust {
        flex-wrap: wrap;
    }

    .ctas {
        flex-direction: column;

        align-items: flex-start;
    }

    .photo-frame {
        max-width: 100%;
    }

    .floating-card {
        left: 10px;

        bottom: 20px;

        padding: 10px 13px;
    }

    .hero-bg-video {
        object-position: center;
    }

}

                                              /* skill section */
.skills-section {
  width: 100%;
  background: linear-gradient(160deg, var(--ink) 0%, var(--bg2) 100%);
  font-family: 'Inter', sans-serif;
  padding: 80px 24px;
}

.skills-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.skills-head .eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.skills-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--paper);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.skills-head p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.skills-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 16px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 117, 245, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.skill-card__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--skill-color, var(--purple));
  color: #fff;
}

.skill-card__icon svg { width: 22px; height: 22px; }

.skill-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--paper);
  margin: 0;
}

@media (max-width: 720px) {
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
/* WHY WORK WITH ME SECTION */
.why-section{
  padding:90px 0;
  border-top:1px solid var(--line);
}
.why-head{
  max-width:560px;
  margin:0 auto 56px;
  text-align:center;
}
.why-head .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  color:var(--teal);
  background:rgba(143,203,242,0.08);
  border:1px solid rgba(143,203,242,0.25);
  padding:7px 14px;
  border-radius:20px;
  margin-bottom:20px;
}
.why-head .eyebrow .dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--teal);
}
.why-head h2{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:34px;
  line-height:1.2;
  margin-bottom:14px;
}
.why-head p{
  color:var(--text-dim);
  font-size:15.5px;
  line-height:1.6;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media(max-width:980px){
  .why-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .why-grid{grid-template-columns:1fr;}
}

.why-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  padding:28px 24px;
  transition:transform .25s ease, border-color .25s ease;
}
.why-card:hover{
  transform:translateY(-6px);
  border-color:var(--amber);
}
.why-icon{
  width:44px;height:44px;
  border-radius:10px;
  background:rgba(79,168,232,0.12);
  color:var(--amber);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}
.why-icon svg{width:22px;height:22px;}
.why-card h3{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:17px;
  margin-bottom:8px;
}
.why-card p{
  color:var(--text-dim);
  font-size:14px;
  line-height:1.6;
}

/* scroll-reveal animation */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
.why-grid .reveal:nth-child(1){transition-delay:0s;}
.why-grid .reveal:nth-child(2){transition-delay:.12s;}
.why-grid .reveal:nth-child(3){transition-delay:.24s;}
.why-grid .reveal:nth-child(4){transition-delay:.36s;}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
}
/* -------------------------------------------------------------about css-------------------------------------  */
/* ==============================
   MUHAMMAD WAQAS - ABOUT SECTION
================================= */

.mw-about-section {
  --mw-bg: #080b12;
  --mw-card: #101621;
  --mw-text: #f7f8fa;
  --mw-muted: #a8b0bf;
  --mw-accent: #5eead4;
  --mw-border: rgba(255, 255, 255, 0.12);

  position: relative;
  width: 100%;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(94, 234, 212, 0.09),
      transparent 28%
    ),
    var(--mw-bg);
  color: var(--mw-text);
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.mw-about-section *,
.mw-about-section *::before,
.mw-about-section *::after {
  box-sizing: border-box;
}

.mw-about-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

/* Left Image Area */

.mw-about-visual {
  position: relative;
  min-width: 0;
}

.mw-image-frame {
  position: relative;
  width: 100%;
  height: 570px;
  overflow: hidden;
  border: 1px solid var(--mw-border);
  border-radius: 10px;
  background: var(--mw-card);
}

.mw-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(8, 11, 18, 0.8)
  );
  pointer-events: none;
}

.mw-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(15%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.mw-image-frame:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}

.mw-experience-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid var(--mw-border);
  border-radius: 100px;
  background: rgba(8, 11, 18, 0.8);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.mw-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mw-accent);
  box-shadow: 0 0 14px var(--mw-accent);
  animation: mwPulse 1.5s infinite;
}

.mw-code-decoration {
  position: absolute;
  z-index: 3;
  right: -35px;
  top: 45px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
  padding: 22px;
  border: 1px solid var(--mw-border);
  border-radius: 8px;
  background: rgba(16, 22, 33, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.mw-code-decoration span {
  color: var(--mw-accent);
  font-family: monospace;
  font-size: 13px;
}

.mw-code-decoration strong {
  padding-left: 18px;
  color: #ffffff;
  font-size: 15px;
}

/* Right Content */

.mw-about-content {
  min-width: 0;
}

.mw-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--mw-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.mw-section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--mw-accent);
}

.mw-about-content h2 {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--mw-text);
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.mw-about-content h2 span {
  display: block;
  color: var(--mw-accent);
  font-weight: 400;
}

.mw-about-content p {
  max-width: 700px;
  margin: 0 0 18px;
  color: var(--mw-muted);
  font-size: 17px;
  line-height: 1.8;
}

.mw-about-content p strong {
  color: var(--mw-text);
}

.mw-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 38px;
}

.mw-skill-list span {
  padding: 10px 15px;
  border: 1px solid var(--mw-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.035);
  color: #dce1e9;
  font-size: 13px;
  transition: 0.3s ease;
}

.mw-skill-list span:hover {
  border-color: var(--mw-accent);
  background: rgba(94, 234, 212, 0.1);
  color: var(--mw-accent);
  transform: translateY(-3px);
}

.mw-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 17px 22px;
  border: 1px solid var(--mw-accent);
  border-radius: 100px;
  background: var(--mw-accent);
  color: #07100f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.mw-about-button span {
  font-size: 19px;
  transition: transform 0.3s ease;
}

.mw-about-button:hover {
  background: transparent;
  color: var(--mw-accent);
}

.mw-about-button:hover span {
  transform: translate(3px, -3px);
}

@keyframes mwPulse {
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

/* Tablet */

@media (max-width: 900px) {
  .mw-about-section {
    padding: 90px 0;
  }

  .mw-about-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 0 30px;
  }

  .mw-about-visual {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .mw-image-frame {
    height: 620px;
  }

  .mw-code-decoration {
    right: -15px;
  }
}

/* Mobile */

@media (max-width: 560px) {
  .mw-about-section {
    padding: 75px 0;
  }

  .mw-about-container {
    padding: 0 20px;
    gap: 50px;
  }

  .mw-image-frame {
    height: 450px;
  }

  .mw-code-decoration {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 24px);
    min-width: 0;
    margin: -28px auto 0;
  }

  .mw-experience-card {
    left: 14px;
    bottom: 14px;
    padding: 11px 14px;
    font-size: 11px;
  }

  .mw-about-content h2 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .mw-about-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .mw-skill-list {
    margin: 28px 0 34px;
  }

  .mw-about-button {
    width: 100%;
  }
}

/* Small Mobile */

@media (max-width: 380px) {
  .mw-about-container {
    padding: 0 16px;
  }

  .mw-image-frame {
    height: 400px;
  }

  .mw-about-content h2 {
    font-size: 37px;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  .mw-about-section *,
  .mw-about-section *::before,
  .mw-about-section *::after {
    animation: none !important;
    transition: none !important;
  }
}/* ============ WORD SLIDER SECTION ============ */
.about-slider{
  padding:120px 0;
  text-align:center;
}
.slider-heading{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:44px;
  line-height:1.3;
}
.slider-word-wrap{
  display:inline-block;
  overflow:hidden;
  vertical-align:bottom;
}
.slider-word{
  display:inline-block;
  color:var(--amber);
  transition:opacity .4s ease, transform .4s ease;
}
.slider-word.fade-out{
  opacity:0;
  transform:translateY(12px);
}
@media(max-width:600px){
  .slider-heading{font-size:30px;}
}

@media (prefers-reduced-motion: reduce){
  .stat-card{transition:none;}
  .slider-word{transition:none;}
}
   /*------------------------------------------------------------------------------------- contact  */
 *
