@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   1. COLOR SYSTEM & DESIGN VARIABLES (LIGHT MODE)
   ========================================== */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Premium Light Theme Colors */
  --bg-page: #f8fafc; /* Soft off-white background */
  --bg-card: #ffffff; /* Clean white cards */
  --bg-card-hover: #f1f5f9; /* Slate-100 hover state */
  --color-border: rgba(15, 23, 42, 0.08); /* Very soft border line */
  --color-border-hover: rgba(7, 82, 197, 0.3); /* Soft Royal Blue highlight */
  
  /* Text Colors */
  --text-main: #0f172a; /* Slate 900 for titles */
  --text-muted: #475569; /* Slate 600 for descriptions */
  --text-accent: #0752c5; /* Royal Blue accent */

  /* Accent Gradients */
  --primary-color: #0752c5; /* Royal Blue */
  --secondary-color: #c4ee18; /* Acid Lime */
  --accent-gradient: linear-gradient(135deg, #0752c5 0%, #c4ee18 100%);
  --text-gradient: linear-gradient(135deg, #0f172a 40%, #0752c5 100%);
  
  /* Shadows & Radius */
  --card-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06), 0 0 1px rgba(15, 23, 42, 0.1);
  --card-shadow-hover: 0 30px 60px -20px rgba(7, 82, 197, 0.1), 0 0 1px rgba(7, 82, 197, 0.15);
  --glow-shadow: 0 12px 30px -10px rgba(7, 82, 197, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-speed: 0.4s;
  --transition-bezier: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   2. GLOBAL PRESETS & ANIMATIONS
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) var(--transition-bezier);
}

/* Background floating glow blobs for rich depth */
.glow-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(7, 82, 197, 0.14) 0%, transparent 70%);
  animation: float 20s infinite alternate ease-in-out;
}

.glow-2 {
  top: 45%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 238, 24, 0.1) 0%, transparent 70%);
  animation: float 25s infinite alternate-reverse ease-in-out;
}

.glow-3 {
  bottom: 5%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.04) 0%, transparent 70%);
  animation: float 18s infinite alternate ease-in-out 2s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 40px) scale(1.1);
  }
}

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

/* ==========================================
   3. NAVIGATION HEADER
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

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

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  position: relative;
  transition: transform 0.3s ease;
}

.logo-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent-gradient);
  animation: logoPulseRing 2s infinite cubic-bezier(0.25, 0, 0, 1);
  z-index: -1;
}

.logo:hover .logo-dot {
  transform: scale(1.4);
}

@keyframes logoPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}


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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

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

.nav-btn {
  background: var(--text-main);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.mobile-btn {
  display: block;
  text-align: center;
  background: var(--accent-gradient);
  color: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: 16px;
}

/* ==========================================
   4. HERO BANNER & CANVA-STYLE INTERACTIVE CANVAS
   ========================================== */
.hero {
  padding: 160px 40px 100px;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  text-align: left;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  color: var(--text-accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.badge-tag svg {
  color: var(--secondary-color);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.8px;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.btn-primary {
  background: var(--text-main);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--color-border);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.1);
}

/* Entrance Animations on Load */
.animate-hero {
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-bezier) forwards;
}

.hero-title.animate-hero {
  animation-delay: 0.1s;
}

.hero-desc.animate-hero {
  animation-delay: 0.2s;
}

.hero-actions.animate-hero {
  animation-delay: 0.3s;
}

.hero-visual.animate-hero {
  animation-delay: 0.4s;
}

/* Canva-Style Canvas Layout */
.canvas-container {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(7, 82, 197, 0.08) 0%, rgba(196, 238, 24, 0.04) 50%, transparent 100%);
  filter: blur(40px);
  pointer-events: none;
  animation: pulseGlow 6s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}

.canvas-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  transition: all 0.4s var(--transition-bezier);
  overflow: hidden;
}

.canvas-card:hover {
  transform: scale(1.05) translateY(-5px) !important;
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 20px 40px -12px rgba(99, 102, 241, 0.15), 0 0 1px rgba(99, 102, 241, 0.3);
  z-index: 10;
}

/* Floating Animations mapping */
.float-slow {
  animation: floatSlow 7s infinite alternate ease-in-out;
}

.float-medium {
  animation: floatMedium 5.5s infinite alternate ease-in-out;
}

.float-fast {
  animation: floatFast 4s infinite alternate ease-in-out;
}

@keyframes floatSlow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatMedium {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(18px) translateX(6px) rotate(-1deg); }
}

@keyframes floatFast {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px) translateX(-4px); }
}

/* Code Editor Card UI */
.card-code {
  width: 280px;
  top: 15px;
  left: 0;
  z-index: 3;
}

.card-code .card-header {
  background: rgba(15, 23, 42, 0.05);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid rgba(15, 23, 42, 0.04);
}

.card-code .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.card-code .dot.red { background: #ff5f56; }
.card-code .dot.yellow { background: #ffbd2e; }
.card-code .dot.green { background: #27c93f; }

.tab-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 6px;
}

.code-text {
  padding: 16px;
  font-family: monospace;
  font-size: 0.8rem;
  color: #334155;
  background: #fafafa;
}

.line-c {
  margin-bottom: 6px;
  white-space: nowrap;
}

.indent-1 { padding-left: 14px; }
.indent-2 { padding-left: 28px; }

.c-tag { color: #db2777; font-weight: 700; }
.c-var { color: #2563eb; }
.c-html { color: #0891b2; }
.c-attr { color: #d97706; }
.c-val { color: #16a34a; }

.code-text .cursor {
  display: inline-block;
  font-weight: 700;
  color: #4f46e5;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* CMS Panel Card UI */
.card-panel {
  width: 250px;
  right: 10px;
  top: 90px;
  padding: 20px;
  z-index: 2;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-row:last-child {
  margin-bottom: 0;
}

.panel-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.panel-slider {
  position: relative;
  width: 110px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 4px;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 4px;
}

.slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

.panel-toggle {
  width: 38px;
  height: 20px;
  background: #cbd5e1;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.panel-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.panel-toggle.active {
  background: #10b981;
}

.panel-toggle.active::after {
  transform: translateX(18px);
}

.panel-color {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.color-preview {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--primary-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Performance Circle Card UI */
.card-performance {
  width: 220px;
  bottom: 25px;
  left: 40px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
}

.perf-circle {
  width: 50px;
  height: 50px;
}

.circular-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

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

.circle {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke: #10b981;
  animation: progressCircle 1.5s ease-out forwards;
}

@keyframes progressCircle {
  0% { stroke-dasharray: 0 100; }
}

.percentage {
  fill: #0f172a;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-anchor: middle;
}

.perf-details {
  display: flex;
  flex-direction: column;
}

.perf-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.perf-status {
  font-size: 0.85rem;
  font-weight: 800;
  color: #059669;
}

/* ==========================================
   5. SERVICES SECTION
   ========================================== */
.services {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title span {
  color: var(--text-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  transition: all var(--transition-speed) var(--transition-bezier);
  position: relative;
  box-shadow: var(--card-shadow);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  transition: width 0.4s var(--transition-bezier);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-page);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.25);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ==========================================
   6. PORTFOLIO SHOWCASE
   ========================================== */
.portfolio {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Featured card layout (Super Multi-Mode Slider) */
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.featured-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1.5px solid var(--color-border);
}

.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-speed) var(--transition-bezier);
}

.featured-card:hover .featured-visual img {
  transform: scale(1.04);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.15) 100%);
  pointer-events: none;
}

.featured-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-details h3 {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--text-main);
}

.featured-details h3 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

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

.featured-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-right: 10px;
}

/* Sub-grid for upcoming items */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.upcoming-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.upcoming-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.coming-soon-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #7c3aed;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.upcoming-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-page);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.upcoming-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.upcoming-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card Glow Hover Effects */
.card-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  pointer-events: none;
}

.upcoming-card:hover .card-glow-effect {
  opacity: 1;
}

/* ==========================================
   7. WHY CHOOSE US (ABOUT) SECTION
   ========================================== */
.about {
  padding: 100px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.strength-card {
  padding: 12px;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.strength-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.strength-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.strength-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ==========================================
   8. CONTACT SECTION & CTAs
   ========================================== */
.contact {
  padding: 100px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(255, 122, 89, 0.03) 100%), var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
  color: var(--text-main);
}

.contact-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* Modern Contact Details Grid */
.contact-details {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--color-border);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--transition-bezier);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Hover States for Contact Elements */
.tel-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 122, 89, 0.12);
}

.tel-item:hover .contact-icon {
  background: var(--secondary-color);
  color: white;
}

.email-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.12);
}

.email-item:hover .contact-icon {
  background: var(--primary-color);
  color: white;
}

/* ==========================================
   9. FOOTER
   ========================================== */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 40px;
  background: #090d16; /* Keeping a contrast dark footer for modern branding end-anchor */
  color: #94a3b8;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-info p {
  color: #64748b;
}

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

.footer-link {
  color: #94a3b8;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

/* ==========================================
   10. SCROLL TRANSLATIONS & MOBILE ADJUSTMENTS
   ========================================== */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--transition-bezier), transform 0.6s var(--transition-bezier);
}

.animate-card.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Toggle Hamburger Icon */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.mobile-toggle.active {
  transform: rotate(90deg);
}

/* ==========================================
   11. MY TOOLKIT & TECH STACK SECTION
   ========================================== */
.tech-stack {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tech-category {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) var(--transition-bezier);
  position: relative;
  overflow: hidden;
}

.tech-category:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.tech-category h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 10px;
  letter-spacing: -0.5px;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-page);
  border: 1.5px solid var(--color-border);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s var(--transition-bezier);
  cursor: default;
}

.tech-badge:hover {
  background: white;
  transform: scale(1.05);
  border-color: var(--text-main);
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.tech-dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Specific Indicator Colors for Canva UI appeal */
.color-react { background: #61dafb; box-shadow: 0 0 8px rgba(97, 218, 251, 0.5); }
.color-tailwind { background: #38bdf8; box-shadow: 0 0 8px rgba(56, 189, 248, 0.5); }
.color-css { background: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.5); }
.color-bootstrap { background: #7952b3; box-shadow: 0 0 8px rgba(121, 82, 179, 0.5); }
.color-js { background: #eab308; box-shadow: 0 0 8px rgba(234, 179, 8, 0.5); }
.color-html { background: #ea580c; box-shadow: 0 0 8px rgba(234, 88, 12, 0.5); }

.color-figma { background: #a855f7; box-shadow: 0 0 8px rgba(168, 85, 247, 0.5); }
.color-photoshop { background: #31a8ff; box-shadow: 0 0 8px rgba(49, 168, 255, 0.5); }
.color-xd { background: #ff263e; box-shadow: 0 0 8px rgba(255, 38, 62, 0.5); }
.color-ui { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
.color-responsive { background: #6366f1; box-shadow: 0 0 8px rgba(99, 102, 241, 0.5); }

.color-hubspot { background: #ff7a59; box-shadow: 0 0 8px rgba(255, 122, 89, 0.5); }
.color-hubl { background: #f97316; box-shadow: 0 0 8px rgba(249, 115, 22, 0.5); }
.color-module { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
.color-migration { background: #a855f7; box-shadow: 0 0 8px rgba(168, 85, 247, 0.5); }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 3rem;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .badge-tag {
    margin: 0 auto 28px;
    display: flex;
    width: fit-content;
  }
  .canvas-container {
    max-width: 400px;
    margin: 0 auto;
  }
  .featured-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 130px 20px 80px;
  }
  
  .hero-title {
    font-size: 2.3rem;
    letter-spacing: -1.2px;
    line-height: 1.2;
  }
  
  .hero-desc {
    font-size: 1.05rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .canvas-container {
    height: 360px;
  }
  
  .card-code {
    width: 240px;
  }
  
  .card-panel {
    width: 210px;
    top: 80px;
  }
  
  .card-performance {
    width: 200px;
    bottom: 10px;
    left: 20px;
  }
  
  .services, .portfolio, .contact {
    padding: 60px 20px;
  }
  
  .strengths-grid {
    gap: 24px;
    margin-top: 36px;
  }
  
  .featured-card {
    padding: 30px 20px;
  }
  
  .featured-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .contact-card {
    padding: 40px 24px;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
