/* ========= ROOT ========= */
:root {
  --bg: #fdfcf7;
  --bg-alt: #ffffff;
  --accent: #FFC845; /* warm yellow/gold */
  --accent-soft: rgba(255, 200, 69, 0.12);
  --accent-soft2: rgba(255, 200, 69, 0.04);
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --radius-xl: 24px;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.06);
  --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* ========= GLOBAL ========= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}


img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ========= HEADER ========= */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-weight: 600;
  font-size: 16px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 400;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
  color: var(--text-muted);
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.15);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--accent-soft2);
}

.btn-small {
  padding: 7px 16px;
  font-size: 12px;
}

/* Nav Toggle (Mobile) */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 26px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  height: 2px;
  border-radius: 999px;
  background: #111827;
  width: 100%;
  transition: all 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========= HERO ========= */

.hero {
  padding: 40px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--text-main);
}

.accent-underline {
  background: linear-gradient(to right, var(--accent-soft), transparent);
  padding: 0 4px;
  border-radius: 8px;
}

.hero p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 11px;
}

.meta-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.meta-value {
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

/* Hero Image Card */

.hero-image-card {
  position: relative;
  background: var(--bg-alt);
  padding: 18px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.profile-circle {
  position: absolute;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 30% 0, #bfdbfe, transparent);
  top: -40px;
  right: -20px;
  z-index: 0;
}

.profile-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  padding: 7px 11px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  font-size: 9px;
  color: var(--text-muted);
}

.floating-card .label {
  font-weight: 500;
  color: var(--accent);
}

.floating-card.top-left {
  top: 14px;
  left: 14px;
}

.floating-card.bottom-right {
  bottom: 14px;
  right: 14px;
}

/* ========= SECTIONS ========= */

.section {
  padding: 36px 0;
}

.section-alt {
  background: var(--accent-soft2);
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 600;
}

.section-head p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* About */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1.4fr);
  gap: 24px;
  align-items: flex-start;
}

.two-col p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--text-main);
}

.check-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: var(--accent);
}

.about-cards {
  display: grid;
  gap: 10px;
}

.mini-card {
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  font-size: 11px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.02);
}

.mini-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 3px;
}

/* Services */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 16px 14px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  font-size: 12px;
  transition: all 0.2s ease;
}

.service-card .icon {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Projects */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  padding: 16px 14px;
  background: var(--bg-alt);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.02);
  transition: all 0.2s ease;
}

.project-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 4px;
}

.project-card h3 {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 600;
}

.project-card p {
  margin: 0;
  color: var(--text-muted);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  padding: 14px 12px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  font-size: 11px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.02);
}

.step-number {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-bottom: 4px;
}

.process-step h3 {
  font-size: 12px;
  margin: 0 0 4px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1.8fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-grid h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

.contact-grid p {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-info p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.contact-info i {
  color: var(--accent);
  font-size: 13px;
}

.contact-form {
  padding: 16px 14px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  font-size: 12px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-family: var(--font-main);
  font-size: 11px;
  outline: none;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.btn-block {
  width: 100%;
  margin-top: 4px;
}

/* Footer */

.footer {
  padding: 14px 0 18px;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: var(--text-muted);
}

.footer-note {
  font-size: 10px;
}

/* ========= RESPONSIVE ========= */

.desktop-only {
  display: inline-flex;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .cards-grid,
  .projects-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .nav {
    position: absolute;
    top: 60px;
    right: 14px;
    left: 14px;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
  }

  .nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    padding: 8px 10px;
    color: var(--text-main);
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 22px;
  }

  .section {
    padding: 26px 0;
  }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  background: var(--bg-alt);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(37, 99, 235, 0.25);
}

.project-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 14px 14px 12px;
  font-size: 12px;
}

.project-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 4px;
}

.project-content h3 {
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--text-main);
}

.project-content p {
  margin: 0 0 8px;
  color: var(--text-muted);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.project-tags span {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft2);
  color: var(--accent);
}

.project-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.project-links a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.project-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
/* ======== SOCIAL SECTION ======== */
.social-section {
  background: var(--accent-soft2);
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}

.social-section .section-head h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.social-section .section-head p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.social-icons a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* Responsive tweak */
@media (max-width: 480px) {
  .social-icons {
    gap: 10px;
  }
  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}


/* ======== ABOUT PAGE ======== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.about-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.about-content h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-skills h3 {
  font-size: 16px;
  margin: 14px 0 6px;
  color: var(--text-main);
}

.about-skills ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-skills li {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-skills i {
  color: var(--accent);
}

.about-highlight {
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 10px 14px;
  margin: 14px 0;
  font-size: 12px;
  color: var(--text-main);
}

.about-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.about-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.about-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-photo {
    order: -1;
  }
  .about-content h1 {
    text-align: center;
  }
}
/* ======== ABOUT STATS ======== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.about-stat {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 10px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  font-size: 12px;
  color: var(--text-muted);
}

.about-stat h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.about-stat h3 span {
  font-size: 11px;
  font-weight: 400;
  color: var(--accent);
}

/* ======== ABOUT SERVICES ======== */
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
  font-size: 12px;
  transition: all 0.25s ease;
}

.about-service-card i {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 6px;
}

.about-service-card h3 {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 600;
}

.about-service-card p {
  margin: 0;
  color: var(--text-muted);
}

.about-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 200, 69, 0.3); /* if using yellow theme */
}

/* ======== TECH STACK TAGS ======== */
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.stack-tags span {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.02);
}

/* ======== ABOUT PROCESS (reuse style similar to home) ======== */
.about-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-process .process-step {
  padding: 14px 12px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  font-size: 11px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.02);
}

.about-process .step-number {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-bottom: 4px;
}

.about-process h3 {
  font-size: 12px;
  margin: 0 0 4px;
  font-weight: 600;
}

.about-process p {
  margin: 0;
  color: var(--text-muted);
}

/* ======== ABOUT CTA ======== */
.about-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.about-cta p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-stats,
  .about-services-grid,
  .about-process {
    grid-template-columns: 1fr;
  }
}
/* ===== SERVICES PAGE ===== */

/* Hero */
.services-hero {
  background: var(--accent-soft2);
}

.services-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1.4fr);
  gap: 24px;
  align-items: center;
}

.services-hero-content h1 {
  font-size: 24px;
  margin: 0 0 10px;
}

.services-hero-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.eyebrow-soft {
  background: var(--accent-soft);
  color: var(--accent);
}

.services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.services-pills span {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}

.services-pills i {
  color: var(--accent);
  font-size: 11px;
}

.services-hero-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px 12px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
}

.services-hero-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.services-hero-card ul {
  margin: 0;
  padding-left: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Core services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card-advanced {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  font-size: 12px;
  transition: all 0.25s ease;
}

.service-card-advanced:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 200, 69, 0.3); /* match your yellow theme */
}

.service-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 15px;
}

.service-card-advanced h3 {
  font-size: 15px;
  margin: 0 0 6px;
  font-weight: 600;
}

.service-card-advanced p {
  margin: 0 0 8px;
  color: var(--text-muted);
}

.service-card-advanced ul {
  padding-left: 16px;
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 11px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft2);
  color: var(--accent);
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.industry-card {
  padding: 9px 10px;
  font-size: 11px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.02);
  color: var(--text-main);
}

/* Reuse about-process and about-cta from about page */

/* Responsive */
@media (max-width: 900px) {
  .services-hero-wrap {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== WORK PAGE ===== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 200, 69, 0.28);
}

.work-img-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-info {
  padding: 10px 12px 12px;
}

.work-info h3 {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--text-main);
}

.work-info p {
  font-size: 11px;
  margin: 0;
  color: var(--text-muted);
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.modal.open {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  padding: 18px 16px 14px;
  position: relative;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.25);
  font-size: 12px;
}

.modal-dialog h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.modal-dialog p {
  margin: 0 0 8px;
  color: var(--text-muted);
}

.modal-dialog ul {
  margin: 0 0 8px 16px;
  padding: 0;
  color: var(--text-muted);
  font-size: 11px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal-tags span {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft2);
  color: var(--accent);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--accent);
  color: #ffffff;
}

/* Responsive */

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT PAGE ===== */

.contact-hero {
  background: var(--accent-soft2);
}

.contact-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
}

.contact-hero h1 {
  font-size: 26px;
  margin: 0 0 10px;
}

.contact-hero p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.contact-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.contact-hero-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.full-form {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.full-form h2 {
  font-size: 18px;
  margin: 0 0 8px;
}

.full-form p {
  font-size: 12px;
  margin: 0 0 14px;
  color: var(--text-muted);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: var(--accent);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
  font-size: 13px;
  transition: all 0.25s ease;
}

.contact-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero-wrap {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
