/* Modern Portfolio Styles - Inspired by Sajeya Template */
:root {
  /* Color Palette */
  --primary: #14a800;
  --primary-dark: #0f8a00;
  --secondary: #3a86ff;
  --accent: #ff6b6b;
  --text: #2d3748;
  --text-light: #718096;
  --text-muted: #a0aec0;
  --bg: #ffffff;
  --bg-light: #f7fafc;
  --bg-dark: #1a202c;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--text-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: var(--font-size-xl);
}

.verified-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 12px;
  vertical-align: middle;
  --icon-color: #0066cc;
  --icon-color-bg: #ffffff;
}

.verified-badge svg {
  width: 100%;
  height: 100%;
}

/* Hero section verification badge - larger size */
.hero .verified-badge {
  width: 40px;
  height: 40px;
  top: -8px;
    left: -18px;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--primary);
  box-shadow: 0 0 20px rgba(20, 168, 0, 0.5);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
}

.mobile-toggle:hover {
  background: var(--bg-light);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.greeting {
  display: block;
  font-size: var(--font-size-xl);
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.name {
  display: block;
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title {
  display: block;
  font-size: var(--font-size-2xl);
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20, 168, 0, 0.28);
  border: 1px solid rgba(15, 138, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0c7a00 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 168, 0, 0.38);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(20, 168, 0, 0.18), 0 8px 22px rgba(20, 168, 0, 0.35);
}

/* Hero and Contact CTA refinement */
.hero .btn-primary,
.contact .btn-primary {
  border-radius: 9999px;
  padding: calc(var(--space-4) + 2px) calc(var(--space-6) + 4px);
}

.btn .material-icons {
  font-size: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.15);
}

/* Status indicator */
.air3-presence-indicator {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 77px;
  height: 77px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.air3-presence-indicator-online {
  background-color: #14a800;
  top: 43px;
  left: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Upwork Badges */
.upwork-badges {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-4);
  z-index: 10;
}

/* Hero additions */
.hero-subtitle {
  color: var(--text-light);
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-lg);
}

.hero-extras {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.btn.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-ghost:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow);
}

/* YouTube-styled button */
.btn.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #ff0000;
  color: #ffffff;
  border: 1px solid #ff0000;
  padding: var(--space-2) var(--space-4);
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.btn.btn-youtube:hover {
  background: #e50000;
  border-color: #e50000;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.35);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.link-cta {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.link-cta:hover {
  text-decoration: underline;
}

/* Process section */
.process {
  padding: var(--space-16) 0;
  background: var(--bg-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.process-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(20, 168, 0, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  text-align: center;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.process-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(20, 168, 0, 0.3);
}

.process-step {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto var(--space-5) auto;
  box-shadow: 0 10px 25px rgba(20, 168, 0, 0.4);
  animation: pulse 2s infinite;
}

.process-step .material-icons {
  font-size: 32px;
  color: var(--primary);
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 25px rgba(20, 168, 0, 0.4);
  }
  50% {
    box-shadow: 0 10px 25px rgba(20, 168, 0, 0.6), 0 0 0 10px rgba(20, 168, 0, 0.1);
  }
  100% {
    box-shadow: 0 10px 25px rgba(20, 168, 0, 0.4);
  }
}

/* Calculator section */
.calculator {
  padding: var(--space-16) 0;
}

.calc-form {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  border: 2px solid rgba(20, 168, 0, 0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.calc-form {
  position: relative;
}

.calc-form:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(20,168,0,0.1), rgba(58,134,255,0.1));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.calc-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(20, 168, 0, 0.5);
}

.calc-form:hover:before {
  opacity: 0.8;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.calc-field label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text);
  font-size: var(--font-size-base);
  position: relative;
}

.calc-field select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 2px solid rgba(20, 168, 0, 0.15);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  font-weight: 500;
  font-size: var(--font-size-base);
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right var(--space-3) center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: var(--space-10);
}

.calc-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 168, 0, 0.1), 0 4px 12px rgba(20, 168, 0, 0.15);
  transform: translateY(-1px);
}

.calc-field select:hover {
  border-color: rgba(20, 168, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  border: 2px solid rgba(20, 168, 0, 0.15);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 168, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.chip:hover {
  background: linear-gradient(135deg, rgba(20, 168, 0, 0.05), rgba(20, 168, 0, 0.1));
  border-color: rgba(20, 168, 0, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 168, 0, 0.15);
}

.chip:hover::before {
  left: 100%;
}

.chip input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.chip input:checked + span {
  color: var(--primary);
  font-weight: 600;
}

.chip:has(input:checked) {
  background: linear-gradient(135deg, rgba(20, 168, 0, 0.1), rgba(20, 168, 0, 0.15));
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(20, 168, 0, 0.2);
}

.chip span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.calc-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.calc-result {
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(20, 168, 0, 0.15), rgba(58, 134, 255, 0.15));
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 168, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(20, 168, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.calc-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.calc-result .range {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calc-cta .btn-primary {
  border-radius: 9999px;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-extras {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.upwork-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
}

.upwork-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.job-success-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.badge-circle {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 2;
}

.progress-circle-fg {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

.badge-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-percentage {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--text);
}

.badge-label {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  font-weight: 500;
}

span.top-badge {
  color: #14a800 ;
}

.top-rated-badge .badge-icon {
  position: static;
  width: 32px;
  height: 32px;
}

.top-rated-badge .badge-label {
  font-size: var(--font-size-sm);
  color: var(--text);
  font-weight: 600;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--text);
  animation: float 6s ease-in-out infinite;
}

.floating-card .material-icons {
  color: var(--primary);
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 2s;
}

.card-3 {
  top: 60%;
  right: -20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: rgba(20, 168, 0, 0.1);
  color: var(--primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--font-size-4xl);
  color: var(--text);
  margin-bottom: var(--space-4);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: 0;
}

/* About Section */
.about {
  padding: var(--space-20) 0;
  background: var(--bg);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-text h3 {
  color: var(--text);
  margin-bottom: var(--space-4);
}

.about-text p {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-lg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.skill-item {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(20, 168, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.skill-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(20, 168, 0, 0.3);
}

.skill-item .material-icons {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--space-5);
  display: inline-block;
  padding: var(--space-3);
  background: rgba(20, 168, 0, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5) auto;
  box-shadow: 0 8px 20px rgba(20, 168, 0, 0.2);
}

.skill-item h4 {
  color: var(--text);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.skill-item p {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-stats-simplified {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
 
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, #14a800, #0f8a00);
  border-radius: var(--radius-2xl);
  color: white;
  box-shadow: 0 20px 40px rgba(20, 168, 0, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 30px 60px rgba(20, 168, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: var(--space-3);
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  background: linear-gradient(45deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--font-size-base);
  opacity: 0.95;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-icon svg {
  width: 56px;
  height: 56px;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon svg {
  transform: scale(1.1) rotate(5deg);
}

/* Tech Stack */
.tech-stack {
  margin-top: var(--space-16);
  text-align: center;
}

.tech-stack h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-8);
}

.tech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-4) 0;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 70px;
}

.tech-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tech-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tech-logo span {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

/* Services Section */
.services {
  padding: var(--space-20) 0;
  background: var(--bg-light);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  width: 100%;
  padding: 0 var(--space-6);
  padding-left: 60px;
  padding-right: 60px;
}

.service-card {
  background: white;
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.service-icon .material-icons {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: var(--text);
  margin-bottom: var(--space-4);
}

.service-card p {
  margin-bottom: var(--space-6);
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: var(--space-2) 0;
  color: var(--text-light);
  position: relative;
  padding-left: var(--space-6);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Portfolio Section */
.portfolio {
  padding: var(--space-20) 0;
  background: var(--bg);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-3) var(--space-6);
  border: 2px solid var(--border);
  background: white;
  color: var(--text-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.portfolio-item {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.article-content .cta-section p {
  color: white !important;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.portfolio-content {
  text-align: center;
  color: white;
  padding: var(--space-6);
}

.portfolio-content h3 {
  color: white;
  margin-bottom: var(--space-2);
}

.portfolio-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-4);
}

.portfolio-result {
  background: rgba(20, 168, 0, 0.2);
  border: 1px solid rgba(20, 168, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-4);
  backdrop-filter: blur(10px);
}

.result-label {
  display: block;
  font-weight: 700;
  color: #14a800;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-text {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  font-weight: 500;
}

.portfolio-tags {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-20) 0;
  padding-bottom: 0;
  background: var(--bg-light);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: 1px;
}

.stars .material-icons {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--text);
  margin-bottom: 0;
}

.testimonial-text {
  position: relative;
}

.testimonial-text.truncated {
  max-height: 3.6em; /* Approximately 108 characters worth of height */
  overflow: hidden;
  position: relative;
}

.testimonial-text.truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.2em;
  background: linear-gradient(transparent, white);
  pointer-events: none;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  padding: var(--space-1) 0;
  margin-top: var(--space-2);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary-dark);
}

.read-more-btn-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: white;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-3);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(20, 168, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more-btn-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.read-more-btn-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 168, 0, 0.4);
}

.read-more-btn-icon:hover::before {
  left: 100%;
}

.read-more-btn-icon .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.read-more-btn-icon.expanded .material-icons {
  transform: rotate(180deg);
}

.read-more-btn-icon .word-count {
  font-size: var(--font-size-xs);
  opacity: 0.9;
}

.project-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin: var(--space-3) 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding-bottom: 10px;
}

.testimonial-author {
  /* display: flex;
  flex-direction: column;
  gap: var(--space-3); */
  margin-top: auto;
}

.client-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.client-image {
  flex-shrink: 0;
}

.client-image a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 2px rgba(20, 168, 0, 0.2);
  transition: transform 0.3s ease;
}

.client-photo:hover {
  transform: scale(1.1);
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.client-name-link {
  text-decoration: none;
  display: inline-block;
}

.client-name-link:hover .client-name {
  text-decoration: underline;
}

.client-name {
  color: var(--primary);
  font-weight: 600;
  font-size: var(--font-size-base);
  margin: 0;
}

.client-location {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  font-weight: 400;
}

.author-info {
  width: 100%;
}

.testimonial-author h4 {
  color: var(--text);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-base);
  font-weight: 600;
}

/* Company Logos Section */
.company-logos {
  margin-top: var(--space-16);
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, #14a800, #0f8a00);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.company-logos .section-title {
  color: white;
  text-align: center;
}

.logos-slider {
  overflow: hidden;
  margin-top: var(--space-8);
  position: relative;
}

.logos-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: var(--space-8);
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.1);
}

.company-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-link:hover .company-logo {
  transform: scale(1.15);
}

.bedbible-logo {
  padding: 0 20px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: transparent;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  min-height: 80px;
  width: 100%;
  justify-content: center;
}

.logo-placeholder:hover {
  border-color: var(--primary);
  background: rgba(20, 168, 0, 0.05);
}

.logo-placeholder .material-icons {
  font-size: var(--font-size-2xl);
  color: var(--text-light);
}

.logo-placeholder span:last-child {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  font-weight: 500;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.project-duration {
  color: var(--text-light);
  font-size: 11px;
  margin-top: auto;
}

/* Contact Section */
.contact {
  padding: var(--space-20) 0;
  background: var(--bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info h3 {
  color: var(--text);
  margin-bottom: var(--space-4);
}

.contact-info p {
  margin-bottom: var(--space-8);
  font-size: var(--font-size-lg);
}

.contact-methods {
  margin-bottom: var(--space-8);
}

.contact-cta {
  margin-top: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-method .material-icons {
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-method h4 {
  color: var(--text);
  margin-bottom: var(--space-1);
  font-size: var(--font-size-base);
}

.contact-method p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

.contact-form {
  background: var(--bg-light);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.social-link.linkedin {
  background: #0077b5;
  color: white;
}

.social-link.upwork {
  background: var(--primary);
  color: white;
}

.social-link.github {
  background: #333;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-8);
}

.footer-brand .brand {
  color: white;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-lg);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-2);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.video-modal.open {
  display: flex;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.video-modal-content {
  position: relative;
  background: #000;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 960px;
  width: 92%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 0;
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.video-close:hover {
  background: rgba(255,255,255,0.2);
}

.video-wrapper, #videoIframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 96%;
  }
}

/* Upwork Links */
.upwork-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.upwork-link:hover {
  color: #14a800;
  text-decoration-color: #14a800;
  text-decoration-thickness: 2px;
}

/* Upwork Badge Links */
.upwork-badge {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.upwork-badge:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

/* Sticky Call Button */
.sticky-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(20, 168, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: pulse-glow 2s infinite;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.sticky-call-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(20, 168, 0, 0.6);
  background: linear-gradient(135deg, #0f8a00, #0d7300);
  color: white;
  text-decoration: none;
}

.call-icon {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  flex-shrink: 0;
}

.call-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.6), 0 0 0 8px rgba(20, 168, 0, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.4);
  }
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 200px;
  z-index: 1000;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14a800, #0f8a00);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(20, 168, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse-glow-green 2s infinite;
}

.chatbot-toggle:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 35px rgba(20, 168, 0, 0.6);
}

.chat-icon {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
}

.chat-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-glow-green {
  0% {
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.6), 0 0 0 8px rgba(20, 168, 0, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.4);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.chatbot-modal {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-modal.open {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chatbot-header {
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chatbot-info {
  flex: 1;
}

.chatbot-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chatbot-info p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  color: white;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-close svg {
  width: 16px;
  height: 16px;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  display: flex;
  gap: 12px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bot-message .message-avatar {
  background: linear-gradient(135deg, #14a800, #0f8a00);
}

.user-message .message-avatar {
  background: linear-gradient(135deg, #14a800, #0f8a00);
}

.message-avatar svg {
  width: 16px;
  height: 16px;
  stroke: white;
}

.message-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.message-content {
  flex: 1;
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 18px;
  position: relative;
}

.user-message .message-content {
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
}

.message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.user-message .message-content p {
  color: white !important;
}

.message-time {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 4px;
  display: block;
}

.chatbot-typing {
  padding: 0 20px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14a800;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.typing-text {
  font-size: 12px;
  color: #64748b;
}

.chatbot-input {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.chatbot-input input {
  flex: 1;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.chatbot-input input:focus {
  border-color: #14a800;
}

.chatbot-input button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14a800, #0f8a00);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chatbot-input button:hover {
  transform: scale(1.1);
}

.chatbot-input button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.chatbot-input button svg {
  width: 18px;
  height: 18px;
}

/* Mobile Responsive for Chatbot */
@media (max-width: 768px) {
  .chatbot-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .chatbot-toggle {
    width: 50px;
    height: 50px;
  }
  
  .chat-icon {
    width: 20px;
    height: 20px;
  }
  
  .chatbot-modal {
    width: calc(100vw - 40px);
    height: 400px;
    bottom: 70px;
    right: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .chatbot-widget {
    bottom: 71px;
        right: 27px;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero {
    min-height: 64vh;
    padding: var(--space-8) 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .image-container {
    width: 300px;
    height: 300px;
  }
  
  .upwork-badges {
    bottom: -50px;
    gap: var(--space-2);
  }
  
  .upwork-badge {
    padding: var(--space-2) var(--space-3);
    min-width: 150px;
  }
  
  .badge-circle {
    width: 32px;
    height: 32px;
  }
  
  .badge-icon {
    width: 16px;
    height: 16px;
  }
  
  .top-rated-badge .badge-icon {
    width: 28px;
    height: 28px;
  }
  
  .badge-percentage {
    font-size: var(--font-size-xs);
  }
  
  .badge-label {
    font-size: 0.65rem;
  }
  
  .top-rated-badge .badge-label {
    font-size: var(--font-size-xs);
  }
  
  .floating-card {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
        padding-right: 20px;
  }
  
  .about-stats-simplified {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .tech-logos {
    gap: var(--space-4);
  }
  
  .tech-logo {
    min-width: 70px;
    padding: var(--space-3);
  }
  
  .tech-logo img {
    width: 32px;
    height: 32px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: left;
    gap: var(--space-3);
  }

  .client-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .client-photo {
    width: 60px;
    height: 60px;
  }
  
  .portfolio-filter {
    gap: var(--space-2);
  }
  
  .filter-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .name {
    font-size: var(--font-size-4xl);
  }
  
  .sticky-call-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
  }
  
  .call-icon {
    width: 18px;
    height: 18px;
  }
  
  .call-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .ai-book-features li::before {
    display: none;
  }

  .air3-presence-indicator-online {
    background-color: #14a800;
    top: 43px;
    left: -15px;
  }

  .logo-item {
    width: 111px;
    height: 60px;
}

#contact {
  text-align: center;
}

.contact-methods {
  display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.footer-content { 
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
  
  .hero {
    min-height: 64vh;
    padding: var(--space-6) 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .image-container {
    width: 250px;
    height: 250px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats-simplified {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .tech-logos {
    gap: var(--space-3);
  }
  
  .tech-logo {
    min-width: 60px;
    padding: var(--space-2);
  }
  
  .tech-logo img {
    width: 28px;
    height: 28px;
  }
  
  .tech-logo span {
    font-size: var(--font-size-xs);
  }
  
  .stat-item {
    padding: var(--space-4);
  }
  
  .stat-number {
    font-size: var(--font-size-2xl);
  }
}

/* Brand logo image */
.brand-logo {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  /* box-shadow: 0 0 12px rgba(20, 168, 0, 0.35); */
}

.footer .brand .brand-logo {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.social-link:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.social-link:hover::before {
  left: 100%;
}

.social-icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

/* Individual platform brand colors */
.social-link[aria-label="LinkedIn"] {
  background: #0077b5;
}

.social-link[aria-label="LinkedIn"]:hover {
  background: #005885;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-link[aria-label="YouTube"] {
  background: #ff0000;
}

.social-link[aria-label="YouTube"]:hover {
  background: #cc0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-link[aria-label="Email"] {
  background: #ea4335;
}

.social-link[aria-label="Email"]:hover {
  background: #d33b2c;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

.social-link[aria-label="GitHub"] {
  background: #333;
}

.social-link[aria-label="GitHub"]:hover {
  background: #1a1a1a;
  box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}


.social-link[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #e6852e 0%, #d55a2f 25%, #c91e36 50%, #b91c5a 75%, #a5167a 100%);
  box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .social-links {
    gap: var(--space-2);
    margin-top: var(--space-3);
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
}

/* Blog Section */
.blog {
  padding: 72px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.blog .section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Removed image block for compact cards */

.blog-content {
  padding: 20px 22px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.blog-category {
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Make entire card clickable */
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #14a800;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.blog-link:hover {
  color: #0f8a00;
  gap: 12px;
}

.blog-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-link:hover svg {
  transform: translateX(4px);
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }
  
  .blog .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .blog-card {
    margin: 0 10px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 1.125rem;
  }
}

/* Article Pages */
.article-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.article-category {
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-date {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 40px;
}

.article-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
}

.author-title {
  display: block;
  color: #64748b;
  font-size: 0.875rem;
}

.article-content {
  padding: 80px 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  margin-bottom: 40px;
  text-align: center;
}

.article-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0.8;
}

.article-placeholder svg {
  width: 60px;
  height: 60px;
}

.article-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}

.article-text .lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 30px;
}

.article-text p {
  margin-bottom: 24px;
}

.article-text strong {
  color: #1e293b;
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0ea5e9;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.highlight-box h3 {
  color: #0c4a6e;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 8px 0;
  color: #0c4a6e;
  font-weight: 500;
}

.example-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.example-box h3 {
  color: #92400e;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.example-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-list li {
  padding: 8px 0;
  color: #92400e;
  font-weight: 500;
}

.transformation-list {
  margin: 40px 0;
}

.transformation-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #14a800;
}

.transformation-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #14a800;
  min-width: 60px;
  text-align: center;
}

.transformation-content h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.transformation-content p {
  color: #64748b;
  margin-bottom: 12px;
}

.example-note {
  background: #e0f2fe;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid #0ea5e9;
  font-size: 0.95rem;
  color: #0c4a6e;
}

.blockquote {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-left: 4px solid #14a800;
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #1e293b;
  position: relative;
}

.blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #14a800;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.cta-section {
  background: linear-gradient(135deg, #14a800 0%, #0f8a00 100%);
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
}

.cta-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: #14a800;
  border-color: white;
}

.btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: #14a800;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-articles {
  padding: 80px 0;
  background: #f8fafc;
}

.related-articles h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.related-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: #14a800;
}

.related-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.related-image svg {
  width: 30px;
  height: 30px;
}

.related-content h4 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.related-content p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* Related Articles - single-row horizontal slider (contained, no page overflow) */
.related-articles { width: 100%; position: relative; }
.related-articles .related-slider { position: relative; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.related-articles .related-slider::-webkit-scrollbar { display: none; }
.related-articles .related-track { display: flex; gap: 16px; flex-wrap: nowrap; padding: 4px 12px 12px; }
.related-articles .related-card { flex: 0 0 auto; width: 300px; max-width: 300px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; text-decoration: none; color: inherit; box-shadow: 0 4px 14px rgba(0,0,0,0.05); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.related-articles .related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.07); border-color: #14a800; }
.related-articles .related-content h4 { margin: 0 0 6px 0; font-size: 16px; color: #0f172a; line-height: 1.35; }
.related-articles .related-content p { margin: 0; color: #475569; font-size: 14px; }

/* Slider arrow controls */
.related-articles .related-controls { position: relative; overflow: visible; }
.related-articles .related-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  z-index: 2;
}
.related-articles .related-control-btn:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }
.related-articles .related-prev { left: -36px; }
.related-articles .related-next { right: -36px; }
.related-articles .related-control-btn svg { width: 18px; height: 18px; color: #0f172a; }

@media (max-width: 768px) {
  .related-articles .related-control-btn { width: 36px; height: 36px; }
}

/* Article Responsive */
@media (max-width: 768px) {
  .article-header {
    padding: 100px 0 60px;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-subtitle {
    font-size: 1.125rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .article-content {
    padding: 60px 0;
  }
  
  .article-text {
    font-size: 1rem;
  }
  
  .article-text .lead {
    font-size: 1.25rem;
  }
  
  .transformation-item {
    flex-direction: column;
    gap: 16px;
  }
  
  .transformation-number {
    min-width: auto;
    text-align: left;
  }
  
  .cta-section {
    padding: 32px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* AI Book Section */
.ai-book {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.ai-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.ai-book-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.ai-book-left {
  padding-right: var(--space-8);
}

.ai-book-header {
  margin-bottom: var(--space-6);
}

.ai-book-header .section-tag {
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.ai-book-header .section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.ai-book-description {
  margin-bottom: var(--space-8);
}

.ai-book-description p {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.ai-book-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-book-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--text);
  line-height: 1.5;
}

.ai-book-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.ai-book-cta {
  margin-top: var(--space-8);
}

.ai-book-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: linear-gradient(135deg, #14a800, #0f8a00);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--font-size-lg);
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease, color 200ms ease;
  box-shadow: 0 4px 15px rgba(20, 168, 0, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ai-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.ai-book-btn:hover {
  background: linear-gradient(135deg, #16b100, #0d6f00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 168, 0, 0.45);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.ai-book-btn:hover::before {
  left: 120%;
}

.ai-book-btn .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
  position: relative;
  z-index: 2;
}

.ai-book-btn:hover .btn-icon {
  transform: translateY(-1px);
}

.ai-book-btn .btn-text {
  position: relative;
  z-index: 2;
  transition: color 200ms ease, opacity 200ms ease;
}

.ai-book-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-book-visual {
  position: relative;
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

.book-cover {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.book-cover:hover {
  transform: rotateY(-10deg) rotateX(2deg);
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.book-pages {
  position: absolute;
  top: 20px;
  left: 25px;
  right: 20px;
  bottom: 20px;
  background: white;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  overflow: hidden;
}

.page {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-1 {
  transform: rotateY(-2deg);
  z-index: 3;
}

.page-2 {
  transform: rotateY(-1deg);
  z-index: 2;
  background: #f8fafc;
}

.page-3 {
  z-index: 1;
  background: #f1f5f9;
}

.book-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 4;
  color: #1e293b;
}

.book-title-main {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.book-title-sub {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 500;
  opacity: 0.9;
}

.ai-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: var(--font-size-xl);
  animation: sparkle-float 3s ease-in-out infinite;
}

.sparkle-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 20%;
  left: 5%;
  animation-delay: 0.5s;
}

.sparkle-3 {
  bottom: 20%;
  right: 15%;
  animation-delay: 1s;
}

.sparkle-4 {
  bottom: 10%;
  left: 10%;
  animation-delay: 1.5s;
}

@keyframes sparkle-float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ai-book {
    padding: var(--space-16) 0;
  }
  
  .ai-book-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .ai-book-left {
    padding-right: 0;
    order: 2;
  }
  
  .ai-book-right {
    order: 1;
  }
  
  .ai-book-header .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .ai-book-visual {
    width: 250px;
    height: 320px;
  }
  
  .book-title-main {
    font-size: var(--font-size-lg);
    line-height: 1.1;
  }
  
  .book-title-sub {
    font-size: var(--font-size-sm);
  }
  
  .ai-book-btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
  }
}

/* Mobile Responsive for Form Elements */
@media (max-width: 768px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .calc-field select {
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
  }
  
  .calc-checkboxes {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  
  .chip {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-xs);
  }
  
  .chip input {
    width: 16px;
    height: 16px;
  }
}
