/* =========================================================
  TWINKLING MIRE — PROFESSIONAL CORPORATE STYLE.CSS
============================================================
  Brand: Twinkling Mire
  Palette: Blue/Gray, Accents
  Fonts: Montserrat (display), Source Sans Pro (body)
  Layout: ONLY FLEXBOX, NO GRID/COLUMNS
  Consistent with all provided instructions and HTML structure
============================================================ */

/* ===== CSS RESET & NORMALIZATION ===== */
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-family: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F7F9FA;
  color: #2D2746;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent horizontal scrolling */
  overflow-x: hidden;
}

/* ===== BASIC TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2D2746;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 1em; }
.subheadline {
  color: #54657C;
  font-size: 1.15rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 24px;
  font-weight: 400;
}
ul, ol {
  padding-left: 22px;
}
strong { font-weight: 700; }

/* ===== LINKS ===== */
a {
  color: #175EA2; /* Somewhat lighter blue for links */
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2D2746;
  text-decoration: underline;
}

/* ===== CONTAINER ALIGNMENT & SPACING PATTERNS ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(41,61,93,0.03);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FAFBFC;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(41,61,93,0.07);
  position: relative;
  transition:box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(41,61,93,0.12);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #f5f8fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(41,61,93,0.10);
  margin-bottom: 24px;
  min-width: 260px;
}
.testimonial-card p {
  color: #293D5D;
  font-size: 1.06rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.testimonial-meta, .testimonial-name {
  color: #2D2746;
  font-size: 0.99rem;
  font-weight: 600;
  opacity: 0.92;
}
.star-rating { color: #FFD75E; font-size: 1.15rem; margin-left:6px; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F9FA;
  border-radius: 9px;
  padding: 20px 14px;
  box-shadow: 0 1px 5px rgba(41,61,93,0.04);
}

/* ===== LAYOUTS FOR MAIN PAGE SECTIONS ===== */
.hero {
  background: linear-gradient(120deg, #EDF2FA 70%, #EAF4F6 100%);
  padding: 52px 0 34px 0;
  margin-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 10px;
}
.hero h1 {
  color: #2D2746;
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.hero .subheadline {
  max-width: 530px;
}

.features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  list-style: none;
}
.features .feature-list li {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 310px;
  background: #F7F9FA;
  border-radius: 9px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 6px rgba(41,61,93,0.06);
  transition: box-shadow .18s;
}
.features .feature-list li:hover {
  box-shadow: 0 5px 18px rgba(41,61,93,0.16);
  background: #F4F8FE;
}
.features .feature-list img {
  width: 36px;
  margin-bottom: 11px;
}
.features .feature-list h3 {
  margin-bottom: 5px;
  color: #175EA2;
  font-size: 1.1rem;
}
.about-preview, .about-detail, .policy {
  background: #fff;
}

.cta-focus {
  background: #2D2746;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(45,39,70,0.06);
  text-align: left;
}
.cta-focus .content-wrapper { align-items: flex-start; }
.cta-focus h2, .cta-focus p {
  color: #fff;
}
.cta-focus .cta-btn { margin-top: 22px; }

/* ====== LIST & CARD GRIDS FOR BLOG, SERVICES, PORTFOLIO ====== */
.blog-list .blog-previews,
.blog-list .blog-tools,
.featured-article,
.value-cards, .team-list,
.service-list, .steps, .faq-accordion, .case-study-cards, .testimonial-slider, .testimonial-quotes, .testimonial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list .blog-previews,
.value-cards,
.team-list,
.service-list,
.case-study-cards,
.testimonial-slider,
.testimonial-quotes,
.testimonial-highlights {
  margin-top: 18px;
  margin-bottom: 12px;
}
.blog-list .blog-preview,
.featured-article,
.value-card,
.team-member,
.service-item,
.step-item,
.case-study-card,
.testimonial-card {
  background: #FAFBFC;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(41,61,93,0.07);
  padding: 20px;
  flex: 1 1 260px;
  min-width: 250px;
  transition: box-shadow 0.19s, background 0.18s;
}
.blog-list .blog-preview:hover,
.value-card:hover,
.service-item:hover,
.case-study-card:hover {
  background: #F4F8FE;
  box-shadow: 0 8px 24px rgba(125,183,181,0.13);
}

.value-card img,
.service-item img,
.team-member .team-social img,
.features .feature-list img {
  max-width: 42px;
  margin-bottom: 10px;
}

.team-member .team-social {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

.case-study-card h3 {
  color: #175EA2;
  font-size: 1.08rem;
}

.case-study-card .case-client {
  font-size: 0.96rem;
  color: #54657C;
  margin-top: 8px;
  font-style: italic;
}

/***** TESTIMONIAL CARDS *****/
.testimonial-slider,
.testimonial-quotes,
.testimonial-highlights {
  gap: 24px;
}
.testimonial-slider > .testimonial-card {
  min-width: 250px;
}
.testimonial-card {
  background: #f5f8fa;
  color: #2D2746;
  font-size: 1rem;
  border-left: 5px solid #7BB7B5;
  box-shadow: 0 2px 8px rgba(41,61,93,0.14);
  margin-right: 6px;
  margin-bottom: 16px;
}
.testimonial-meta, .testimonial-name {
  color: #2D2746;
  font-size: 0.98rem;
}

/* ===== CTA & BUTTONS ===== */
.cta-btn, .blog-link, .cta-newsletter .cta-btn, .featured-article .cta-btn {
  background: #7BB7B5;
  color: #2D2746;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 25px;
  padding: 12px 36px;
  box-shadow: 0 2px 8px rgba(125,183,181,0.09);
  margin-top: 9px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.2s,color 0.2s, box-shadow 0.18s, transform 0.18s;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .blog-link:hover, .cta-btn:focus {
  background: #FFD75E;
  color: #2D2746;
  box-shadow: 0 6px 22px rgba(125,183,181,0.15);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* ===== HEADER, NAVIGATION, LOGO ===== */
header {
  width: 100%;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(41,61,93,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-left: 14px;
}
.logo img { display: block; height: 36px; width: auto; }

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-left: 5px;
  flex: 1;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #2D2746;
  font-weight: 600;
  border-radius: 3px;
  padding: 7px 20px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover:not(.cta-btn), .main-nav a:focus:not(.cta-btn) {
  background: #EDF2FA;
  color: #175EA2;
  text-decoration: none;
}
.main-nav .cta-btn {
  padding: 7px 22px;
  background: #7BB7B5;
  color: #2D2746;
  border-radius: 22px;
  border: none;
  font-weight: 700;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px rgba(125,183,181,0.11);
  margin-left: 20px;
  transition: background 0.2s,color 0.2s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #FFD75E;
  color: #2D2746;
  text-decoration: none;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #2D2746;
  margin: 0 20px 0 auto;
  cursor: pointer;
  outline: none;
  z-index: 210;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #175EA2;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,61,93,0.95);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.37,0,.63,1), opacity 0.2s;
  z-index: 220;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  box-shadow: 0 4px 48px #2D2746CC;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #FFD75E;
  position: absolute;
  top: 18px;
  right: 25px;
  z-index: 221;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: none;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #175EA2;
  color: #FFD75E;
}

/* ===== FOOTER ===== */
footer {
  background: #2D2746;
  color: #fff;
  padding: 36px 0 20px 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 180px;
}
.footer-brand img {
  width: 42px; margin-bottom: 5px;
}
.footer-brand span {
  color: #FFD75E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 155px;
}
.footer-nav a {
  color: #fff;
  font-size: 0.99rem;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD75E;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #D6E4ED;
  font-size: 0.97rem;
}
.footer-contact img {
  height: 13px; width: auto; margin-right: 5px; vertical-align: sub;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  height: 26px; width: 26px; display: block; opacity: 0.92; transition: opacity 0.12s;
}
.footer-social a:hover img, .footer-social a:focus img { opacity: 1; }

/* ===== BLOG SEARCH & FILTER ===== */
.blog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  align-items: center;
}
.blog-tools input[type="text"],
.blog-tools select {
  font-size: 1.01rem;
  border: 1px solid #c2d1e7;
  border-radius: 7px;
  padding: 8px 14px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #FAFBFC;
}
.blog-tools input[type="text"]:focus,
.blog-tools select:focus {
  border-color: #7BB7B5;
  outline: none;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview h3 {
  font-size: 1.08rem;
  color: #175EA2;
  margin-bottom: 7px;
}
.blog-link {
  display: inline-block;
  margin-top: 9px;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.faq-question {
  background: #F7F9FA;
  border: 1px solid #E3E7EE;
  border-radius: 8px;
  padding: 16px 20px;
  cursor: pointer;
  transition: box-shadow 0.15s;
  min-width: 240px;
  position: relative;
}
.faq-question h4 {
  color: #175EA2; font-size: 1.06rem; margin-bottom: 4px;
}
.faq-answer {
  margin-top: 7px;
  color: #2D2746;
  font-size: 0.98rem;
  display: none;
  transition: max-height 0.25s;
}
.faq-question.active .faq-answer {
  display: block;
}
.faq-question::after {
  content: '▼';
  position: absolute;
  right: 18px;
  top: 20px;
  font-size: 0.93rem;
  color: #7BB7B5;
  transition: transform 0.21s;
}
.faq-question.active::after {
  transform: rotate(180deg);
}

/* ===== EVENTS & LIST STYLES ===== */
.event-list, .event-summaries {
  margin-top: 10px;
  margin-bottom: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.event-list li, .event-summaries li {
  background: #FAFBFC;
  border-left: 4px solid #7BB7B5;
  border-radius: 8px;
  padding: 13px 18px;
  box-shadow: 0 1px 5px rgba(125,183,181,0.04);
}
.event-list span, .event-summaries span {
  display:block;
  font-size: 0.96rem;
  color: #54657C;
  margin-top: 4px;
}

/* ===== POLICIES, THANK YOU, CONTACT DETAILS ===== */
.policy {
  margin-bottom: 0;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(41,61,93,0.07);
}
.policy h1, .policy h2, .policy ul, .policy p { color: #2D2746; }
.contact-details .contact-info-group, .footer-contact {
  gap: 9px;
  display: flex;
  flex-direction: column;
}

/* ===== THANK YOU ===== */
.thank-you .container, .thank-you .content-wrapper {
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}
.thank-you ul {
  margin-bottom: 24px;
}


/************* COOKIE CONSENT BANNER *************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9980;
  width: 100%;
  background: #fff;
  border-top: 2px solid #7BB7B5;
  box-shadow: 0 -2px 16px rgba(125,183,181,.11);
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 1rem;
  animation: cookieBannerIn 0.45s cubic-bezier(.57, .04, .53, 1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  margin: 0;
  font-size: 1.01rem;
  color: #2D2746;
}
.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-btn,
.cookie-settings-btn {
  padding: 9px 18px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .13s;
  outline: 0;
}
.cookie-btn.accept {
  background: #7BB7B5;
  color: #2D2746;
}
.cookie-btn.accept:hover {
  background: #FFD75E;
  color: #2D2746;
}
.cookie-btn.reject {
  background: #E3E7EE;
  color: #2D2746;
}
.cookie-btn.reject:hover {
  background: #D2C7FF;
  color: #2D2746;
}
.cookie-settings-btn {
  background: #F7F9FA;
  color: #175EA2;
  border: 1px solid #7BB7B5;
}
.cookie-settings-btn:hover {
  background: #EAF4F6;
  color: #2D2746;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  width: 100vw; height:100vh;
  background:rgba(41,61,93,0.54);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 34px 30px 24px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 44px rgba(41,61,93,0.19);
  max-width: 410px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.32s cubic-bezier(.65,0,.46,1);
  position: relative;
}
@keyframes modalPopIn {
  from { transform: scale(0.83); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #175EA2;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  color: #175EA2;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover { color: #FFD75E; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1.01rem;
  color: #2D2746;
}
.cookie-modal .cookie-category input[type=checkbox]:disabled {
  accent-color: #7BB7B5;
}
.cookie-modal .cookie-category .category-desc {
  font-size: 0.97rem;
  color: #54657C;
  margin-left: 10px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 6px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
  margin-bottom: 0;
}

/*********** END COOKIE BANNER **********/

/* ===== MEDIA QUERIES — RESPONSIVE LAYOUT ===== */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 10px; }
  .footer-flex { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 890px) {
  .hero h1 { font-size: 2rem; }
  .section, .policy { padding: 26px 10px; }
  .value-card, .service-item, .blog-preview, .testimonial-card, .case-study-card { padding: 14px 9px; }
  .testimonial-card, .testimonial-meta, .testimonial-name { font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .hero { padding: 34px 0 17px 0; }
  .container { padding: 0 7px; }
  .footer-flex { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-wrapper, .footer-flex {
    align-items: flex-start !important;
  }
  .card-container, .content-grid, .features .feature-list, .blog-list .blog-previews, .case-study-cards, .testimonial-slider, .testimonial-highlights, .value-cards, .team-list, .service-list, .steps {
    flex-direction: column;
    gap: 19px !important;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display:inline-block; }
  .header-mobile-space { flex: 0 0 35px; }
  .footer-nav { flex-direction: row; gap: 16px; flex-wrap: wrap; }
}
@media (max-width: 550px) {
  .hero h1 { font-size: 1.44rem; }
  h2 { font-size: 1.20rem; }
  .main-nav { display: none !important; }
  .card, .value-card, .service-item, .team-member, .blog-preview, .testimonial-card, .case-study-card {
    padding: 12px 7px;
    min-width: 170px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    font-size: 0.94rem;
  }
  .cookie-modal {
    padding: 15px 3vw 12px 3vw;
    min-width: 160px;
    max-width: 99vw;
  }
}

/* ===== UTILITY & MICRO-INTERACTIONS ===== */
.transition { transition: all 0.21s cubic-bezier(.5,0,.5,1); }
.show { display: block !important; }
.hide { display: none !important; }

/***** FOCUS STATES FOR ACCESSIBILITY *****/
a:focus, button:focus, .cta-btn:focus, input:focus, select:focus {
  outline: 2px solid #FFD75E;
  outline-offset: 2px;
}

/***** SHADOWS AND EFFECTS ON HOVER *****/
.card, .value-card, .service-item, .blog-preview, .case-study-card {
  transition: box-shadow 0.17s, background 0.18s, transform 0.15s;
}
.card:hover, .value-card:hover, .service-item:hover, .blog-preview:hover, .case-study-card:hover {
  box-shadow: 0 8px 24px rgba(23,94,162,0.13);
  transform: translateY(-2px);
  background: #EAF4F6;
}

/***** MODAL BODY NO-SCROLL SUPPORT *****/
body.modal-open {
  overflow: hidden;
}

/* End of Twinkling Mire style.css */
