html,
body {
  margin: 0px;
  padding: 0px;
  min-height: 100%;
  overflow-x: hidden;
}

:root {
  --text-primary: #2f2c2c;
  --text-nav: #3b3541;
  --white: #ffffff;
  --link-hover: #1bc4ff;
  --light-blue: #04a8f4;
  --light-blue2: #00aaff;
  --blue-in-bg: #35bfff;
  --dark-blue: #1f2763;
  --btntext-dark-blue: #1c316e;
  --footer-bg: #0f182a;
  --footer-border: #2a3855;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 39px;
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

body::after {
  content: "";
  position: fixed;
  top: -2px;
  left: -2px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
  width: 28px;
  height: 28px;
  border: 1px solid var(--light-blue2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 9999;
}

body::after {
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%);
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  body::after {
    display: none;
  }
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  border: 1px solid var(--light-blue2);
  will-change: transform;
  pointer-events: none;
}

input,
button {
  font-family: "Plus Jakarta Sans", sans-serif;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  -moz-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: all ease 0.3s;
}

a:hover,
.header-menu a:hover {
  color: var(--link-hover);
}

img {
  border: none;
  margin: 0px;
  max-width: 100%;
}

form,
input,
select,
textarea,
p {
  margin: 0px;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

textarea {
  resize: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}

input:focus,
textarea:focus {
  outline: none;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time {
  display: block;
}

section {
  position: relative;
}

button {
  font-family: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}

.main-container {
  padding: 40px 0 0;
}

.page-center {
  max-width: 1920px;
  width: 100%;
  padding-left: 53px;
  padding-right: 53px;
  margin: 0 auto;
  position: relative;
}

.home-banner {
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 100%;
  height: 922px;
  position: relative;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.home-banner::before {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #1f426b 0%, rgba(9, 32, 58, 0.74) 100%);
  width: 100%;
  height: 60%;
  display: block;
  filter: blur(100px);
  position: absolute;
  left: 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 62, 92, 0.21);
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  pointer-events: none;
}

.banner-topleft {
  background: url(../images/banner-shape1.svg) no-repeat 0 0;
  background-size: 100%;
  width: 375px;
  height: 142px;
  position: absolute;
  left: -1px;
  top: -1px;
  pointer-events: none;
}

.banner-topright {
  background: url(../images/banner-shape2.svg) no-repeat 0 0;
  background-size: 100%;
  width: 496px;
  height: 132px;
  position: absolute;
  right: -2px;
  top: -1px;
  pointer-events: none;
}

.logo-top {
  max-width: 310px;
}

header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 3;
}

.header-center {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.header-menu ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header-menu a {
  color: var(--text-nav);
}

.header-menu {
  background: var(--white);
  padding: 18px 45px;
  border-radius: 50px;
}

a.darkblue-btn,
.darkblue-btn {
  height: 56px;
  padding-left: 44px;
  padding-right: 44px;
  color: var(--white);
  display: inline-flex;
  border-radius: 47px;
  align-items: center;
  transition: all ease 0.3s;
  border: solid 0px transparent;
  outline: none;
  white-space: nowrap;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: 200%;
  background-image: linear-gradient(
    90deg,
    var(--dark-blue) 50%,
    var(--light-blue2) 50%
  );
}

a.darkblue-btn:hover,
.darkblue-btn:hover {
  background-color: #1c316e;
  background-position: 100%;
  transform: translateX(-0.2rem);
}

.header-btn-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}

.banner-description-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 960px;
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 23px;
  line-height: 39px;
  font-weight: 600;
}

h1,
.banner-description-wrapper h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 75px;
  line-height: normal;
  font-weight: bold;
  color: var(--text-nav);
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 62.64px;
  line-height: normal;
  font-weight: bold;
  color: var(--text-nav);
}
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 45px;
  line-height: 133%;
  font-weight: 500;
  color: var(--text-nav);
}

h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 32px;
  line-height: 46px;
  font-weight: normal;
  color: var(--text-nav);
}

h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 28px;
  line-height: normal;
  color: var(--text-nav);
}

h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: normal;
  color: var(--text-nav);
}

.banner-description-wrapper h1,
.banner-description-wrapper h2 {
  padding-bottom: 10px;
  font-weight: 600;
}

h1 span,
.banner-description-wrapper h2 span {
  color: var(--link-hover);
}

h3 span {
  color: var(--light-blue);
}

.home-main-description h3 span {
  font-weight: 600;
}

.home-main-description h3 {
  padding-bottom: 15px;
}

.bluebtn-with-border {
  height: 70px;
  padding-left: 44px;
  padding-right: 44px;
  border: none;
  border-radius: 47px;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-size: 200%;
  background-image: linear-gradient(
    90deg,
    var(--light-blue2) 50%,
    var(--dark-blue) 50%
  );
  transition: all 0.6s;
}

.bluebtn-with-border.sm {
  height: 52px;
  min-width: 274px;
}

.bluebtn-with-border:hover {
  background-position: 100%;
  transform: translateX(-0.2rem);
}

.banner-description-wrapper .bluebtn-with-border {
  margin-top: 30px;
}

.home-main-description {
  max-width: 1320px;
  width: 100%;
  padding: 95px 0 0;
  text-align: center;
  margin: 0 auto;
}

.home-banner-slider {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
}

.partners-slider-section {
  padding: 35px 0 60px;
  max-width: 1814px;
  width: 100%;
  text-align: center;
  margin: 55px auto 55px;
  border: solid 2px var(--light-blue2);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(5px);
  z-index: 1;
  position: relative;
}

.partners-slider-section h4 span {
  color: var(--light-blue2);
  font-weight: 500;
}

.partners-slider-section .title-block {
  padding-bottom: 40px;
}

.partner-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-slider .swiper-wrapper {
  align-items: center;
}

.partner-slider img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.partner-slider {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.partners-slider-section-in {
  position: relative;
}

.partners-slider-section-in::after {
  position: absolute;
  content: "";
  background: url(../images/partners-right-shape.svg) no-repeat 0 0;
  background-size: contain;
  width: 673px;
  height: 579px;
  right: -395px;
  top: 0;
  z-index: 0;
}

.solutions-section {
  background: rgba(4, 168, 244, 0.14);
  backdrop-filter: blur(5px);
  padding: 74px 60px 70px;
  border-radius: 38px;
  position: relative;
  z-index: 1;
}

.side-bg {
  background: url(../images/side-bg.svg) no-repeat 0 0;
  background-size: contain;
  width: 900px;
  height: 900px;
  top: 20%;
  left: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.d-flex {
  display: flex;
}

.solution-home-list-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 10px 0 0;
  flex-wrap: wrap;
}

.home-solution-item {
  width: 100%;
  min-height: 280px;
  background: #fff;
  --r: 50px;
  --s: 50px;
  --_m: /100px 100px radial-gradient(#000 70%, #0000 72%) no-repeat;
  mask:
    right 128px top 0 var(--_m),
    right 0px top 100px var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 101%) -78px var(--r)
      no-repeat,
    conic-gradient(at calc(100% - 177px) 100%, #0000 25%, #000 0) 0px 0,
    conic-gradient(at calc(100% - 50px) 48px, #0000 25%, #000 0) 0px 100px;
  mask-repeat: no-repeat;
  border-radius: var(--r);
  padding: 10px;
}

.home-solution-item-outer {
  position: relative;
  width: calc(33.33% - 15px);
}

.home-solution-item img {
  border-radius: 42px;
  --r: 50px;
  --s: 50px;
  --_m: /100px 100px radial-gradient(#000 70%, #0000 72%) no-repeat;
  mask:
    right 128px top 0 var(--_m),
    right 0px top 100px var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 101%) -78px var(--r)
      no-repeat,
    conic-gradient(at calc(100% - 177px) 100%, #0000 25%, #000 0) 0px 0,
    conic-gradient(at calc(100% - 50px) 48px, #0000 25%, #000 0) 0px 100px;
  mask-repeat: no-repeat;
  border-radius: var(--r);
  border-radius: 25px;
  width: 100%;
}

.home-solution-description {
  padding: 15px 10px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

h6.title-sm,
h4.title-sm {
  font-size: 27px;
  font-weight: 600;
}

p {
  font-size: 20px;
  line-height: 32px;
  color: var(--text-primary);
}

.home-solution-item-outer.middle-item {
  margin-top: 56px;
}

.home-solution-icon {
  position: absolute;
  top: -30px;
  right: 0;
  width: 118px;
  height: 118px;
  border-radius: 43px;
  background: var(--light-blue2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-solution-icon img {
  width: 46px;
}

.light-bluebtn {
  background: var(--light-blue);
  font-size: 22px;
}

.infrastructure-plan-section {
  width: 100%;
  height: 590px;
  background: url(../images/bg-infrastructure.svg) no-repeat 0 0;
  background-size: 100%;
  margin: 95px auto 0;
  z-index: 2;
  position: relative;
  max-width: 1695px;
  padding: 70px 25px 70px 110px;
  position: relative;
}

h3.title-lg {
  font-size: 48px;
  font-weight: 600;
  line-height: 133%;
}

h3.title-lg span {
  color: var(--blue-in-bg);
}

.text-white,
.text-white a {
  color: var(--white) !important;
}

.text-white a:hover {
  color: var(--light-blue) !important;
}

p.description-lg {
  font-size: 32px;
  line-height: 50px;
}

.infrastructure-plan-description {
  max-width: 1052px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.blue-btn {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 47px;
  height: 70px;
  background-size: 200%;
  background-image: linear-gradient(
    90deg,
    var(--light-blue2) 50%,
    var(--dark-blue) 50%
  );
}

.blue-btn:hover {
  background-position: 100%;
  transform: translateX(-0.2rem);
  color: #fff;
}

.blue-btn.sm {
  padding: 3px 45px;
}

.blue-btn.lg {
  padding: 3px 185px;
}

.home-solution-description a {
  margin-top: 18px;
}

.see-all-btnwrapper {
  margin: 60px auto 0;
  text-align: center;
}

.white-btn {
  background: var(--white);
  color: var(--btntext-dark-blue);
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 60px;
  font-weight: 800;
  font-size: 30px;
  border-radius: 47px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(269.93deg, #ffffff 0.06%, #00aaff 48.81%, #ffffff 99.94%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.request-quote-wrapper {
  padding: 10px 0 0;
}

.infrastructure-img {
  position: absolute;
  right: 35px;
  top: 25px;
  transform: rotate(7deg);
  box-shadow: 0px 24.98px 16.59px 0px rgba(0, 0, 0, 0.03);
}

.infrastructure-img img {
  width: 450px;
  height: 504px;
  object-fit: cover;
  border-radius: 27px;
}

footer {
  margin: 95px 0 0;
  width: 100%;
  padding: 70px 0 43px;
  background: var(--footer-bg);
  position: relative;
  color: var(--white);
}

footer::before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(4, 168, 244, 0.33) 0%,
    rgba(4, 168, 244, 0) 100%
  );
  width: 100%;
  height: 50px;
  top: -17px;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer-center {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
}

.footer-top {
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 150px;
  position: relative;
}

.blue-line-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/blue-line-bg.svg) no-repeat 0 0;
  width: 100%;
  height: 917px;
  background-size: 100%;
  z-index: 0;
  pointer-events: none;
}

.infrastructure-plan-section-outer {
  position: relative;
  z-index: 1;
}

.bottom-line-bg {
  position: relative;
  z-index: 0;
}

.footer-contact-details {
  max-width: 400px;
  width: 100%;
}

.footer-menu-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.footer-btn-wrapper {
  max-width: 430px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 23px;
}

h6.contact-title,
h5.contact-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #fff;
}

.footer-contact-item {
  gap: 12px;
  align-items: flex-start;
}

/* =========================================
   Order History & Dashboard Styles
   ========================================= */

.dashboard-section-main {
  padding: 20px 0 60px;
  position: relative;
}

/* Tabs */
.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 73px;
}

.tab-btn {
  padding: 11px 25px;
  background: #ffffff;
  border: 2px solid #00aaff;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #00aaff;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 296px;
}

.tab-btn.active,
.tab-btn:hover {
  background: #00aaff;
  color: #ffffff;
}

/* Dashboard Container */
.dashboard-container {
  background: rgba(4, 168, 244, 0.14);
  border-radius: 38px;
  padding: 53px 69px 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.page-title {
  font-size: 40px;
  line-height: normal;
  color: #1f2763;
  font-weight: 600;
  margin-bottom: 30px;
}

.client-details h3 {
  font-size: 20px;
  color: #1f2763;
  margin-bottom: 13px;
  font-weight: 700;
}

.location-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 400;
  color: #1f2763;
}

.location-text svg {
  color: #1f2763;
  width: 20px;
  height: 20px;
}

.account-rep-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.rep-label {
  font-size: 20px;
  line-height: normal;
  color: #1f2763;
  margin-bottom: 20px;
  font-weight: 400;
}

.rep-label strong {
  font-weight: 700;
}

.rep-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #1f2763;
  transition: color 0.3s;
}

.rep-contact:hover {
  color: #04a8f4;
}

.rep-contact svg {
  width: 20px;
  height: 20px;
}
.user-profile-header {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  overflow: hidden;
}

.user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.table-responsive {
  overflow-x: auto;
  background: #fff;
  border-radius: 20px;
  /* overflow: hidden; */
  /* Removing overflow hidden from container to show potential dropdowns or standard scroll */
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
  /* Ensure table doesn't squish too much */
}

.custom-table thead {
  background-color: #1f2763;
  color: #ffffff;
}

.custom-table th {
  padding: 28px 26px;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
}

.custom-table th:first-child {
  border-top-left-radius: 15px;
}
.custom-table th:not(:last-child) {
  border-right: 1px solid #fff;
}
.custom-table th:last-child {
  border-top-right-radius: 15px;
}

.custom-table td {
  padding: 28px 26px;
  border-bottom: 1px solid #d6d6d6;
  font-size: 20px;
  line-height: normal;
  color: #3f3f3f;
  vertical-align: middle;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 9px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
}

.status-badge.in-progress {
  background-color: #f7ffc7;
  color: #3f3f3f;
}

.status-badge.completed {
  background-color: #c7ffe5;
  color: #3f3f3f;
}

/* Tracking & Warranty Info */
.tracking-info,
.warranty-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Download Actions */
.download-actions {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border: 1px solid #04a8f4;
  border-radius: 5px;
  color: #04a8f4;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  background: #fff;
  width: fit-content;
}

.download-btn:hover {
  background: #04a8f4;
  color: #fff;
}

.download-btn svg {
  width: 17px;
  height: 17px;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 27px;
  flex-wrap: wrap;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 6px;
  background: #fff;
  color: #212b36;
  font-weight: 600;
  font-size: 19px;
  transition: all 0.2s;
  border: 1px solid #dfe3e8;
}

.pagination li a.active,
.pagination li a:hover {
  border-color: #04a8f4;
  color: #04a8f4;
}

.pagination li a.prev,
.pagination li a.next {
  background: #919eab;
  color: #c4cdd5;
}

.pagination li a.prev svg,
.pagination li a.next svg {
  color: #c4cdd5;
}

.footer-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-sm {
  font-size: 18px;
  line-height: 29px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-in {
  gap: 80px;
}

.footer-menu a {
  color: var(--white);
  transition: all ease 0.3s;
}

.footer-menu a:hover {
  color: var(--light-blue);
}

.footer-bottom {
  border-top: solid 1px var(--footer-border);
  position: relative;
  padding: 25px 0 0px;
}

.footer-bottom::before {
  position: absolute;
  content: "";
  top: -9px;
  left: 0;
  background: url(../images/footer-rectangle.svg) no-repeat 0 0;
  width: 50px;
  height: 8px;
}

.footer-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.icon-nav {
  display: none;
}

.mobile-menu-wrapper {
  display: none;
  position: relative;
}

.solutions-section-main {
  position: relative;
}

.sub-page-banner .home-banner {
  height: 497px;
  background-color: #1f2763;
}

.lead-text {
  padding: 119px 0 195px;
  position: relative;
}

.lead-text .sub-page-center {
  display: flex;
  gap: 40px;
}

.sub-page-center {
  max-width: 1595px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.lead-text h2 {
  max-width: 713px;
  width: 100%;
}

.lead-text p {
  max-width: 868px;
  width: 100%;
}

.blue-curve {
  position: absolute;
  top: -174px;
  z-index: 1;
  pointer-events: none;
}

.blue-curve img {
  object-fit: contain;
}

figure {
  padding: 0;
  margin: 0;
}

.clipped-image-curve {
  width: 100%;
}

.clipped-image-curve img {
  --r: 50px;
  --s: 50px;
  --_m: /100px 100px radial-gradient(#000 70%, #0000 72%) no-repeat;
  mask:
    right 128px top 0 var(--_m),
    right 0px top 100px var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 101%) -78px var(--r)
      no-repeat,
    conic-gradient(at calc(100% - 177px) 100%, #0000 25%, #000 0) 0px 0,
    conic-gradient(at calc(100% - 50px) 48px, #0000 25%, #000 0) 0px 100px;
  mask-repeat: no-repeat;
  border-radius: var(--r);
  border-radius: 41px;
  width: 100%;
}

.mission-row {
  display: flex;
  flex-direction: column;
  gap: 152px;
}

.mission-item {
  display: flex;
  gap: 149px;
  align-items: center;
  z-index: 1;
}

.mission-item:nth-child(even) {
  flex-direction: row-reverse;
}

.mission-item .mission-text {
  max-width: 708px;
  width: 100%;
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mission-item .clipped-image-curve {
  max-width: 738px;
  width: 100%;
  z-index: 1;
}

.blue-curve-bg {
  background-image: url(../images/blue-curve-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.side-bg-right {
  width: 300px;
  height: 300px;
  border-radius: 50%;

  background: radial-gradient(
    circle,
    #5dccff 0%,
    rgba(93, 204, 255, 0.5) 50%,
    rgba(93, 204, 255, 0) 75%
  );

  filter: blur(100px);
  position: absolute;
  right: -21%;
  top: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
}

.solution-item {
  max-width: 544px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 33px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.solution-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 36px 32px;
}

.solutions .side-bg {
  z-index: -1;
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 114px 76px 76px;
  max-width: 571px;
  width: 100%;
  background: none;
  z-index: 1;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #b6e6fc;

  --r: 50px;
  --s: 50px;
  --_m: /100px 100px radial-gradient(#000 70%, #0000 72%) no-repeat;

  -webkit-mask:
    right 128px top 0 var(--_m),
    right 0px top 100px var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 101%) -78px var(--r)
      no-repeat,
    conic-gradient(at calc(100% - 177px) 100%, #0000 25%, #000 0) 0 0,
    conic-gradient(at calc(100% - 50px) 48px, #0000 25%, #000 0) 0 100px;
  -webkit-mask-repeat: no-repeat;
  mask:
    right 128px top 0 var(--_m),
    right 0px top 100px var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 101%) -78px var(--r)
      no-repeat,
    conic-gradient(at calc(100% - 177px) 100%, #0000 25%, #000 0) 0 0,
    conic-gradient(at calc(100% - 50px) 48px, #0000 25%, #000 0) 0 100px;
  mask-repeat: no-repeat;

  border-radius: var(--r);
  z-index: -1;
}

.service-item {
  transform: scaleX(-1);
  transform-origin: center;
}

.service-item > * {
  transform: scaleX(-1);
}

.tiny-box {
  border-radius: 35px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue2);
}

.tiny-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  row-gap: 105px;
}

.service-item .tiny-box {
  position: absolute;
  right: 0;
  top: -27px;
  z-index: 1;
}

.service-item :is(h1, h2, h3, h4, h5, h6) {
  color: #005d88;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 41px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00aaff;
  border-radius: 30px;
  max-width: 373px;
  width: 100%;
  height: 150px;
  padding: 21px;
  background-color: #fff;
  z-index: 1;
}

.partner-item > img {
  object-fit: contain;
}

.mission .side-bg {
  top: 40%;
}

.mission-item:nth-child(2n) .clipped-image-curve img {
  transform: scaleX(-1);
}

.contact-box-blue {
  max-width: 1712px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(4, 168, 244, 0.14);
  border-radius: 38px;
  padding: 113px 52px 113px 89px;
  display: flex;
  gap: 79px;
}

.contact-box {
  padding-top: 95px;
}

.text-wrapper {
  max-width: 713px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box-white {
  border-radius: 57px;
  padding: 79px 46px;
  max-width: 779px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 33.3px 0px rgba(0, 63, 92, 0.1);
}

.contact-center {
  text-align: center;
  margin-top: -25px;
  padding-bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-center h5 {
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  color: var(--text-nav);
}

.contact-center h5 a {
  font-size: 28px;
  line-height: normal;
  display: block;
  font-weight: 700;
  color: #005d88;
}

form {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 16px 20px;
  color: var(--font-black);
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 23px;
  background-color: var(--white);
  border-radius: 9px;
  border: none;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #d9d9d9;
  color: #2a2a2a;
}

input:not([type="submit"]):focus,
textarea:focus {
  border-color: #005d88;
}

.form-row {
  display: flex;
  gap: 42px;
  row-gap: 29px;
}

.form-field textarea {
  height: 166px;
}

input[type="submit"] {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  background-color: #04a8f4;
  border-radius: 47px;
  padding: 15px 26px;
  color: #fff;
  font-size: 20px;
  line-height: normal;
  width: fit-content;
  border: none;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #1c316e;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-field .wpcf7-form-control-wrap {
  display: block;
  margin-top: 7px;
}
.form-field label {
  color: #2a2a2a;
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
}

.form-field label span {
  color: #f51a1a;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 25, 48, 0.73);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

/* Popup box */
.popup-box {
  background: #fff;
  width: 100%;
  max-width: 1551px;

  max-height: 90vh;
  overflow-y: auto;

  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}
.popup-flex {
  display: flex;
  gap: 79px;
  align-items: center;
}
.popup-box figure {
  max-width: 593px;
  width: 100%;
}

.popup-title {
  font-size: 52px;
  line-height: normal;
  padding-bottom: 60px;
}

.popup-box figure img {
  border-radius: 30px;
  object-fit: cover;
}

.popup-box .contact-box-white {
  padding: 56px;
}
.order-banner .home-banner {
  height: 195px;
  background-repeat: no-repeat;
  background-position: top;
}
.order-banner .home-banner::before {
  display: none;
}
header:has(+ main .order-banner) .header-menu {
  box-shadow: 0px 4px 23.1px 0px rgba(71, 111, 143, 0.14);
  position: relative;
  overflow: visible;
}

header:has(+ main .order-banner) .header-btn-wrapper {
  gap: 74px;
  position: relative;
  z-index: 1;
}
header:has(+ main .order-banner) .page-center a {
  position: relative;
  z-index: 1;
}
.form-submit {
  position: relative;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  margin: 0;
}
/* header:has(+ main .order-banner){
background-image: url(../images/curve-menu-2.svg);
  background-position: 3px 14px;
  background-size: cover;
  padding-bottom: 39px;
  padding-top: 10px;
  background-repeat: no-repeat;
} */
.partner-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.partner-slider .swiper-slide {
  width: auto;
}
.close-btn {
  position: absolute;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 35px;
  height: 35px;
  cursor: pointer;
  top: 10px;
  right: 10px;
}
.header-menu {
  align-self: center;
}
.header-center > a {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.header-btn-wrapper {
  position: relative;
  align-items: flex-start;
  padding-top: 20px;
  min-height: 100px;
  background-color: #fff;
    margin-top: -1px;
    margin-right: -1px;
}
.header-center > a {
  min-height: 100px;
  background-color: #fff;
  margin-left: -1px;
  margin-top: -1px;
}
.header-center > a::after {
  content: "";
  background: url(../images/cr.png) no-repeat 0 0;
  width: 100px;
  background-position: right;
  background-size: cover;
  position: absolute;
  height: 100%;
  right: -76px;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.header-btn-wrapper::before {
  content: "";
  background: url(../images/cl.png) no-repeat 0 0;
  width: 48px;
  background-position: right;
  background-size: contain;
  position: absolute;
  height: 42px;
  right: 0;
  top: 100%;
  pointer-events: none;
  z-index: -1;
  transform: scaleX(-1);
}
.header-btn-wrapper::after {
  content: "";
  background: url(../images/cr.png) no-repeat 0 0;
  width: 100px;
  background-position: right;
  background-size: cover;
  position: absolute;
  height: 100%;
  left: -76px;
  top: 0;
  pointer-events: none;
  z-index: -1;
  transform: scaleX(-1);
}
.header-center > a::before {
  content: "";
  background: url(../images/cl.png) no-repeat 0 0;
  width: 48px;
  background-position: right;
  background-size: contain;
  position: absolute;
  height: 42px;
  left: -1px;
  top: 100%;
  pointer-events: none;
  z-index: -1;
}

.powered_by {
  font-size: 12px;
  text-align: center;
}
.powered_by a {
  color: #0af;
  padding-left: 5px;
}
body {
  cursor:
    url("../images/cursor.png") 6 6,
    auto;
}

a {
  cursor: pointer;
}
input {
  cursor: text;
}
.solution-text h3 {
  color: #1f2763;
}
.contact-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-address p,
.contact-address a {
  color: var(--text-primary);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.contact-address p:hover,
.contact-address a:hover {
  color: #2aa8f0;
}
.contact-address img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(98%) saturate(1614%)
    hue-rotate(173deg) brightness(97%) contrast(93%);
}

@media only screen and (min-width: 1025px) and (max-width: 1550px) {
  .header-menu {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .header-menu ul li a {
    font-size: 13px !important;
  }
  .header-menu {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .footer-contact-item img {
    margin-top: 7px;
  }
  body.customize-support header {
    top: 73px;
  }
  .popup-box figure img {
    max-height: 729px;
  }
  header:has(+ main .order-banner) .header-center > a::after,header:has(+ main .order-banner) .header-center > a::before,
  header:has(+ main .order-banner) .header-btn-wrapper::before,header:has(+ main .order-banner) .header-btn-wrapper::after {
    display: none;
  }
    header:has(+ main .order-banner) .header-btn-wrapper,  header:has(+ main .order-banner) .header-center > a {
  background-color: transparent !important;
}
  header:has(+ main .order-banner) .header-menu {
    background: transparent !important;
  }
  .order-banner .home-banner {
    background-color: transparent !important;
  }
  .lead-text .sub-page-center {
    align-items: flex-start;
  }
  .lead-text p {
    margin-left: auto;
  }
  .lead-text h2{
margin-top: -14px;
}
}

.cancelled {
  background-color: #e7e7e7;
}

.on-hold {
  background-color: #ffcfcf;
}
