body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
}
.header {
  display: flex;
  align-items: center;
  padding: 18px 36px;
  background: #fff;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
}

/* Header Brand Section*/
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  font-weight: 700;
  font-size: 1.4em;
  color: #232360;
  margin-right: 6px;
}
.brand-tag {
  background: #FFD700;
  border-radius: 15px;
  color: #232360;
  font-size: .90em;
  font-weight: 700;
  padding: 4px 8px;
  margin: 4px 6px 0 4px;
}
.brand-demo {
  color: #999;
  font-size: .97em;
  font-weight: 400;
}

/* Banner Section*/
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding: 2rem 5vw;
  background: url('./images/Banner.webp') center/cover no-repeat;
  box-shadow: 0 6px 48px 0 rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  gap: clamp(24px, 6vw, 64px);
}
.banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.13;
  color: #141133;
  margin: 0;
  width: 100%;
  max-width: 700px;
  text-align: left;
}

.banner-image {
  flex-shrink: 0;
  width: clamp(270px, 45vw, 650px);
  max-width: 98vw;
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.monitor-img {
  width: 100%;
  max-width: 650px;
  min-width: 170px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 24px 0 rgba(120,87,255,0.12);
  height: auto;
  object-fit: contain;
}

/* Stack on tablets/small screens */
@media (max-width: 1060px) {
  .banner {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    min-height: 400px;
    gap: 28px;
  }
  .banner-content h1 {
    text-align: center;
    max-width: 99vw;
    line-height: 1.23;
  }
}

/* Even smaller screens */
@media (max-width: 650px) {
  .banner {
    padding-left: 7px;
    padding-right: 7px;
    min-height: 270px;
    gap: 9vw;
  }
  .banner-content h1 {
    font-size: 1.18rem;
    line-height: 1.27;
    text-align: center;
    max-width: 97vw;
  }
  .banner-content .headline-main {
    white-space: normal;
    display: inline;
  }
  .banner-image {
    width: 97vw;
    min-width: 100px;
  }
}

/* Tabs Section*/
.tabs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 70px;
}
.tabs.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 4px 6px -6px gray;
  transition: box-shadow 0.2s;
}
.tab {
  font-size: 1.02em;
  color: #0F172A;
  margin: 0 18px;
  cursor: pointer;
  padding-bottom: 20px;
  font-weight: 600;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;  
  -ms-user-select: none;
  position: relative;
  border-bottom: 2px solid transparent;
}

.tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 3px;
  width: 0;
  background: #0057FF;
  border-radius: 2px;
  transition: width 0.27s cubic-bezier(.4,0,.2,1), left 0.27s cubic-bezier(.4,0,.2,1);
  transform: translateX(-50%);
  pointer-events: none;
}

.tab.active::after,
.tab:hover::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tab.active,
.tab:hover {
  color: #0057FF;
}

.tab.sublabel {
  font-size: .95em;
  color: #888;
}

.resolution {
  background: #227ef1;
  border-radius: 7px;
  margin: 0 14px;
  color: #fff;
  padding: 2px 10px;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: .03em;
  vertical-align: middle;
  display: inline-block;
}

/* SDK Sections */
.sdk-sections-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 60px 0;
}
.sdk-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  text-align: center;
  margin-bottom: 38px;
  padding: 32px 28px 32px 28px;
}
.sdk-content {
  min-width: 300px;
  text-align: -webkit-center;
  flex: 2;
}
.sdk-title {
  font-size: 2.0em;
  font-weight: 700;
  color: #222;
  margin-bottom: 1em;
}
.sdk-desc {
  color: #6b6b88;
  font-size: 1.05em;
  margin-bottom: 40px;
  width: 60%;
}
.sdk-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: unset;
  gap: 22px 34px;
  margin-bottom: 18px;
  justify-items: stretch;
}

.sdk-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  color: #1E293B;
  border-radius: 18px;
  box-shadow: 0px 2px 12px #e2e8f0, 0px 0px 4px #e2e8f0bf;
  padding: 16px 24px 16px 20px;
  font-size: 1.0em;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  gap: 15px;
  transition: background 0.18s, box-shadow 0.18s;
}
.sdk-btn:hover {
  background: #F2F6FE;
  box-shadow: 0px 6px 22px #b6dbff2a;
  text-decoration: none;
}
/* Icon on the left (SVG or <img>) */
.sdk-btn-icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.sdk-btn-icon img,
.sdk-btn-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}
/* Label styling */
.sdk-btn-label {
  flex: 1;
  text-align: left;
  font-size: 1em;
  font-weight: 700;
}
/* Arrow on the right */
.sdk-btn-arrow {
  font-size: 1.5em;
  height: 24px;
  color: #1E293B;
  transition: transform 0.14s;
}
.sdk-btn:hover .sdk-btn-arrow {
  transform: translateX(6px);
}

/* Responsive shrink for narrow screens */
@media (max-width: 600px) {
  .sdk-btn { min-width: 190px; font-size: 1em; padding: 11px 11px 11px 8px; }
}
.tab-section { display: none; }
.tab-section.active { display: flex; }

@media (max-width: 1060px) {
  .sdk-section {
    flex-direction: column;
    align-items: center;
  }
  .sdk-content {
    min-width: unset;
  }
}
@media (max-width: 650px) {
  .header, .sdk-section, .sdk-sections-container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .sdk-section {
    gap: 10px;
  }
  .sdk-image {
    width: 120px;
    height: 74px;
  }
}
@media (max-width: 900px) {
  .sdk-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
  }
}
@media (max-width: 580px) {
  .sdk-buttons {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }
}
/* Trusted Company CSS */
.company-list {
  background: #f6f7f8;
  padding: 28px 0 18px 0;
  text-align: center;
  border-top: 1px solid #e1e1e1;
}
.trusted-title {
  font-size: 1.14em;
  margin-bottom: 16px;
  color: #384657;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trusted-logos-img img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.trusted-logos-desktop {
  display: block;
}
.trusted-logos-mobile {
  display: none;
}
@media (max-width: 700px) {
  .trusted-logos-desktop {
    display: none !important;
  }
  .trusted-logos-mobile {
    display: block !important;
  }
}

/* Showcase application CSS */
.showcase-section {
  padding: 28px 0 0 0;
}
.showcase-header {
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  color: #222;
  letter-spacing: 0.01em;
}
.showcase-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  border-radius: 18px;
  padding: 44px 32px;
  margin: 0 auto 0 auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.showcase-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px #1930ab14;
  background: #eaeffa;
}

.showcase-image a {
  outline: none;
}

.showcase-image a:active, .showcase-image a:focus {
  outline: none;
}

.showcase-content {
  flex: 1 1 0;
  min-width: 450px;
}
.sample-head {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 8px;
}
.showcase-desc {
  font-size: 1.06em;
  color: #222;
  line-height: 1.67;
}

/* Right Section: "Available on" and icons */
.showcase-platforms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  margin-left: 52px;
  margin-top: 8px;
  justify-content: flex-start;
}
.showcase-platforms > span {
  font-size: 0.98em;
  font-weight: 700;
  color: #444;
  margin-bottom: 10px;
  padding-left: 5px;
}
.showcase-platforms .platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 2px #0001;
  margin-right: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
  object-fit: contain;
  padding: 2px;
  vertical-align: bottom;
}
.showcase-platforms a {
  display: inline-block;
  vertical-align: middle;
}
.showcase-platforms a:last-child .platform-icon {
  margin-right: 0;
}
.showcase-platforms a:hover .platform-icon {
  box-shadow: 0 4px 12px #009efd36;
  transform: translateY(-2px) scale(1.09);
}
.sample-img:hover  {
  box-shadow: 0 0 18px 0 #009efd36, 0 4px 28px 0 #009efd36;
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}

/* Horizontal icon row */
.showcase-platforms {
  flex-direction: column;
}
.showcase-platforms span + a {
  margin-top: 6px;
}
.showcase-platforms {
  gap: 0;
}
.showcase-platforms span + a,
.showcase-platforms a + a {
  margin-left: 0;
}

/* Add an extra wrapper for icon row for better mobile control */
.showcase-platforms .platform-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
@media (max-width: 845px) {
  .showcase-platforms {
    margin-left: 0px;
    margin-top: 20px;
    min-width: 110px;
  }
  .showcase-content {
    min-width: 140px;
  }
  div[style*="display: flex"] { flex-direction: column; }
  .platform-row { margin-bottom: 10px; }
}
.platform-note {
  font-size: 0.94em;
  color: #444;
  border-radius: 7px;
  margin-top: 22px;
  line-height: 1.6;
  font-weight: 500;
}

/* Rating Section CSS */
.user-ratings {
  max-width: 950px;
  margin: 30px auto 24px auto;
  padding: 0 16px;
  text-align: center;
}
.user-ratings-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 32px;
}
.user-ratings-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.user-rating-card {
  background: #fff;
  border-radius: 13px;
  padding: 32px 38px 22px 38px;
  min-width: 200px;
  max-width: 275px;
  margin: 0 0 16px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-rating-logo {
  height: 38px;
  margin-bottom: 12px;
  margin-top: 3px;
}
.user-rating-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.user-rating-stars {
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.user-rating-score {
    background: #d0fae5;
    border: .75px solid #a8ddc2;
    border-radius: 40px;
    width: 56px;
    height: 20px;
    color: #075a40;
    font-weight: 700;
    text-align: center;
    padding: 1px;
    margin-left: 8px;
    font-size: 14px;
}
.user-rating-reviews {
  color: #333;
  font-size: 0.97em;
  margin-bottom: 7px;
  margin-top: 2px;
}
.user-rating-link {
  color: #0078e7;
  font-weight: 500;
  text-decoration: none;
  font-size: 1em;
  margin-top: 4px;
  display: inline-block;
  transition: text-decoration 0.13s, color 0.15s;
}
.user-rating-link:hover {
  color: #003974;
}

/* Responsive: Stack on small screens */
@media (max-width: 800px) {
  .user-ratings-row { flex-direction: column; align-items: center; gap: 22px; }
  .user-rating-card { max-width: 340px; width: 92%; }
}

/* Footer CSS */
.footer {
  background: #EBEFF5;
  color: #26324B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  margin-top: 45px;
  border-top: 1px solid #dde2e8;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 28px 28px 28px;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 140px;
  min-width: 140px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-col-title {
  font-size: 1.05em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0F172A;
  letter-spacing: .02em;
}

.footer-col a {
  color: #475569;
  text-decoration: none;
  font-size: 0.97em;
  margin-bottom: 4px;
  transition: color .13s;
}

.footer-col a:hover {
  color: #0057FF;
}

.footer-contact-item {
  color: #475569;
  font-size: 0.97em;
  margin-bottom: 4px;
}

a.footer-contact-email {
  color: #0057FF;
  font-weight: 600;
  text-decoration: none;
}
a.footer-contact-email:hover {
  color:rgb(20, 83, 208);
}

/* Footer Bottom CSS */
.footer-bottom-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  font-size: 0.9em;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  transition: color 0.16s;
}

.footer-links a:hover,
.footer-copyright a:hover {
  color: #0057FF;
}

.footer-copyright a {
  color: #475569;
  font-size: 0.9em;
  white-space: nowrap;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  color: #fff;
  background: #334155;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-social a:nth-child(1):hover { background: #1877f3; } /* Facebook */
.footer-social a:nth-child(2):hover { background: #1a1a1a; } /* Twitter/X */
.footer-social a:nth-child(3):hover { background: #0a66c2; } /* LinkedIn */
.footer-social a:nth-child(4):hover { background: #ff0000; } /* YouTube */

@media (max-width: 992px) {
  .footer-bottom-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-bottom-main {
    padding: 18px 8px;
  }
  .footer-bottom-left {
    gap: 12px;
  }
  .footer-copyright {
      white-space: normal;
  }
}