/* =============================================================
   RESET & BASE STYLES
   ============================================================= */

/* Simple 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 {
  box-sizing: border-box;
  width: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F6F8FA;
  color: #223047;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1C3B61;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #46A3D3;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1C3B61;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.18;
}
h1 {
  font-size: 2.125rem; /* 34px */
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;   /* 24px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* =============================================================
   LAYOUT STRUCTURE & CONTAINERS
   ============================================================= */
.container {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(39,54,82,0.03);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  background: #1C3B61;
  color: #fff;
  padding: 0;
  width: 100%;
  box-shadow: 0 2px 6px 0 rgba(39,54,82,0.05);
  position: relative;
  z-index: 105;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 72px;
}
header a img {
  height: 48px;
  width: auto;
  margin: 10px 0;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 4px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #223047;
  color: #46A3D3;
}
.button-primary {
  margin-left: 12px;
  background: #46A3D3;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(70,163,211,0.10);
}
.button-primary:hover, .button-primary:focus {
  background: #1C3B61;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(28,59,97,0.10);
}
.button-secondary {
  margin-top: 10px;
  background: transparent;
  color: #1C3B61;
  border: 2px solid #46A3D3;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #46A3D3;
  color: #fff;
  border-color: #1C3B61;
}

/* -------------------------------------------------------------
   MOBILE NAVIGATION
   ------------------------------------------------------------- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  margin-left: 8px;
  padding: 8px;
  z-index: 110;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .button-primary {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C3B61;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.6, -.13, .23, 1.17);
  z-index: 120;
  padding-top: 0;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 26px 22px 10px 0;
  cursor: pointer;
  z-index: 121;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #46A3D3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 40px 0 0 29px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #223047;
  color: #46A3D3;
}
@media (min-width: 1021px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* =============================================================
   HERO AND FEATURE SECTIONS
   ============================================================= */
.feature-grid, .service-list, .principle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 21px;
}
.feature-grid li,
.service-list li,
.principle-list li {
  background: #F6F8FA;
  border: 1px solid #E0E6ED;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(28,59,97,0.04);
  padding: 26px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.2s, border 0.2s;
  margin-bottom: 0!important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid li img {
  height: 34px;
  margin-bottom: 4px;
}
.feature-grid li:hover, .service-list li:hover {
  border: 1.5px solid #46A3D3;
  box-shadow: 0 4px 18px 0 rgba(70,163,211,0.11);
}
@media (max-width: 991px) {
  .feature-grid, .service-list, .principle-list {
    gap: 14px;
  }
  .feature-grid li, .service-list li, .principle-list li {
    min-width: 160px;
    padding: 18px 10px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-list, .principle-list {
    flex-direction: column;
    gap: 18px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =============================================================
   CARD, GRID & FLEX PATTERNS
   ============================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(28,59,97,0.07);
  padding: 28px 20px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1px solid #E0E6ED;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(70,163,211,0.09);
  border: 1.5px solid #46A3D3;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =============================================================
   FEATURE/ADVANTAGE LIST
   ============================================================= */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
  margin-top: 10px;
}
.features > div {
  background: #F6F8FA;
  border-radius: 10px;
  box-shadow: 0 2px 9px 0 rgba(28,59,97,0.06);
  padding: 18px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 170px;
  min-width: 140px;
  transition: box-shadow 0.18s;
  border: 1px solid #E0E6ED;
  gap: 8px;
}
.features > div:hover {
  box-shadow: 0 6px 22px 0 rgba(70,163,211,.11);
  border-color: #46A3D3;
}
.features > div img {
  height: 30px;
  margin-bottom: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5FAFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(28,59,97,0.06);
  border: 1px solid #D3E5F7;
  max-width: 390px;
  min-width: 220px;
  transition: box-shadow 0.2s, border 0.2s;
  margin-bottom: 0!important;
}
.testimonial-card p {
  color: #223047;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #1C3B61;
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-card .project-summary {
  font-size: 0.98rem;
  color: #4277A6;
  font-style: normal;
}
.testimonial-card:hover {
  border: 1.5px solid #46A3D3;
  box-shadow: 0 6px 24px 0 rgba(70,163,211,0.13);
}
@media (max-width: 1000px) {
  .testimonial-slider, .testimonial-list {
    gap: 13px;
  }
}
@media (max-width: 700px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* Mini case studies */
.mini-case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.mini-case-studies > div {
  background: #EDF5FA;
  border-radius: 7px;
  padding: 16px 13px 13px;
  min-width: 180px;
  flex: 1 1 260px;
}

.impact-stats ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.impact-stats li {
  color: #223047;
  font-size: 1.08rem;
  background: #F8FAFC;
  padding: 8px 14px;
  border-radius: 6px;
}

/* =============================================================
   CONTACT & MAP
   ============================================================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #1C3B61;
}
.contact-info img {
  width: 22px;
  height: 22px;
  display: inline-block;
}
.map-placeholder {
  background: #E7EEF4;
  color: #1C3B61;
  border-radius: 7px;
  text-align: center;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin: 13px 0 20px 0;
}

/* =============================================================
   PRICING TABLES & PACKAGE BOXES
   ============================================================= */
.pricing-table {
  border: 1.5px solid #D3E5F7;
  border-radius: 14px;
  margin: 19px 0 25px 0;
  overflow: hidden;
  background: #F5FAFF;
  box-shadow: 0 2px 10px 0 rgba(70,163,211,0.04);
}
.pricing-table thead th {
  background: #1C3B61;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 16px 12px;
  border-bottom: 1.5px solid #D3E5F7;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #E0E6ED;
  transition: background 0.17s ease;
}
.pricing-table tbody tr:hover {
  background: #F0F6FB;
}
.pricing-table td {
  font-size: 1rem;
}

.package-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.package-overview li {
  background: #F7FCFF;
  color: #1C3B61;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

/* =============================================================
   PRINCIPLES & AWARDS
   ============================================================= */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 15px 0 0 0;
}
.verified {
  background: #E5F9ED;
  color: #189954;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
  margin-right: 13px;
  display: inline-block;
}
.award {
  background: #F7EEDB;
  color: #B2750F;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
  display: inline-block;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #223047;
  color: #E1EAF2;
  padding: 26px 0 0 0;
  width: 100%;
  box-shadow: 0 -3px 16px rgba(28,59,97,0.05);
  margin-top: 58px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #B7CADD;
  font-size: 1rem;
  padding-bottom: 4px;
  transition: color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #46A3D3;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.brand-info img {
  height: 35px;
  width: auto;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 3px;
}
.social-links a img {
  width: 27px;height: 27px;
  transition: filter 0.21s;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}
.social-links a:hover img, .social-links a:focus img {
  filter: brightness(0.8) drop-shadow(0 0 2px #46A3D3);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-menu {
    margin-bottom: 6px;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1070;
  background: #1C3B61;
  color: #fff;
  padding: 22px 10px 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 16px 0 rgba(28,59,97,0.10);
  animation: cookieBannerIn 0.5s cubic-bezier(.6,.1,.23,1.04);
}
.cookie-banner .cookie-text {
  max-width: 700px;
  font-size: 1.04rem;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.5;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-btn {
  background: #46A3D3;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.15s;
  box-shadow: 0 2px 6px 0 rgba(70,163,211,.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1C3B61;
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(28,59,97,0.11);
}
.cookie-btn.settings {
  background: transparent;
  color: #46A3D3;
  border: 2px solid #46A3D3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #46A3D3;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }
  .cookie-banner .cookie-btn {
    min-width: 150px;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  top: 0;left:0;right:0;bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(28,59,97, 0.37);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.22s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #1C3B61;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 24px 0 rgba(28,59,97,0.19);
  max-width: 420px;
  width: 95vw;
  padding: 26px 22px 21px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.38s cubic-bezier(.6,.13,.26,1.03);
}
.cookie-modal h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: #1C3B61;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.04rem;
  color: #1C3B61;
}
.cookie-category input[type="checkbox"] {
  accent-color: #46A3D3;
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
}
@media (max-width: 420px) {
  .cookie-modal {
    padding: 12px 7px 14px;
    max-width: 99vw;
  }
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes cookieModalIn {
  0% { transform: translateY(70px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* =============================================================
   ACCESSIBILITY & INTERACTIONS
   ============================================================= */
:focus {
  outline: 2px solid #46A3D3;
  outline-offset: 2px;
}
.button-primary:focus, .button-secondary:focus, .cookie-btn:focus {
  outline: 2px solid #1C3B61;
  outline-offset: 2px;
}

/* Subtle Animations */
.button-primary, .button-secondary, .cookie-btn {
  transition: box-shadow 0.17s, background 0.18s, color 0.13s, border 0.13s;
}
.card, .feature-grid li, .testimonial-card, .features > div {
  transition: box-shadow 0.19s, border 0.19s;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 850px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
    max-width: 97vw;
  }
  header .container,
  footer .container {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    min-height: initial;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  footer {
    font-size: .95rem;
  }
  .brand-info img {
    height: 25px;
  }
}

/* =============================================================
   MISC UTILITY CLASSES
   ============================================================= */
.hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 28px; }
.mb-3 { margin-bottom: 28px; }

/* =============================================================
   PRINT FRIENDLY
   ============================================================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .button-primary, .button-secondary, .cookie-modal-overlay {
    display: none !important;
  }
  .section, .container {
    background: #fff !important;
    box-shadow: none !important;
    color: #111 !important;
  }
}

/* =============================================================
   BRAND PRIMARY COLORS AS CSS VARS (FOR FUTURE USE)
   ============================================================= */
:root {
  --primary: #1C3B61;
  --secondary: #46A3D3;
  --accent: #FFFFFF;
}
