@font-face {
  font-family: "cubic";
  src: url("./fonts/cubic.ttf") format("truetype");
}

@font-face {
  font-family: "syne";
  src: url("/fonts/Syne-Regular.otf") format("opentype");
}

@font-face {
  font-family: "ink";
  src: url("/fonts/WhyteInktrap-Bold.ttf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: white;
  font-family: sans-serif;
  overflow-x: hidden;
}

#main {
  overflow: hidden;
}

/* loader */

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: black;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;

  transform-origin: top;
}

.cursor-coords{
  position:fixed;
  pointer-events:none;
  z-index:9999;
  font-family:monospace;
  font-size:9px;
  color: #ff4500;
}





/* percentage */

.percent-wrapper {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.percent {
  font-size: 3rem;
  filter: blur(10px);
  opacity: .8;
  font-family: "cubic", sans-serif;
}

/* hero */

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  overflow: hidden;
}


.hero .hero-section-warper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Top Text */
.hero .hero-section-warper .top-text {
  display: flex;
  align-items: center;
}

.hero .hero-section-warper .top-text h1 {
  font-family: "syne";
  font-size: 10rem;
  font-weight: 500;
}

/* Top Text Image Section */
.hero .hero-section-warper .top-text-img {
  display: flex;
  flex-direction: column;
}

.hero .hero-section-warper .top-text-img .top-img {
  height: 90px;
  width: 200px;
  background-image: url(/images/creative-img.avif);
  border-radius: 8px;
  background-size: cover;
}

.hero .hero-section-warper .top-text-img p {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  width: 200px;
}

.hero .hero-section-warper .top-text-img p span {
  color: orangered;
}

/* Middle Text */
.hero .hero-section-warper .middle-text {
  font-family: "ink";
}

.hero .hero-section-warper .middle-text .text-m h1 {
  display: flex;
  align-items: center;
  font-size: 7.5rem;
  color: orangered;
  font-weight: 600;
}

.hero .hero-section-warper .middle-text .text-m h1 .toggle-img img {
  margin-top: 18px;
  height: 120px;
  rotate: 180deg;
}

/* Bottom Text */
.hero .hero-section-warper .bottom-text {
  display: flex;
  align-items: center;
  position: relative;
}

.hero .hero-section-warper .bottom-text img {
  position: absolute;
  bottom: 0;
  right: -2%;
  transform: rotate(10deg);
}

.hero .hero-section-warper .bottom-text h1 {
  font-family: "ink";
  font-size: 9.5rem;
}

.hero .hero-section-warper .bottom-text .designer-i {
  height: 110px;
  width: 30px;
  background-image: url(images/designer\ 1.svg);
  background-size: cover;
  background-position: center;
  border-radius: 20rem;
}

/* Bottom paragraph */
.hero .hero-section-warper p {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
}

.hero .hero-section-warper p .active-green {
  display: inline-block;
  align-items: center;
  background-color: rgb(121, 236, 121);
  padding: 5px 10px;
  border-radius: 2%;
  margin-left: 5px;
}

/* Mobile subtitle – hidden on desktop */
.hero-mobile-sub {
  display: none;
}

/* Desktop / Mobile toggle utilities */
.mobile-only {
  display: none;
}

.desktop-only {
  display: inline;
}

/* hamburger button */

.menu-btn {
  position: absolute;
  top: 30px;
  right: 40px;

  width: 40px;
  height: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;

  cursor: pointer;
  z-index: 100;
}

.line {
  width: 30px;
  height: 2px;
  background: white;
  display: block;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;

  width: 50%;
  height: 100vh;

  background: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateX(100%);

  z-index: 20;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nav a {
  font-size: 2rem;
  text-decoration: none;
  color: white;

  opacity: 0;
  transform: translateY(40px);
}



/* canvas */

#webgl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* magnetic cursor */

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* outer ring */
.cursor-ring {
  width: 35px;
  height: 35px;
  border: 2px solid #ff6a00;
  border-radius: 50%;
}

/* inner dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #ff6a00;
  border-radius: 50%;
}




/* ======== About Section ======== */

.about {
  position: relative;
  z-index: 10;
  width: 100%;
  will-change: transform;
}

.about {
  position: relative;
  z-index: 10;
  transform: translateY(120px);
}



.about-inner {
  background: #f5f5f0;
  color: #1a1a1a;
  width: 100%;
  min-height: 100vh;
  border-radius: 40px 40px 0 0;
  padding: 80px 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image {
  flex: 0 0 420px;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.1s ease-out;
}

.about-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #888;
  margin-bottom: 30px;
}

.about-heading {
  font-family: "syne", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}

.about-heading span {
  color: orangered;
  font-style: italic;
}

.about-description {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
  margin-bottom: 60px;
}

.about-stats {
  display: flex;
  gap: 60px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: "ink", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}


/* ======== Services Section ======== */

.services-section {
  background: #eaeaea;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  border-radius: 0 0 0 0;
}

.services-card {
  background: #111;
  color: #fff;
  border-radius: 30px;
  padding: 80px;
  max-width: 1400px;
  width: 100%;

  margin-top: 50px;
}

/* Top label */
.services-top {
  margin-bottom: 20px;
}

.services-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Main title */
.services-title-wrap {
  overflow: hidden;
  margin-bottom: 10px;
}

.services-title {
  font-family: "ink", sans-serif;
  font-size: clamp(48px, 13vw, 200px);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* Divider */
.services-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 30px 0 40px;
  transform-origin: left;
}

/* Description */
.services-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 620px;
  margin-bottom: 70px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.04);
}

.service-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8rem;
  color: orangered;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-num {
  transform: translateX(6px);
}

.service-name {
  font-family: "syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.service-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

/* Hover underline */
.service-line {
  height: 2px;
  background: orangered;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-line {
  transform: scaleX(1);
}


/* ======== Work Showcase Section ======== */

.work-section {
  background: #eaeaea;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
}

.work-card {
  background: #111;
  color: #fff;
  border-radius: 30px;
  padding: 80px;
  max-width: 1400px;
  width: 100%;
}

/* Top label */
.work-top {
  margin-bottom: 20px;
}

.work-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Main title */
.work-title-wrap {
  overflow: hidden;
  margin-bottom: 10px;
}

.work-title {
  font-family: "ink", sans-serif;
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
}

/* Divider */
.work-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 30px 0 50px;
  transform-origin: left;
}

/* Grid — 2 columns for larger cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  perspective: 1000px;
}

/* Each work item */
.work-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.05);
}

/* Image wrapper */
.work-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-item:hover .work-img-wrap img {
  transform: scale(1.08);
}

/* Info block */
.work-info {
  padding: 28px 28px 32px;
}

.work-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8rem;
  color: orangered;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.work-item:hover .work-num {
  transform: translateX(6px);
}

.work-name {
  font-family: "syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.work-desc {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* Work item link wrapper */
.work-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* View All Work link */
.view-all-work {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 40px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.view-all-work:hover {
  color: orangered;
  gap: 14px;
}

.view-all-work i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.view-all-work:hover i {
  transform: translate(3px, -3px);
}


/* ======== Skills / Tools Section ======== */

.skills-section {
  background: #0b0b0f;
  padding: 120px 40px;
}

.skills-header {
  text-align: center;
  margin-bottom: 70px;
}

.skills-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 16px;
}

.skills-title {
  font-family: "ink", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -2px;
  color: #fff;
}

/* Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each box */
.skill-box {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.skill-box:hover {
  transform: scale(1.06);
  border-color: var(--glow, rgba(255, 100, 50, 0.35));
  box-shadow: 0 0 25px color-mix(in srgb, var(--glow, #ff6432) 25%, transparent),
    0 0 60px color-mix(in srgb, var(--glow, #ff6432) 10%, transparent),
    inset 0 0 20px color-mix(in srgb, var(--glow, #ff6432) 6%, transparent);
  background: color-mix(in srgb, var(--glow, #ff6432) 4%, transparent);
}

.skill-box i {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.skill-box:hover i {
  color: var(--glow, #fff);
}

.skill-box span {
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.skill-box:hover span {
  color: rgba(255, 255, 255, 0.8);
}

/* Empty decorative boxes */
.skill-box.empty {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.04);
  background: transparent;
  cursor: default;
}

.skill-box.empty:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  background: transparent;
}


/* ======== Contact Section ======== */

.contact-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0b0b0b 0%, #111113 30%, #161618 55%, #0b0b0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  overflow: hidden;
}

/* Animated background blobs */
.contact-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #333, transparent 70%);
  top: -10%;
  right: -5%;
  animation: blob-float 12s ease-in-out infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff450030, transparent 70%);
  bottom: -5%;
  left: -8%;
  animation: blob-float 15s ease-in-out infinite alternate-reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #2a2a2a, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blob-float 10s ease-in-out infinite alternate;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* Content wrapper */
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.contact-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 24px;
}

.contact-heading {
  font-family: "ink", sans-serif;
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-heading span {
  background: linear-gradient(135deg, #ff6b35, #ff4500, #ff2d78);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-sub {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 60px;
}

/* Glassmorphism card */
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

/* Contact Form */
.contact-form {
  text-align: left;
}

.form-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 20px;
  border-radius: 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.form-group:hover {
  background: rgba(255, 255, 255, 0.03);
}

.form-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group:focus-within .form-icon {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.form-icon i {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.form-group:focus-within .form-icon i {
  color: #a855f7;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.form-group:focus-within .form-field label {
  color: rgba(255, 255, 255, 0.55);
}

.form-field input,
.form-field textarea {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(168, 85, 247, 0.4);
}

.form-field textarea {
  min-height: 80px;
  line-height: 1.6;
}

/* Submit button */
.contact-submit-btn {
  width: 100%;
  padding: 18px 32px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(255, 69, 0, 0.1));
  color: rgba(255, 255, 255, 0.85);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(255, 69, 0, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2), 0 4px 15px rgba(255, 69, 0, 0.1);
}

.contact-submit-btn:hover::before {
  opacity: 1;
}

.contact-submit-btn .btn-text,
.contact-submit-btn .btn-icon {
  position: relative;
  z-index: 1;
}

.contact-submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
  transform: translate(3px, -3px);
}

/* Loader animation */
.btn-loader i {
  position: relative;
  z-index: 1;
  animation: spin 1s linear infinite;
  font-size: 1.2rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form status message */
.form-status {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
  min-height: 24px;
  transition: all 0.3s ease;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

/* Footer line */
.contact-footer {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
}

/* Social links */
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.social-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(255, 255, 255, 0.08);
}

.social-link i {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

/* Brand hover colors */
.social-link[aria-label="Instagram"]:hover {
  border-color: rgba(225, 48, 108, 0.5);
  color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
}

.social-link[aria-label="GitHub"]:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.social-link[aria-label="LinkedIn"]:hover {
  border-color: rgba(0, 119, 181, 0.5);
  color: #0077b5;
  box-shadow: 0 0 20px rgba(0, 119, 181, 0.2);
}


/* ======== Responsive ======== */

/* Tablet – up to 1024px */
@media (max-width: 1024px) {

  .cursor-coords{
    display: none;
  }
  .hero .hero-section-warper .top-text h1 {
    font-size: 7rem;
  }

  .hero .hero-section-warper .middle-text .text-m h1 {
    font-size: 5.5rem;
  }

  .hero .hero-section-warper .middle-text .text-m h1 .toggle-img img {
    height: 90px;
  }

  .hero .hero-section-warper .bottom-text h1 {
    font-size: 7rem;
  }

  .hero .hero-section-warper .bottom-text .designer-i {
    height: 80px;
    width: 24px;
  }

  .about-heading {
    font-size: 3.5rem;
  }

  .about-stats {
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-card {
    padding: 60px;
  }

  .services-title {
    letter-spacing: -2px;
  }

  .service-name {
    font-size: 1.2rem;
  }

  .work-card {
    padding: 60px;
  }

  .work-title {
    letter-spacing: -2px;
  }

  .skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-inner {
    gap: 40px;
  }

  .about-image {
    flex: 0 0 340px;
    height: 440px;
  }

  .work-grid {
    gap: 24px;
  }

  .work-img-wrap {
    height: 220px;
  }

  .contact-section {
    padding: 100px 30px;
  }
}

/* Small tablet – up to 768px */
@media (max-width: 768px) {

  .cursor-coords {
    display: none;
  }

  .hero {
    padding: 80px 24px 40px;
  }

  .hero .hero-section-warper {
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .hero .hero-section-warper .top-text {
    flex-direction: column;
    align-items: center;
  }

  .hero .hero-section-warper .top-text h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero .hero-section-warper .top-text-img {
    display: none;
  }

  .hero .hero-section-warper .middle-text .text-m h1 {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
    justify-content: center;
  }

  .toggle-img,
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline !important;
  }

  .hero .hero-section-warper .bottom-text {
    justify-content: center;
  }

  .hero .hero-section-warper .bottom-text h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero .hero-section-warper .bottom-text .designer-i {
    display: none;
  }

  .hero .hero-section-warper .bottom-text img {
    display: none;
  }

  .hero-mobile-sub {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .menu-panel {
    width: 70%;
  }

  .about-inner {
    padding: 60px 40px;
  }

  .about-heading {
    font-size: 2.8rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .about-inner {
    flex-direction: column;
  }

  .about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
    height: 400px;
  }

  .services-section {
    padding: 60px 20px;
  }

  .services-card {
    padding: 50px 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-title {
    letter-spacing: -2px;
  }

  .services-desc {
    font-size: 0.9rem;
    margin-bottom: 50px;
  }

  .service-card {
    padding: 28px 22px;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .service-text {
    font-size: 0.78rem;
  }

  .work-section {
    padding: 60px 20px;
  }

  .work-card {
    padding: 50px 36px;
  }

  .work-grid {
    gap: 20px;
  }

  .work-img-wrap {
    height: 200px;
  }

  .work-info {
    padding: 22px 22px 26px;
  }

  .work-name {
    font-size: 1.2rem;
  }

  .work-desc {
    font-size: 0.78rem;
  }

  .skills-section {
    padding: 80px 20px;
  }

  .skills-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .skill-box i {
    font-size: 2rem;
  }

  .skill-box span {
    font-size: 0.65rem;
  }

  .contact-section {
    padding: 80px 20px;
  }

  .contact-card {
    padding: 36px 28px;
  }

  .blob-1 {
    width: 350px;
    height: 350px;
  }

  .blob-2 {
    width: 280px;
    height: 280px;
  }

  .blob-3 {
    width: 200px;
    height: 200px;
  }
}

/* Mobile – up to 480px */
@media (max-width: 480px) {

  .cursor-coords {
    display: none;
  }

  .hero {
    padding: 0 16px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero .hero-section-warper {
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .hero .hero-section-warper .top-text {
    flex-direction: column;
    align-items: center;
  }

  .hero .hero-section-warper .top-text h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero .hero-section-warper .top-text-img {
    display: none;
  }

  .hero .hero-section-warper .middle-text .text-m h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    justify-content: center;
  }

  .toggle-img,
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline !important;
  }

  .hero .hero-section-warper .bottom-text {
    justify-content: center;
  }

  .hero .hero-section-warper .bottom-text h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero .hero-section-warper .bottom-text .designer-i {
    display: none;
  }

  .hero .hero-section-warper .bottom-text img {
    display: none;
  }

  .hero-mobile-sub {
    display: block;
    font-size: 0.78rem;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 6px;
  }

  .hero .hero-section-warper > p:last-child {
    font-size: 0.7rem;
  }

  .menu-btn {
    top: 20px;
    right: 20px;
  }

  .menu-panel {
    width: 100%;
  }

  .percent {
    font-size: 2rem;
  }

  .percent-wrapper {
    right: 20px;
    bottom: 20px;
  }

  .about-inner {
    padding: 40px 20px;
    border-radius: 24px 24px 0 0;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-description {
    font-size: 0.85rem;
    margin-bottom: 40px;
  }

  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .services-section {
    padding: 100px 12px;
  }

  .services-card {
    padding: 30px 16px;
    border-radius: 20px;
    margin-top: 30px;
  }

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

  .services-title {
    font-size: clamp(40px, 12vw, 80px);
    letter-spacing: -1px;
    word-break: normal;
    overflow-wrap: normal;
  }

  .services-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .services-divider {
    margin: 20px 0 28px;
  }

  .services-desc {
    font-size: 0.82rem;
    margin-bottom: 36px;
  }

  .service-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .service-num {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .service-name {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .service-text {
    font-size: 0.75rem;
    margin-bottom: 18px;
  }

  .work-section {
    padding: 40px 12px;
  }

  .work-card {
    padding: 30px 16px;
    border-radius: 20px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-title {
    letter-spacing: -1px;
  }

  .work-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .work-divider {
    margin: 20px 0 30px;
  }

  .work-img-wrap {
    height: 180px;
  }

  .work-info {
    padding: 18px 16px 22px;
  }

  .work-num {
    font-size: 0.7rem;
  }

  .work-name {
    font-size: 1rem;
  }

  .work-desc {
    font-size: 0.75rem;
  }

  .skills-section {
    padding: 60px 12px;
  }

  .skills-header {
    margin-bottom: 40px;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .skill-box {
    border-radius: 12px;
    gap: 8px;
  }

  .skill-box i {
    font-size: 1.6rem;
  }

  .skill-box span {
    font-size: 0.58rem;
  }

  .contact-section {
    padding: 60px 16px;
    overflow: hidden;
  }

  .contact-content {
    max-width: 100%;
    padding: 0 4px;
  }

  .contact-heading {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
    letter-spacing: -1px;
  }

  .contact-sub {
    font-size: 0.85rem;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 28px 18px;
    border-radius: 18px;
    gap: 20px;
    margin-bottom: 40px;
  }

  .form-group {
    padding: 10px 14px;
    gap: 14px;
  }

  .form-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .form-icon i {
    font-size: 1.1rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 0.88rem;
  }

  .form-field label {
    font-size: 0.6rem;
  }

  .contact-submit-btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .contact-socials {
    gap: 16px;
    margin-bottom: 36px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .social-link i {
    font-size: 1.1rem;
  }

  .blob-1 {
    width: 250px;
    height: 250px;
  }

  .blob-2 {
    width: 200px;
    height: 200px;
  }

  .blob-3 {
    width: 150px;
    height: 150px;
  }
}