/* RESET & BASELINE ---------------- */
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,
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.55;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1C355E;
  background:#f8fbfd;
  min-height: 100vh;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C355E;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p, ul li, ol li {
  font-size: 1rem;
  color: #253F60;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FLEX SPACING & SECTION LAYOUTS --------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #E8F0FA 0%, #f6fcff 100%);
  box-shadow: 0 2px 16px 0 rgba(28,53,94,0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px rgba(28,53,94,0.06);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(28,53,94,0.20);
  transform: translateY(-3px) scale(1.025);
}
.content-grid,
.feature-grid,
.service-grid,
.service-list,
.resources-list,
.industry-cards,
.blog-list,
.leadership-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(28,53,94,0.10);
  max-width: 380px;
  min-width: 230px;
  flex: 1 0 250px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION -------------------- */
header {
  background: linear-gradient(90deg,#1C355E 0%, #426DD9 100%);
  box-shadow: 0 2px 16px rgba(28,53,94,0.15);
  color: #fff;
  position: relative;
  z-index: 21;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 20px;
  padding: 0 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 8px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover,
header nav a.active {
  background: #F5A623;
  color: #1C355E;
}
header img {
  height: 46px;
  width: auto;
}
.cta-btn {
  background: linear-gradient(90deg, #F5A623 0%, #FFDE7A 100%);
  color: #1C355E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 32px;
  font-size: 1rem;
  border-radius: 30px;
  margin-left: 18px;
  box-shadow: 0 2px 10px 0 rgba(245,166,35,.10);
  transition: box-shadow 0.18s, filter 0.15s, background 0.22s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  letter-spacing: 0.05em;
}
.cta-btn:hover, .cta-btn:focus {
  box-shadow: 0 6px 22px rgba(245,166,35,.23);
  filter: brightness(1.08);
  background: linear-gradient(90deg, #FFDE7A 0%, #F5A623 100%);
  color: #14326A;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  margin-left: 16px;
  cursor: pointer;
  z-index: 21;
  transition: color 0.17s;
}
.mobile-menu-toggle:hover {
  color: #F5A623;
}

/* MOBILE MENU --------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,53,94,0.94);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin: 12px 24px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 38px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 0;
  transition: color 0.18s;
  border-radius: 6px;
}
.mobile-nav a:hover {
  color: #F5A623;
  background: rgba(255,255,255,0.06);
}

/* HERO/CONTENT WRAPPER ------------------ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-top: 26px;
  padding-bottom: 26px;
}

/* ADVANTAGES, FEATURES & CARDS ---------- */
.feature-grid > div,
.industry-cards > div,
.leadership-profiles > div,
.service-cards > div,
.resources-list > div,
.service-list > div,
.blog-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(28,53,94,0.08);
  padding: 22px 18px 22px 18px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.21s;
}
.feature-grid > div:hover,
.industry-cards > div:hover,
.service-cards > div:hover,
.service-list > div:hover,
.resources-list > div:hover,
.blog-list > div:hover {
  box-shadow: 0 6px 28px rgba(28,53,94,0.14);
  transform: translateY(-4px) scale(1.027);
}
.feature-grid img,
.industry-cards img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

/* TESTIMONIALS ---------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 5px;
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1B355E;
  font-family: 'Montserrat', Arial, sans-serif;
}
.client-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 10px;
}
.client-logos img {
  width: 44px;
  height: 44px;
  opacity: 0.96;
  transition: filter .19s;
}
.client-logos img:hover {
  filter: brightness(1.09);
}

/* CONTACT DETAILS ------------------------- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(28,53,94,.06);
  padding: 32px;
}
.company-contact-info p img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(28,53,94,.07);
  padding: 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.address-block h3 {
  margin-bottom: 10px;
}

/* POLICY/LEGAL BODY ------------------------ */
.policy-body, .cookies-details, .terms-body {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(28,53,94,.05);
  padding: 28px 20px;
  margin-bottom: 24px;
}
.policy-body h3, .cookies-details h3, .terms-body h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* FOOTER ----------------------------------- */
footer {
  background: linear-gradient(90deg,#1C355E 0%, #426DD9 100%);
  color: #fff;
  padding: 28px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #F5A623;
}
footer p {
  font-size: 0.95rem;
  color: #E8F0FA;
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #253F60 0%, #F5A623 100%);
  color: #fff;
  padding: 20px 22px;
  z-index: 9999;
  box-shadow: 0 -2px 16px rgba(28,53,94,0.13);
  font-size: 1.08rem;
  animation: cookieBannerIn .55s cubic-bezier(.56,0,.32,1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 14px 0 0;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 7px 22px;
  margin-left: 2px;
  cursor: pointer;
  transition: background 0.13s, color 0.17s, box-shadow 0.21s;
}
.cookie-banner .accept {
  background: #F5A623;
  color: #1C355E;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #1C355E;
  box-shadow: 0 2px 14px rgba(245,166,35,.25);
}
.cookie-banner .reject {
  background: #fff;
  color: #253F60;
  border: 1px solid #F5A623;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F5A623;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F5A623;
  color: #253F60;
  border-color: #F5A623;
}

/* COOKIE MODAL ------------------------ */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 51, 83, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 10001;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #253F60;
  border-radius: 18px;
  padding: 36px 30px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 6px 32px rgba(28,53,94,0.21);
  animation: modalIn .38s cubic-bezier(.49,0,.18,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.80) translateY(40px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 7px 0 4px;
}
.cookie-toggle {
  margin-left: 12px;
}
.cookie-modal-content .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal-content .modal-close {
  align-self: flex-end;
  margin-bottom: -14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #1C355E;
  cursor: pointer;
}

/* BUTTON GENERAL STYLES --------------- */
button, .cta-btn, .cookie-btn {
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.18s, filter 0.12s;
}

/* BLOG CATEGORIES FILTER */
.categories-filter {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #1C355E;
}
.categories-filter span {
  font-size: 0.97rem;
  color: #426DD9;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}

/* LISTS ---------------------------- */
ul.feature-list, ul {
  list-style: disc inside;
  padding-left: 18px;
  margin-bottom: 18px;
}
ul.feature-list li {
  margin-bottom: 10px;
  color: #253F60;
  font-size: 1rem;
}

/* MISC UTILS --------------------------- */
.hide-on-mobile { display: block; }
.show-on-mobile { display: none; }

/* RESPONSIVE DESIGN --------------------- */
@media (max-width: 998px) {
  .container { max-width: 95vw; }
  .feature-grid, .industry-cards, .content-grid, .service-cards, .resources-list, .service-list, .blog-list, .testimonial-slider, .contact-details, .contact-block {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.53rem; }
  h2 { font-size: 1.21rem; }
  h3 { font-size: 1.08rem; }
  .section {
    margin-bottom: 38px;
    padding: 24px 7px;
    border-radius: 17px;
  }
  header .container { flex-wrap: wrap; padding: 0 7px; }
  header nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  .testimonial-card, .feature-grid>div, .industry-cards>div, .service-cards>div, .resources-list>div, .service-list>div, .blog-list>div, .contact-details, .contact-block, .policy-body, .cookies-details, .terms-body {
    padding: 15px 13px;
    border-radius: 13px;
  }
  .footer .container, footer .container {
    padding: 0 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 16px;
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 4px;
  }
  .content-wrapper {
    padding-top: 12px;
    padding-bottom: 16px;
  }
  footer nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .client-logos {
    gap: 12px;
  }
  .testimonial-slider {
    gap: 12px;
  }
}

/* UTILITY: MODERN GRADIENT MODERN -------------------- */
.gradient-bg-primary {
  background: linear-gradient(135deg, #1C355E 0%, #426DD9 100%);
}
.gradient-bg-accent {
  background: linear-gradient(120deg, #F5A623 0%, #FFE6AC 100%);
}

/* TYPOGRAPHY SCALE (Mobile-first) ---------- */
html {
  font-size: 16px;
}
@media (max-width: 991px) {
  html { font-size: 15px; }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS ---------- */
.card, .feature-grid > div, .testimonial-card, .industry-cards > div {
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .industry-cards > div:hover {
  box-shadow: 0 8px 28px rgba(28,53,94,.19);
  transform: translateY(-4px) scale(1.022);
}
.cta-btn:active,
.cookie-btn:active {
  filter: brightness(.92);
}

/* TRANSITION FOR MOBILE MENU */
.mobile-menu, .mobile-menu.open {
  transition: transform 0.35s cubic-bezier(.6,0,.28,1);
}

/* FOCUS STATES/accessibility */
a:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px dashed #F5A623;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #F5A62333;
  z-index: 101;
}

/* Hide scroll on body while modal or menu open (handled via JS by adding body.modal-open or body.menu-open) */
body.modal-open,.modal-open body {
  overflow: hidden;
}
body.menu-open,.menu-open body {
  overflow: hidden;
}

/* CLASSES FROM HTML: exact-match SELECTORS */
/* .feature-grid, .service-list, .service-cards, .resources-list, .industry-cards, .blog-list, .testimonial-card, .contact-details, .contact-block, .policy-body, .cookies-details, .terms-body, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav, .cta-btn, .cookie-banner, .cookie-modal, .cookie-modal-content */
