/* =============== RESET & BASE =============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #101827;
  background: radial-gradient(circle at top left, #eef2ff 0, #f9fbff 35%, #f4f6ff 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

:root {
  --primary: #5b3df6;
  --primary-soft: #ede9ff;
  --primary-deep: #4330c5;
  --accent: #04c7c0;
  --text-main: #111827;
  --text-soft: #6b7280;
  --bg-card: #ffffff;
  --border-subtle: #e5e7eb;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
}

/* =============== LAYOUT =============== */
.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(135deg, #f9f5ff 0, #f3f4ff 35%, #ffffff 100%);
}

/* =============== NAVBAR =============== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;          /* makes it a circle */
  overflow: hidden;            /* hides corners of the image */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* fills the circle nicely */
}


/* nav */
.nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: #4b5563;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.btn.primary:hover {
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.45);
  transform: translateY(-1px);
}

.btn.outline {
  background: #ffffff;
  border-color: #e5e7eb;
}

.btn.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.link {
  background: transparent;
  padding-inline: 0;
  color: var(--primary);
}

.btn.ghost {
  background: #f4f4ff;
  border-color: transparent;
}

.btn.full {
  width: 100%;
}

/* =============== HAMBURGER (MOBILE) =============== */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #111827;
  border-radius: 999px;
  transition: 0.25s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  margin-top: 14px;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 14px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.mobile-nav a {
  font-size: 14px;
}

/* toggle behaviour */
.nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-toggle:checked ~ .mobile-nav {
  display: flex;
}

/* =============== HERO =============== */
.hero {
  padding: 56px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 30px 40px 32px;
  border: 1px solid rgba(209, 213, 230, 0.9);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-value {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-deep);
}

.stat-label {
  font-size: 12px;
  color: var(--text-soft);
  max-width: 170px;
}

/* hero panel */
.hero-panel {
  background: radial-gradient(circle at top left, #111827 0, #020617 60%);
  border-radius: 26px;
  padding: 22px 22px 20px;
  color: #e5e7eb;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-title {
  font-size: 13px;
  font-weight: 600;
}

.panel-meta {
  font-size: 11px;
  color: #9ca3af;
}

.panel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.panel-metrics {
  display: flex;
  gap: 16px;
}

.metric-label {
  font-size: 11px;
  color: #9ca3af;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
}

.metric-tag {
  display: inline-flex;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
}

.metric-tag.alt {
  background: rgba(56, 189, 248, 0.15);
  color: #e0f2fe;
}

.panel-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 6px;
  height: 70px;
}

.bar {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #4f46e5, #22c55e);
  transform-origin: bottom;
  animation: grow 1.1s ease-out both;
}

.bar-1 { height: 22%; animation-delay: 0.05s; }
.bar-2 { height: 45%; animation-delay: 0.12s; }
.bar-3 { height: 68%; animation-delay: 0.19s; }
.bar-4 { height: 82%; animation-delay: 0.26s; }

.panel-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 6px;
}

.dot-1 { background: #a855f7; }
.dot-2 { background: #22c55e; }
.dot-3 { background: #0ea5e9; }

/* =============== TECH STRIP =============== */
.trust-bar {
  padding: 26px 0 10px;
}

.trust-title {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.tech-row {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.tech-row::-webkit-scrollbar { display: none; }

.tech-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  font-size: 13px;
}
.tech-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;  /* optional: gives smooth corners */
}

.tech-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

/* brand-ish colors */
.tech-icon.magento { background: #f97316; }
.tech-icon.shopify { background: #16a34a; }
.tech-icon.wordpress { background: #1d4ed8; }
.tech-icon.figma { background: #6366f1; }
.tech-icon.ps { background: #0f172a; }
.tech-icon.angular { background: #dc2626; }
.tech-icon.js { background: #facc15; color:#111827; }
.tech-icon.meta { background: #2563eb; }
.tech-icon.google { background: #22c55e; }
.tech-icon.openai { background: #4b5563; }

/* =============== OVERVIEW / WEBDEV / UIUX =============== */
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-header h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 14px;
  color: var(--text-soft);
}

.overview-text h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.overview-text p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.check-list {
  margin: 10px 0 18px;
  padding-left: 0;
}

.check-list li {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.check-list.compact li {
  margin-bottom: 4px;
}

.overview-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e5e7eb;
  font-size: 13px;
}

.overview-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.overview-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4ff;
  font-size: 11px;
}

.overview-score {
  display: flex;
  gap: 18px;
}

.score-label {
  font-size: 11px;
  color: var(--text-soft);
}

.score-value {
  font-weight: 700;
  font-size: 18px;
}

.image-placeholder {
  padding: 0; /* remove text padding */
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills area nicely */
  border-radius: 24px;      /* match the card */
  display: block;
}



/* =============== SERVICES GRID =============== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-size: 13px;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-soft);
  margin-bottom: 10px;
}

.service-card ul li {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: var(--primary-soft);
}
/* clickable wrapper for cards (used on Home page) */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* small vector-style icon at top of each card */
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 18px;
}

/* different colors for each card – Home & Services use same order */
.service-grid .service-card:nth-child(1) .service-icon { background: #fee2e2; color: #b91c1c; }   /* Web Dev */
.service-grid .service-card:nth-child(2) .service-icon { background: #ede9fe; color: #4c1d95; }   /* UI/UX / Branding */
.service-grid .service-card:nth-child(3) .service-icon { background: #e0f2fe; color: #1d4ed8; }   /* Branding / Social */
.service-grid .service-card:nth-child(4) .service-icon { background: #dcfce7; color: #166534; }   /* SEO */
.service-grid .service-card:nth-child(5) .service-icon { background: #fef3c7; color: #92400e; }   /* Social / Paid */
.service-grid .service-card:nth-child(6) .service-icon { background: #fce7f3; color: #9d174d; }   /* Paid / AI */
.service-grid .service-card:nth-child(7) .service-icon { background: #e5e7eb; color: #111827; }   /* Content (Home only) */
.service-grid .service-card:nth-child(8) .service-icon { background: #e0f2fe; color: #0f172a; }   /* AI (Home only) */

/* nicer hover */
.service-card {
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: var(--primary-soft);
}


/* =============== PROCESS =============== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 1px dashed #e5e7eb;
  font-size: 13px;
}

.process-step {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.process-card p {
  color: var(--text-soft);
}

/* =============== TESTIMONIALS =============== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  border: 1px solid #e5e7eb;
  font-size: 13px;
}

.stars {
  color: #facc15;
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: var(--text-soft);
  margin-bottom: 10px;
}

.testimonial-meta h4 {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-meta span {
  font-size: 12px;
  color: #9ca3af;
}

/* =============== CTA / PROPOSAL =============== */
.cta-section {
  background: linear-gradient(135deg, #eef2ff 0, #fef3c7 60%, #fdf2ff 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.cta-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: var(--text-soft);
}

/* form */
.proposal-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  font-size: 13px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px 11px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.proposal-form textarea {
  resize: vertical;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(91, 61, 246, 0.2);
}

.small-note {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 6px;
}

/* =============== BLOG / INSIGHTS =============== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  font-size: 13px;
}

.blog-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.blog-card p {
  color: var(--text-soft);
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--primary);
  font-size: 11px;
  margin-bottom: 6px;
}

.blog-link {
  font-size: 13px;
  color: var(--primary);
}

/* =============== SUBSCRIBE =============== */
.subscribe-section {
  background: #1f2937;
  color: #e5e7eb;
  padding: 40px 0;
}

.subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.subscribe-inner h2 {
  font-size: 20px;
}

.subscribe-inner p {
  font-size: 13px;
  color: #9ca3af;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #4b5563;
  background: #111827;
  color: #e5e7eb;
  font-size: 13px;
  outline: none;
}

/* =============== FOOTER =============== */
.footer {
  background: #020617;
  color: #9ca3af;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 26px;
}



.footer-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.footer-col p,
.footer-col li {
  font-size: 12px;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col a {
  color: #9ca3af;
}

.footer-col a:hover {
  color: #e5e7eb;
}

.footer-contact {
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid #111827;
  padding: 10px 0 16px;
  margin-top: 4px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

/* =============== ANIMATIONS =============== */
@keyframes grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
  }

  .hero-grid {
    padding: 18px 14px 22px;
    border-radius: 22px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn.primary {
    width: 100%;
  }

  .hero-actions .btn.link {
    align-self: flex-start;
    padding-left: 0;
  }

  .hero-stats {
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    gap: 22px;
  }

  .form-row {
    flex-direction: column;
  }

  .subscribe-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe-form {
    width: 100%;
  }

  .subscribe-form input {
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
