/* =========================================================
   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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #EAF0F6;
  color: #133552;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #133552;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #70B7E4;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-top: 0.5em;
}


/* =========================================================
   BRAND TYPOGRAPHY
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #133552;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 9px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0.7em;
  color: #263e53;
}
.text-section {
  font-size: 1.08rem;
}
strong, b {
  font-weight: 700;
}


/* Artistic/creative headline effect */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 5px;
  background: #70B7E4;
  border-radius: 99px;
  margin-top: 10px;
}
h1::after { background: #133552; width: 38px; margin-top: 12px; }


/* Artistic font feature effect */
.cta-btn, .cta-nav {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}


/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.text-section {
  max-width: 700px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(19,53,82,.10), 0 1.5px 13px 0 rgba(107,183,244,.04);
  position: relative;
  padding: 32px 26px;
  min-width: 260px;
  transition: box-shadow .25s;
}
.card:hover {
  box-shadow: 0 5px 24px 0 rgba(112,183,228,.22), 0 2px 14px 0 rgba(19,53,82,.11);
}

.content-grid,
.team-grid,
.feature-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.feature-grid > div,
.team-grid > div,
.service-list > div {
  background: #fff;
  border-radius: 18px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  padding: 24px 18px 20px 18px;
  box-shadow: 0 2px 10px 0 rgba(19,53,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .20s, transform .22s;
  border-left: 8px solid #70B7E4;
  position: relative;
}
.feature-grid > div:hover,
.team-grid > div:hover,
.service-list > div:hover {
  box-shadow: 0 6px 30px 0 rgba(19,53,82,.14);
  transform: translateY(-4px) scale(1.025);
  border-left: 8px solid #133552;
}
.feature-grid img, .team-grid img, .service-list img {
  height: 38px;
  width: auto;
  margin-bottom: 4px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(112,183,228,.10);
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow .20s, background .18s;
  border-left: 7px solid #133552;
  position: relative;
}
.testimonial-card:hover {
  background: #F9FCFE;
  box-shadow: 0 6px 28px 0 rgba(112,183,228,.18);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1B3653;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: .97rem;
  font-weight: 500;
  color: #5b7388;
  letter-spacing: .4px;
  margin-left: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .feature-grid,
  .content-grid,
  .team-grid,
  .service-list {
    gap: 14px;
  }
  .feature-grid > div,
  .team-grid > div,
  .service-list > div {
    min-width: 180px;
    padding: 20px 12px 18px 12px;
  }
}
@media (max-width: 640px) {
  .feature-grid,
  .content-grid,
  .team-grid,
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div,
  .team-grid > div,
  .service-list > div {
    width: 100%;
    min-width: 0;
  }
}


/* ===== BUTTONS AND CTA ===== */
.cta-btn, .cta-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  background: #70B7E4;
  color: #133552;
  padding: 14px 32px;
  border: none;
  border-radius: 99px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(19,53,82,.09);
  transition: background .19s, box-shadow .24s, color .18s, transform .17s;
  outline: none;
  margin-top: 10px;
  margin-bottom: 8px;
}
.cta-btn:hover, .cta-btn:focus,
.cta-nav:hover, .cta-nav:focus {
  background: #133552;
  color: #fff;
  box-shadow: 0 8px 26px 0 rgba(112,183,228,.15);
  transform: scale(1.035);
}


/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  background: #133552;
  width: 100%;
  box-shadow: 0 3px 16px 0 rgba(19,53,82,.08);
  padding: 0 0 0 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  position: relative;
}
header img {
  max-height: 56px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #fff;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .18s;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #70B7E4;
  border-bottom: 2.5px solid #70B7E4;
  background: rgba(112,183,228,0.11);
}
.main-nav .cta-nav {
  background: #70B7E4;
  color: #133552;
  padding: 10px 26px;
  border-radius: 80px;
  box-shadow: 0 2px 8px 0 rgba(19,53,82,.06);
  margin-left: 10px;
  border-bottom: none;
}
.main-nav .cta-nav:hover, .main-nav .cta-nav:focus {
  background: #EAF0F6;
  color: #133552;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #fff;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: 28px;
  padding: 0 6px;
  z-index: 103;
  transition: color .17s, transform .18s;
}
.mobile-menu-toggle:focus {
  color: #70B7E4;
}


/* ----- MOBILE NAVIGATION ----- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: #133552;
  box-shadow: -2px 0 18px 0 rgba(19,53,82,.17);
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.77,.01,.25,1);
  z-index: 9999;
  padding: 38px 28px 20px 20px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 22px;
  cursor: pointer;
  z-index: 10010;
  transition: color .15s, transform .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #70B7E4;
  transform: scale(1.15);
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #EAF0F6;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0 10px 4px;
  border-bottom: 1.5px solid rgba(234,240,246,.17);
  border-radius: 2px;
  transition: color .19s, background .16s, border-bottom .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #70B7E4;
  background: rgba(112,183,228,0.09);
  border-bottom: 1.5px solid #70B7E4;
}
.mobile-nav .cta-nav {
  background: #70B7E4;
  color: #133552;
  padding: 12px 22px;
  border-radius: 99px;
  font-weight: 700;
  border: none;
  margin-top: 10px;
}
.mobile-nav .cta-nav:hover, .mobile-nav .cta-nav:focus {
  background: #EAF0F6;
  color: #133552;
}

@media (max-width: 950px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  header .container {
    padding: 0 10px;
  }
  .main-nav {
    gap: 9px;
  }
  .main-nav a {
    font-size: .97rem;
    padding: 10px 0 8px 0;
  }
}
@media (max-width: 720px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 98vw;
    padding: 24px 12px 12px 8px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #133552;
  color: #fff;
  padding: 40px 0 20px 0;
  border-top: 2.5px solid #70B7E4;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
}
footer img {
  max-height: 48px;
  margin-right: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-nav a {
  color: #70B7E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color .17s, text-decoration .16s;
  margin-right: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EAF0F6;
  text-decoration: underline;
}
.footer-contact {
  font-size: .97rem;
  color: #eaf0f6;
  font-family: 'Roboto', Arial, sans-serif;
  margin-left: 8px;
}
.footer-contact a {
  color: #70B7E4;
  text-decoration: underline;
}
.footer-contact p{
  color: white;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    margin-top: 8px;
  }
}


/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #133552;
  color: #fff;
  width: 100%;
  z-index: 99999;
  padding: 22px 8vw 22px 8vw;
  box-shadow: 0 -3px 24px 0 rgba(21,53,82,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  justify-content: center;
  transition: transform .32s cubic-bezier(.77,.01,.25,1), opacity .2s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-msg {
  font-size: 1.04rem;
  color: #EAF0F6;
  margin-bottom: 0;
  max-width: 480px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  min-width: 100px;
  padding: 10px 26px;
  border-radius: 64px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-right: 0;
  background: #70B7E4;
  color: #133552;
  transition: background .15s, color .14s, transform .16s;
  box-shadow: 0 1px 6px 0 rgba(112,183,228,.13);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #EAF0F6;
  color: #133552;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.reject {
  background: #fff;
  color: #133552;
  border: 1px solid #70B7E4;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #EAF0F6;
  color: #133552;
}
.cookie-btn.settings {
  background: #133552;
  color: #EAF0F6;
  border: 1.7px solid #70B7E4;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #70B7E4;
  color: #133552;
}

@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 3vw;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* Consent Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(19,53,82,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110000;
  opacity: 1;
  transition: opacity .15s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #133552;
  border-radius: 22px;
  max-width: 400px;
  min-width: 300px;
  width: 95vw;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 4px 32px 0 rgba(112,183,228,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: #70B7E4;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
}
.cookie-modal .toggle {
  accent-color: #133552;
  width: 20px;
  height: 20px;
}
.cookie-modal .always-on {
  font-size: 0.99rem;
  color: #4b6070;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #133552;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .15s, transform .13s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #70B7E4;
  transform: scale(1.16);
}


/* =========================================================
   ARTISTIC/CREATIVE STYLISTIC ELEMENTS
   ========================================================= */

/* Subtle background decorations */
body::before {
  content: '';
  position: fixed;
  top: -140px;
  right: -90px;
  width: 310px;
  height: 310px;
  background: #70B7E4;
  opacity: 0.13;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -160px;
  left: -80px;
  width: 280px;
  height: 260px;
  background: #133552;
  opacity: 0.10;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 700px) {
  body::before, body::after {
    display: none;
  }
}

/* Artistic horizontal divider for sections */
.section {
  border-radius: 28px;
  background: rgba(234,240,246,0.72);
  box-shadow: 0 2px 11px 0 rgba(112,183,228,0.11);
}


/* =========================================================
   MISCELLANEOUS
   ========================================================= */
::-webkit-scrollbar {
  width: 11px;
  background: #EAF0F6;
}
::-webkit-scrollbar-thumb {
  background: #70B7E4;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #133552;
}

hr {
  border-top: 3px solid #70B7E4;
  margin: 40px 0;
  border-radius: 2px;
}

/* Lists for features, about, contact: */
ul {
  padding-left: 1.5em;
}
ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 7px;
}
ul li::before {
  content: '\2022';
  color: #70B7E4;
  font-size: 1.4em;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bold;
  vertical-align: middle;
}

/* Forms & Inputs (for contact page, if form is ever added) */
input, textarea, select {
  border: 2px solid #70B7E4;
  font-size: 1rem;
  border-radius: 10px;
  padding: 14px;
  outline: none;
  transition: border-color .17s;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  background: #fff;
  color: #133552;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #133552;
}


/* =========================================================
   RESPONSIVE / MOBILE-FIRST
   ========================================================= */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 28px;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 18px 0px;
    margin-bottom: 21px;
    border-radius: 18px;
  }
  .container {
    max-width: 99vw;
    padding: 0 3vw;
  }
}
@media (max-width: 460px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .footer-contact, .footer-nav a {
    font-size: 0.93rem;
  }
  .cta-btn, .cta-nav {
    min-width: 128px;
    padding: 11px 15px;
    font-size: .97rem;
  }
  .card, .feature-grid > div, .team-grid > div, .service-list > div {
    padding: 16px 7px 11px 7px;
  }
}


/* =========================================================
   PRINT
   ========================================================= */
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, footer, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  body, .container, .section, .content-wrapper, .text-section { background: #fff !important; color: #111 !important; }
}


/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from { opacity: .25; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(54px); }
  to   { opacity: 1; transform: translateX(0); }
}
.section, .card, .feature-grid > div, .testimonial-card {
  animation: fadeInUp .62s cubic-bezier(.16,1,.36,1) both;
}
.mobile-menu.active, .cookie-modal, .cookie-banner:not(.hide) {
  animation: fadeInRight .33s cubic-bezier(.16,1,.36,1);
}

/* ===================
   ACCESSIBILITY
   =================== */
:focus {
  outline: 2.5px dashed #70B7E4 !important;
  outline-offset: 2px;
}


/* ==============
   END OF FILE
   ==============
*/
