/* -------------------------------------------------------------
 * Prakash Balayar Portfolio - Premium Design System Stylesheet
 * ------------------------------------------------------------- */

/* Variables & Design Tokens */
:root {
  --primary: #8F5BFF;
  --primary-light: #ECE3FF;
  --primary-dark: #763EE5;
  --primary-gradient: linear-gradient(135deg, #8F5BFF 0%, #B68DFF 100%);
  --secondary: #1F2937;
  
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFB;
  --bg-dark: #0D0C0F;
  --bg-dark-card: #151419;
  
  --text-main: #1D1B20;
  --text-muted: #625E6A;
  --text-light: #98949E;
  --text-white: #FFFFFF;
  
  --border-light: #EBEAEF;
  --border-dark: #2B2930;
  
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(143, 91, 255, 0.06);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.06);
  --shadow-premium: 0 30px 60px rgba(143, 91, 255, 0.08);
  
  --font-title: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

input, textarea, button {
  font-family: inherit;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* Helper Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px type solid transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(143, 91, 255, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-nav {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.btn-nav:hover {
  background-color: var(--primary);
  box-shadow: 0 4px 12px rgba(143, 91, 255, 0.2);
}

/* Header & Glassmorphic Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-fast), height var(--transition-fast);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-hello {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: var(--font-title);
}

.hello-text {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.avatar-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.avatar-backdrop {
  display: none;
}

.avatar-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-lg);
}

/* Avatar Badge Overlays */
.avatar-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 16px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-top-right {
  top: 30px;
  right: -20px;
}

.badge-bottom-right {
  bottom: 40px;
  right: -30px;
  background: var(--primary);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
}

.animate-ping-slow {
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.badge-icon {
  font-size: 1rem;
}

/* Custom design cursor pointer overlay */
.cursor-mockup {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  animation: floatCursor 6s ease-in-out infinite alternate;
}

.cursor-label {
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  margin-top: 12px;
  box-shadow: var(--shadow-sm);
}

@keyframes floatCursor {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(25px, -15px);
  }
}

/* Sections Standards */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Work / Projects Section — full bleed, no side padding */
.work-section {
  padding: 60px 0 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

/* 2-column full-bleed grid, no gap */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}

/* Image-only card — natural height, no cropping, edge to edge */
.project-card-image-only .project-visual {
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  display: block !important;
  overflow: hidden;
}

/* Coming Soon — clean grey dotted border only, matches height of left card */
.project-coming-soon {
  height: 100%;
  background-color: transparent;
  border: 3px dotted #888888 !important;
  border-radius: 0 !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color var(--transition-fast);
}

.project-coming-soon:hover {
  border-color: var(--primary) !important;
}

.coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
  height: 100%;
}

.coming-soon-plus {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  transition: color var(--transition-normal);
}

.project-coming-soon:hover .coming-soon-plus {
  color: var(--primary);
}

.coming-soon-label {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.coming-soon-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Responsive: stack to 1 column on mobile */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-card-image-only .project-visual {
    height: auto !important;
    min-height: auto !important;
  }
  .project-coming-soon {
    min-height: 280px !important;
  }
}

.project-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

/* Image-only card — show original Figma mockup, no cropping */
.project-card-image-only {
  display: block;
  cursor: pointer;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: #fff !important;
  overflow: hidden;
}

.project-card-image-only:hover {
  transform: none !important;
  box-shadow: none !important;
}

.project-card-image-only .project-image {
  width: 100%;
  height: auto !important;
  display: block;
  border-radius: 0 !important;
  transform: none !important;
  transition: none !important;
}

.project-card.project-card-image-only:hover .project-image {
  transform: none !important;
}

.project-info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.tag {
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
}

.project-title {
  font-family: var(--font-title);
  font-weight: 850;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-main);
}

.project-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.view-project-link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-project-link:hover {
  color: var(--primary-dark);
}

.view-project-link svg {
  transition: transform var(--transition-fast);
}

.view-project-link:hover svg {
  transform: translate(3px, -3px);
}

.project-visual {
  background-color: #F3F4F6;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
  transform: scale(1.03);
}

/* Mockup with clickable glass overlay */
.mockup-visual {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 12, 15, 0);
  transition: background var(--transition-normal);
}

.mockup-visual:hover .mockup-overlay {
  background: rgba(13, 12, 15, 0.35);
}

.mockup-overlay-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transition: opacity var(--transition-normal), transform var(--transition-normal), background var(--transition-fast);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  pointer-events: none;
}

.mockup-visual:hover .mockup-overlay-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mockup-overlay-btn:hover {
  background: rgba(143, 91, 255, 0.5);
  border-color: rgba(143, 91, 255, 0.6);
}

/* ── Ketan-style hover info overlay ───────────────────────── */
.mockup-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 48px 48px 48px;
  background: rgba(18, 18, 18, 0.72) !important;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mockup-visual:hover .mockup-hover-overlay {
  opacity: 1;
}

.mockup-hover-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-hover-category {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.mockup-hover-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  max-width: 100%;
}

.mockup-hover-bottom {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mockup-hover-tag {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  padding: 6px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
}

/* Quote / Philosophy Band */
.quote-band {
  background-color: var(--bg-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 91, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 16px;
  display: block;
  user-select: none;
}

.quote-text {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 24px;
  font-style: italic;
  letter-spacing: -0.3px;
}

.quote-author {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  font-style: normal;
  letter-spacing: 0.5px;
}

/* Testimonial Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.testimonials-slider-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.quote-icon {
  margin-bottom: 24px;
  color: var(--primary-light);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

.default-avatar-1 {
  background-color: #EC4899;
}

.default-avatar-2 {
  background-color: #3B82F6;
}

.author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background-color: var(--bg-primary);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: scale(1.05);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Connect / Contact Section */
.connect-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.connect-wrapper {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  box-shadow: var(--shadow-lg);
}

/* Left Column - Contact Info (Dark) */
.contact-info-panel {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-dark);
}

.panel-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--border-dark);
}

.panel-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
}

.active-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

.pulse-green {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.panel-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-method-group {
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.copy-email-box {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.email-value {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-white);
}

.email-value:hover {
  color: var(--primary-light);
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.copy-btn:hover {
  color: var(--text-white);
}

.hidden-icon {
  display: none !important;
}

.copy-btn.copied {
  color: #10B981;
}

.info-socials {
  display: flex;
  gap: 24px;
}

.social-icon-link {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.social-icon-link:hover {
  color: var(--text-white);
}

/* Right Column - Contact Form (Light) */
.contact-form-panel {
  padding: 60px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

#contactForm {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.input-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(143, 91, 255, 0.1);
}

.form-textarea {
  resize: vertical;
}

/* Mock reCAPTCHA Box Styling */
.captcha-container {
  background-color: #F9F9F9;
  border: 1px solid #D3D3D3;
  border-radius: 3px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  margin-bottom: 28px;
}

.captcha-checkbox-wrap {
  display: flex;
  align-items: center;
}

.captcha-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.captcha-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.captcha-custom-checkbox {
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #C1C1C1;
  border-radius: 2px;
  margin-right: 12px;
  position: relative;
  transition: var(--transition-fast);
}

.captcha-label:hover input ~ .captcha-custom-checkbox {
  border-color: #B2B2B2;
}

.captcha-label input:checked ~ .captcha-custom-checkbox {
  background-color: #fff;
  border-color: #4A90E2;
}

.captcha-label input:checked ~ .captcha-custom-checkbox::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 5px;
  height: 12px;
  border: solid #00AA44;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.captcha-text {
  font-size: 0.85rem;
  color: #2D2D2D;
  font-family: Roboto, -apple-system, sans-serif;
  font-weight: 400;
}

.captcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.recaptcha-img {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}

.captcha-policies {
  font-size: 0.5rem;
  color: #555555;
  font-family: Roboto, -apple-system, sans-serif;
}

.captcha-policies a {
  color: #555;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  position: relative;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loader {
  display: block;
}

.btn-loader {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--text-white);
  animation: spin 0.8s ease-in-out infinite;
}

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

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}

.toast-notification.show {
  bottom: 32px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.toast-icon {
  background-color: #10B981;
  color: var(--text-white);
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.toast-message {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Footer Section */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 480px;
}

.brand-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-dark);
  flex-shrink: 0;
}

.brand-bio-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 420px;
}

.brand-bio-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-bio-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
}

.brand-bio-sub {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
}

.footer-links-group {
  display: flex;
  gap: 80px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.col-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-light);
}

.footer-link:hover {
  color: var(--text-white);
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.footer-social-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-social-link:hover svg {
  opacity: 1;
}

.footer-divider {
  height: 1px;
  background-color: var(--border-dark);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-light);
}

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-link {
  font-size: 0.875rem;
  color: var(--text-light);
}

.bottom-link:hover {
  color: var(--text-white);
}

/* Direct Contacts Layout (stacked column) */
.panel-direct-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.panel-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
  width: fit-content;
}

.panel-contact-line:hover {
  color: var(--primary);
}

.panel-contact-line svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* -------------------------------------------------------------
 * Responsive Design (Media Queries)
 * ------------------------------------------------------------- */

@media (max-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-title {
    font-size: 3rem;
  }
  
  .project-card {
    grid-template-columns: 1fr;
  }
  
  .project-info {
    padding: 40px;
  }
  
  .project-visual {
    height: 420px;
  }
  
  .connect-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* --- Navbar --- */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    z-index: 99;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  /* --- Hero: stack image on top, text below --- */
  .hero-section {
    padding: 80px 0 60px;
    overflow: visible;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* Image goes on top */
  .hero-visual {
    order: -1;
  }

  .hero-content {
    align-items: center;
    order: 1;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hello-text {
    font-size: 24px;
    text-align: center;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
    text-align: center;
    padding: 0 4px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Avatar: full face visible, square-ish --- */
  .avatar-wrapper {
    max-width: 280px;
    width: 80vw;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
  }

  /* About Me circle — smaller on mobile */
  .about-click-overlay {
    width: 110px;
    height: 110px;
    font-size: 0.8rem;
  }

  /* Cursor tag — center bottom */
  .hero-custom-cursor {
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  /* Avatar badges */
  .badge-top-right {
    top: 15px;
    right: 0px;
  }

  .badge-bottom-right {
    bottom: 20px;
    right: -10px;
  }

  /* --- Work section --- */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-image-only .project-visual {
    height: 300px !important;
  }

  .project-coming-soon {
    height: 200px;
  }

  /* --- Quote Band --- */
  .quote-band {
    padding: 60px 0;
  }

  .quote-mark {
    font-size: 5rem;
  }

  .quote-text {
    font-size: 1.2rem;
    line-height: 1.55;
  }

  /* --- Footer --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links-group {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {

  /* --- Global --- */
  .container {
    padding: 0 16px;
  }

  /* --- Navbar --- */
  .navbar {
    padding: 0;
    height: 64px;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-menu {
    top: 64px;
    padding: 28px 20px;
    gap: 20px;
  }

  /* --- Hero --- */
  .hero-section {
    padding: 72px 0 36px;
    overflow: hidden;
  }

  .hero-container {
    gap: 28px;
  }

  .hello-text {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* --- Avatar --- */
  .avatar-wrapper {
    max-width: 240px;
    width: 75vw;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
  }

  .avatar-image {
    object-position: top center;
    border-radius: 16px;
  }

  /* Read About Me circle */
  .about-click-overlay {
    width: 100px;
    height: 100px;
    font-size: 0.78rem;
  }

  /* Cursor tag */
  .hero-custom-cursor {
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    animation: none;
  }

  .cursor-tag {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .cursor-arrow {
    width: 18px;
    height: 21px;
  }

  /* --- Work Section --- */
  .work-section {
    padding: 48px 0 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .project-card-image-only .project-visual {
    height: auto !important;
  }

  .project-coming-soon {
    height: 260px !important;
  }

  .mockup-hover-title {
    font-size: 1.1rem;
  }

  .panel-contact-line {
    font-size: 0.85rem;
    gap: 8px;
  }

  .contact-form-panel {
    padding: 28px 20px;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-submit {
    width: 100%;
    box-sizing: border-box;
  }

  .input-label {
    font-size: 0.85rem;
  }

  .form-input,
  .form-textarea {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .copy-email-box {
    padding: 10px 12px;
  }

  .email-value {
    font-size: 0.8rem;
  }

  .info-socials {
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-icon-link {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-avatar {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .col-title {
    font-size: 0.8rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .copyright {
    font-size: 0.8rem;
    text-align: center;
  }

  /* --- Modals (Case Study & About) --- */
  .cs-modal-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-width: 100%;
  }

  .cs-modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    overflow-y: auto;
    height: 100%;
  }

  .cs-modal-body {
    padding: 28px 20px;
    gap: 20px;
    max-height: none;
    overflow: visible;
  }

  .cs-modal-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .cs-meta-info {
    flex-direction: column;
    gap: 16px;
  }

  .cs-modal-visual {
    height: 260px;
    padding: 20px;
    order: -1;
  }

  .cs-modal-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .cs-sec-title {
    font-size: 1rem;
  }

  .cs-sec-text {
    font-size: 0.88rem;
  }
}

/* Clickable project card styling */
.clickable-project {
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* Teaser visual for cards */
.teaser-visual {
  background: linear-gradient(135deg, #ECE3FF 0%, #F5F3FF 100%);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.teaser-glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(143, 91, 255, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.project-card:hover .teaser-glass-card {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(143, 91, 255, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.teaser-logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.teaser-action {
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 750;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.teaser-cursor {
  position: absolute;
  bottom: -15px;
  right: -10px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  animation: bounceCursor 2.5s ease-in-out infinite alternate;
}

@keyframes bounceCursor {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-5deg); }
}

.teaser-blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.65;
  transition: transform var(--transition-slow);
}

.orb-1 {
  width: 180px;
  height: 180px;
  background-color: var(--primary-light);
  top: 10%;
  left: 10%;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background-color: var(--primary);
  bottom: 10%;
  right: 10%;
}

.project-card:hover .teaser-blur-orb {
  transform: scale(1.15) translate(10px, -10px);
}

/* Glassmorphic Case Study Modal */
.cs-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.cs-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cs-modal-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 12, 15, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cs-modal-container {
  position: relative;
  z-index: 1005;
  width: 92%;
  max-width: 1140px;
  height: 85vh;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform var(--transition-normal);
}

.cs-modal.active .cs-modal-container {
  transform: scale(1);
}

.cs-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1010;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cs-modal-close:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: rotate(90deg);
  border-color: var(--primary);
}

.cs-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.cs-modal-body {
  padding: 60px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-height: 85vh;
}

.cs-modal-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 850;
  line-height: 1.25;
  color: var(--text-main);
  margin-top: 8px;
}

.cs-meta-info {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.cs-meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--text-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.cs-meta-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.cs-sections-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cs-sec-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--text-main);
  margin-bottom: 10px;
}

.cs-sec-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cs-modal-visual {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  height: 100%;
}

.cs-modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.cs-modal-container:hover .cs-modal-image {
  transform: translateY(-8px) scale(1.02);
}

/* Modal Responsive overrides */
@media (max-width: 1024px) {
  .cs-modal-container {
    height: 90vh;
  }
  .cs-modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr 0.75fr;
    overflow-y: auto;
  }
  .cs-modal-body {
    padding: 40px;
    max-height: none;
    overflow: visible;
  }
  .cs-modal-visual {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .cs-modal-body {
    padding: 32px 24px;
    gap: 24px;
  }
  .cs-modal-title {
    font-size: 1.75rem;
  }
  .cs-modal-visual {
    height: 300px;
    padding: 20px;
  }
}

/* Hello Text */
.hello-text {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: inline-block;
}

/* Center glass circle avatar overlay */
.about-click-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  padding: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-normal);
}

.avatar-wrapper:hover .about-click-overlay {
  opacity: 1;
  pointer-events: auto;
}

.about-click-overlay:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-click-overlay:active {
  transform: translate(-50%, -50%) scale(0.97);
}

/* Custom cursor — Ketan style (arrow left + name tag right, inline) */
.hero-custom-cursor {
  position: absolute;
  bottom: 32px;
  left: 70%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: floatCursor 4s ease-in-out infinite alternate;
}

.cursor-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -165%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  z-index: 2;
}

.cursor-tag {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(143, 91, 255, 0.35);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

@keyframes floatCursor {
  0%   { transform: translateX(-50%) translateY(0px); }
  105% { transform: translateX(-50%) translateY(-7px); }
}

/* ── Premium Scroll Reveal Animation System ──────────────── */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
