/* [project]/src/app/css/Header.css [app-client] (css) */
.basic-header {
  z-index: 1000;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  position: relative;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 14px 20px;
  }
}

.header-logo {
  flex-shrink: 0;
  align-items: center;
  transition: transform .3s ease-in-out;
  display: flex;
}

.header-logo:hover {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .header-logo img {
    max-width: 140px;
    height: auto;
  }
}

.header-nav {
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  display: flex;
}

@media (max-width: 1200px) {
  .header-nav {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .header-nav {
    gap: 16px;
  }
}

.header-nav a {
  color: #153c7f;
  font-size: 15px;
  text-decoration: none;
  position: relative;
}

.header-nav a.active:after {
  content: "";
  background-color: #153c7f;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.header-nav a.header-link-login {
  color: #153c7f;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
}

.header-nav a.header-link-login:hover {
  background-color: rgba(21, 60, 127, .08);
}

.header-nav a.header-link-login.active:after {
  display: none;
}

.header-nav a.header-link-register {
  color: #fff;
  background-color: #153c7f;
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
}

.header-nav a.header-link-register:hover {
  color: #fff;
  background-color: #1e4a8c;
  border-color: #1e4a8c;
}

.header-nav a.header-link-register.active:after {
  display: none;
}

.mobile-menu a.header-link-login {
  color: #153c7f;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.mobile-menu a.header-link-register {
  color: #fff;
  background-color: #153c7f;
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.hamburger {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  margin: -8px 0 -8px 8px;
  padding: 8px;
  display: none;
}

.hamburger svg {
  stroke: #003a8f;
  width: 28px;
  height: 28px;
}

.mobile-menu {
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(255, 255, 255, .98);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 80px 24px 32px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

.mobile-menu a {
  text-align: left;
  border-radius: 8px;
  margin-bottom: 4px;
  padding: 14px 16px;
  font-size: 16px;
  display: block;
}

.mobile-menu a:not(.header-link-login):not(.header-link-register) {
  color: #153c7f;
}

.mobile-menu a.header-link-login, .mobile-menu a.header-link-register {
  text-align: center;
  margin-top: 8px;
}

.mobile-menu a.header-link-login {
  margin-bottom: 8px;
}

@media (min-width: 1025px) {
  .header-container {
    justify-content: space-between;
  }

  .header-nav {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }
}

/* [project]/src/app/css/Footer.css [app-client] (css) */
.interllekt-footer {
  color: #fff;
  background: #153c7f;
  margin-top: auto;
  padding: 80px 24px 40px;
}

.footer-container {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.footer-logo {
  flex-direction: column;
  display: flex;
}

.footer-logo p {
  opacity: .9;
  max-width: 300px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.app-buttons {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  display: flex;
}

.app-buttons img {
  max-width: 100%;
  height: auto;
  transition: transform .2s;
  display: block;
}

.app-buttons a:hover img {
  transform: scale(1.05);
}

.footer-links h4, .connect-title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  opacity: .85;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.connect-title {
  margin-bottom: 24px;
}

.social-icons {
  align-items: center;
  gap: 32px;
  display: flex;
}

.social-link {
  color: #7cc427;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  display: flex;
}

.icon-f, .icon-in {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.icon-twitter, .icon-instagram {
  width: 36px;
  height: 36px;
}

@media (max-width: 1024px) {
  .interllekt-footer {
    padding: 60px 24px 36px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .footer-logo {
    text-align: center;
    grid-column: span 2;
    align-items: center;
  }

  .footer-logo p {
    max-width: 480px;
  }

  .app-buttons {
    justify-content: center;
  }

  .footer-social {
    text-align: center;
    grid-column: span 2;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .interllekt-footer {
    padding: 48px 20px 32px;
  }

  .footer-container {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-logo p {
    max-width: 320px;
    margin-top: 16px;
    font-size: 14px;
  }

  .app-buttons {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-links h4, .connect-title {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .social-icons {
    gap: 24px;
  }

  .social-link {
    font-size: 28px;
  }

  .icon-in {
    font-size: 32px;
  }
}

@media (max-width: 380px) {
  .interllekt-footer {
    padding: 40px 16px 28px;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-links h4, .connect-title {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

/* [project]/src/app/css/HeroSection.css [app-client] (css) */
.hero {
  color: #fff;
  text-align: center;
  background: linear-gradient(113.99deg, #153c7f 12.55%, #000820 87.43%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.content {
  max-width: 1200px;
}

h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h1 span {
  font-weight: 700;
}

.imageWrapper {
  max-width: 600px;
  margin: 0 auto;
}

.imageWrapper img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    margin-bottom: 1.8rem;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .imageWrapper {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.6rem;
  }
}

/* [project]/src/app/css/SubHero.css [app-client] (css) */
.subhero-section {
  background-color: #ecf3ff;
  justify-content: center;
  padding: 80px 20px;
  display: flex;
}

.subhero-container {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.subhero-section h2 {
  color: #4d4d4d;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

.subhero-section p {
  color: #242424;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.demo-button {
  color: #fff;
  cursor: pointer;
  background-color: #63a821;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s;
  display: inline-block;
}

.demo-button:hover {
  background-color: #7ac100;
}

@media (max-width: 1024px) {
  .subhero-section {
    padding: 64px 24px;
  }

  .subhero-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .subhero-section {
    padding: 56px 20px;
  }

  .subhero-section h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .subhero-section p {
    font-size: .95rem;
    line-height: 1.6;
  }

  .demo-button {
    padding: 12px 26px;
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .subhero-section {
    padding: 48px 16px;
  }

  .subhero-section h2 {
    font-size: 1.3rem;
  }

  .subhero-section p {
    font-size: .9rem;
  }

  .demo-button {
    width: 100%;
    padding: 14px;
    font-size: .95rem;
  }
}

/* [project]/src/app/css/KeyFeatures.css [app-client] (css) */
.key-features {
  text-align: center;
  color: #fff;
  background: linear-gradient(#7cc427, #4c8a16);
  padding: 80px 20px 140px;
}

.key-features-image {
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  display: flex;
}

.key-features-image img {
  object-fit: contain;
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
  height: auto;
}

.key-features h2 {
  font-size: 32px;
  font-weight: 800;
}

.key-features p {
  margin-top: 10px;
  font-size: 18px;
}

.u-wrapper {
  height: 520px;
  margin-top: 90px;
  position: relative;
}

.u-arc {
  border: 2px solid rgba(255, 255, 255, .6);
  border-top: none;
  border-radius: 0 0 300px 300px;
  width: 600px;
  height: 300px;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}

.center-bowl {
  background: #fff;
  border-radius: 0 0 170px 170px;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 170px;
  display: flex;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .35);
}

.u-item {
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  position: absolute;
}

.i1, .i2, .i3 {
  text-align: right;
  flex-direction: row;
}

.i5, .i6, .i7 {
  text-align: left;
  flex-direction: row-reverse;
}

.i4 {
  text-align: center;
  flex-direction: column-reverse;
  align-items: center;
}

.i1 {
  top: 95px;
  left: 70px;
}

.i2 {
  top: 235px;
  left: 250px;
}

.i3 {
  top: 380px;
  left: 270px;
}

.i4 {
  top: 420px;
  left: 50%;
  transform: translateX(-50%);
}

.i5 {
  top: 365px;
  right: 350px;
}

.i6 {
  top: 235px;
  right: 200px;
}

.i7 {
  top: 95px;
  right: 150px;
}

.kf-cards-grid {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  display: flex;
}

.kf-feature-card {
  color: #242424;
  background: #fff;
  border-radius: 12px;
  flex: none;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.kf-card-header {
  background: #153c7f;
  align-items: center;
  gap: 12px;
  padding: 14px;
  display: flex;
}

.kf-card-header img {
  width: 70px;
}

.kf-card-header h4 {
  color: #fff;
  text-align: left;
  margin: 0;
  font-size: 16px;
}

.kf-card-body {
  text-align: left;
  flex-direction: column;
  height: 200px;
  padding: 20px;
  display: flex;
}

.kf-card-body p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .kf-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .u-wrapper {
    display: none;
  }

  .kf-cards-grid {
    grid-template-columns: 1fr;
  }

  .kf-card-body {
    text-align: left;
    flex-direction: column;
    height: 250px;
    padding: 20px;
    display: flex;
  }
}

/* [project]/src/app/css/MeasurableOutcomes.css [app-client] (css) */
.outcomes-section {
  text-align: center;
  background: #ecf3ff;
  padding: 80px 20px;
}

.outcomes-title {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 600;
}

.outcomes-subtitle {
  color: #242424;
  max-width: 720px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.outcomes-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.outcomes-grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  display: grid;
}

.outcome-card {
  text-align: left;
  z-index: 5;
  background: #fff;
  border-radius: 26px;
  min-height: 150px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.outcome-card h4, .outcome-card p {
  z-index: 2;
  position: relative;
}

.outcome-card h4 {
  margin-bottom: 12px;
  font-size: 20px;
}

.outcome-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #242424 !important;
}

.outcome-card:before {
  content: "";
  z-index: 1;
  background: #153c7f;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
}

.curve-bottom-right:before {
  bottom: -90px;
  right: -90px;
}

.curve-bottom-left:before {
  bottom: -90px;
  left: -90px;
}

.curve-top-right:before {
  top: -90px;
  right: -90px;
}

.curve-top-left:before {
  top: -90px;
  left: -90px;
}

.card-icon {
  z-index: 3;
  background: #153c7f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
}

.card-icon img {
  filter: brightness(0) invert();
  width: 32px;
}

.curve-bottom-right .card-icon {
  bottom: 14px;
  right: 14px;
}

.curve-bottom-left .card-icon {
  bottom: 14px;
  left: 14px;
}

.curve-top-right .card-icon {
  top: 14px;
  right: 14px;
}

.curve-top-left .card-icon {
  top: 14px;
  left: 14px;
}

.outcomes-center-circle {
  z-index: 4;
  pointer-events: none;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 248px;
  height: 248px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-logo-box {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.center-logo-box img {
  width: 80px;
  height: 80px;
}

@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .outcomes-container {
    flex-direction: column-reverse;
    display: flex;
  }

  .outcomes-center-circle {
    margin: 40px auto;
    position: relative;
    transform: none;
  }
}

@media (max-width: 768px) {
  .outcomes-center-circle {
    display: none;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .center-logo-box {
    width: 40px;
    height: 40px;
  }
}

/* [project]/src/app/css/OurPillars.css [app-client] (css) */
.pillars-section {
  text-align: center;
  background-color: #fff;
  padding: 80px 20px;
}

.pillars-title {
  letter-spacing: 1.5px;
  color: #153c7f;
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 600;
}

.pillars-subtitle {
  color: #242424;
  max-width: 950px;
  margin: 0 auto 60px;
  font-size: 24px;
  line-height: 1.6;
}

.pillars-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
}

.pillar-card {
  text-align: left;
  background: linear-gradient(229.49deg, #fff -15.77%, #f6f6f6 43.04%, #dedddd 139.44%, #dddcdc 143.58%);
  border-radius: 32px;
  max-width: 400px;
  min-height: 220px;
  padding: 32px 32px 88px;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
  box-shadow: -40px 30px 25px rgba(0, 0, 0, .2);
}

.pillar-heading {
  color: #222;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.pillar-description {
  color: #242424;
  font-size: 15px;
  line-height: 1.6;
}

.pillar-icon {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.pillar-icon:before {
  content: "";
  z-index: -1;
  background-color: #153c7f;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -50px;
  right: -50px;
}

.pillar-icon img {
  object-fit: contain;
  width: 36px;
}

.pillars-grid > :last-child {
  grid-column: span 2;
  max-width: 420px;
  height: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .pillars-grid > :last-child {
    grid-column: span 1;
  }

  .pillar-card {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .pillar-icon:before {
    width: 100px;
    height: 100px;
    bottom: -40px;
    right: -40px;
  }

  .pillar-icon {
    width: 50px;
    height: 60px;
  }

  .pillars-title {
    font-size: 28px;
  }

  .pillars-subtitle {
    font-size: 18px;
  }

  .pillar-icon img {
    width: 28px;
  }
}

/* [project]/src/app/css/VisionMission.css [app-client] (css) */
.section {
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 3rem 2rem;
  display: flex;
}

.vision {
  background: linear-gradient(168.42deg, rgba(95, 195, 0, .91) 4.18%, rgba(54, 102, 7, .91) 92.49%);
}

.mission {
  background: linear-gradient(113.99deg, #2060bb 12.55%, #000820 87.43%);
}

.content {
  width: 100%;
  max-width: 800px;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
}

p {
  font-size: 1.25rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section {
    min-height: 60vh;
    padding: 4rem 1.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 360px) {
  h2 {
    font-size: 1.5rem;
  }
}

/* [project]/src/app/css/FromGoalsToResults.css [app-client] (css) */
.results-section {
  text-align: center;
  background-color: #f8fbff;
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
}

.results-content {
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.results-header {
  max-width: 900px;
  margin: 0 auto 20px;
}

.results-title {
  color: #153c7f;
  letter-spacing: .8px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
}

.results-subtitle {
  color: #242424;
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.results-images {
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 40px auto 0;
  display: flex;
}

.results-image-wrapper {
  flex: 1;
  max-width: 100%;
  height: 580px;
  position: relative;
}

.dashboard-image {
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .results-image-wrapper {
    height: 480px;
  }

  .results-title {
    font-size: 28px;
  }

  .results-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 80px 20px;
  }

  .results-title {
    font-size: 26px;
  }

  .results-subtitle {
    font-size: 16px;
  }

  .results-images {
    flex-direction: column;
    gap: 20px;
  }

  .results-image-wrapper {
    aspect-ratio: 900 / 580;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .results-title {
    font-size: 22px;
  }

  .results-subtitle {
    font-size: 15px;
  }
}

/* [project]/src/app/css/CustomerTestimonials.css [app-client] (css) */
.testimonials-section {
  text-align: center;
  background-color: #f1f7ff;
  padding: 100px 20px;
}

.testimonials-header {
  max-width: 760px;
  margin: 0 auto 70px;
}

.testimonials-title {
  color: #242424;
  letter-spacing: .5px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
}

.testimonials-subtitle {
  color: #242424;
  font-size: 16px;
  line-height: 1.6;
}

.testimonials-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
}

.testimonial-card {
  text-align: left;
  background: #fff;
  border: 1px solid #d7ebff;
  border-radius: 14px;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
}

.message {
  color: #242424;
  white-space: pre-line;
  margin-bottom: 18px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

.name {
  color: #242424;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.role {
  color: #242424;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px;
  }

  .message {
    font-size: 16px;
    line-height: 1.5;
  }

  .name, .role {
    font-size: 16px;
  }
}

/* [project]/src/app/css/TrustedByHealthcare.css [app-client] (css) */
.trusted-section {
  text-align: center;
  background-color: #f8fbff;
  padding: 100px 20px;
}

.trusted-title {
  color: #4d4d4d;
  letter-spacing: .5px;
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.trusted-content {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
}

.trusted-logos {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.logo-card {
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  transition: transform .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.logo-card:hover {
  transform: translateY(-3px);
}

.logo-card a {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
}

.logo-image {
  object-fit: contain;
  width: 80%;
  height: 100%;
}

.logo-card > .logo-image {
  padding: 15px;
}

.trusted-image-container {
  border-radius: 14px;
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.trusted-image-img {
  object-fit: cover;
}

@media (max-width: 1024px) {
  .trusted-content {
    grid-template-columns: 1fr;
  }

  .trusted-image-container {
    order: -1;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .trusted-section {
    padding: 60px 20px;
  }

  .trusted-title {
    font-size: 22px;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-card {
    height: 80px;
  }
}

/* [project]/src/app/css/DemoCTA.css [app-client] (css) */
.demo-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 6rem 2rem;
  display: flex;
}

.demo-cta-container {
  text-align: center;
  color: #fff;
  background-image: url("../media/bgdemo.dab93dc3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  padding: 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.demo-cta-container:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: rgba(10, 20, 40, .1);
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.demo-cta-container > * {
  z-index: 1;
  position: relative;
}

.demo-cta-title {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #e8f5ff 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 24px;
  font-weight: 800;
}

.demo-cta-subtitle {
  opacity: .95;
  max-width: 700px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.8;
}

.demo-cta-subtitle .highlight {
  color: #a8e063;
  font-weight: 600;
}

.demo-cta-button {
  color: #153c7f;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 1;
  background: linear-gradient(135deg, #a8e063 0%, #92d050 100%);
  border: none;
  border-radius: 50px;
  padding: 1.1rem 3rem;
  font-size: max(1.05rem, min(2.5vw, 1.2rem));
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(168, 224, 99, .4);
}

.demo-cta-button:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .3), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.demo-cta-button:hover:before {
  left: 100%;
}

.demo-cta-button:hover {
  background: linear-gradient(135deg, #92d050 0%, #7bb830 100%);
  transform: translateY(-4px)scale(1.03);
  box-shadow: 0 20px 40px rgba(168, 224, 99, .5);
}

.demo-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 224, 99, .4);
}

@media (max-width: 1024px) {
  .demo-cta-container {
    margin: 0 1rem;
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .demo-cta-section {
    padding: 4rem 1.5rem;
  }

  .demo-cta-container {
    padding: 3.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .demo-cta-section {
    padding: 3rem 1rem;
  }

  .demo-cta-container {
    border-radius: 16px;
    padding: 3rem 1.5rem;
  }

  .demo-cta-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/*# sourceMappingURL=src_app_css_32f56c81._.css.map*/