: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;
  }
} /* App Projects Section */
#app-projects {
  padding: 40px 20px;
  text-align: center;
} /* Section heading */
#app-projects h2 {
  margin-bottom: 10px;
  color: var(--white);
}
#app-projects p {
  color: var(--muted);
  margin-bottom: 30px;
} /* Grid: horizontal on large, vertical on small screens */
#app-projects .app-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-items: center;
  align-items: start;
} /* iPhone frame */
#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;
  transition: transform 0.3s ease;
} /* Camera lens */
#app-projects .iphone-frame .camera-lens {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #999 0%, #222 70%);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  animation: lens-glow 2s infinite alternate;
} /* Power button */
#app-projects .iphone-frame .power-button {
  position: absolute;
  top: 50px;
  right: -6px;
  width: 6px;
  height: 40px;
  border-radius: 4px;
  background: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  animation: power-btn-glow 3s infinite alternate;
} /* Screen inside iPhone */
#app-projects .iphone-frame .screen {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
} /* Responsive iframe filling phone */
#app-projects .iphone-frame .screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: auto;
} /* Hover tilt & scale */
#app-projects .iphone-frame:hover {
  transform: rotateX(5deg) rotateY(5deg) scale(1.05);
} /* Lens glow animation */
@keyframes lens-glow {
  0% {
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  }
} /* Power button subtle glow */
@keyframes power-btn-glow {
  0% {
    background: #333;
  }
  50% {
    background: #555;
  }
  100% {
    background: #333;
  }
} /* App info */
#app-projects .app-info {
  text-align: center;
  max-width: 270px;
  margin-top: 15px;
}
#app-projects .app-info h3 {
  color: var(--white);
  margin-bottom: 4px;
}
#app-projects .app-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}
#app-projects .app-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 15px;
}
#app-projects .app-info .cta {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.3s ease;
}
#app-projects .app-info .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 47, 166, 0.4);
} /* Smaller screens: vertical stack */
@media (max-width: 1024px) {
  #app-projects .app-projects-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  #app-projects .iphone-frame {
    width: 220px;
    height: 450px;
  }
}
.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;
  }
}
