/* ------------------------------------------------- */
/* CSS RESET AND 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #EAF3FA;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ------------------------------------------------- */
/* BRAND COLORS & GRADIENTS */
/* ------------------------------------------------- */
:root {
  --primary: #1A2233;
  --secondary: #38C7F1;
  --accent: #EAF3FA;
  --neutral: #FFFFFF;
  --dark: #101521;
  --shadow: rgba(26,34,51,0.08);
  --gradient: linear-gradient(90deg, #38c7f1 7%, #72e6db 93%);
  --gradient-dark: linear-gradient(90deg, #1a2233 40%, #38c7f1 100%);
}

/* ------------------------------------------------- */
/* TYPOGRAPHY */
/* ------------------------------------------------- */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--accent);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
h4 { font-size: 1.125rem; }

p, li, span {
  font-size: 1rem;
  line-height: 1.6;
}
p.subheading {
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 24px;
}
blockquote {
  background: var(--accent);
  border-left: 4px solid var(--secondary);
  color: var(--primary);
  font-style: italic;
  margin: 20px 0;
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 1.05rem;
}
blockquote span {
  display: block;
  font-size: 0.98em;
  color: var(--secondary);
  margin-top: 8px;
  font-weight: 500;
}

/* ------------------------------------------------- */
/* LAYOUT STRUCTURE, CONTAINER, SECTIONS */
/* ------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content-wrapper,
  .content-grid,
  .section,
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ------------------------------------------------- */
/* MAIN NAVIGATION & HEADER */
/* ------------------------------------------------- */
header {
  background: var(--neutral);
  box-shadow: 0 2px 16px 0 var(--shadow);
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}
.main-nav > a img {
  height: 42px;
  min-width: 90px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.main-nav li.cta a {
  background: var(--gradient);
  color: var(--neutral);
  padding: 7px 18px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 var(--shadow);
  transition: background 0.25s, color 0.2s;
}
.main-nav li.cta a:hover{
  background: var(--gradient-dark);
  color: var(--secondary);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* ------------------------------------------------- */
/* MOBILE MENU BUTTONS */
/* ------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  color: var(--primary);
  background: var(--accent);
  border: none;
  font-size: 2.2rem;
  padding: 5px 18px;
  border-radius: 12px;
  position: absolute;
  right: 10px;
  top: 14px;
  z-index: 1020;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--neutral);
}

/* ------------------------------------------------- */
/* MOBILE MENU OVERLAY */
/* ------------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--neutral);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.49,0.03,0.58,1.03);
  display: flex;
  flex-direction: column;
  padding: 32px 32px 16px 32px;
  box-shadow: -3px 0 24px 0 var(--shadow);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.16s;
  z-index: 2020;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--neutral);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  padding: 7px 0;
  border-radius: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 100%;
  transition: background 0.19s, color 0.16s;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--neutral);
}

@media (max-width: 980px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ------------------------------------------------- */
/* HERO SECTIONS & CTA BUTTONS */
/* ------------------------------------------------- */
section {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 40px 0;
}
section:first-child {
  background: var(--gradient);
  color: var(--neutral);
  border-radius: 0 0 36px 36px;
  min-height: 340px;
  box-shadow: 0 8px 32px 0 var(--shadow);
  transition: background 0.45s;
}
section:first-child h1, section:first-child h2, section:first-child p {
  color: var(--neutral);
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--gradient);
  color: var(--neutral);
  border: none;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.15em;
  padding: 13px 36px;
  box-shadow: 0 4px 24px 0 var(--shadow);
  display: inline-block;
  margin-top: 20px;
  transition: background 0.22s, color 0.19s, box-shadow 0.16s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus{
  background: var(--gradient-dark);
  color: var(--secondary);
  box-shadow: 0 6px 32px 0 var(--shadow);
}

/* ------------------------------------------------- */
/* FEATURES & CARDS */
/* ------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  width: 100%;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--neutral);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 var(--shadow);
  padding: 24px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0px 2px 3px var(--shadow));
}
.feature-item:hover {
  box-shadow: 0 8px 36px 0 var(--shadow);
  transform: translateY(-5px) scale(1.028);
}
.feature-item h3 {
  color: var(--secondary);
  font-size: 1.19rem;
  margin-bottom: 6px;
}

/* ------------------------------------------------- */
/* CARD CONTAINER CLASSES */
/* ------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--neutral);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  transition: box-shadow 0.15s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 var(--shadow);
  transform: translateY(-6px) scale(1.019);
}
.card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ------------------------------------------------- */
/* TESTIMONIAL STYLES */
/* ------------------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: var(--neutral);
  color: #23272C;
  box-shadow: 0 2px 16px 0 var(--shadow);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 420px;
  flex: 1 1 300px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.testimonial-card p {
  color: var(--dark);
  font-size: 1.06rem;
}
.testimonial-details {
  color: var(--secondary);
  font-size: 0.98em;
  font-weight: 500;
  align-self: flex-end;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 32px 0 var(--shadow);
  transform: translateY(-4px);
}

@media (max-width: 980px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

/* ------------------------------------------------- */
/* CASE STUDY CARDS */
/* ------------------------------------------------- */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.case-study-item {
  background: var(--neutral);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  padding: 22px 20px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 200px;
  max-width: 370px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.case-study-item h3 {
  color: var(--secondary);
  margin-bottom: 6px;
  font-size: 1.12em;
}
.case-study-item:hover {
  box-shadow: 0 8px 30px 0 var(--shadow);
  transform: translateY(-5px);
}
@media (max-width: 900px) {
  .case-study-list { flex-direction: column; }
}

/* ------------------------------------------------- */
/* NEWS / ARTICLE LISTS & EVENTS */
/* ------------------------------------------------- */
.news-list, .event-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.news-list article {
  background: var(--neutral);
  border-radius: 14px;
  padding: 18px 18px 18px 20px;
  box-shadow: 0 2px 12px 0 var(--shadow);
  transition: box-shadow 0.13s, transform 0.11s;
}
.news-list article:hover {
  box-shadow: 0 6px 22px 0 var(--shadow);
  transform: translateY(-3px);
}

/* ------------------------------------------------- */
/* FOOTER */
/* ------------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--accent);
  border-radius: 32px 32px 0 0;
  padding-top: 38px;
  padding-bottom: 24px;
  margin-top: 68px;
  box-shadow: 0 -2px 16px 0 var(--shadow);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
}
.footer-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.96em;
}
.footer-content nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.8;
  transition: color 0.17s, opacity 0.16s;
  margin: 0 3px;
}
.footer-content nav a:hover { color: var(--secondary); opacity: 1; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.98em;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: text-bottom;
  filter: brightness(2);
}
.footer-hours {
  opacity: 0.7;
  font-size: 0.95em;
  margin-top: 8px;
}
footer a img {
  margin-bottom: 3px;
}

@media (max-width: 650px) {
  .footer-content, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  footer { padding-top: 26px; }
}

/* ------------------------------------------------- */
/* CLIENT LOGOS / PARTNER ICONS */
/* ------------------------------------------------- */
.client-logos {
  display: flex;
  gap: 34px;
  margin-top: 16px;
  align-items: center;
}
.client-logos img {
  width: 52px;
  height: 52px;
  filter: grayscale(1) brightness(1.09);
  opacity: 0.91;
  transition: filter 0.22s, opacity 0.12s;
}
.client-logos img:hover { filter: grayscale(0) brightness(1.13); opacity: 1; }

/* ------------------------------------------------- */
/* COOKIE BANNER & MODAL */
/* ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--neutral);
  color: var(--primary);
  box-shadow: 0 -2px 22px 0 var(--shadow);
  border-radius: 16px 16px 0 0;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 16px;
  font-size: 1rem;
  animation: cookieSlideUp 0.72s cubic-bezier(0.45, 1, 0.65, 1) 1;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(160px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  padding: 8px 20px;
  border-radius: 20px;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--neutral);
}
.cookie-banner .accept:hover{ background: #38A2CD; }
.cookie-banner .reject {
  background: #eeeafd;
  color: var(--primary);
}
.cookie-banner .reject:hover{ background: #ccccfa; }
.cookie-banner .settings {
  background: var(--primary);
  color: var(--neutral);
}
.cookie-banner .settings:hover { background: var(--secondary); color: var(--primary); }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(26,34,51,0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBgCookie 0.37s;
}
@keyframes fadeBgCookie{
  0%{opacity: 0;}
  100%{opacity: 1;}
}
.cookie-modal-content {
  background: var(--neutral);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 var(--shadow);
  min-width: 320px;
  max-width: 94vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalPopIn 0.34s cubic-bezier(0.52,1,0.32,1);
}
@keyframes modalPopIn {
  0%{transform: scale(0.87); opacity: 0;}
  100%{transform: scale(1); opacity: 1;}
}
.cookie-modal-content h3 { font-size: 1.3rem; }
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 12px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--neutral);
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 0;
}
.cookie-category label {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #b3b6be;
  opacity: 0.71;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  padding: 9px 24px;
  border-radius: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-modal-actions .save {
  background: var(--secondary);
  color: var(--neutral);
}
.cookie-modal-actions .cancel {
  background: var(--primary);
  color: var(--neutral);
}

/* ------------------------------------------------- */
/* MISC UTILITIES & OVERRIDES */
/* ------------------------------------------------- */
@media (max-width: 980px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.36rem; }
  h3 { font-size: 1.13rem; }
  .feature-item, .card, .testimonial-card, .case-study-item {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  section {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-content, .footer-contact {
    font-size: 0.96em;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 6px;
    font-size: 0.95em;
  }
  .cookie-modal-content {
    padding: 24px 8px 16px 10px;
  }
}

/* Hide cookie banner if not displayed by JS */
.cookie-banner[hidden] { display: none !important; }
.cookie-modal[hidden] { display: none !important; }

/* ------------------------------------------------- */
/* INTERACTIVE MICRO-INTERACTIONS & FOCUS STATES */
/* ------------------------------------------------- */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #b2bac1; }
:-moz-placeholder { color: #b2bac1; }
::-moz-placeholder { color: #b2bac1; }
:-ms-input-placeholder { color: #b2bac1; }
::placeholder { color: #b2bac1; }

/* ------------------------------------------------- */
/* END OF STYLE.CSS */
/* ------------------------------------------------- */
