/* ====================================================
   style.css  –  AssureSol Services
   ANIMATIONS ADDED:
     1. Hero content  → staggered fade-up on page load
     2. About card    → fade-up + scale-in on scroll
   PREVIOUS FIXES RETAINED:
     3. Mobile nav    → solid white when menu opens
     4. Horizontal scroll eliminated
   ==================================================== */

/* ════════════════════════════════════════════════════
   VARIABLES & RESET
   ════════════════════════════════════════════════════ */
:root {
  --primary-color: #10b981;
  --primary-hover: #059669;
  --text-color: #334155;
  --bg-light: #f8fafc;
  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 2px 12px rgba(15,23,42,0.05);
  --radius-card: 1.25rem;
  --radius-card-lg: 1.5rem;
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-color);
  background: var(--bg-body);
  text-align: left;
  overflow-x: hidden;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }

.text-gradient {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #10b981;
}

/* ════════════════════════════════════════════════════
   KEYFRAME DEFINITIONS
   ════════════════════════════════════════════════════ */

/* Shared fade-up: used by hero children & about card */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About card also gets a subtle scale pop */
@keyframes fadeUpScale {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Buttons slide up + fade from slightly lower */
@keyframes fadeUpButtons {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
.navbar {
  width: 100%;
  height: var(--nav-h);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* STATE 1: Transparent */
.navbar.nav-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
.navbar.nav-transparent .brand-name          { color: #ffffff; }
.navbar.nav-transparent .nav-link            { color: rgba(255,255,255,0.88) !important; }
.navbar.nav-transparent .nav-link:hover,
.navbar.nav-transparent .nav-link.active     { color: #34d399 !important; }
.navbar.nav-transparent .navbar-toggler      { border-color: rgba(255,255,255,0.5); }
.navbar.nav-transparent .navbar-toggler-icon { filter: invert(1); }
.navbar.nav-transparent .btn-callus {
  background: rgba(16,185,129,0.85);
  border-color: transparent;
  color: #fff;
  backdrop-filter: blur(6px);
}
.navbar.nav-transparent .btn-callus:hover    { background: var(--primary-color); }

/* STATE 2: Solid white */
.navbar.nav-solid {
  background-color: #ffffff !important;
  box-shadow: 0 2px 16px rgba(15,23,42,0.08) !important;
  border-bottom-color: var(--border-soft) !important;
}
.navbar.nav-solid .brand-name                { color: #10b981; }
.navbar.nav-solid .nav-link                  { color: #4b5563 !important; }
.navbar.nav-solid .nav-link:hover,
.navbar.nav-solid .nav-link.active           { color: var(--primary-color) !important; }
.navbar.nav-solid .btn-callus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.navbar.nav-solid .btn-callus:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* STATE 3: Mobile menu open → entire navbar solid white */
@media (max-width: 991.98px) {
  .navbar.nav-menu-open {
    background-color: #ffffff !important;
    box-shadow: 0 4px 24px rgba(15,23,42,0.12) !important;
    border-bottom-color: var(--border-soft) !important;
    height: auto !important;
  }
  .navbar.nav-menu-open .brand-name            { color: #10b981 !important; }
  .navbar.nav-menu-open .navbar-toggler        { border-color: var(--border-soft) !important; }
  .navbar.nav-menu-open .navbar-toggler-icon   { filter: none !important; }
  .navbar.nav-menu-open .nav-link              { color: #4b5563 !important; }
  .navbar.nav-menu-open .nav-link:hover,
  .navbar.nav-menu-open .nav-link.active       { color: var(--primary-color) !important; }
  .navbar.nav-menu-open .btn-callus {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    backdrop-filter: none !important;
    color: #fff !important;
  }
  .navbar.nav-menu-open .navbar-collapse {
    border-top: 1px solid var(--border-soft);
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}

/* Common nav elements */
.brand-name {
  font-size: 1.85rem;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.navbar-logo { height: 48px; width: auto; object-fit: contain; }

.nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

@media (min-width: 992px) {
  .navbar-nav { margin-left: auto !important; }
  .nav-link   { padding-left: 1rem; padding-right: 1rem; }
}

.btn-callus {
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-callus:hover { transform: translateY(-1px); }

.btn-success         { background-color: var(--primary-color); border-color: var(--primary-color); }
.btn-success:hover   { background-color: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline-success { border-color: var(--primary-color); color: var(--primary-color); }
.btn-outline-success:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

main section { scroll-margin-top: var(--nav-h); }

/* ════════════════════════════════════════════════════
   SCROLL REVEAL  (generic – used by cards etc.)
   ════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   0.65s cubic-bezier(0.4,0,0.2,1),
    transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.pento-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; display: block; max-width: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(3,20,15,.78) 0%,
    rgba(3,20,15,.55) 50%,
    rgba(3,20,15,.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding-top: 5rem; padding-bottom: 5rem;
}

/* ── ANIMATION 1: Hero title ───────────────────────────────────────────────
   Fades up from slightly below, starts 0.2s after page load to let the
   background image render first. Duration 0.9s for a smooth, premium feel.
   ───────────────────────────────────────────────────────────────────────── */
.hero-title {
  font-size: clamp(2.2rem,5vw,3.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);

  /* Animation */
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

/* ── ANIMATION 1b: Hero lead paragraph ───────────────────────────────────
   Staggers 0.15s after the title.
   ───────────────────────────────────────────────────────────────────────── */
.hero-lead {
  font-size: clamp(1rem,1.8vw,1.25rem);
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  text-align: left;
  max-width: 56ch;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);

  /* Animation */
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.38s;
}

/* ── ANIMATION 1c: Hero CTA button group ─────────────────────────────────
   Staggers another 0.15s so buttons arrive last.
   Target the flex wrapper that wraps both buttons.
   ───────────────────────────────────────────────────────────────────────── */
.hero-content .d-flex.gap-3 {
  animation: fadeUpButtons 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.55s;
}

.hero-gradient-text {
  background: linear-gradient(90deg,#34d399 0%,#10b981 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: #34d399;
}

.btn-hero-primary {
  background: var(--primary-color); border-color: var(--primary-color); color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: .6rem;
  box-shadow: 0 4px 16px rgba(16,185,129,.4);
  transition: background .25s, transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover {
  background: var(--primary-hover); border-color: var(--primary-hover);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,.5);
}

.btn-hero-outline {
  background: transparent; border: 2px solid rgba(255,255,255,.75); color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: .6rem;
  backdrop-filter: blur(4px);
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.15); border-color: #fff;
  color: #fff; transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about-fullwidth-section {
  position: relative; width: 100%; min-height: 520px;
  overflow: hidden; display: flex; align-items: center;
}

.about-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; display: block; max-width: none;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
}
.about-fullwidth-section.visible .about-bg-img { transform: scale(1); }

.about-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(2,10,8,.85) 0%,
    rgba(2,10,8,.65) 55%,
    rgba(2,10,8,.3) 100%
  );
  z-index: 1;
}

.about-overlay-content {
  position: relative; z-index: 2; width: 100%;
  padding-top: 5rem; padding-bottom: 5rem;
}

/* ── ANIMATION 2: About card ─────────────────────────────────────────────
   The card uses .reveal → .visible (IntersectionObserver in script.js).
   We override the generic .reveal transition with a richer fadeUpScale
   so it feels like it lifts off the page. Once .visible is added by JS
   the animation fires once via animation-play-state.
   ───────────────────────────────────────────────────────────────────────── */
.about-overlay-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-card-lg);
  padding: 2.5rem 2.8rem; text-align: left;

  /* Override generic .reveal — use animation instead of transition */
  opacity: 0;
  transform: translateY(48px) scale(0.97);
  transition: none; /* disable the generic reveal transition on this card */
}

/* When JS adds .visible, play the animation once */
.about-overlay-card.visible {
  animation: fadeUpScale 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Stagger children inside the about card ──────────────────────────────
   Badge, title, and paragraphs each fade up in sequence after the card
   itself has started animating.
   ───────────────────────────────────────────────────────────────────────── */
.about-overlay-card .section-badge-light {
  opacity: 0;
  animation: none;
}
.about-overlay-card.visible .section-badge-light {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.18s;
}

.about-overlay-card .about-overlay-title {
  opacity: 0;
  animation: none;
}
.about-overlay-card.visible .about-overlay-title {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.30s;
}

.about-overlay-card .about-overlay-text {
  opacity: 0;
  animation: none;
}
.about-overlay-card.visible .about-overlay-text:nth-of-type(1) {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
.about-overlay-card.visible .about-overlay-text:nth-of-type(2) {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.54s;
}

/* ── Respect reduced-motion preference ───────────────────────────────────
   Users who have "reduce motion" enabled in OS settings get instant
   appearance — no motion whatsoever.
   ───────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-lead,
  .hero-content .d-flex.gap-3,
  .about-overlay-card,
  .about-overlay-card.visible,
  .about-overlay-card .section-badge-light,
  .about-overlay-card .about-overlay-title,
  .about-overlay-card .about-overlay-text {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.section-badge-light {
  font-size: .82rem; font-weight: 700; padding: .4rem 1rem;
  letter-spacing: .07em; text-transform: uppercase; border-radius: 999px;
  background: rgba(16,185,129,.25) !important; color: #6ee7b7 !important;
  border: 1px solid rgba(16,185,129,.4);
}

.about-overlay-title {
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 800; line-height: 1.15;
}

.about-gradient-text {
  background: linear-gradient(90deg,#34d399 0%,#10b981 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: #34d399;
}

.about-overlay-text {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,.88);
  text-align: justify !important;
  -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto;
}

/* ════════════════════════════════════════════════════
   SECTION BADGE
   ════════════════════════════════════════════════════ */
.section-badge {
  font-size: .85rem; font-weight: 700; padding: .45rem 1rem;
  letter-spacing: .06em; text-transform: uppercase; border-radius: 999px;
}

/* ════════════════════════════════════════════════════
   INFO STRIP
   ════════════════════════════════════════════════════ */
.information-area { background: #fff; }

.information-card {
  border-radius: var(--radius-card); padding: 1.4rem 1.6rem;
  background: var(--bg-card); border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft); display: flex; align-items: center;
  gap: .9rem; height: 100%; text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.information-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(15,23,42,.12);
  border-color: var(--primary-color);
}
.information-card .icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 999px;
  background: #ecfdf5; display: flex; align-items: center;
  justify-content: center; color: var(--primary-color);
}
.information-card p { display: flex; flex-direction: column; font-size: .88rem; text-align: left; }
.information-card p span:first-child { font-weight: 600; color: #1e293b; }

/* ════════════════════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════════════════════ */
.service-card {
  border-radius: var(--radius-card); background: var(--bg-card);
  box-shadow: 0 2px 16px rgba(16,185,129,.07); border: 1px solid #f1f5f9;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(16,185,129,.13);
  border-color: var(--primary-color);
}
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#10b981 0%,#059669 100%);
  color: #fff; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16,185,129,.1);
}

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact-text,
.contact-text h2,
.contact-text p { text-align: left !important; }

.contact-info-row { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.1rem; }
.contact-info-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: #ecfdf5; color: var(--primary-color); margin-top: 2px;
}
.contact-info-body  { display: flex; flex-direction: column; gap: .1rem; }
.contact-info-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #94a3b8; line-height: 1;
}
.contact-info-value {
  font-size: .95rem; font-weight: 500;
  color: var(--text-color); line-height: 1.4; word-break: break-all;
}
a.contact-info-value       { color: var(--primary-color); transition: color .2s; }
a.contact-info-value:hover { color: var(--primary-hover); }
.contact-card {
  border-radius: var(--radius-card-lg); background: var(--bg-card);
  border: 2px solid #d1fae5;
  box-shadow: 0 8px 32px rgba(16,185,129,.13), 0 1.5px 8px rgba(16,185,129,.07);
}
.contact-card .form-label { font-size: .9rem; font-weight: 500; }

/* ════════════════════════════════════════════════════
   SERVICE MODAL
   ════════════════════════════════════════════════════ */
.service-details-modal {
  position: fixed; inset: 0; display: none;
  align-items: center; justify-content: center; z-index: 2000;
}
.service-details-modal.active { display: flex; }
.service-details-backdrop     { position: absolute; inset: 0; background: rgba(15,23,42,.5); }
.service-details-content {
  position: relative; z-index: 1;
  max-width: 640px; width: 100%;
  margin: 1rem; padding: 2rem 2.2rem;
  background: var(--bg-card);
  border-radius: var(--radius-card-lg); border: 2px solid #d1fae5;
  box-shadow: 0 18px 48px rgba(15,23,42,.25); text-align: left;
  animation: modalPop .35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(.88) translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.service-details-content h3 { font-size: 1.5rem; font-weight: 700; }
.service-details-content ul li {
  position: relative; padding-left: 1.4rem;
  margin-bottom: .45rem; font-size: .95rem;
}
.service-details-content ul li::before {
  content: "•"; position: absolute; left: 0; top: 0;
  color: var(--primary-color);
}
.service-modal-close {
  position: absolute; top: .75rem; right: .9rem;
  border: none; background: transparent;
  font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: var(--text-color); transition: color .2s;
}
.service-modal-close:hover { color: #ef4444; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer-dark { background: #020617; border-top: 1px solid #1e293b; color: #e5e7eb; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .75rem 1.5rem;
}
.footer-copy    { font-size: .85rem; color: #9ca3af; flex-shrink: 0; }
.footer-tagline { font-size: .85rem; color: #6b7280; flex: 1 1 auto; text-align: center; }
.footer-social  { flex-shrink: 0; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; background: #0a66c2; color: #fff !important;
  border-radius: .5rem; font-size: .875rem; font-weight: 600;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(10,102,194,.35);
}
.linkedin-btn:hover {
  background: #004182; transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10,102,194,.5);
  color: #fff !important;
}

/* ════════════════════════════════════════════════════
   SVG ICON SIZES
   ════════════════════════════════════════════════════ */
.icon-svg              { width: 22px; height: 22px; }
.icon-svg-contact      { width: 18px; height: 18px; }
.information-card .icon svg { width: 22px; height: 22px; }
.service-icon svg      { width: 32px; height: 32px; }

/* ════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .pento-hero              { min-height: 80vh; }
  .hero-title              { font-size: clamp(1.9rem,5vw,2.8rem); }
  .hero-lead               { font-size: 1rem; max-width: 100%; }
  .hero-overlay            { background: linear-gradient(to bottom, rgba(3,20,15,.68) 0%, rgba(3,20,15,.58) 100%); }
  .brand-name              { font-size: 1.6rem; }
  .navbar-logo             { height: 40px; }
  .about-fullwidth-section { min-height: 420px; }
  .about-overlay-card      { padding: 2rem 1.8rem; }
}

@media (max-width: 767.98px) {
  .footer-inner   { flex-direction: column; align-items: center; text-align: center; }
  .footer-tagline { text-align: center; }
}

@media (max-width: 575.98px) {
  .pento-hero              { min-height: 70vh; padding-top: 70px; }
  .hero-content            { padding-top: 3rem; padding-bottom: 3rem; }
  .hero-title              { font-size: 1.75rem; }
  .hero-lead               { font-size: .95rem; }
  .btn-hero-primary,
  .btn-hero-outline        { font-size: .9rem; padding: .6rem 1.4rem; }
  .brand-name              { font-size: 1.3rem; }
  .navbar-logo             { height: 32px; }
  .about-fullwidth-section { min-height: 360px; }
  .about-overlay-content   { padding-top: 3rem; padding-bottom: 3rem; }
  .about-overlay-card      { padding: 1.5rem 1.2rem; }
  .about-overlay-title     { font-size: 1.6rem; }
  .about-overlay-text      { font-size: .95rem; }
}

@supports (-ms-ime-align: auto) {
  .about-overlay-text { text-align: justify; -ms-hyphens: auto; }
}