body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.navbar {
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  padding: 0 50px;
  height: 70px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.navbar-logo {
  margin-right: 70px;
}

.navbar-logo img {
  height: 40px;
  margin-right: 10px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin: 0 16px;
  position: relative;
}

.navbar-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
  padding: 8px 6px;
}

.navbar-menu a:hover {
  color: #409cff;
}

.demo-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 9px 23px;
  border-radius: 11px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.demo-btn:hover {
  background: #2179c4;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
  border-radius: 7px;
  top: 38px;
  left: 0;
  padding: 0;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  color: #fff;
  padding: 11px 18px;
  display: block;
  font-size: 16px;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background: #2179c4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.custom-solutions-dropdown {
  display: none;
  flex-direction: row;
  width: 1040px;
  height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: -150px;
  top: 40px;
  align-items: stretch;
  padding: 0;
}

.dropdown.solutions-dropdown:hover .custom-solutions-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.solutions-list {
  list-style: none;
  margin: 0;
  padding: 24px 0 24px 30px;
  width: 400px;
  background: #fff;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-right: 1px solid #e4e9f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.solutions-list li {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 17px;
  border-radius: 10px;
  cursor: pointer;
  color: #223762;
  font-weight: 500;
  margin-bottom: 2px;
  margin-right: 30px;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  line-height: 1.3;
  background: #fff;
  white-space: normal;
}

.solutions-list li.active,
.solutions-list li:hover {
  background: #eaf4fc;
  border: 1.5px solid #409cff;
}

.solutions-list .icon img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.solutions-list .option-chevron {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.solutions-list li {
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.solutions-list .option-chevron svg {
  width: 18px;
  height: 18px;
  stroke: #7b869a; 
}

.solutions-detail {
  flex: 1;
  padding: 22px 36px 22px 8px;
  background: #fff;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}

.solutions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  height: 32px;
}

.solutions-header h3 {
  font-size: 21px;
  color: #0d2242;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.features-btn {
  background: #409cff;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 9px;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(64, 156, 255, 0.07);
  white-space: nowrap;
  margin-left: 16px;
}

.features-btn:hover {
  background: #246db9;
}

.details-panel {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 6px;
}

.details-panel.active {
  display: block;
}

.details-panel .row {
  display: flex;
  gap: 38px;
  margin-bottom: 20px;
}

.feature-block {
  flex: 1;
  min-width: 0;
  padding: 18px 12px 20px 14px;
  background: #fff;
  border-radius: 7px;
  transition: background 0.18s;
  box-sizing: border-box;
}

.feature-block:hover {
  background: #f3f4f6;
}

.details-panel h4 {
  font-size: 17px;
  color: #163666;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 600;
}

.details-panel p {
  color: #3a4d6b;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.feature-block h4:hover {
  color: #409cff;
}

.h-icon {
  margin-right: 16px;
  padding: 9px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: rgb(18 39 80 / 5%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.custom-resources-dropdown {
  display: none;
  flex-direction: row;
  width: 850px;
  min-height: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -400px;
  top: 42px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.resources-dropdown:hover .custom-resources-dropdown {
  display: flex !important;
}

.resources-left-panel {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resources-label {
  font-size: 18px;
  font-weight: 650;
  color: #7b869a;
  margin-bottom: 22px;
  margin-left: 5px;
  letter-spacing: 0.02em;
}

.resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resources-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #223762;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.15s, color 0.15s;
}

.resources-list li:hover {
  color: #409cff;
}

.resources-list .h-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.resources-detail {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.resources-detail .resource-item,
.resources-detail .resource-item:hover {
  background: #fff;
}

.resources-detail .resource-item img {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 240px;
  border-radius: 12px;
  margin-bottom: 38px;
}

.resource-item {
  display: flex;
  text-decoration: none;
  color: #223762;
  width: 100%;
  align-items: center;
  font-weight: 600;
}

.resource-item img {
  height: 100px;
  width: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.resource-text {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}

.resource-label {
  color: #409cff;
  font-weight: 649;
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.resource-text p {
  color: #000000;
  font-size: 25px;
  font-weight: 530;
}

.resource-text p:hover {
  color: #409cff;
}

.custom-company-dropdown {
  display: none;
  flex-direction: row;
  width: 1200px;
  min-height: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -320px;
  top: 40px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.company-dropdown:hover .custom-company-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.company-left-panel {
  width: 270px;
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.company-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d2242;
  margin-bottom: 18px;
}

.company-description {
  font-size: 15px;
  color: #223762;
  line-height: 1.6;
  margin: 0;
}

.company-right-panel {
  flex: 1;
  display: flex;
  font-size: 15px;
  margin-right: 200px;
}

.company-section {
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.section-title {
  font-weight: 700;
  font-size: 15px;
  color: #7b869a;
  margin-bottom: 16px;
}

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

.company-links li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: nowrap;
}

.company-links li:last-child {
  margin-bottom: 0;
}

.company-links .icon {
  width: 36px;
  height: 36px;
  background-color: rgba(18, 39, 80, 0.05);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.company-links .icon img {
  width: 18px;
  height: 18px;
}

.company-links .link-text strong {
  color: #223762;
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.company-links .link-text p {
  margin: 0;
  color: #223762;
  line-height: 1.5;
}

.link-text strong:hover {
  color: #409cff;
}

.navbar-menu .dropdown {
  z-index: 10;
}

/*Below navbar*/

.side-by-side {
  background-color: #151557;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.left-panel {
  margin-left: 0;
  max-width: 600px;
}

.typing-container {
  margin-top: 0;
}

.typing-container h2 {
  font-family: Merriweather Sans, sans-serif;
  font-size: 2em;
  color: #d2d0d4;
  font-weight: bold;
  letter-spacing: 1px;
}

.typing-container h1 {
  font-family: Merriweather Sans, sans-serif;
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 18px;
  min-height: 44px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #e0e0e1, #a0e6ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cursor {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
  animation: blink 1s infinite;
}

.sub {
  font-family: Merriweather Sans, sans-serif;
  font-size: 1.8em;
  color: #cffaff;
  max-width: 470px;
}

.tagline {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 1.5em;
  color: #ffffffd8;
  max-width: 470px;
  margin-top: -20px;
}

.gradient-btn {
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 30px;
  margin-right: 10px;
  border: 2px solid #ff0000;
  border-radius: 50px;
  cursor: pointer;
  background-image: linear-gradient(to right, #ffe100, #fb8a00);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.gradient-btn:hover {
  background: #ff5500;
  -webkit-text-fill-color: white;
  border: 2px solid whitesmoke;
}

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

.ai-img img {
  height: 520px;
  margin: 0;
}
.right-panel {
  margin-right: 100px;
  max-width: 30vw;
}

.consultation-form {
  width: 600px;
  /* width: 100%; */
  padding: 40px 24px 24px 24px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(60, 13, 83, 0.1);
  background: #ffffff89;
  margin-top: 10px;
  font-family: Arial, sans-serif;
}

.consultation-form h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #1b1120;
  font-weight: bold;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  color: #1b1120;
  font-size: 1.07em;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px 10px;
  border: 1px solid #c6a6cd;
  background: #ffffff;
  border-radius: 4px;
  font-size: 1em;
}

.phone-field-container {
  display: flex;
  align-items: center;
}

.country-code-select {
  width: 66px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.g-recaptcha {
  margin-top: 20px;
}

.submit-btn {
  width: 100%;
  background: #2e3788;
  color: #fff;
  padding: 14px 0;
  border: none;
  border-radius: 40px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  margin-top: 28px;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #151557;
}

/* Technologies */
.tech-solutions {
  /* max-width: 900px; */
  max-width: 1200px;
  margin: 80px auto;
  padding-bottom: 40px;
  background: #fff;
  border-radius: 18px;
}

.tech-solutions h2 {
  font-family: "Poppins";
  font-size: 2.4rem;
  color: #23244a;
  margin-bottom: 10px;
  text-align: center;
}

.tech-solutions p {
  font-family: "Poppins";
  font-size: 1.3rem;
  color: #606070;
  margin-bottom: 45px;
  text-align: center;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  border-bottom: 3px solid #e0e3f6;
}

.tab-btn {
  background: none;
  border: none;
  outline: none;
  padding: 12px 60px;
  cursor: pointer;
  font-size: 1.18rem;
  color: #1a2047;
  border-bottom: 4px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.tab-btn.active {
  color: #31409f;
  border-bottom: 4px solid #31409f;
  font-weight: 600;
}

.tab-content {
  display: none;
  margin-top: 24px;
  transition: all 0.2s;
}

.tab-content.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.tab-content img {
  width: 90px;
  height: 50px;
  transition: transform 0.15s;
}

.tab-content img:hover {
  transform: scale(1.12);
}

/* Range of Solutions */

.solution-section {
  max-width: 1180px;
  margin: 100px auto;
  padding: 0 32px;
}

.solution-section h2 {
  font-family: "Poppins";
  font-size: 2.4rem;
  font-weight: 700;
  color: #23244a;
  margin-bottom: 10px;
  text-align: center;
}

.solution-section p {
  font-family: "Poppins";
  font-size: 1.3rem;
  color: #606070;
  margin-bottom: 45px;
  text-align: center;
}

.solution-link {
  color: #2950da;
  text-decoration: underline;
  font-weight: 500;
}

.card-grid {
  display: flex;
  gap: 28px;
  margin-top: 6px;
  justify-content: center;
  flex-wrap: nowrap; 
}

.card {
  background: #23244a;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(36, 44, 110, 0.09);
  max-width: 300px;
  flex: 1 1 300px;
  transition: transform 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  width: 100%;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(0.28, 0.09, 0.24, 0.99);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 76, 229, 0.34);
  opacity: 0;
  transition: opacity 0.32s;
}

.card-info {
  padding: 24px 22px 18px 22px;
  transition: transform 0.23s cubic-bezier(0.28, 0.09, 0.24, 0.99);
  z-index: 2;
}

.card-info h3 {
  font-family: "Poppins";
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-info p {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 1.06rem;
  line-height: 1.45;
  margin: 0;
  text-align: left;
}

/* Hover Effects */
.card:hover .card-img img {
  transform: scale(1.07);
}
.card:hover .img-overlay {
  opacity: 1;
}
.card:hover .card-info {
  transform: scale(1.06);
}

/* About Us */

.about-us-container {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(60, 72, 95, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f0f3f9;
}

.left-pane {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  max-width: 400px;
  padding: 32px 0;
}

.video-wrapper {
  width: 95%;
  max-width: 500px;
  min-height: 650px;
  aspect-ratio: inherit;
  box-shadow: 0 2px 18px rgba(40, 60, 140, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-pane {
  flex: 1.6;
  padding: 44px 40px 44px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 360px;
  max-width: 700px;
}

.about-us-heading {
  font-family: "Spartan", sans-serif !important;
  color: #027690;
  font-size: 22px;
  line-height: 40px;
  font-weight: 800;
  text-decoration: underline;
  padding: 0px 0px 5px 0px;
}

.description {
  font-family: "Inter", sans-serif !important;
  font-size: 19px;
  margin-bottom: 16px;
  color: #5a5a5a;
}

.mv-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.mv-btn {
  padding: 12px 25px;
  border: none;
  background: #f0f0f0;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  font-family: "Spartan", sans-serif !important;
  font-size: 16px;
}

.mv-btn.active {
  background: #156dcb;
  color: white;
}

.mv-text {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Inter", sans-serif !important;
}

.mv-text.active {
  display: block;
}

.highlight-quote {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  padding: 20px;
  border-radius: 15px;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  position: relative;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
}

.highlight-quote i {
  opacity: 0.7;
  margin: 0 10px;
}

/* Consultation form section */
.consultation-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 10vw;
  gap: 100px;
  background: url("consultationbg.png") no-repeat center top/cover;
  min-height: 100vh;
  box-sizing: border-box;
}

.left-section {
  display: flex;
  justify-content: center;
  margin-bottom: -50px;
}

.left-section img {
  height: 700px;
}

.step-label {
  font-family: "Spartan", sans-serif !important;
  color: #2b817c;
  font-size: 15px;
  line-height: 25px;
  font-weight: 620;
  letter-spacing: 3px;
  margin: 0 0 7px 0;
}

.main-title {
  font-family: "Spartan", sans-serif !important;
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  color: #262a3b;
  margin-bottom: 12px;
  margin-top: 0;
}

.desc {
  font-family: "Inter", sans-serif !important;
  color: #61656d;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  transition: 0.5s ease-in-out;
  margin-bottom: 35px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  margin-bottom: 18px;
  line-height: 1.32;
}

.process-title {
  color: #000000;
  font-family: "Spartan", sans-serif !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
}

.process-desc {
  font-family: "Inter", sans-serif !important;
  color: #61656d;
  display: block;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  padding-bottom: 15px;
  transition: 0.5s ease-in-out;
  margin-bottom: 28px;
}

/* Form Card */

.form-card {
  background: #fff;
  padding: 42px;
  border-radius: 10px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.16);
  min-width: 500px;
  height: auto;
  font-family: "Spartan", sans-serif !important;
}

.form-title {
  font-family: "Spartan", sans-serif !important;
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 800;
  color: #22243a;
  letter-spacing: 0.04em;
}
.form-title .highlight {
  font-weight: 500;
  color: #2b817c;
}

.form-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-wrapper label {
  margin-bottom: 6px;
  color: #6a6a6a;
  font-size: 15px;
  font-weight: 500;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  min-height: 27px;
  padding: 8px 10px;
  border: 1px solid #d4d3d3;
  background: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Spartan", sans-serif !important;
  color: #787777;
}

.input-wrapper textarea {
  min-height: 100px;
}

.message-input {
  width: 100%;
  height: 70px;
  border-radius: 6px;
  border: 1.5px solid #d4deec;
  background: #f8f9fb;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: "Spartan", sans-serif !important;
  resize: vertical;
  margin-bottom: 18px;
  transition: border 0.2s;
  outline: none;
}
.message-input:focus {
  border-color: #2b817c;
}

.form-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background: #078586;
  color: #fff;
  border: 1px solid;
  border-radius: 15px 0 15px 0;
  font-size: 12px;
  font-family: "Spartan", sans-serif !important;
  line-height: 30px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 7px;
  transition: background 0.15s;
}
.form-btn:hover {
  background: #23a076;
}


/* Platform section */
.platform-section {
  background: #dae5ff;
  /* height: 100vh; */
  color: #030303;
  padding: 20px 0 -10px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.platform-header {
  width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  position: relative;
}

.platform-offer {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #000989;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.platform-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  color: #000000;
}

.platform-desc {
  position: absolute;
  right: 0;
  top: 40px;
  width: 530px;
  font-size: 1rem;
  color: #001679;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.platform-products {
  margin: 70px auto 0 auto;
  width: 1400px;
}

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.product {
  background: transparent;
  width: 240px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0 35px 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

.product-icon {
  height: 100px;
  margin-bottom: 24px;
}

.product-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 1px 0;
  color: #001679;
  min-height: 58px;
}

.product p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.learn-more-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: #fa4407;
  background: transparent;
  border: 1px solid #fa5407;
  border-radius: 32px;
  padding: 5px 32px 5px 32px;
  font-size: 1.01rem;
  margin-top: 10px;
  margin-bottom: 0;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

.learn-more-btn:hover {
  background: #dec310;
  color: #16189d;
  border: 1px solid #ffffff;
}

.divider {
  width: 0.5px;
  height: 300px;
  background: #519aff;
  border-radius: 8px;
  margin: 0 10px;
  align-self: center;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  z-index: 5;
  box-shadow: 0 2px 12px 0 #fff3;
}

/* Footer */

.footer {
  padding: 50px 0 20px;
  background: #fff;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo-section {
  flex: 1 1 22%;
  min-width: 250px;
}

.footer-logo-section img {
  margin: 25px 0;
  height: 40px;
}

.footer-description {
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 30px 0 0;
  color: #555;
}

.footer-help {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-help img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.help-text {
  font-family: "Spartan", sans-serif !important;
  color: #007b7f;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0;
}

.consultation {
  font-family: "Spartan", sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}

.footer-column {
  flex: 1 1 15%;
  min-width: 180px;
}

.footer-column h3 {
  font-family: "Spartan", sans-serif !important;
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 3px solid #0045a6;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
}

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

.footer-column ul li {
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  color: #555;
  margin: 20px 0;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #00a6a6;
}

.footer-column p {
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.footer-bottom {
  font-family: "Inter", sans-serif !important;
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

/* Solutions */

.solutions-bg {
  background: #151b92;
  width: 100vw;
  position: relative;
}

.solutions-section {
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 40px 0;
  max-width: 1160px;
  margin: 0 auto;
  color: #fff;
}

.sols-header {
  width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  position: relative;
}

.sols-offer {
  color: #f8f52e;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.sols-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  color: #ffffff;
}

.sols-desc {
  position: absolute;
  right: 215px;
  height: 17px;
  top: 40px;
  width: 530px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.solutions-label {
  font-size: 13px;
  color: #ffe566;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.solutions-tabs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.tabs-row {
  display: flex;
  gap: 20px;
}

.tab-panel {
  background: #3137d2;
  border-radius: 30px;
  border: 2px solid transparent;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
  height: 370px;
  position: relative;
  flex: 1 1 0px;
  box-sizing: border-box;
  box-shadow: 0 -3px 0 #ffe566;
}

.tab-panel.open {
  min-width: 400px;
  align-items: flex-start;
  padding: 32px 20px 26px 30px;
  justify-content: flex-start;
}

.tab-small-num {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.tab-big-num {
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 14px;
}

.tab-vertical-title {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 18px;
  letter-spacing: 1px;
  color: #dde3ff;
  font-weight: 600;
}

.tab-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tab-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #d2dafc;
  margin-top: 18px;
  letter-spacing: 0.01em;
  max-width: 280px;
}

.tab-panel:not(.open):hover {
  background: #61289e;
}

.tab-panel:active,
.tab-panel.open:active {
  background: #4a119f;
}

.tab-panel.open .tab-vertical-title,
.tab-panel.open .tab-small-num {
  display: none;
}
.tab-panel:not(.open) .tab-big-num,
.tab-panel:not(.open) .tab-title,
.tab-panel:not(.open) .tab-desc {
  display: none;
}

/* Testimonial */

.testimonial-section {
  width: 100vw;
  font-family: "Montserrat", "Arial", sans-serif;
  background: #efefef;
  color: #333;
  text-align: center;
  padding: 70px 0;
  height: 800px;
}

.testimonial-section h2 {
  font-size: 36px;
  color: #004b6f;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 18px;
}

.testimonial-section p {
  margin-bottom: 40px;
  color: #666;
  font-size: 16px;
}

.testimonial-container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.testimonial {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  flex: 0 0 66.66%;
  margin: 0 10px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  min-height: 320px;
  max-width: 320px;
  color: #333;
  font-family: "Inter", sans-serif;
}

.quote {
  font-size: 60px;
  color: #ff9f1c;
  margin-bottom: 10px;
}

.testimonial p {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  color: #444;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 60px;
}

.client-info h4 {
  margin: 10px 0 5px 0;
  font-weight: 600;
}

.client-info span {
  font-size: 0.8rem;
  color: #777;
}

.client-divider {
  width: 2px;
  height: 60px;
  background: #cdcdcd;
  margin: 2px 10px;
  align-self: center;
  position: relative;
  box-shadow: 0 2px 12px 0 #fff3;
}

.client-info img {
  width: 80px;
  object-fit: contain;
}

.arrow-left,
.arrow-right {
  border: none;
  background: none;
  cursor: pointer;
}

.arrow-left {
  margin-left: 200px;
}

.arrow-right {
  margin-right: 200px;
}

.arrow-left img,
.arrow-right img {
  height: 40px;
}

.testimonial-main {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

/* Banner */

.business-banner {
  font-family: "Montserrat", "Arial", sans-serif;
  background-image: url("businessbg.png");
  background-size: cover;
  background-position: center;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.business-banner-overlay {
  width: 100%;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30, 54, 86, 0.55);
}

.business-title {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 18px 0;
  text-align: center;
  line-height: 120%;
  letter-spacing: -0.98px;
  margin-bottom: 24px;
}

.business-subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 35px 0;
  text-align: center;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 42px;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp {
  color: #25d366;
}

.call {
  color: #9eabb7;
}

.business-btn {
  background: #fcc92f;
  color: #222;
  padding: 15px 36px;
  font-size: 1.25rem;
  border-radius: 32px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  border: none;
  cursor: pointer;
}

.business-btn:hover {
  background: #ffb500;
}

/* ========================================= */
/* GLOBAL FIXES */
/* ========================================= */

* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

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

/* Fix hard width containers */
.platform-header,
.platform-products,
.sols-header,
.testimonial-container {
  max-width: 95%;
  width: 1400px;
}

/* ========================================= */
/* LARGE LAPTOP (1400px and below) */
/* ========================================= */

@media (max-width: 1400px) {

  .platform-header,
  .platform-products,
  .sols-header {
    width: 95%;
  }

  .platform-desc {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .sols-desc {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .testimonial-container {
    width: 95%;
  }
}

/* ========================================= */
/* TABLET (1024px and below) */
/* ========================================= */

@media (max-width: 1024px) {

  /* NAVBAR */
  .navbar {
    padding: 0 20px;
  }

  .navbar-menu li {
    margin: 0 10px;
  }

  /* HERO SECTION */
  .side-by-side {
    grid-template-columns: 1fr;
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .left-panel {
    margin-left: 0;
  }

  .typing-container {
    margin-top: 0;
  }

  .ai-img img {
    margin: 40px auto 0;
    height: 400px;
  }

  /* CONSULTATION SECTION */
  .consultation-form-container {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }

  .consultation-form {
    width: 100%;
  }

  .left-section img {
    height: 450px;
  }

  /* PLATFORM PRODUCTS */
  .product-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .divider {
    display: none;
  }

  /* SOLUTIONS TABS */
  .tabs-row {
    flex-wrap: wrap;
  }

  .tab-panel {
    height: auto;
    min-height: 260px;
  }

  .tab-panel.open {
    min-width: 100%;
  }

  /* ABOUT SECTION */
  .about-us-container {
    flex-direction: column;
  }

  .right-pane {
    padding: 40px 20px;
  }

  /* FOOTER */
  .footer-container {
    gap: 40px;
  }
}

/* ========================================= */
/* MOBILE (768px and below) */
/* ========================================= */

@media (max-width: 768px) {

  /* NAVBAR STACK */
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }

  .navbar-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HERO TEXT RESIZE */
  .typing-container h1 {
    font-size: 2rem;
  }

  .typing-container h2 {
    font-size: 1.4rem;
  }

  .sub {
    font-size: 1.2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .ai-img img {
    height: 300px;
  }

  /* FORM */
  .form-row {
    flex-direction: column;
  }

  .consultation-form {
    padding: 25px;
  }

  /* TECH SECTION */
  .tabs {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  /* TESTIMONIAL */
  .testimonial {
    flex: 0 0 90%;
  }

  .arrow-left,
  .arrow-right {
    display: none;
  }

  /* SOLUTIONS */
  .sols-title,
  .platform-title {
    font-size: 2rem;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }
}

/* ========================================= */
/* SMALL MOBILE (480px and below) */
/* ========================================= */

@media (max-width: 480px) {

  .typing-container h1 {
    font-size: 1.6rem;
  }

  .business-title {
    font-size: 24px;
  }

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

  .product {
    width: 100%;
  }

  .left-section img {
    height: 300px;
  }

}
/* ========================================= */
/* MOBILE NAVBAR */
/* ========================================= */

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 992px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 10001;
    width: 100%;
    height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .navbar-header {
    display: flex;
    align-items: center;
  }

  .navbar-logo {
    margin-right: 0;
  }

  .menu-toggle {
    display: block;
    line-height: 1;
    margin-left: auto;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border-top: 1px solid #eceff3;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 16px 18px;
    display: none;
    z-index: 9999;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu > li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f1f3f7;
  }

  .navbar-menu > li:last-child {
    border-bottom: 0;
  }

  .navbar-menu > li > a,
  .navbar-menu > li > button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 14px 2px;
  }

  .navbar-menu button.demo-btn {
    margin: 10px 0;
  }

  .dropdown-content,
  .custom-solutions-dropdown,
  .custom-resources-dropdown,
  .custom-company-dropdown {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid #eceff3;
    border-radius: 12px;
    margin: 0 0 12px;
    background: #fff;
    max-height: 60vh;
    overflow: auto;
  }

  .navbar-menu > li.dropdown.open > .dropdown-content,
  .navbar-menu > li.dropdown.open > .custom-solutions-dropdown,
  .navbar-menu > li.dropdown.open > .custom-resources-dropdown,
  .navbar-menu > li.dropdown.open > .custom-company-dropdown {
    display: block !important;
  }

  /* Disable desktop hover-open behavior on touch/mobile. */
  .dropdown:hover > .dropdown-content,
  .dropdown.solutions-dropdown:hover > .custom-solutions-dropdown,
  .dropdown.resources-dropdown:hover > .custom-resources-dropdown,
  .dropdown.company-dropdown:hover > .custom-company-dropdown {
    display: none !important;
  }

  .navbar-menu > li.dropdown.open:hover > .dropdown-content,
  .navbar-menu > li.dropdown.open:hover > .custom-solutions-dropdown,
  .navbar-menu > li.dropdown.open:hover > .custom-resources-dropdown,
  .navbar-menu > li.dropdown.open:hover > .custom-company-dropdown {
    display: block !important;
  }

  .dropdown-icon {
    margin-left: auto;
  }

  .navbar-menu > li.dropdown.open > a .dropdown-icon {
    transform: rotate(180deg);
  }

  body.menu-open {
    overflow: hidden;
  }
}
