:root {
  --primary-color: #003366;
  --accent-color: #006699;
  --light-bg: #f5f8fa;
  --text-color: #222;
  --card-bg: #fff;
  --radius: 16px;
  --shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.wf_customMessageBox {
  font-family: Arial, Helvetica, sans-serif;
  color: #132C14;
  background: #F5FAF5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  max-width: 90%;
  width: max-content;
  word-break: break-word;
  z-index: 11000;
  border-radius: 6px;
  border: 1px solid #A9D3AB;
  min-width: 100px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.wf_customCircle {
  position: relative;
  background-color: #12AA67;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  flex: none;
  margin-right: 7px;
}

.wf_customCheckMark {
  box-sizing: unset !important;
  position: absolute;
  transform: rotate(45deg) translate(-50%, -50%);
  left: 6px;
  top: 9px;
  height: 8px;
  width: 3px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.wf_customClose {
  box-sizing: border-box;
  position: relative;
  width: 18px;
  height: 18px;
}

.wf_customClose::after,
.wf_customClose::before {
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: #616E88;
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px
}

.wf_customClose::after {
  transform: rotate(-45deg)
}

.zcwf_col_lab {
  display: none;
}

#webform5504933000001348003>div:nth-child(13)>div.zcwf_col_fld {
  display: flex;
  gap: 20px;
}

/* Other styling */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  /* Enable smooth scrolling */
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s ease, transform 1.6s ease;

}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Header layout */
.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  cursor: pointer;
  /* Space between the logo and text */
  /* padding: 20px 10%; */
  /* Adjust padding as needed */
}

/* Logo Styling */
.logo-container {
  flex-shrink: 0;
  /* Prevent the logo from shrinking */
}

.logo {
  max-width: 3rem;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.logo:hover {
  transform: scale(1.1);
  /* Slightly enlarge the logo on hover */
}

/* Header text styling */
.header-text h1 {
  margin: 0;
  font-size: 2rem;
}

.header-text p {
  font-size: 1rem;
  margin-top: 5px;
}



.main-header {
  background: linear-gradient(to right, #3a80b7, var(--primary-color));
  /* Bluish color */
  color: white;
  /* padding: 2rem 5%; */
  padding: 0.5rem 10%;
  text-align: center;
  display: flex;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

header h1:hover {
  transform: scale(1.1);
}

header p {
  font-size: 1.1rem;
}

a[href="/"] {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* padding: 20px 10%; */
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f1f1f1;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: white;
  bottom: -5px;
  left: 50%;
  transition: width 0.3s ease, left 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

.dropdown {
  display: block;
  overflow: hidden;
}

.dropdown .dropbtn {
  margin: 0;
  cursor: context-menu;
}


.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  background: linear-gradient(to right, #d0dee9, #e6edf3);
  color: black;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding: .5rem 0;
}

.dropdown-content a {
  float: none;
  display: block;
  color: var(--primary-color);
}

.dropdown-content a:hover {
  color: var(--accent-color);
}

.dropdown-content a:after {
  background: var(--primary-color);
}

.navbar-toggler {
  display: none;
  color: white;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.navbar-toggler:hover {
  color: white;
}


@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    padding: 1rem;
  }

  .navbar-toggler {
    display: block;
  }

  .main-header {
    padding: 3%;
  }

  main>section .wrap {
    padding: 2rem;
  }

  .section-hero {
    padding: 5px;
  }
}

@media screen and (min-width: 768px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* 

section {
  padding: 40px 10%;
} */

/* region Hero */
.hero-split {
  background: #f2f7fb;
  padding: 3rem 1.5rem;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-self: center;
  max-width: 1200px;
  /* margin: 0 auto; */
  gap: 2rem;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 600px;
  max-height: fit-content;
  text-align: center;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s;
}

.hero-image img:hover {
  opacity: 0.85;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button.secondary {
  background-color: #e9f0f6;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cta-button:hover {
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    max-height: min-content;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}


/* endregion Hero */

.service_capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service_capability {
  cursor: pointer;
  flex: 1 1 calc(33% - 20px);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about {
  display: grid;
}

#service_capabilities h2,
#about h2 {
  justify-self: center;
  margin-bottom: 1rem;
}

#about p {
  justify-self: center;
  max-width: 620px;
}

.service_capability:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service_capability img {
  width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service_capability:hover img {
  transform: scale(1.1);
}



/* Footer Styling */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 30px 10%;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* .contact-info,
.quick-links,
.map-frame,
.footer-attributes {
    width: 30%;
} */

.map-frame>iframe {
  border-radius: 8px;
}

h3 {
  margin-bottom: 10px;
  color: #1e90ff;
}

a {
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #87cefa;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li {
  margin-bottom: 5px;
}

.footer-attributes {
  text-align: center;
  flex: 1 1 100%;
  margin-top: 20px;
  font-size: 0.8rem;
}

/* Styling for Contact Form */
/* #contact-section,
.contact-section {
    padding: 40px 10%;
    background-color: #f9f9f947;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 2rem;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
} */

.email-bt,
.massage-bt {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-bt:focus,
.massage-bt:focus {
  border-color: #3a80b7;
  box-shadow: 0 0 5px rgba(58, 128, 183, 0.5);
}

.massage-bt {
  resize: vertical;
}

#message_response {
  font-size: 0.9rem;
  margin-top: 5px;
}

#send_btn,
.send_btn,
.reset_btn {
  background-color: #3a80b7;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.reset_btn {
  background-color: #efefef;
  color: #333;
}

#send_btn:hover,
.send_btn:hover {
  background-color: #2a6fa0;
  transform: translateY(-2px);
}

.reset_btn:hover {
  background-color: #bae0fa;
  transform: translateY(-2px);
  color: #333;
}

#send_btn:active,
.send_btn:active,
.reset_btn:active {
  transform: translateY(0);
}

/* end contact styling */

/* Modals */

/* .modal.show {
    display: grid;
    animation: fadeIn 0.5s ease-in-out;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    height: fit-content;
} */
/* #modal-crm-chat{
    overlay: none;
} */
/* #modal-crm-chat > .modal-content {
    overflow-y: scroll;
	margin: 0 auto;
    height: 95%;
} */
#show-more-content-crm ul {
  list-style-type: none;
}

.show-more-crm-btn {
  color: #000;
  border: none;
  padding: 0.3rem 0.6rem;
  font-size: 12px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0.8rem;
}

.show-more-crm-btn:hover {
  /* transform: translateY(-2px); */
  transform: scale(1.05)
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



/* .modal-content>ul {
    text-align: left;
    padding-left: 4rem;
}

#modal-crm-chat>.modal-content {
    max-width: fit-content;
}

#modal-crm-chat>div>h4,
#modal-crm-chat>div>p:nth-child(3) {
    text-align: left;
} */

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.cta-calendly {
  background-color: #007BFF;
  /* Bright blue */
  color: var(--card-bg);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-calendly:hover {
  background-color: #0056b3;
  /* Darker blue for hover */
  transform: translateY(-2px);
  /* Lift effect */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-calendly:active {
  background-color: #007BFF;
  /* Original blue */
  transform: translateY(0);
  /* Reset lift */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.badge {
  background-color: var(--primary-color);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 0.3rem;
}

.public-sector-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-color);
  font-weight: bold;
  text-decoration: none;
}

.public-sector-link:hover {
  text-decoration: underline;
}


/* Responsive header adjustments */
@media (max-width: 768px) {
  .main-header {
    display: grid
  }

  .header-content {
    /* gap: 0; */
    /* flex-direction: column; */
    text-align: center;
  }

  .header-text h1 {
    font-size: 1.5rem;
  }

  .header-text p {
    font-size: 0.9rem;
  }

  .logo {
    max-width: 2.5rem;
  }

  nav {
    display: block;
    justify-content: center;
    /* gap: 10px; */
    /* padding: 0px 10% */
  }

  nav a {
    font-size: 0.9rem;
  }

  .contact-info,
  .quick-links,
  .map-frame,
  .footer-attributes {
    min-width: 100%;
  }
}

@media (min-width: 768px) {
  .main-header {
    justify-content: space-between;
  }
}

.hide {
  display: none;
}

.invalid {
  border-color: red;
}


/* contact form area */


/* AFTER PARTNERSHIPS UPDATE 1 */
.section_header {
  background: linear-gradient(to right, #d0dee9, #e6edf3);
  color: black;
  padding: 2rem 10%;
  align-items: anchor-center;
}

/* solutions section */
* {
  box-sizing: border-box;
}

.solutions {
  background: var(--light-bg);
  color: var(--text-color);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.solutions__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.solutions__header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 .35rem;
  color: var(--primary-color);
}

.solutions__header p {
  margin: 0;
  opacity: .85;
}

/* Featured */
.solutions__featured {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: stretch;
  background: linear-gradient(90deg, #ffffff, #f7fbff);
  border: 1px solid #e6eef5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
  margin: 1.25rem 0 2rem;
}

.featured__content {
  display: grid;
  align-content: center;
  gap: .75rem;
  padding: .5rem;
}

.featured__eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(0, 102, 153, .08);
  padding: .25rem .5rem;
  border-radius: 999px;
  width: fit-content;
}

.featured__title {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  margin: 0;
  color: var(--primary-color);
}

.featured__desc {
  margin: 0;
  line-height: 1.55;
  opacity: .9;
}

.featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
}

.featured__media {
  margin: 0;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: #eef4f9;
  display: grid;
  place-items: center;
}

.featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured nav */
.featured__nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: .25rem;
}

.featured__btn {
  border: 1px solid #d6e3ef;
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 36px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.featured__btn:hover {
  background: #f7fbff;
}

.featured__dots {
  display: flex;
  gap: .5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: transparent;
  cursor: pointer;
}

.dot[aria-selected="true"] {
  background: var(--accent-color);
}

/* Grid cards */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e6eef5;
  padding: clamp(1rem, 3vw, 1.25rem);
  display: grid;
  gap: .75rem;
}

.card__header h3 {
  margin: .25rem 0 .25rem;
  color: var(--primary-color);
}

.contact__trust {
  display: none;
}

.muted {
  opacity: .85;
  margin: 0;
}

.badge {
  display: inline-block;
  font-size: .75rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, .08);
  color: var(--primary-color);
}

.badge--accent {
  background: rgba(0, 102, 153, .1);
  color: var(--accent-color);
}

.card__list {
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  display: grid;
  gap: .75rem;
}

.card__list h4 {
  margin: 0 0 .25rem;
  font-size: 1rem;
  color: var(--text-color);
}

.card__list p {
  margin: 0;
  opacity: .9;
}

.card__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
  height: fit-content;
}

.btn {
  --_bg: var(--primary-color);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  padding: .55rem .9rem;
  border: 2px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, .25);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--_bg);
  color: var(--_fg);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: #fff;
  color: var(--accent-color);
  border-color: rgba(0, 102, 153, .35);
}

.btn--ghost:hover {
  background: #f7fbff;
}

/* Partner strip */
.partner-strip {
  /* display: grid; */
  grid-auto-flow: column;
  gap: 1.25rem;
  justify-content: start;
  align-items: center;
  margin-top: 1.25rem;
  opacity: .85;
}

.partner-strip img {
  height: 28px;
  width: auto;
  filter: grayscale(20%);
}

@media (max-width: 560px) {
  .partner-strip {
    grid-auto-flow: row;
    justify-items: start;
  }
}

/* Responsiveness */
@media (max-width: 960px) {
  .solutions__featured {
    grid-template-columns: 1fr;
  }

  .featured__media {
    order: -1;
    max-height: 260px;
  }
}

@media (max-width: 720px) {
  .solutions__grid {
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* about section */
:root {
  --primary-color: #003366;
  --accent-color: #006699;
  --light-bg: #f5f8fa;
  --text-color: #222;
  --card-bg: #ffffff;

  --radius: 16px;
  --shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.about {
  background: var(--light-bg);
  color: var(--text-color);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.about__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about__header h2 {
  margin: 0 0 .35rem;
  color: var(--primary-color);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.about__header p {
  margin: 0 auto;
  max-width: 65ch;
  opacity: .9;
}

/* Grid */
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid #e6eef5;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.25rem);
}

.h3 {
  margin: 0 0 .5rem;
  color: var(--primary-color);
  font-size: 1.15rem;
}

.keyfacts {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  display: grid;
  gap: .5rem;
}

.keyfacts a {
  color: var(--accent-color);
  text-decoration: underline;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}

.badge {
  display: inline-block;
  font-size: .75rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, .08);
  color: var(--primary-color);
}

.badge--accent {
  background: rgba(0, 102, 153, .1);
  color: var(--accent-color);
}

/* Lists */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}

.list-check li {
  padding-left: 1.35rem;
  position: relative;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* Values pills */
.pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.pill-list li {
  border: 1px solid #d6e3ef;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .85rem;
}

/* CTA row */
.about__cta {
  margin-top: 1.25rem;
  background: linear-gradient(90deg, #ffffff, #f7fbff);
  border: 1px solid #e6eef5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 560px) {
  .about__cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Buttons (reuse from solutions if included) */
.btn {
  --_bg: var(--primary-color);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  padding: .55rem .9rem;
  border: 2px solid transparent;
  color: var(--_fg);
  background: var(--_bg);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, .25);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: #fff;
  color: var(--accent-color);
  border-color: rgba(0, 102, 153, .35);
}

.btn--ghost:hover {
  background: #f7fbff;
}

.muted {
  opacity: .85;
  margin: .4rem 0 0;
  line-height: 1.55;
}

/* callout and patnerships section */
.partnerships-banner {
  /* background: linear-gradient(to right, #d0dee9, #e6edf3); */
  color: var(--text-color);
  padding: 1.25rem 0;
}

.partnerships-banner .container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  /* justify-content: space-between; */  
}

.partnerships-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.partnerships-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.partnerships-logos img {
  height: 34px;
  width: auto;
  /* filter: brightness(0) invert(1);*/
  /* makes logos white-ish on dark bg */
  opacity: .9;
  transition: opacity .2s ease;
}

.partnerships-logos img:hover {
  opacity: 1;
}

@media (max-width: 720px) {
  .partnerships-banner .container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .partnerships-text {
    margin-bottom: .5rem;
  }

  .partnerships-logos {
    justify-content: center;
  }
}


/* contact section */
.contact {
  background: var(--light-bg);
  padding: clamp(2rem, 4vw, 3rem) 0;
  color: var(--text-color);
  text-align: left;
}

.contact__shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.contact__header h2 {
  color: var(--primary-color);
  margin: 0 0 .35rem;
}

.subtitle {
  opacity: .9;
  margin: 0;
}

.contact__quick-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.contact__grid {
  /* display:grid; */
  display: block;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (max-width: 880px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid #e6eef5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.25rem);
}

.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

@media (max-width:560px) {
  .contact-form .field-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  border: 1px solid #d6e3ef;
  border-radius: 12px;
  padding: .65rem .75rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, .25);
  border-color: var(--accent-color);
}

.inline-choices {
  margin: .5rem 0 .25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border: 0;
  padding: 0;
}

.inline-choices legend {
  font-weight: 600;
  margin-bottom: .25rem;
  width: 100%;
}

.inline-choices label {
  font-weight: 500;
}

.error {
  color: #b00020;
  font-size: .85rem;
  min-height: 1em;
}

.hide {
  display: none !important;
}

.consent {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .25rem;
}

.muted {
  opacity: .85;
}

.btn {
  --_bg: var(--primary-color);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  padding: .65rem 1rem;
  border: 2px solid transparent;
  color: var(--_fg);
  background: var(--_bg);
  transition: filter .2s ease, transform .06s ease;
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: #fff;
  color: var(--accent-color);
  border-color: rgba(0, 102, 153, .35);
}

.btn--ghost:hover {
  background: #f7fbff;
}

.btn:active {
  transform: translateY(1px);
}

.btn__spinner {
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, .6);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin 1s linear infinite;
}

.btn.loading .btn__label {
  opacity: .6;
}

.btn.loading .btn__spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.success-message {
  margin-top: .75rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  background: #ecfbf2;
  color: #0a7a3c;
  display: none;
}

/* trust column */
.contact__trust h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  display: grid;
  gap: .4rem;
}

.tick-list li {
  padding-left: 1.25rem;
  position: relative;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.logo-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.logo-strip img {
  height: 24px;
  width: auto;
  filter: grayscale(20%);
  opacity: .9
}

/* honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

#submitBtn {
  background: var(--primary-color);
  color: var(--light-bg);
  border-radius: 12px;
  font-size: 1.2rem;
}


.debug-btn {
  margin-top: 1rem;
  padding: 6px 10px;
  background: #e7e112;
  border: 1px solid #bbb;
  cursor: pointer;
}


/* 24 hr CTA */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;

  background: var(--accent, #006699);
  color: #fff;
  border: none;

  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;

  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}

.floating-cta:hover {
  background: var(--accent-dark, #005580);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.floating-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.floating-cta {
  animation: pulse 2.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 153, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 102, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 153, 0);
  }
}



@media (max-width: 600px) {
  .floating-cta {
    padding: 0.75rem 1.15rem;
    font-size: 0.9rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* END 24 hr CTA */