:root {
  --blue: #1CA3DB;
  --green: #21A44E;
  --navy: #001835;
  --gray: #838385;
  --font-stack: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-stack);
  font-size: 20px;
  color: var(--navy);
  background-color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.logo {
  height: 200px;
  width: auto;
  display: block;
  margin-left: 20px;
}

h1 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 96px;
  line-height: 1.2;
  text-align: center;
}

h2 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
}

h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.2;
  text-align: left;
}

h4 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.2;
  text-align: left;
}

p {
  margin-bottom: 20px;
  color: var(--navy);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
.cta-button {
  padding: 12px 24px;
  font-size: 18px;
  border: 2px solid var(--navy);
  background-color: var(--blue);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px;
}

button:hover,
.cta-button:hover {
  background-color: var(--green);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tagline {
  text-align: center;
  font-size: 32px;
  color: var(--navy);
  margin-top: -10px;
  margin-bottom: 40px;
}

.cta-buttons {
  text-align: center;
  margin-top: 20px;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
  margin: 40px 0;
}

.badges img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.badges img:hover {
 transform: scale(1.25);
  opacity: 1;
}

.faq-group details {
  margin-bottom: 20px;
  border: 1px solid var(--gray);
  padding: 15px 20px;
  border-radius: 8px;
  background-color: transparent;
}

.faq-group summary {
  font-weight: bold;
  cursor: pointer;
  color: var(--navy);
  font-size: 20px;
}

.faq-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-hidden.open {
  max-height: 1000px;
}

footer {
  position: relative;
  padding: 20px 20px 20px 20px;
  background-color: var(--gray);
}

footer .copyright {
  position: absolute;
  bottom: 5px;
  right: 20px;
  font-size: 16px;
  color: var(--navy);
  text-align: right;
}

.contact-info {
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--blue);
}

.trusted-by {
  text-align: center;
  margin: 20px auto 20px;
  padding: 20px;
}

.trusted-by h3 {
  font-size: 24px;
  color: #001835;
  margin-bottom: 30px;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.client-logos img {
  max-height: 40px;
  max-width: 150px;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.client-logos img:hover {
  transform: scale(2.0);
  opacity: 1;
}

.about-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.about-hidden.open {
  max-height: 2000px;
}

.toggle-content {
  display: none;
  margin-top: 20px;
  text-align: left;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.50);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.6;
}

.toggle-content.open {
  display: block;
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  text-align: left;
  position: relative;
  top: 5px;
  right: 5px;
}

.modal-content h3 {
  margin-top: 0;
  font-size: 28px;
  color: var(--navy);
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--gray);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-stack);
}

.close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  font-weight: bold;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}
.close-button:hover {
  color: var(--green);
}

html {
  scroll-behavior: smooth;
}

.new-service-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-block {
  position: relative;
  width: 360px;
  height: 600px;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(200, 200, 200, 0.65);
  border-radius: 12px;
  z-index: 1;
  overflow: hidden;
}

.service-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  border-radius: 12px;
  padding: 7px;
  background: linear-gradient(
    to bottom right,
    var(--blue) 0%,
    var(--blue) 15%,
    var(--green) 85%,
    var(--green) 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}

.service-title {
  text-align: center;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-features {
  list-style-type: disc;
  padding-left: 15px;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-features li {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 25px;
}

.service-block .cta-buttons {
  margin-top: auto;
  padding-bottom: 7;
  text-align: center;
}

.service-block .cta-button {
  margin: 0;
}

.service-paragraph {
  text-align: justify;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  margin-left: 0px;
  margin-right: 15px;
}

.menu-box {
  font-size: 36px;
  cursor: pointer;
  color: var(--navy);
  padding-right: 20px;
  user-select: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.main-nav li {
  font-size: 18px;
}

.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(0, 24, 53, 0.1);
  border-radius: 6px;
}

.menu-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 20px;
  z-index: 1000;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-overlay li {
  margin: 12px 0;
  font-size: 18px;
}

.menu-overlay li a {
  display: block;
  padding: 10px 15px;
  color: var(--navy);
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.menu-overlay li a:hover {
  background-color: rgba(0, 24, 53, 0.1);
}

.menu-overlay a {
  color: var(--navy);
  text-decoration: none;
  font-weight: bold;
}

.menu-overlay a:hover {
  text-decoration: underline;
}

/* ====== MOBILE-ONLY TWEAKS (desktop unaffected) ====== */
@media (max-width: 768px) {
  /* Text */
  body { font-size: 16px; }
  h1 { font-size: 44px; }
  h2 { font-size: 32px; text-align: center; }
  h3.tagline { font-size: 18px; }

  /* CTA buttons stack */
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    text-align: center;
  }
  .cta-button {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    margin: 4px auto;
    font-size: 16px;
  }

  /* Layout spacing */
  .container { padding: 18px 10px; }
  footer { padding: 32px 10px 48px 10px; }
  footer .copyright {
    position: static;
    text-align: center;
    margin-top: 14px;
  }

  /* Badges */
  .badges { gap: 8px 20px; margin: 24px 0; }
  .badges img { width: 56px; }

  /* Service blocks smaller */
  .new-service-blocks {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 10px;
  }
  .service-block {
    width: 94%;
    height: auto;
    padding: 14px;
    margin: 0 auto 14px;
  }
  .service-block::before { padding: 5px; }
  .service-icon { width: 72px; height: 72px; margin-bottom: 12px; }
  .service-title { font-size: 18px; margin-bottom: 8px; }
  .service-paragraph { font-size: 15px; margin-bottom: 12px; }
  .service-features li { font-size: 15px; margin-bottom: 8px; }

  /* Menu popup: hidden by default, shown when JS toggles inline display */
  .menu-overlay {
    position: fixed;
    top: 72px;
    right: 12px;
    left: auto;
    width: 85vw;
    max-width: 320px;
    display: none;   /* ensure hidden until toggled */
    z-index: 3000;
  }
}