:root {
  --bg-main: #f6f8f2;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: rgba(255, 255, 255, 0.95);
  --accent-primary: #127681;   /* teal */
  --accent-secondary: #91b52f; /* green */
  --accent-accent: #e38a27;    /* warm orange */
  --accent-soft-blue: rgba(18, 118, 129, 0.12);
  --accent-soft-green: rgba(145, 181, 47, 0.16);
  --border-subtle: rgba(226, 232, 240, 0.8);
  --text-main: #1c1c1b;
  --text-muted: #334155;
  --text-soft: #1e293b;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 10px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.08);
  --shadow-pill: 0 12px 30px rgba(56, 189, 248, 0.2);
  --transition-fast: 0.18s ease;
}

/* * {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #f6f8f2, #ffffff);
  color: var(--text-main);
} */

/* body.template6{
  color: #000;
} */


/* Layout shell */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(18, 118, 129, 0.22), transparent 60%),
    radial-gradient(circle at bottom right, rgba(145, 181, 47, 0.2), transparent 55%);
}
.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* Sticky top nav */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.top-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.7);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-title-main {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
}
.nav-title-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
}
.nav-link {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 6px 10px;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.nav-link span.material-icons {
  font-size: 15px;
}
.nav-link:hover {
  background: rgba(241, 245, 249, 0.9);
  border-color: rgba(59, 130, 246, 0.5);
  color: #1e293b;
}
.nav-cta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-cta-btn {
  border-radius: 999px;
  border: none;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #0f172a;
  box-shadow: var(--shadow-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}
.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(56, 189, 248, 0.55);
  opacity: 0.98;
}
.nav-cta-outline {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 7px 12px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.nav-cta-outline:hover {
  background: rgba(241, 245, 249, 0.9);
  border-color: rgba(59, 130, 246, 0.6);
  color: #1e293b;
}

/* Hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-left {
  position: relative;
  border-radius: 12px;
  /* background: radial-gradient(circle at top left, rgba(18, 118, 129, 0.22), transparent 62%),
              radial-gradient(circle at bottom right, rgba(145, 181, 47, 0.2), transparent 60%),
              linear-gradient(135deg, #ffffff, #f6f8f2);
  border: 1px solid rgba(226, 232, 240, 0.8); */
  box-shadow: var(--shadow-soft);
  padding: 24px 24px 22px;
  overflow: hidden;
}
.hero-bg-badge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(18, 118, 129, 0.16), transparent 60%),
    radial-gradient(circle at bottom left, rgba(145, 181, 47, 0.22), transparent 65%);
  opacity: 0.8;
}
.hero-left-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-chip {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 4px 10px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.hero-chip span.material-icons {
  font-size: 17px;
  color: var(--accent-primary);
}
.hero-chip.highlight {
  border-color: rgba(145, 181, 47, 0.9);
  color: #1c1c1b;
  background: linear-gradient(135deg, rgba(145, 181, 47, 0.18), rgba(255, 255, 255, 0.96));
}

.hero-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.hero-name {
  font-size: clamp(29px, 3.1vw, 35px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #0f172a;
}
.hero-tagline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 2px;
}
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.metric-pill {
  border-radius: 999px;
  /* border: 1px solid rgba(226, 232, 240, 0.8); */
  border: 1px solid rgb(209 213 219);
  padding: 6px 10px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e293b;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9)); */
  background: #ffffff;
}
.metric-pill span.material-icons {
  font-size: 16px;
  /* color: #facc15; */
}

.hero-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 720px) {
  .hero-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  /* background: radial-gradient(circle at top left, rgba(18, 118, 129, 0.12), transparent 60%),
              rgba(255, 255, 255, 0.97); */
  background: #ffffff;
  padding: 10px 11px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.contact-value {
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
}
.contact-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.contact-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-primary);
  font-size: 16px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-cta-primary {
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-accent));
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(18, 118, 129, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}
.hero-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 50px rgba(18, 118, 129, 0.6);
  opacity: 0.98;
}
.hero-cta-secondary {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 10px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(56, 189, 248, 0.8);
  color: #0f172a;
}

.hero-footer-row {
  padding-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-soft);
}
.hero-lang-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lang-pill {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 4px 9px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lang-pill span.material-icons {
  font-size: 16px;
  color: var(--accent-primary);
}

/* Hero right: profile spotlight */
.hero-right {
  position: relative;
  border-radius: var(--radius-md);
  /* border: 1px solid rgba(226, 232, 240, 0.8); */
  /* background: radial-gradient(circle at top, rgba(18, 118, 129, 0.18), transparent 60%),
              rgba(255, 255, 255, 0.98); */
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.spotlight-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 10px;
}
.spotlight-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #127681; /* teal title color */
}
.spotlight-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.9);
  padding: 4px 10px;
  font-size: 12px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12), rgba(255, 255, 255, 0.96));
  color: #facc15;
}
.spotlight-rating span.material-icons {
  font-size: 17px;
}

.spotlight-photo-wrap {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.spotlight-orbit {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 1px dashed rgb(100 181 187);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}
.spotlight-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.32), transparent 70%);
  filter: blur(2px);
}
.spotlight-img-frame {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  padding: 3px;
  background: conic-gradient(from 210deg, var(--accent-secondary), var(--accent-primary), #e38a27, var(--accent-secondary));
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
}
.spotlight-img-frame-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #ffffff;
}
.spotlight-img-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.spotlight-badge {
  position: absolute;
  bottom: 8px;
  right: 30px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(56, 189, 248, 0.8);
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 200px;
  min-width: 120px;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spotlight-badge span.material-icons {
  font-size: 16px;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.spotlight-badge .spotlight-badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-footer {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
}
@media (max-width: 480px) {
  .spotlight-footer {
    grid-template-columns: minmax(0, 1fr);
  }
}
.spotlight-tag {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}
.spotlight-tag span.material-icons {
  font-size: 17px;
  color: #a855f7;
}

/* Section wrapper */
.sections-grid {
  /* margin-top: 28px; */
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .sections-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section-card {
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
}
/* About section with stronger teal accent background */
#about.section-card {
  background: linear-gradient(135deg, rgba(18, 118, 129, 0.12) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(18, 118, 129, 0.35);
}
/* Services section with richer green accent background */
#services.section-card {
  background: linear-gradient(135deg, rgba(145, 181, 47, 0.14) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(145, 181, 47, 0.35);
}
/* Right column cards: awards / certifications / testimonials with clearer contrast */
#awards.section-card,
#certifications.section-card,
#testimonials.section-card {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.14) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(148, 163, 184, 0.75);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 12px; */
}
.section-title-main {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  /* align-items: center; */
  gap: 8px;
  color: #127681; /* teal section titles */
}
.section-title-main span.material-icons {
  font-size: 19px;
  color: var(--accent-primary);
}
.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* About / language tabs */
.lang-tabs {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 118, 129, 0.25);
  padding: 3px;
  gap: 3px;
  box-shadow: 0 2px 8px rgba(18, 118, 129, 0.1);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.lang-tabs:hover {
  border-color: rgba(18, 118, 129, 0.4);
  box-shadow: 0 4px 12px rgba(18, 118, 129, 0.15);
}
.lang-tab {
  border-radius: 999px;
  border: none;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  position: relative;
}
.lang-tab:hover {
  background: rgba(18, 118, 129, 0.08);
  color: var(--accent-primary);
  transform: translateY(-1px);
}
.lang-tab:active {
  transform: translateY(0);
}
.lang-tab.active {
  background: var(--accent-primary);
  color: #100f0f;
  box-shadow: 0 4px 12px rgba(18, 118, 129, 0.25);
  font-weight: 600;
}
.lang-pane {
  display: none;
  font-size: 14px;
  color: #1e293b;
  line-height: 1.7;
}
.lang-pane.active {
  display: block;
}

/* Curved content box inside About language panes */
.about-content-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: radial-gradient(circle at top left, rgba(18, 118, 129, 0.10), transparent 60%),
              rgba(255, 255, 255, 0.98);
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  margin-top: 4px;
}

/* Services cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.service-card {
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: radial-gradient(circle at top, rgba(18, 118, 129, 0.08), transparent 60%),
              rgba(255, 255, 255, 0.98);
  padding: 10px 10px 9px;
  font-size: 13px;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  cursor: default;
}
.service-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(18, 118, 129, 0.35);
  background: rgba(238, 244, 240, 0.96);
  padding: 3px 9px;
  font-size: 12px;
  color: var(--accent-primary);
  margin-bottom: 4px;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 118, 129, 0.18);
  border-color: rgba(18, 118, 129, 0.9);
  background: radial-gradient(circle at top, rgba(145, 181, 47, 0.22), transparent 60%),
              rgba(255, 255, 255, 0.98);
}
.service-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.service-title {
  font-size: 13px;
  font-weight: 500;
  color: #127681; /* teal service title */
}
.service-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(227, 138, 39, 0.12);
  color: #b45309;
  border: 1px solid rgba(227, 138, 39, 0.4);
}

.service-description {
  font-size: 13px;
  color: #1e293b;
  line-height: 1.6;
  margin-top: 4px;
}

.load-more {
  margin-top: 10px;
  text-align: right;
}
.load-more-btn {
  border-radius: 999px;
  border: 1px dashed rgba(226, 232, 240, 0.8);
  padding: 6px 11px;
  font-size: 12px;
  color: var(--text-muted);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.load-more-btn span.material-icons {
  font-size: 17px;
}
.load-more-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(56, 189, 248, 0.85);
  color: #1e293b;
}

/* Awards / Certifications / Education */
.badge-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.badge-card {
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.98);
  padding: 9px 10px 8px;
  font-size: 13px;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-title-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: baseline;
}
.badge-title {
  font-weight: 500;
  color: var(--accent-primary, #3b82f6);
}
.show-more-link {
  color: var(--color-theme-one);
  font-weight: bold !important;
  text-decoration: none !important;
  margin-left: 5px;
  font-size: 12px;
  cursor: pointer;
}
.show-more-link:hover {
  text-decoration: underline !important;
  opacity: 0.8;
}
.badge-meta {
  font-size: 12px;
  color: var(--text-soft);
}

/* Testimonials */
.testimonial-shell {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.35s ease-out;
  will-change: transform;
}
.testimonial-card {
  min-width: 100%;
  padding: 4px 2px;
}
.testimonial-inner {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: radial-gradient(circle at top, rgba(18, 118, 129, 0.16), transparent 60%),
              rgba(255, 255, 255, 0.99);
  padding: 12px 12px 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(250, 204, 21, 0.9);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.testimonial-text {
  font-size: 13px;
  color: #0f172a;
  line-height: 1.6;
  margin-bottom: 6px;
}
.testimonial-stars {
  font-size: 15px;
  color: #facc15;
}
.testimonial-nav {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-soft);
}
.btn-pill {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1e293b;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.btn-pill span.material-icons {
  font-size: 17px;
}
.btn-pill:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(56, 189, 248, 0.85);
}
.dot-row {
  display: flex;
  gap: 4px;
  align-items: center;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.6);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.dot.active {
  background: var(--accent-primary);
  transform: scale(1.2);
}

/* Social media */
.social-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* margin-top: 6px; */
}
.social-chip {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  /* padding: 6px 11px; */
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e293b;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.98);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.social-chip span.material-icons {
  font-size: 19px;
}

.social-chip img {
    width: 60%;
}
.social-chip.facebook:hover {
  border-color: #3b82f6;
  box-shadow: 0 5px 10px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}
.social-chip.instagram:hover {
  border-color: #ec4899;
  box-shadow: 0 5px 10px rgba(236, 72, 153, 0.5);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}
.social-chip.linkedin:hover {
  border-color: #0ea5e9;
  box-shadow: 0 5px 10px rgba(14, 165, 233, 0.5);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}
.social-chip.twitter:hover {
  border-color: #38bdf8;
  box-shadow: 0 5px 10px rgba(56, 189, 248, 0.5);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}
.social-chip.youtube:hover {
  border-color: #ef4444;
  box-shadow: 0 5px 10px rgba(239, 68, 68, 0.5);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}

/* Floating chat */
.chat-fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at top, rgba(18, 118, 129, 0.3), transparent 60%),
              linear-gradient(135deg, var(--accent-secondary), var(--accent-accent));
  box-shadow: 0 22px 50px rgba(18, 118, 129, 0.7);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  z-index: 60;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}
.chat-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(18, 118, 129, 0.9);
  opacity: 0.96;
}

.chat-panel {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 320px;
  max-width: 92vw;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  z-index: 60;
}
.chat-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chat-header {
  padding: 8px 10px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #0f172a;
}
.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(226, 232, 240, 0.8);
}
.chat-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-header-text {
  font-size: 12px;
}
.chat-header-text strong {
  display: block;
  font-size: 13px;
}
.chat-close-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  color: #0f172a;
}
.chat-body {
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.chat-fields {
  padding: 0 10px 9px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.chat-field label {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
  color: var(--text-muted);
}
.chat-input,
.chat-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.97);
  padding: 5px 7px;
  font-size: 13px;
  color: #1e293b;
  outline: none;
}
.chat-textarea {
  min-height: 60px;
  resize: vertical;
}
.chat-footer {
  padding: 6px 10px 8px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
}
.chat-send-btn {
  border-radius: 999px;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-accent));
  color: #0f172a;
}

/* Small utility */
.mt-xxs { margin-top: 4px; }

.hero-contact-grid .contact-card .contact-icon-row .contact-icon-chip .material-icons {
	font-size: 18px;
}