/* =============================================================
   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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F7FA;
  color: #1D2935;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}

/* =============================================================
   BRAND COLOR VARIABLES/FALLBACKS
   ============================================================= */
:root {
  --primary: #174663;
  --secondary: #13A89E;
  --accent: #F2F7FA;
  --text: #1D2935;
  --border: #e0e7ef;
  --bg-dark: #112e40;
  --shadow: 0 2px 16px 0 rgba(23,70,99,0.07);
  --shadow-card: 0 6px 24px -4px rgba(23, 70, 99, 0.13);
  --radius: 10px;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
@import url("https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li, address {
  font-size: 1rem;
  color: var(--text);
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* Typography utility */
.text-section > ul,
.text-section ul {
  margin-left: 24px;
  margin-bottom: 14px;
}

/* =============================================================
   SPACING / CONTAINER
   ============================================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =============================================================
   HEADER and NAVIGATION
   ============================================================= */
header {
  background: #fff;
  box-shadow: 0 0 14px 0 rgba(23, 70, 99, 0.04);
  position: relative;
  z-index: 41;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.94;
  letter-spacing: 0.01em;
  position: relative;
  padding: 2px 0;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--secondary);
  color: #fff;
  padding: 0.85em 1.95em;
  border-radius: var(--radius);
  font-size: 1.07rem;
  box-shadow: 0 4px 16px 0 rgba(19,168,158,0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.1s;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 40px 0 rgba(19,168,158,0.09);
  transform: translateY(-2px) scale(1.035);
}

/* ================== MOBILE NAVIGATION ========================= */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(19,168,158,0.15);
  cursor: pointer;
  z-index: 105;
  position: absolute;
  top: 18px;
  right: 18px;
  transition: background 0.12s;
}
.mobile-menu-toggle:hover { background: var(--primary); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 12px 48px rgba(23,70,99,0.18);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.4,0.0,0.2,1);
  z-index: 102;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2em;
  color: var(--primary);
  background: transparent;
  border: none;
  z-index: 110;
  padding: 6px 8px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:hover {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 98px 32px 38px 32px;
  height: 100vh;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  border-radius: var(--radius);
  transition: color 0.14s, background 0.14s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}

/* Mobile: hide desktop nav and show burger */
@media (max-width: 980px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================================================
   MAIN LAYOUT SECTIONS & FLEX CONTAINERS
   ============================================================= */
main > section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 270px;
  transition: box-shadow .18s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px 0 rgba(23,70,99,0.17);
  transform: translateY(-3px) scale(1.02);
}
/* For content grids */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================================================
   FEATURE GRID, SERVICE CARDS, INDUSTRY GRID, ARTICLE GRID
   ============================================================= */
.feature-grid, .service-cards, .industry-grid, .blog-posts-grid, .resource-library-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature-grid li,
.service-cards li,
.industry-grid li,
.blog-posts-grid article,
.resource-library-grid article {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 30px 22px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border);
  transition: box-shadow .22s, transform .11s;
}
.feature-grid li:hover, .service-cards li:hover, .industry-grid li:hover,
.blog-posts-grid article:hover, .resource-library-grid article:hover {
  box-shadow: 0 12px 40px 0 rgba(19,168,158,0.11);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img, .service-cards img, .industry-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
}

/* Special grid spacing for industries (6-cols to 2-cols) */
@media (max-width: 1000px) {
  .industry-grid li { flex-basis: 46%; }
}
@media (max-width: 700px) {
  .industry-grid li, .feature-grid li, .service-cards li, .blog-posts-grid article, .resource-library-grid article { flex-basis: 100%; }
  .feature-grid, .service-cards, .industry-grid { gap: 20px; }
}

/* Testimonial & Slider Styles */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F7FA;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(23,70,99,0.05);
  color: var(--primary);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 470px;
  flex: 1 1 320px;
  font-size: 1rem;
  font-style: normal;
  border-left: 5px solid var(--secondary);
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: box-shadow .18s;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 700;
  padding-left: 8px;
}
/* Blockquote for expert quotes */
blockquote {
  background: #fff;
  color: var(--primary);
  border-left: 5px solid var(--primary);
  margin: 18px 0 24px 0;
  padding: 20px 28px 20px 24px;
  border-radius: var(--radius);
  font-style: italic;
  font-size: 1.14rem;
  box-shadow: var(--shadow);
}
blockquote footer {
  margin-top: 16px;
  font-style: normal;
  color: var(--secondary);
}

/* =============================================================
   LISTS, TABLES, AND FAQs
   ============================================================= */
ul, ol {
  margin-bottom: 16px;
  padding-left: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 24px;
  margin-bottom: 16px;
}
.faq-accordion {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  padding: 22px 18px;
}
.faq-accordion h4 { margin-bottom: 7px; }
.faq-accordion ul { margin-left: 8px; }

/***** Trending, Benefits, Case Studies etc *****/
.trending-topics-list, .whitepapers-list, .benefits-highlight, .industry-case-studies, .event-listings, .on-demand-videos {
  margin: 18px 0 12px 0;
  padding: 18px 0 6px 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px 0 rgba(19,168,158,0.06);
}
.trending-topics-list ul, .whitepapers-list ul, .benefits-highlight ul, .industry-case-studies ul, .event-listings ul, .on-demand-videos ul {
  margin-left: 14px;
}

.key-statistics {
  margin-top: 18px;
  background: #F2F7FA;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(23,70,99,0.03);
  padding: 18px 16px 8px 18px;
  flex: 1 1 160px;
}

/***** Misc small layout classes *****/
.client-success,
.case-highlights,
.analyst-insight {
  background: #fff;
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius);
  padding: 20px 28px 20px 18px;
  box-shadow: 0 1px 7px 0 rgba(19,168,158,0.07);
  font-style: italic;
}

/***** Contact Details List *****/
.text-section ul img {
  margin-right: 7px;
  vertical-align: text-bottom;
  height: 22px;
  width: 22px;
}
.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.99rem;
  color: var(--primary);
}

/***** Support / Email Block *****/
.support-contact {
  background: #F2F7FA;
  border-radius: var(--radius);
  margin-top: 24px;
  padding: 16px 14px;
  box-shadow: 0 1px 7px 0 rgba(19,168,158,0.06);
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #174663;
  color: #fff;
  padding: 0 0 24px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px 8px 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  opacity: 0.95;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
  padding: 6px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: rgba(19,168,158,0.09);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
}
.footer-contact address,
.footer-contact span {
  color: #fff;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: invert(1) drop-shadow(0 3px 9px #13A89E44);
}
footer .contact-details span img {
  filter: invert(0.97);
  height: 16px;
  width: 16px;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; align-items: flex-start; padding: 28px 14px 8px 14px; gap: 16px; }
  .footer-contact { align-items: flex-start; text-align: left; }
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 36px 0 rgba(19,168,158,0.12);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  z-index: 9500;
  padding: 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .19s, transform .21s;
  font-size: 1rem;
  min-width: 252px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(36px);
}
.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 1rem;
}
.cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-left: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  box-shadow: 0 1px 5px rgba(19,168,158,0.10);
  margin: 0; /* for inline group spacing */
  cursor: pointer;
  transition: background .14s, color .11s, box-shadow .19s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(23,70,99,0.11);
}
.cookie-btn.secondary {
  background: #fff;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600;
}
.cookie-btn.secondary:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
}

/*** COOKIE SETTINGS MODAL ***/
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,70,99,0.36);
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .21s;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  max-width: 400px;
  width: 92vw;
  padding: 34px 26px 24px 26px;
  box-shadow: 0 16px 50px 0 rgba(23,70,99,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  opacity: 0.65;
  z-index: 4;
  border-radius: 50%;
  transition: background .12s;
}
.cookie-modal-close:hover {
  background: var(--accent);
  opacity: 1;
}
.cookie-modal-content h4 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #eaf0f4;
  position: relative;
  cursor: pointer;
  border: 1px solid #b6cddb;
  transition: background .13s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ced9e2;
  transition: left .17s, background .14s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 16px;
  background: var(--secondary);
}

.cookie-category.essential .cookie-toggle {
  background: #e3fafd;
  border-color: var(--secondary);
}
.cookie-category.essential label {
  opacity: 0.8;
}
.cookie-category.essential .cookie-toggle-slider {
  background: var(--secondary);
}
.cookie-category.essential .cookie-toggle {
  cursor: not-allowed;
  /* always enabled visually */
}
.cookie-category.essential .cookie-toggle input {
  pointer-events: none;
}

.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 90px;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    left: 0; right: 0;
    bottom: 0;
    padding: 18px 10px 22px 10px;
    gap: 15px;
  }
  .cookie-btn-group { margin-left: 0; }
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */
@media (max-width: 1080px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .cta-btn { font-size: 1rem; padding: 0.7em 1.25em; }
}
@media (max-width: 700px) {
  .container { padding: 0 8px; }
  main > section, .section {
    padding: 30px 4px !important;
    margin-bottom: 35px;
    border-radius: 6px;
  }
  h1, h2 { margin-bottom: 14px; }
}
@media (max-width: 525px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  .footer-nav a { font-size: .97rem; }
}

/* =============================================================
   UTILITY SPACING & ROUNDED
   ============================================================= */
.rounded {
  border-radius: var(--radius);
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }

/* =============================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================================= */
a, .cta-btn, .footer-nav a, .mobile-nav a, .card, .testimonial-card, .cookie-btn, .cookie-btn.secondary {
  transition: background .18s, color .13s, box-shadow .16s, transform .12s;
}

/******* END of Professional Corporate CSS ******/
