/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #E6EFE6;
}
body {
  background: #fff;
  color: #215D41;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1C97C2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #215D41;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
hr {
  border: 0;
  border-top: 1px solid #CCCCCC;
  margin: 32px 0;
}

/* === BASE COLORS & CUSTOM PROPERTIES === */
:root {
  --brand-primary: #215D41;
  --brand-secondary: #E6EFE6;
  --brand-accent: #1C97C2;
  --brand-accent-dark: #076084;
  --brand-bg: #FFFFFF;
  --brand-error: #E35050;
  --brand-success: #6ED276;
  --text-dark: #202A20;
  --text-light: #ffffff;
  --grey-100: #FBFBFB;
  --grey-200: #F6F8F6;
  --grey-300: #E0E6E0;
  --shadow-light: 0 2px 12px 0 rgba(28,151,194,0.10), 0 1.5px 4px rgba(33,93,65,0.07);
  --shadow-medium: 0 6px 24px -4px rgba(28,151,194,0.15), 0 2.5px 16px rgba(33,93,65,0.14);
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #215D41;
}
blockquote {
  background: var(--brand-secondary);
  border-left: 5px solid var(--brand-accent);
  padding: 16px 24px;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brand-accent-dark);
  border-radius: 24px 8px 24px 8px;
}
strong, b {
  color: var(--brand-accent);
}

/* === LAYOUT CONTAINERS === */
.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 30px 30px 40px 8px;
  box-shadow: none;
}

/* === FLEX SPACING & MANDATORY FLEX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--grey-200);
  border-radius: 24px 8px 24px 8px;
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  transition: transform .19s cubic-bezier(.28,.65,.52,1.34), box-shadow .23s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: var(--shadow-medium);
  background: #fffbe6;
  border-left: 6px solid var(--brand-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--brand-primary);
  padding: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 40;
  box-shadow: 0 6px 32px -18px rgba(28,151,194,.18);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
header nav a img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}
header nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 18px;
  transition: background 0.2s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--brand-accent);
  color: #fff;
  text-decoration: none;
}
header .cta.primary {
  background: var(--brand-accent);
  color: #fff;
  padding: 11px 24px;
  border-radius: 28px 10px 20px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 14px;
  box-shadow: var(--shadow-light);
  border: none;
  transition: transform .16s cubic-bezier(.52,.16,.52,1.34), box-shadow 0.22s, background 0.15s;
  cursor: pointer;
}
header .cta.primary:hover, header .cta.primary:focus {
  transform: scale(1.04) rotate(-2deg);
  background: var(--brand-accent-dark);
  box-shadow: var(--shadow-medium);
  color: #fff;
}

/* =============== MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 16px;
  padding: 10px 18px;
  border: none;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 18px 8px 18px 10px;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 101;
  box-shadow: var(--shadow-medium);
  transition: background 0.15s, transform 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-accent-dark);
  transform: scale(1.06);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 400px;
  height: 100vh;
  z-index: 200;
  padding: 24px 30px 30px;
  transition: transform 0.35s cubic-bezier(0.42,0.0,0.28,1.08), box-shadow 0.25s;
  box-shadow: 0 0 64px 0 rgba(28,151,194,0.18), 0 1.5px 8px rgba(33,93,65,0.08);
  transform: translateX(102vw);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 14px;
  cursor: pointer;
  padding: 6px 13px;
  border-radius: 18px 10px 18px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-accent-dark);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--brand-primary);
  padding: 13px 0 13px 0;
  font-weight: 700;
  border-bottom: 1px solid #F4F4EE;
  transition: background 0.18s, color 0.15s, padding 0.21s;
  border-radius: 8px 18px 10px 18px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: var(--brand-secondary);
  padding-left: 16px;
}

/* Hide nav elements on mobile, show burger */
@media (max-width: 1025px) {
  header nav ul, header nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1026px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(100deg, var(--brand-secondary) 70%, #D8F8F9 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 10px 36px -12px rgba(28,151,194,.09);
  margin-bottom: 60px;
  padding: 36px 0 28px 0;
  animation: pop-in 0.4s cubic-bezier(.6,.3,.3,1.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  gap: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
.hero .content-wrapper {
  gap: 14px;
}
@keyframes pop-in {
  0% { opacity:0; transform: translateY(60px) scale(.97); }
  100% { opacity: 1; transform: none; }
}

/* === FEATURES GRIDS & CARDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.feature {
  flex: 1 1 210px;
  min-width: 190px;
  background: #fff;
  box-shadow: var(--shadow-light);
  border-radius: 22px 6px 26px 18px;
  padding: 24px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: transform .13s, box-shadow .23s, background .18s;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--brand-secondary);
}
.feature img {
  height: 48px;
  margin-bottom: 4px;
}
.feature h3 {
  font-size: 1.15rem;
  color: var(--brand-accent);
  margin-bottom: 6px;
}
.feature strong {
  color: var(--brand-primary);
  font-size: 1.09em;
  font-weight: bold;
}
.feature:hover {
  transform: scale(1.045) rotate(-1deg);
  background: #fffdfa;
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-accent);
  z-index: 2;
}

/* --- SERVICES --- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service {
  flex: 1 1 250px;
  min-width: 210px;
  background: #fefefe;
  border-radius: 18px 32px 16px 22px;
  box-shadow: var(--shadow-light);
  padding: 28px 18px 20px 18px;
  margin-bottom: 20px;
  border: 2px solid var(--brand-secondary);
  transition: box-shadow .18s, border-color .21s, transform .14s;
  position: relative;
  text-align: left;
}
.service h3 {
  font-size: 1.18rem;
  color: var(--brand-accent);
  margin-bottom: 8px;
}
.service strong {
  color: var(--brand-accent-dark);
}
.service:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-accent);
  z-index: 1;
  transform: scale(1.02);
  background: #ffffed;
}

/* --- Facts, Metrics, Partners GRIDS --- */
.fact-grid, .metrics-grid, .project-case-grid, .job-listing-grid, .partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  justify-content: flex-start;
}
.fact-grid > div, .metrics-grid > div, .project-case, .job {
  background: #fff;
  border-radius: 20px 32px 16px 15px;
  box-shadow: var(--shadow-light);
  padding: 30px 25px 18px 25px;
  min-width: 180px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .13s;
  border: 2px solid var(--grey-200);
  text-align: center;
}
.fact-grid > div h3, .metrics-grid > div h3, .job h3 {
  margin-bottom: 6px;
  color: var(--brand-accent);
  font-size: 1.3rem;
}
.project-case {
  text-align: left;
  border-color: var(--brand-secondary);
}
.job-listing-grid {
  gap: 28px;
  margin-bottom: 24px;
}
.job {
  text-align: left;
  border-color: var(--brand-secondary);
}
.project-case:hover, .job:hover, .fact-grid > div:hover, .metrics-grid > div:hover {
  box-shadow: var(--shadow-medium);
  transform: scale(1.03) rotate(-1deg);
  border-color: var(--brand-accent);
}
.certifications-list,
.partners-grid {
  background: var(--brand-secondary);
  border-radius: 18px 8px 20px 16px;
  margin: 24px 0 18px 0;
  padding: 20px 18px 14px 20px;
  box-shadow: 0 2px 8px 0 rgba(33,93,65,0.10);
}
.certifications-list h3, .partners-grid h3 {
  font-size: 1.1rem;
  color: var(--brand-accent-dark);
  margin-bottom: 10px;
}

/* --- EMPLOYEE TESTIMONIALS --- */
.employee-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.employee-testimonials .testimonial-card {
  flex: 1 1 260px;
  background: #F7F6FC;
  color: var(--text-dark);
}
.employee-testimonials .testimonial-card blockquote {
  color: var(--brand-primary);
  background: none;
  border-left: 4px solid var(--brand-accent);
  font-size: 1.02rem;
}
.employee-testimonials .testimonial-card span {
  color: var(--brand-accent-dark);
  font-size: 0.97em;
}

/* --- TESTIMONIALS GRID --- */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  margin-top: 18px;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 12px 0;
  color: #303A30;
  font-size: 1.06rem;
}
.testimonial-details span {
  color: #64666A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96em;
}

/* --- IMPACT STORIES --- */
.impact-stories {
  background: #E6EFE6;
  margin-top: 20px;
  border-radius: 18px 12px 18px 12px;
  padding: 20px 18px 18px 24px;
  font-size: 1.06rem;
  color: var(--brand-primary);
  line-height: 1.5;
  box-shadow: var(--shadow-light);
}

/* --- COOKIE CONSENT BANNER/MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe6;
  border-top: 3px solid var(--brand-accent);
  z-index: 9999;
  box-shadow: 0 0 18px 0 rgba(33,93,65,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 20px;
  font-size: 1rem;
  animation: slideUp 0.35s cubic-bezier(.67,1.3,.6,-1.15);
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-banner strong {
  color: var(--brand-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 22px 10px 22px 10px;
  padding: 11px 24px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  background: var(--brand-accent);
  color: #fff;
  box-shadow: var(--shadow-light);
  transition: background 0.21s, transform 0.14s;
}
.cookie-btn.accept {
  background: var(--brand-primary);
}
.cookie-btn.reject {
  background: var(--brand-error);
}
.cookie-btn.settings {
  background: #fdd835;
  color: var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-accent-dark);
  transform: scale(1.06) rotate(-2deg);
  color: #fff;
}
.cookie-preference-modal {
  position: fixed;
  left: 0;top: 0; right: 0;bottom:0;
  background: rgba(33,93,65,0.19);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity .21s;
}
.cookie-preference-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-preference-box {
  background: #fff;
  border-radius: 28px 10px 22px 12px;
  min-width: 330px;
  max-width: 98vw;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 6px 36px 0 rgba(28,151,194,0.22);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scaleIn .3s cubic-bezier(.38, .06, .72, 1.43);
  position: relative;
}
@keyframes scaleIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-preference-box h3 {
  font-size: 1.19rem;
  color: var(--brand-accent);
  margin-bottom: 8px;
}
.cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-accent);
}
.cookie-category.essential input[type=checkbox] {
  accent-color: var(--brand-primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  border-radius: 15px 5px 15px 5px;
  padding: 4px 13px 2px 12px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-primary);
}

/* ========== BUTTONS & CTAs ========== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 28px 10px 20px 28px;
  background: var(--brand-accent);
  color: #fff;
  padding: 12px 32px;
  font-size: 1.1rem;
  margin-top: 6px;
  margin-bottom: 2px;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  text-shadow: 0 1px 1px rgba(33,93,65,0.08);
  transition: transform .18s, box-shadow .19s, background .16s;
  position: relative;
  z-index: 1;
}
.cta:after {
  content: '';
  position: absolute;
  top:80%;
  left: 18%;
  width: 54%;
  height: 7px;
  background: #e0fcff;
  border-radius: 14px;
  opacity: 0.67;
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
  transition: opacity .18s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-accent-dark);
  transform: scale(1.045) rotate(-1.7deg);
  box-shadow: var(--shadow-medium);
}
.cta:active:after {
  opacity: 0.2;
}

/* ========== SECTIONS, CARDS, SPACING ========== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.service-grid,
.fact-grid,
.metrics-grid,
.project-case-grid,
.partners-grid,
.job-listing-grid,
.testimonial-grid,
.employee-testimonials {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px 32px 16px 22px;
  box-shadow: var(--shadow-light);
  background: #fff;
  padding: 32px 22px 28px 22px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  gap: 15px;
}

/* === FOOTER === */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 30px 16px 15px 16px;
  margin-top: 70px;
  border-radius: 42px 0 0 0;
  box-shadow: 0 -2px 24px -12px rgba(28,151,194,.10);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1rem;
}
footer nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.92;
  border-radius: 8px 16px 10px 18px;
  padding: 4px 10px;
  text-decoration: none;
  transition: background 0.22s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--brand-accent);
  color: #fff;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  margin-top: 10px;
  opacity: 0.92;
}
.footer-brand img {
  height: 30px;
  width: auto;
}

/* === LEGAL & UTILITY PAGES === */
.legal, .utility {
  background: var(--brand-secondary);
  border-radius: 32px 18px 42px 16px;
  margin: 56px auto 56px auto;
  box-shadow: 0 4px 24px 0 rgba(33,93,65, 0.08);
  padding: 40px 25px;
}
.legal h1, .utility h1 {
  color: var(--brand-accent);
}

/* === ANIMATIONS === */
.fade-in {
  animation: fadeIn .45s cubic-bezier(.6,.3,.3,1.07);
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

/* ========== RESPONSIVE (MOBILE FIRST) ========== */
@media (max-width: 1025px) {
  .hero .container,
  .content-wrapper {
    padding-left: 7px;
    padding-right: 7px;
  }
  .feature-grid,
  .service-grid,
  .fact-grid,
  .metrics-grid,
  .project-case-grid,
  .job-listing-grid,
  .testimonial-grid,
  .employee-testimonials {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.1rem; }
  section, .section { padding: 28px 6px; }
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section { flex-direction: column; align-items: flex-start; }
  section, .section { padding: 18px 2px; margin-bottom: 36px; }
  .hero { padding: 17px 0 13px 0; border-radius: 0 0 21px 21px; }
  .card, .feature, .service, .fact-grid > div, .metrics-grid > div, .project-case, .job {
    padding: 21px 10px 14px 10px;
    min-width: 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .98rem;
    padding: 13px 6px;
  }
  .cookie-preference-box {
    min-width: 0;
    padding: 22px 7px 14px 7px;
  }
  footer { padding: 13px 4px 12px 4px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.08rem; }
  .cta, .header .cta.primary { font-size: 1rem; padding: 10px 14px; }
  .footer-brand img { height: 23px; }
}

/* === SOME PLAYFUL DYNAMIC TOUCHES === */
.feature, .service, .card, .testimonial-card, .project-case, .job {
  animation: fadeInUp 0.45s cubic-bezier(.45, 1.1, 1, 1.14);
  animation-delay: 0.05s;
  animation-fill-mode: backwards;
}
@keyframes fadeInUp {
  0% { opacity:0; transform: translateY(26px) scale(.96); }
  100% { opacity: 1; transform: none; }
}

/* Fun font, color and accent details */
h1, h2, h3 {
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
h1:after, h2:after {
  content: '';
  display: inline-block;
  background: var(--brand-accent);
  height: 7px;
  width: 58px;
  border-radius: 44px;
  position: absolute;
  left: 0;
  bottom: -8px;
  opacity: .18;
  z-index: 0;
  pointer-events: none;
}

.feature:hover h3, .service:hover h3, .job:hover h3, .testimonial-card:hover blockquote, .project-case:hover h3 {
  color: var(--brand-accent-dark);
}

/* Decorative SVG effects (optional, e.g. confetti) -- left to JS or assets. */

/* === UTILITY CLASSES === */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.w-100 { width: 100%; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }

/* HIDE CONTENT ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
