:root {
      --bg: #121315;
      --bg-soft: #18191d;
      --panel: rgba(15, 15, 20, 0.88);
      --panel-2: rgba(25, 25, 33, 0.92);
      --text: #f3f4f6;
      --muted: #a7acb7;
      --line: rgba(131, 95, 255, 0.24);
      --accent: #8b5cf6;
      --accent-2: #d946ef;
      --cyan: #37d5ff;
      --card-border: rgba(255,255,255,0.08);
      --shadow: 0 20px 60px rgba(0,0,0,0.45);
      --radius: 24px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 18%, rgba(91, 33, 182, 0.22), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(0, 225, 255, 0.08), transparent 18%),
        linear-gradient(180deg, #111214 0%, #15161a 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.75;
      background-image:
        linear-gradient(90deg, transparent 0 7%, rgba(112, 55, 255, 0.12) 7.1%, transparent 7.2%),
        linear-gradient(180deg, transparent 0 10%, rgba(112, 55, 255, 0.08) 10.1%, transparent 10.2%),
        radial-gradient(circle at 10% 20%, transparent 0 20%, rgba(128,90,213,.06) 20.2%, transparent 20.4%),
        radial-gradient(circle at 78% 34%, transparent 0 18%, rgba(168,85,247,.05) 18.2%, transparent 18.4%);
      background-size: 180px 180px, 180px 180px, 520px 520px, 720px 720px;
      mix-blend-mode: screen;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(14px);
      background: rgba(10, 11, 14, 0.7);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }

    .brand {
      font-weight: 700;
      letter-spacing: 0.02em;
      font-size: 0.98rem;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .nav-links a:hover { color: white; }

    main {
        position: relative;
        z-index: 1;
        background-image: url(../images/main-bg.jpg);
        background-size: cover;
        background-position: 0 600px;
        background-repeat: no-repeat;
    }

    

    section { padding: 88px 0; position: relative; }
    .eyebrow {
      color: #d3d6dd;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.78;
      font-weight:bold;
    }

    .section-kicker {
      font-size: 0.84rem;
      letter-spacing: 0.16em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 10px;
      margin-bottom: 24px;
    }

    h1, h2, h3, h4, p { margin: 0; }
    h1 {
      font-size: clamp(2.8rem, 6vw, 5.7rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 720px;
    }
    h2 {
      font-size: clamp(2rem, 4.4vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }
    .lead {
      margin-top: 18px;
      max-width: 650px;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.8;
    }

    .hero {
      padding-top: 76px;
      padding-bottom: 54px;
      background: #1c1c1c;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 42px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow: 0 10px 30px rgba(139,92,246,0.32);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.08);
    }

    .btn:hover { transform: translateY(-2px); }

    .hero-visual {
      min-height: 460px;
      position: relative;
      border-radius: 40px;
      overflow: hidden;
      /*background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.08), transparent 23%),
        radial-gradient(circle at 50% 30%, rgba(0,255,255,0.18), transparent 24%),
        linear-gradient(145deg, rgba(27,28,35,0.95), rgba(12,12,16,0.95));*/
      /*border: 1px solid rgba(255,255,255,0.06);*/
      /*box-shadow: var(--shadow);*/
    }

    .glow-shape,
    .glow-shape::before,
    .glow-shape::after {
      position: absolute;
      content: "";
      filter: blur(0.5px);
      border-radius: 999px;
      mix-blend-mode: screen;
    }

    .glow-shape {
      width: 140px;
      height: 300px;
      top: 82px;
      left: 160px;
      border: 6px solid rgba(255,255,255,0.65);
      transform: rotate(26deg);
      box-shadow: 0 0 38px rgba(79, 246, 255, 0.42), 0 0 60px rgba(217,70,239,0.28);
    }

    .glow-shape::before {
      width: 120px;
      height: 255px;
      left: 120px;
      top: -35px;
      border: 6px solid rgba(255,255,255,0.62);
      transform: rotate(-12deg);
      box-shadow: 0 0 35px rgba(79, 246, 255, 0.32), 0 0 58px rgba(217,70,239,0.22);
    }

    .glow-shape::after {
      width: 120px;
      height: 240px;
      left: -120px;
      top: 80px;
      border: 6px solid rgba(255,255,255,0.6);
      transform: rotate(-18deg);
      box-shadow: 0 0 35px rgba(79, 246, 255, 0.32), 0 0 58px rgba(217,70,239,0.24);
    }

    .floating-pill {
      position: absolute;
      width: 120px;
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #0d0f13;
      padding: 18px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.34);
    }

    .pill-a { left: -16px; bottom: 90px; background: radial-gradient(circle at 30% 30%, #90f1ff, #42d0ff 62%, #12739e 100%); }
    .pill-b { right: 18px; top: 34px; background: radial-gradient(circle at 30% 30%, #ffd36a, #ff6d28 60%, #8a1a00 100%); }
    .pill-c { right: 36px; bottom: 50px; background: radial-gradient(circle at 30% 30%, #d5d7e0, #8b90a2 65%, #363843 100%); color: #fff; }

    .about-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 32px;
      align-items: start;
    }

    .copy-block p {
      color: var(--muted);
      line-height: 1.9;
      margin-top: 16px;
      font-size: 1rem;
    }

    .signature {
      margin-top: 28px;
      font-size: clamp(1.15rem, 2vw, 1.55rem);
      color: #cc8fff;
      font-weight: 600;
    }

    .profile-card {
      background: linear-gradient(180deg, rgba(19,20,26,0.96), rgba(9,10,14,0.98));
      border: 1px solid var(--card-border);
      border-radius: 28px;
      padding: 26px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 110px;
    }

    .profile-top {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 18px;
    }
    .profile-image {
        width: 100px;
    }

    .avatar {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fbcfe8, #c084fc, #38bdf8);
      display: grid;
      place-items: center;
      color: #111;
      font-weight: 800;
      font-size: 1.3rem;
    }

    .tag {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(139,92,246,.14);
      border: 1px solid rgba(139,92,246,.26);
      color: #d8c4ff;
      font-size: 0.84rem;
      margin-top: 14px;
    }

    .profile-card ul {
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.8;
      margin: 16px 0 0;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 28px;
    }

    .step-1 {
        background-image: url(../images/plastic1.png);
        background-repeat: no-repeat;
        background-position: center;
        padding: 40px;
        position: relative;
        background-size: contain;
    }

    .step-2 {
        background-image: url(../images/plastic2.png);
        background-repeat: no-repeat;
        background-position: center;
        padding: 40px;
        position: relative;
        background-size: contain;
    }

    .step-3 {
        background-image: url(../images/plastic3.png);
        background-repeat: no-repeat;
        background-position: center;
        padding: 40px;
        position: relative;
        background-size: contain;
    }

    .step-4 {
        background-image: url(../images/plastic4.png);
        background-repeat: no-repeat;
        background-position: center;
        padding: 40px;
        position: relative;
        background-size: contain;
    }

    .step::before {
      content: "";
      position: absolute;
      inset: 0;
      /*background: radial-gradient(circle at right top, rgba(139,92,246,.28), transparent 35%);*/
      pointer-events: none;
    }

    .step small {
      display: inline-block;
      color: #d4d7df;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
      opacity: .75;
    }

    .step h3 {
      font-size: 1.45rem;
      margin-bottom: 12px;
    }

    .step p {
      color: var(--muted);
      line-height: 1.7;
    }

    .skills-wrap {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 26px;
      align-items: center;
    }

    .skillcard {
      background-image: url('../images/note-page-without-text.png');
      background-size: cover;
      height: 760px;
      margin:-29px;
    }

    .skills-card {
      position: relative;
      background: linear-gradient(180deg, #efe2b2, #e5d09c);
      color: #221b10;
      border-radius: 16px;
      padding: 42px 36px;
      box-shadow: 0 25px 60px rgba(0,0,0,.34);
      font-family: 'Cormorant Garamond', serif;
      overflow: hidden;
    }
.planet1{position: relative;}
.planet1new {
  position: relative;
  width: 50px;
  margin-left: 110px;
  margin-bottom: 10px;
  margin-top: 84px;
}
.planetyellow {
  position: relative;
  width: 50px;
  margin-left: 0px;
  margin-bottom: 10px;
  top: -29px;
  float: right;
}
.ptag{color: #000!important;
  text-align: center;
  font-family: "Alfa Slab One";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 100px;
  z-index: 1000;}
  .mtag{color: #f5f5f5!important;
  text-align: center;
  font-family: "Alfa Slab One";
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 82px;
  z-index: 1000;
      left:6px;
  }
  .rtag{color: #fff!important;
  text-align: center;
  font-family: "Alfa Slab One";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 180px;
  left: 60px;
  z-index: 1000;}
 .gtag{color: #fff!important;
  text-align: center;
  font-family: "Alfa Slab One";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 180px;
  left: 60px;
  z-index: 1000;}
  .row.text-cetre img {
  width: 70%;
  padding: 75px 0px 50px 350px;}
    .skills-card::before,
    .skills-card::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 26px;
      background: repeating-linear-gradient(180deg, transparent 0 12px, rgba(0,0,0,0.08) 12px 14px);
      opacity: .7;
    }
    .skills-card::before { left: 0; }
    .skills-card::after { right: 0; }

    .skills-card h3 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 24px;
      letter-spacing: .04em;
    }

    .skill-list {
      display: grid;
      gap: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: .96rem;
      padding: 100px 0px 0px 0px;
    }
.skill-list h3{color: #212121;
text-align: center;
font-family: "Abhaya Libre ExtraBold";
font-size: 40px;
font-style: normal;
font-weight: 800;
line-height: 100%; /* 40px */
text-transform: uppercase;
    padding-top:40px;
}
    .skill-item {
      display: grid;
      grid-template-columns: 1.25fr auto 0.95fr;
      gap: 10px;
      align-items: center;
      padding-left: 100px;
      
    }
    .skill-item span {
      
      color:#000;
    }
.tagnew{padding: 100px;
  color: #000;
  text-align: center;
  font-family: "Academy Engraved LET";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;}
    .dots {
      border-bottom: 2px dotted rgba(34,27,16,.4);
      transform: translateY(-1px);
    }

    .skills-side {
      display: grid;
      gap: 16px;
    }

    .orb {
      min-height: 132px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 800;
      letter-spacing: .08em;
      box-shadow: inset 0 8px 20px rgba(255,255,255,0.24), 0 25px 45px rgba(0,0,0,.28);
    }

    .orb.red { background: radial-gradient(circle at 30% 30%, #ffe17a, #ff5e27 55%, #7c0e00); color: #fff7e2; }
    .orb.blue { background: radial-gradient(circle at 30% 30%, #bcf5ff, #49d4ff 58%, #145e90); color: #051b2a; }
    .orb.gray { background: radial-gradient(circle at 30% 30%, #e4e7ef, #8d93a6 58%, #2b2f39); color: #fff; }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 32px;
    }

    .project-card {
      background: linear-gradient(180deg, rgba(15,16,20,.96), rgba(9,10,14,.98));
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 24px;
      padding: 18px;
      box-shadow: var(--shadow);
      transition: transform .25s ease, border-color .25s ease;
    }

    .project-card:hover {
      transform: translateY(-4px);
      border-color: rgba(139,92,246,0.45);
    }

    .project-label {
      color: var(--cyan);
      font-size: 0.75rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 700;
      margin: 6px 6px 14px;
    }

    .project-image {
      aspect-ratio: 1.15 / 1;
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.05);
      position: relative;
      background: #1b1d24;
    }

    .project-image::before {
      /*content: attr(data-title);*/
      position: absolute;
      inset: auto 18px 18px 18px;
      z-index: 1;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: rgba(255,255,255,0.92);
      line-height: 1;
      text-shadow: 0 6px 20px rgba(0,0,0,0.38);
    }

    .bg-nike { background: linear-gradient(135deg, #f0ebcf, #d5cfb1); }
    .bg-cult { background: linear-gradient(135deg, #6c2e95, #3d195f); }
    .bg-charge { background: linear-gradient(135deg, #031816, #00a99d); }
    .bg-zestee { background: linear-gradient(135deg, #ffd337, #ffb200); }
    .bg-matrimony { background: linear-gradient(135deg, #f7d8ea, #ebc0dd); }
    .bg-icons { background: linear-gradient(135deg, #d5d0df, #8e84a7); }
    .bg-vivienne { background: linear-gradient(135deg, #f0ece7, #cfc2b4); }
    .bg-3d { background: linear-gradient(135deg, #6b1532, #221323); }

    .project-card h3 {
      color: #F5F5F5;
      font-family: "Plus Jakarta Sans";
      font-size: 22px;
      font-style: normal;
      font-weight: 600;
      line-height: 28px; /* 127.273% */
      letter-spacing: 0.22px;
      margin: 0 6px 10px;
    }

    .project-card .effect {
      color: #c8a8ff;
      font-size: 0.92rem;
      margin: 0 6px 10px;
    }

    .project-card p {
      margin: 0 6px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.96rem;
    }

    .project-link {
      display: inline-flex;
      margin: 18px 6px 6px;
      color: white;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .contact-card {
      /*display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;*/
      background: linear-gradient(180deg, rgba(13,14,18,.96), rgba(9,10,14,.98));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 22px;
      padding: 22px;
      margin-top: 28px;
      box-shadow: var(--shadow);
    }

    .contact-item {
      /*background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);*/
      border-radius: 16px;
      padding: 18px;
      /*min-height: 112px;*/
    }

    .contact-item .label {
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .contact-item a,
    .contact-item span {
      font-weight: 600;
      color: #d8c4ff;
      word-break: break-word;
    }

    footer {
      padding: 28px 0 60px;
      color: var(--muted);
      text-align: center;
      font-size: .92rem;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .about-grid,
      .skills-wrap {
        grid-template-columns: 1fr;
      }

      .steps,
      .projects-grid,
      .contact-card {
        grid-template-columns: repeat(2, 1fr);
      }

      .profile-card {
        position: static;
      }
    }

    @media (max-width: 720px) {
      section { padding: 70px 0; }
      .nav-wrap { gap: 16px; align-items: flex-start; flex-direction: column; }
      .nav-links { gap: 14px; }
      .hero-visual { min-height: 360px; }
      .glow-shape { left: 110px; top: 84px; width: 100px; height: 220px; }
      .pill-a, .pill-b, .pill-c { width: 92px; font-size: .7rem; }
      .steps,
      .projects-grid,
      .contact-card {
        grid-template-columns: 1fr;
      }
       .step-1 {
        
        padding: 40px 59px 40px 90px!important;
       
    }

    .step-2 {
       
        padding: 40px 59px 40px 90px!important;
       
    }

    .step-3 {
       
        padding: 40px 59px 40px 90px!important;
       
    }

    .step-4 {
       
        padding: 40px 59px 40px 90px!important;
       
    }
      .skills-card { padding: 34px 24px; }
      .skill-item { grid-template-columns: 1fr auto .9fr; font-size: .9rem; }
    }
    .smalldes{font-size: 13px;
  margin-top: 10px;
  line-height: 24px;
  color: var(--muted);
  font-weight: 600;}

  /* Container (optional, like Bootstrap) */
/*.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}*/

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Columns (base) */
[class^="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* 12-column grid */
.col-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
.col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3  { flex: 0 0 25%;     max-width: 25%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6  { flex: 0 0 50%;     max-width: 50%; }
.col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9  { flex: 0 0 75%;     max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%;    max-width: 100%; }

/* Small devices (≥576px) */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-2  { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-md-5  { flex: 0 0 41.666%; max-width: 41.666%; }
  .width50 img {width:300px; margin: 15px auto;}
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-2  { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-lg-5  { flex: 0 0 41.666%; max-width: 41.666%; }
  .width50 img {width:300px; margin: 15px auto;}
 
}

.padd-0 {
  padding:0;
}

.padl-0 {
  padding-left:5px;
}

.text-center {
    text-align:center;
}