:root {
  --yellow: #FFE047;
  --coral: #FF6B6B;
  --mint: #4ECDC4;
  --purple: #A855F7;
  --blue: #3B82F6;
  --pink: #F472B6;
  --orange: #FB923C;
  --dark: #0F0F0F;
  --light: #FAFAF8;
  --card-bg: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}


/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--coral); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--dark);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--coral) !important; }
.nav-cta::after { display: none !important; }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.blob1 { width: 500px; height: 500px; background: var(--yellow); top: -100px; right: -100px; animation: float 6s ease-in-out infinite; }
.blob2 { width: 300px; height: 300px; background: var(--mint); bottom: 0; left: 200px; animation: float 8s ease-in-out infinite reverse; }
.blob3 { width: 200px; height: 200px; background: var(--pink); top: 200px; left: -50px; animation: float 7s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

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

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: slideDown 0.6s ease both;
}
.hero-tag span { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 24px;
  animation: slideUp 0.7s ease 0.1s both;
}

h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--coral);
}
h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  z-index: -1;
  transform: skewX(-4deg);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: slideUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex; gap: 16px; align-items: center;
  animation: slideUp 0.7s ease 0.3s both;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,107,0.35); }

.btn-secondary {
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.btn-secondary:hover { color: var(--coral); border-color: var(--coral); }

.hero-right {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero-card {
  width: 380px; height: 460px;
  background: var(--dark);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}

.hero-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FF6B6B 0%, #A855F7 40%, #3B82F6 100%);
  opacity: 0.8;
}

.hero-avatar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 75%;
  display: flex; justify-content: center; align-items: center;
  font-size: 100px;
}

.hero-card-info {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 20px;
}
.hero-card-info h3 {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.hero-card-info p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }

.floating-chip {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  white-space: nowrap;
}
.chip1 { top: 40px; right: -20px; animation: float 5s ease-in-out infinite; }
.chip2 { bottom: 120px; left: -30px; animation: float 6s ease-in-out infinite 1s; }
.chip3 { top: 180px; right: -30px; animation: float 7s ease-in-out infinite 0.5s; }
.chip-dot { width: 10px; height: 10px; border-radius: 50%; }

/* STATS BAR */
.stats-bar {
  background: var(--dark);
  padding: 40px 60px;
  display: flex; justify-content: space-around; align-items: center;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 6px; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* SECTIONS COMMON */
section { padding: 100px 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 16px; color: var(--coral);
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--coral); }
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}

/* ABOUT */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative;
  height: 500px;
}
.about-main-card {
  position: absolute;
  top: 0; left: 0;
  width: 280px; height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--mint), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.about-accent-card {
  position: absolute;
  bottom: 0; right: 0;
  width: 220px; height: 240px;
  border-radius: 24px;
  background: var(--yellow);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.about-accent-card .big-text {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}
.about-accent-card p { font-size: 13px; font-weight: 600; color: rgba(0,0,0,0.6); margin-top: 4px; }
.about-sticker {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  background: var(--coral);
  color: #fff;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  animation: spin 12s linear infinite;
}
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.about-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 32px;
}
.tools-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.tool-chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.tool-chip:hover { transform: translateY(-2px); }
.tc1 { background: #FFF3E0; color: #E65100; border-color: #FFCC80; }
.tc2 { background: #E8F5E9; color: #1B5E20; border-color: #A5D6A7; }
.tc3 { background: #EDE7F6; color: #4A148C; border-color: #CE93D8; }
.tc4 { background: #E3F2FD; color: #0D47A1; border-color: #90CAF9; }
.tc5 { background: #FCE4EC; color: #880E4F; border-color: #F48FB1; }

/* SKILLS */
.skills { background: var(--light); }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.skill-card {
  padding: 36px 32px;
  border-radius: 24px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.skill-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.skill-card:hover { transform: translateY(-6px); border-color: transparent; }
.skill-card:hover::before { opacity: 1; }
.sk1 { background: #FFF8E1; } .sk1:hover { background: #FFE047; }
.sk2 { background: #FFF0F0; } .sk2:hover { background: #FFCDD2; }
.sk3 { background: #E8F5E9; } .sk3:hover { background: #C8E6C9; }
.sk4 { background: #EDE7F6; } .sk4:hover { background: #D1C4E9; }
.sk5 { background: #E3F2FD; } .sk5:hover { background: #BBDEFB; }
.sk6 { background: #FCE4EC; } .sk6:hover { background: #F8BBD0; }
.skill-icon { font-size: 40px; margin-bottom: 20px; }
.skill-name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.skill-desc { font-size: 14px; color: #666; line-height: 1.6; }
.skill-bar-wrap { margin-top: 16px; }
.skill-bar-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.skill-bar-track { height: 6px; background: rgba(0,0,0,0.08); border-radius: 100px; overflow: hidden; }
.skill-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }

/* PROJECTS */
.projects { background: #fff; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.project-card {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #f0f0f0;
  transition: all 0.35s ease;
  background: #fff;
  cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); border-color: transparent; }
.project-thumb {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}
.project-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-thumb-overlay { opacity: 1; }
.view-btn {
  background: #fff;
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.p1 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.p2 { background: linear-gradient(135deg, #4ECDC4, #44A08D); }
.p3 { background: linear-gradient(135deg, #A855F7, #6366F1); }
.p4 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.p5 { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.p6 { background: linear-gradient(135deg, #F472B6, #EC4899); }
.project-body { padding: 24px; }
.project-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.project-name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.project-desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 16px; }
.project-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.project-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: #f5f5f5;
  color: #555;
}
.project-detail-section { background: var(--light); padding: 100px 60px; }
.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.project-detail-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.project-detail-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.project-detail-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 22px;
}
.project-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.project-detail-meta span {
  display: block;
  font-size: 13px;
  color: #999;
}
.project-detail-meta strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  color: var(--dark);
}
.project-detail-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.project-detail-buttons a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.btn-outline { color: var(--dark); background: #fff; border: 2px solid rgba(0,0,0,0.08); }
.btn-filled { color: #fff; background: var(--coral); }

/* PROCESS */
.process { background: var(--dark); color: #fff; }
.process .section-tag { color: var(--yellow); }
.process .section-tag::before { background: var(--yellow); }
.process .section-title { color: #fff; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), var(--coral), var(--mint), var(--purple));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
}
.sn1 { background: var(--yellow); color: var(--dark); }
.sn2 { background: var(--coral); color: #fff; }
.sn3 { background: var(--mint); color: var(--dark); }
.sn4 { background: var(--purple); color: #fff; }
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.step-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testi-quote {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}
.tq1 { color: var(--yellow); }
.tq2 { color: var(--mint); }
.tq3 { color: var(--coral); }
.testi-text { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ta1 { background: #FFF3E0; }
.ta2 { background: #E8F5E9; }
.ta3 { background: #EDE7F6; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: #999; margin-top: 2px; }
.stars { color: #FFD700; font-size: 14px; margin-bottom: 4px; }

/* CONTACT */
.contact { background: #fff; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 20px; }
.contact-desc { font-size: 17px; color: #666; line-height: 1.7; font-weight: 300; margin-bottom: 40px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s;
  font-weight: 500;
}
.contact-link:hover { border-color: var(--coral); background: #FFF5F5; transform: translateX(6px); }
.cl-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ci1 { background: #E3F2FD; }
.ci2 { background: #FCE4EC; }
.ci3 { background: #E8F5E9; }
.ci4 { background: #FFF3E0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 600; color: #333; }
.form-input, .form-textarea {
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  resize: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--coral); }
.form-textarea { height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  background: var(--dark);
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
}
.submit-btn:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,107,0.3); }

/* FOOTER */
footer {
  background: var(--dark);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.footer-logo span { color: var(--coral); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.social-btn:hover { background: var(--coral); }

/* ANIMATIONS */
@keyframes slideDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }
@keyframes slideUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 10px; }

@media (max-width: 1024px) {
  .projects-grid, .skills-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .project-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero, .about-grid, .contact-inner { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  section { padding: 60px 24px; }
  .projects-grid, .skills-grid, .testi-grid { grid-template-columns: 1fr; }
  .project-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .stats-bar { padding: 32px 24px; flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
   
}
