:root {
  --bg: #f4f5f7;
  --panel: #ffffff;
  --muted: #575757;
  --pink: #ff2fa6;
  --white: #000000;
  --transparent-bg: rgba(0, 0, 0, 0.03);
}
:root[data-theme="dark"] {
  --bg: #0b0b0d;
  --panel: #111214;
  --muted: #ffffff;
  --pink: #ff4db8;
  --white: #ffffff;
  --transparent-bg: rgba(255, 255, 255, 0.02);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} /* hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} /* background canvas covers full hero */
.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0.85;
} /* clickable logo top-left */
.logo {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 10;
  text-decoration: none;
  color: var(--white);
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 700;
}
.logo-line {
  font-size: 18px;
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 12px;
  background: linear-gradient(90deg, var(--pink), #ff0055);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
} /* heartbeat text behind bot */
.heartbeat {
  position: absolute;
  z-index: 1;
  font-weight: 900;
  font-size: 100px;
  letter-spacing: 6px;
  opacity: 0.06;
  transform: translateY(-6%);
  pointer-events: none;
  white-space: nowrap;
  animation: beat 4.1s infinite;
  color: var(--pink);
}
@keyframes beat {
  0% {
    transform: scale(1) translateY(-6%);
  }
  25% {
    transform: scale(1.02) translateY(-6%);
  }
  50% {
    transform: scale(1.05) translateY(-6%);
  }
  100% {
    transform: scale(1) translateY(-6%);
  }
} /* bot container */
.bot-wrap {
  position: relative;
  z-index: 5;
  width: 360px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  transition: transform 250ms ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
  will-change: transform;
  animation: float 40s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
.bot-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  transform-origin: center;
  transition: filter 200ms ease, transform 200ms ease;
  border-radius: 10px;
} /* hover glow */
.bot-wrap:hover img {
  filter: drop-shadow(0 0 28px rgba(0, 0, 0, 0.45)) saturate(1.05);
} /* hero info overlay */
.hero-info {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 6;
  text-align: right;
  max-width: 360px;
}
.name {
  margin: 0;
  font-size: 20px;
}
.desc {
  margin: 6px 0 16px;
  color: var(--muted);
}
.cta {
  display: inline-block;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--pink), #ca1258);
  color: var(--panel);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
} /* ✅ make hero info visible and responsive on small screens */
@media (max-width: 480px) {
  .hero-info {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    max-width: 100%;
    padding: 0 20px;
  }
  .cta {
    display: inline-block;
    margin-top: 10px;
  }
} /* tiny signature */
.tiny-sign {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  font-size: 13px;
  opacity: 0.85;
  pointer-events: none;
  color: var(--muted);
}
.theme-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--panel);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(255, 0, 128, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.bot-icon {
  width: 20px;
  height: 20px;
} /* responsive adjustments */
@media (max-width: 900px) {
  .heartbeat {
    font-size: 64px;
    opacity: 0.06;
  }
  .bot-wrap {
    width: 280px;
    height: 420px;
  }
  .hero-info {
    right: 4%;
    bottom: 6%;
    max-width: 240px;
    text-align: center;
  }
  .hero-info {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .logo {
    left: 14px;
    top: 14px;
  }
  .bot-wrap {
    width: 220px;
    height: 320px;
  }
  .heartbeat {
    display: none;
  }
  .hero-info {
    display: none;
  }
  .cta {
    display: none;
  }
} /* Main content */
.container {
  padding: 60px;
  background: linear-gradient(180deg, transparent, var(--transparent-bg));
  color: var(--white);
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 480px;
  animation: fadeInUp 1s ease forwards;
}
.about-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--pink);
}
.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--white);
}
.skills {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}
.skill-item i {
  font-size: 36px;
  color: var(--pink);
  margin-bottom: 6px;
}
.skill-item span {
  font-size: 14px;
  color: var(--white);
}
.skill-item:hover {
  transform: translateY(-6px);
  color: var(--pink);
}
.about-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease forwards;
}
.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
} /* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
} /* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text {
    flex: 1 1 100%;
  }
  .about-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }
} /* Tools container */
.top-bar .tools-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
} /* Tool icons (SVGs or PNGs) */
.tool-link img,
.tool-link svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.tools-instruction {
  font-size: 14px;
  color: var(--white);
  margin-left: 2rem;
} /* Hover effect: scale only (keep original colors) */
.tool-link:hover img,
.tool-link:hover svg {
  transform: scale(1.2);
} /* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
} /* Project Card */
.project-card {
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
} /* Card Image */
.project-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-card:hover img {
  transform: scale(1.05);
} /* Project Info */
.project-info {
  padding: 16px;
}
.project-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.project-info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
} /* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.tag {
  font-size: 12px;
  background: var(--transparent-bg);
  padding: 4px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
} /* CTA Button */
.project-info .cta {
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(90deg, var(--pink), #ca1258);
  color: var(--panel);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.project-info .cta:hover {
  transform: scale(1.05);
} /* Filter Buttons */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.filter-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: var(--panel);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
.filter-btn:hover {
  transform: scale(1.05);
}
.filter-btn.active {
  background: linear-gradient(90deg, var(--pink), #ca1258);
  color: var(--panel);
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.project-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.project-card:hover img {
  transform: scale(1.05);
}
.extra-images {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 8px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.project-card:hover .extra-images {
  opacity: 1;
  pointer-events: auto;
}
.extra-images img {
  width: 30%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
} /* === Blender Project Special Hover === */
.blender-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  max-width: 380px;
  margin: 0 auto 40px auto; /* ✅ centers the card */
}
.blender-card:hover {
  transform: scale(1.03) rotateY(6deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.blender-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.blender-card:hover img {
  transform: scale(1.1);
  filter: brightness(80%);
}
.blender-card .project-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  transition: bottom 0.4s ease;
}
.blender-card:hover .project-info {
  bottom: 0;
} /* ✅ Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .blender-card {
    max-width: 90%;
    transform: none !important;
    perspective: none;
  }
  .blender-card img {
    border-radius: 16px;
  }
  .blender-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  .blender-card .project-info {
    position: relative;
    bottom: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(0, 0, 0, 0.9);
  }
  .blender-card:hover .project-info {
    bottom: 0;
  }
  .blender-card .project-info p {
    font-size: 0.9rem;
  }
}
.tools-showcase {
  padding: 60px 20px;
  text-align: center;
}
.tools-showcase h2 {
  font-size: 28px;
  color: var(--pink);
  margin-bottom: 12px;
}
.tools-showcase p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 40px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}
.tool-card {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.tool-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
.tool-info {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tool-card:hover .tool-info {
  opacity: 1;
}
.tool-info h3 {
  font-size: 14px;
  margin: 4px 0;
  color: var(--pink);
}
.tool-info p {
  font-size: 12px;
  color: var(--muted);
}
.cta-tool {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  background: linear-gradient(90deg, #ca1258, #ca1258);
  color: var(--panel);
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.cta-tool:hover {
  transform: scale(1.05);
} /* === UI Showcase Section === */
#ui-showcase {
  padding: 60px 20px;
  text-align: center;
}
#ui-showcase h2 {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 8px;
}
#ui-showcase p {
  color: var(--muted);
  margin-bottom: 40px;
} /* === Grid for UI Projects === */
#ui-showcase .ui-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-content: center;
  justify-items: center;
  align-items: center;
} /* === iPhone Card === */
#ui-showcase .ui-project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
} /* === iPhone Frame === */
#ui-showcase .iphone-frame {
  width: 260px;
  height: 530px;
  border: 14px solid #222;
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
} /* Reflection Effect */
#ui-showcase .iphone-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  transform: skewX(-20deg);
  pointer-events: none;
} /* Notch */
#ui-showcase .iphone-frame::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 3px;
  background: #333;
  z-index: 2;
} /* Screen */
#ui-showcase .iphone-frame .screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
#ui-showcase .iphone-frame .screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: auto;
  transform: scale(1);
  transform-origin: top center;
  transition: transform 0.3s ease;
} /* On hover: subtle zoom and glow */
#ui-showcase .iphone-frame:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(255, 47, 166, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
#ui-showcase .iphone-frame:hover .screen iframe {
  transform: scale(1.03);
} /* === Info Section === */
#ui-showcase .ui-info {
  text-align: center;
  max-width: 270px;
  margin-top: 15px;
}
#ui-showcase .ui-info h3 {
  margin-bottom: 4px;
  color: var(--white);
}
#ui-showcase .ui-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
} /* Tags */
#ui-showcase .ui-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 15px;
} /* CTA Button */
#ui-showcase .ui-info .cta {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.3s ease;
}
#ui-showcase .ui-info .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 47, 166, 0.4);
} /* === Responsive === */
@media (max-width: 768px) {
  #ui-showcase .ui-projects-grid {
    grid-template-columns: 1fr;
  }
  #ui-showcase .iphone-frame {
    width: 220px;
    height: 450px;
  }
} 
/* iPhone frame - static version */
#app-projects .iphone-frame {
  width: 300px;
  height: 600px;
  border: 16px solid #222;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  background: #111;
  /* Remove transition to prevent any transform effects */
  transition: none;
}

/* Remove hover effect entirely */
#app-projects .iphone-frame:hover {
  transform: none;
}
#app-projects .tablet-frame {
  transition: none;
}

#app-projects .tablet-frame:hover {
  transform: none;
}


.portfolio-section {
  background: var(--bg);
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}
.portfolio-container {
  max-width: 1000px;
  margin: 0 auto;
}
.portfolio-container h2 {
  color: var(--pink);
  font-size: 2rem;
  margin-bottom: 15px;
}
.portfolio-container p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.6;
} /* iPad Frame */
.ipad-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.ipad-frame {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 4 / 3;
  background: #111;
  border-radius: 30px;
  padding: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.ipad-frame:hover {
  transform: rotateY(6deg) rotateX(2deg);
} /* Camera */
.ipad-camera {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at center, #1a1a1a 30%, #000 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  animation: cameraGlow 3s infinite ease-in-out;
}
@keyframes cameraGlow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  }
} /* Power Button */
.ipad-power {
  position: absolute;
  right: -6px;
  top: 50%;
  width: 6px;
  height: 60px;
  background: linear-gradient(180deg, #444, #222);
  border-radius: 3px;
  transition: transform 0.2s ease;
}
.ipad-power:hover {
  transform: scaleX(0.8);
  background: linear-gradient(180deg, #ff2fa6, #ff008c);
} /* Screen */
.ipad-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
  background: #fff;
} /* Button */
.portfolio-btn {
  display: inline-block;
  margin-top: 40px;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 47, 166, 0.4);
} /* Responsive */
@media (max-width: 768px) {
  .ipad-frame {
    width: 100%;
  }
} /* === Hire Me Section === */
.hire-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.6s ease, color 0.6s ease;
}
[data-theme="dark"] .hire-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(0, 0, 0, 0.9)
  );
  color: #fff;
}
[data-theme="light"] .hire-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), #fff);
  color: #111;
}
.hire-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}
.hire-heading {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.hire-name {
  color: var(--pink, #ff2fa6);
  position: relative;
  font-family: "Tahoma", sans-serif;
} /* looping animated underline */
.underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
}
.underline path {
  fill: none;
  stroke: var(--pink, #ff2fa6);
  stroke-width: 3;
  stroke-dasharray: 300;
  stroke-dashoffset: 600;
  stroke-linecap: round;
  animation: drawUnderline 3.5s linear infinite;
  filter: drop-shadow(0 0 6px var(--pink, #ff2fa6));
}
@keyframes drawUnderline {
  to {
    stroke-dashoffset: 0;
  }
}
.hire-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto 2.8rem;
} /* Icons */
.hire-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.hire-icon {
  font-size: 26px;
  color: currentColor;
  transition: transform 0.35s ease, color 0.35s ease;
  animation: floatIcon 3s ease-in-out infinite;
}
.hire-icon:nth-child(2) {
  animation-delay: 0.3s;
}
.hire-icon:nth-child(3) {
  animation-delay: 0.6s;
}
.hire-icon:nth-child(4) {
  animation-delay: 0.9s;
}
.hire-icon:nth-child(5) {
  animation-delay: 1.2s;
}
.hire-icon:hover {
  transform: scale(1.2);
  color: var(--pink, #ff2fa6);
}
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
} /* CTA Button */
.hire-btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: linear-gradient(90deg, var(--pink, #ff2fa6), #d90f5c);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 47, 166, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hire-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 47, 166, 0.5);
} /* Soft pulse glow background */
.hire-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--pink, #ff2fa6) 0%, transparent 70%);
  opacity: 0.06;
  animation: pulseGlow 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.06;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.12;
    transform: translateX(-50%) scale(1.2);
  }
} /* fadeIn animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.client-love-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg);
  color: var(--white);
}
.section-title {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 40px;
} /* MacBook Frame */
.macbook-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.macbook {
  width: 80%;
  max-width: 800px;
  perspective: 1200px;
  cursor: pointer;
  transform-style: preserve-3d;
}
.macbook-top {
  background: linear-gradient(145deg, #ccc, #eee);
  height: 12px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  position: relative;
}
.camera-light {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #555 0%, #222 70%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}
.screen-off {
  width: 100%;
  background: #111;
  border-left: 6px solid #ccc;
  border-right: 6px solid #ccc;
  border-bottom: 6px solid #ccc;
  border-radius: 0 0 14px 14px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
  position: relative;
}
.screen-on {
  background: #000;
}
.screen-content {
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.screen-on .screen-content {
  opacity: 1;
}
.macbook-bottom {
  height: 30px;
  background: linear-gradient(145deg, #ccc, #eee);
  border-radius: 0 0 14px 14px;
  margin-top: -6px;
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.2);
} /* Testimonial Carousel */
.carousel {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: center;
}
.testimonial {
  min-width: 100%;
  transition: transform 0.5s ease;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  position: absolute;
}
.testimonial.active {
  opacity: 1;
  position: relative;
}
.next-btn,
.prev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
}
.next-btn {
  right: 10px;
}
.prev-btn {
  left: 10px;
}
.click-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--muted);
} /* Responsive */
@media (max-width: 768px) {
  .macbook {
    width: 95%;
  }
  .screen-off {
    height: 300px;
  }
  .next-btn,
  .prev-btn {
    padding: 6px 10px;
    font-size: 1rem;
  }
}
/* View My Journey Button */
.journey-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 47, 166, 0.15);
}

.journey-btn:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 47, 166, 0.3);
}

/* Responsive alignment */
@media (max-width: 900px) {
  .journey-btn {
    display: inline-block;
    margin: 20px auto 0;
    text-align: center;
  }
}

/* === Futuristic Portfolio Loader === */
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0a0a0a 40%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #e5e5e5;
  transition: opacity 1s ease;
}

.loader-core {
  position: relative;
  text-align: center;
}

.ring {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 0, 106, 0.2);
  border-top: 2px solid #ff00c8;
  border-radius: 50%;
  animation: spin 2.5s linear infinite;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.3);
}

.ring.inner {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 2px solid #ff0055;
  border-right: 2px solid transparent;
  animation: spinReverse 3s linear infinite;
  opacity: 0.6;
}

.pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #af0075;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 12px #ff008c;
}

.loader-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ff0055;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.loader-text {
  font-size: 1rem;
  color: #b5b5b5;
}

.dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.5; }
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}
/* === Custom Pink Cursor === */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #ff69b4;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px #ff69b4, 0 0 20px rgba(255, 105, 180, 0.6);
  background: rgba(255, 182, 193, 0.15);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 9999;
}

/* When hovering clickable elements */
a:hover ~ .cursor,
button:hover ~ .cursor,
.tool-link:hover ~ .cursor {
  width: 30px;
  height: 30px;
  background: rgba(255, 105, 180, 0.4);
}

/* === Tooltip === */
.tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  z-index: 10000;
}

/* Smooth fade-in */
.tooltip.show {
  opacity: 1;
}

/* ===== NEW PROJECT SECTION ===== */
.new-project-section {
  padding: 80px 20px;
  color: inherit; /* inherit from main site theme */
  font-family: 'Poppins', sans-serif;
}

.new-project-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* LEFT SIDE */
.new-project-left {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tablet-frame {
  width: 100%;
  max-width: 500px;
  height: 300px;
  border: 5px solid currentColor; /* matches theme text color */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tablet-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RIGHT SIDE */
.new-project-right {
  flex: 1 1 450px;
}

.new-project-right h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.new-project-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.new-project-right h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* TOOL ICONS */
.tools-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.tool {
  width: 50px;
  height: 50px;
  background: transparent; /* transparent to match theme */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 1.5rem;
  color: inherit; /* matches theme text color */
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.tool:hover {
  transform: translateY(-5px);
  color: #a50140; /* subtle accent on hover */
}

/* TOOLTIP */
.tool[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #222; /* dark tooltip, adapt as needed */
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* CTA BUTTON */
.btn-view-project {
  display: inline-block;
  padding: 12px 25px;
  background: none;
  color: inherit;
  border: 2px solid currentColor; /* matches theme color */
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn-view-project:hover {
  background: currentColor;
  color: #fff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .new-project-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .tablet-frame {
    height: 250px;
  }
}
.globe-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Canvas globe */
.globe-canvas-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: .7;
}

#lethaboGlobe {
  width: 100%;
  height: 100%;
}

/* Text front layer */
.globe-card h3,
.globe-card p,
.timezone-tags {
  position: relative;
  z-index: 5;
}

/* Timezone tags */
.timezone-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--tag-bg);
  opacity: .7;
  cursor: pointer;
  transition: .3s;
}

.tag.active,
.tag:hover {
  opacity: 1;
  background: var(--highlight);
  color: #fff;
}

/* Soft glow behind globe */
.globe-card::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 170, 0.25), transparent 60%);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  z-index: 0;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translateX(-55%); opacity: .6; }
  100% { transform: translateX(-45%); opacity: 1; }
}

/* Light & dark */
.light-theme {
  --card-bg: #f5f5f5;
  --border: #dcdcdc;
  --tag-bg: #fff;
  --highlight: #ff0080;
}

.dark-theme {
  --card-bg: #0f0f0f;
  --border: #2b2b2b;
  --tag-bg: #1a1a1a;
  --highlight: #f63b99;
}

/* Galaxy floating blur effect */
#client-grid .client-card {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

#client-grid .client-card:hover {
  transform: scale(1.3);
  background: rgba(255,255,255,0.2);
}
/* Static iPhone frame: no animation, no wiggle */
.iphone-frame.static {
  transform: none !important;
  transition: none !important;
}

/* Clean iframe inside */
.iphone-frame.static .screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.iphone-frame.static .screen {
  width: 100%;
  height: 100%;
  overflow: hidden; /* hide scrollbars */
  position: relative;
}

.iphone-frame.static .screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.iphone-frame.static .screen video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain if you want black bars */
  display: block;
}
/* ================================
   APP PROJECTS – UI MATCH (STATIC)
   ================================ */

#app-projects {
  padding: 60px 20px;
  text-align: center;
}

#app-projects h2 {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 8px;
}

#app-projects p {
  color: var(--muted);
  margin-bottom: 40px;
}

/* Grid */
#app-projects .app-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-items: center;
}

/* Card */
#app-projects .app-project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  width: 100%;
}

/* =================
   iPhone Frame
   ================= */
#app-projects .app-iphone-frame {
  width: 260px;
  height: 530px;
  border: 14px solid #222;
  border-radius: 42px;
  background: #000;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05),
              0 20px 40px rgba(0,0,0,.6);
}

/* No hover, no animation */
#app-projects .app-iphone-frame,
#app-projects .app-iphone-frame * {
  transition: none !important;
  transform: none !important;
}

/* Screen */
#app-projects .screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#app-projects video,
#app-projects iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

/* =================
   Tablet Frame
   ================= */
#app-projects .app-tablet-frame {
  width: 420px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  padding: 14px;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

#app-projects .app-tablet-frame,
#app-projects .app-tablet-frame * {
  transition: none !important;
  transform: none !important;
}

/* =================
   Info Section
   ================= */
#app-projects .app-info {
  text-align: center;
  max-width: 270px;
  margin-top: 15px;
}

#app-projects .app-info h3 {
  margin-bottom: 6px;
  color: var(--white);
}

#app-projects .app-info p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

#app-projects .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

/* CTA */
#app-projects .cta {
  display: inline-block;
  padding: 8px 14px;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

#app-projects .cta:hover {
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  #app-projects .app-iphone-frame {
    width: 220px;
    height: 450px;
  }
}
/* =====================================
   APP PROJECT CARD – UNIVERSAL STABILITY
   Stops wiggle, jitter & iframe/video shake
===================================== */

#app-projects .app-project-card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  contain: layout paint;
}

/* iPhone frame must NEVER move */
#app-projects .app-iphone-frame {
  position: relative;
  width: 260px;
  height: 530px;
  margin: 0 auto;
  overflow: hidden;

  /* hard stability */
  transform: none !important;
  perspective: none !important;
  backface-visibility: hidden;
  will-change: auto;
}

/* Screen wrapper */
#app-projects .app-iphone-frame .screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* Video MUST be static */
#app-projects .app-iphone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* absolute wiggle killers */
  transform: none !important;
  transition: none !important;
  backface-visibility: hidden;
}

/* Kill hover effects ONLY here */
#app-projects .app-project-card:hover,
#app-projects .app-iphone-frame:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Mobile safety */
@media (max-width: 768px) {
  #app-projects .app-iphone-frame {
    width: 220px;
    height: 450px;
  }

  #app-projects .app-project-card {
    max-width: 100%;
  }
}

/* Accessibility & motion safety */
@media (prefers-reduced-motion: reduce) {
  #app-projects .app-project-card,
  #app-projects .app-iphone-frame,
  #app-projects video {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
/* =====================================
   RESPONSIVE APP PROJECT (PHONE PREVIEW)
===================================== */

#app-projects .app-project-card {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  contain: layout paint;
}

/* Fluid phone frame */
#app-projects .app-iphone-frame {
  width: clamp(180px, 60vw, 260px);
  aspect-ratio: 9 / 19.5;
  margin-inline: auto;
  overflow: hidden;
  position: relative;

  /* stability */
  transform: none !important;
  perspective: none !important;
}

/* Screen fills frame */
#app-projects .app-iphone-frame .screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Video scales correctly */
#app-projects .app-iphone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: none !important;
  transition: none !important;
}

/* Info content */
#app-projects .app-info {
  text-align: center;
}

/* Tablet & up */
@media (min-width: 768px) {
  #app-projects .app-project-card {
    max-width: 720px;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  #app-projects .app-info {
    text-align: left;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  #app-projects * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}



