/* fonts css start */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

/* fonts css end */
/* General css start */
:root {
  --clr-00ADEF: #00adef;
  --clr-53FF93: #53ff93;
  --clr-FDC700: #fdc700;
  --clr-666666: #666666;
  --clr-0A0A0A: #0a0a0a;
  --clr-0B1A22: #0b1a22;
  --clr-D1D5DC: #d1d5dc;
  --clr-white: #ffffff;
  --clr-black: #000000;

  --font-dm-sans: "DM Sans", sans-serif;
  --font-syne: "Syne", sans-serif;

  --fs-64: 64px;
  --fs-60: 60px;
  --fs-50: 50px;
  --fs-40: 40px;
  --fs-14: 14px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-32: 32px;
  --fs-22: 22px;
  --fs-16: 16px;
  --fs-24: 24px;
  --fs-25: 25px;
  --fs-28: 28px;

  --spc-100: 100px;
  --spc-50: 50px;
}

@media (max-width: 1550px) {
  :root {
    --fs-40: 26px;
  }
}

@media (max-width: 1399.98px) {
  :root {
    --fs-64: 54px;
    --fs-60: 52px;
    --fs-50: 42px;
    --fs-40: 38px;
    --fs-32: 30px;

    --spc-100: 80px;
    --spc-50: 40px;
  }
}
@media (max-width: 1199.98px) {
  :root {
    --fs-64: 44px;
    --fs-60: 42px;
    --fs-50: 34px;
    --fs-40: 35px;
    --fs-32: 28px;
    --fs-28: 26px;
    --fs-25: 22px;
    --spc-100: 70px;
    --spc-50: 35px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --fs-64: 34px;
    --fs-60: 32px;
    --fs-50: 30px;
    --fs-40: 30px;
    --fs-32: 26px;
    --fs-28: 25px;
    --fs-25: 23px;
    --fs-24: 22px;
    --fs-22: 20px;
    --fs-20: 18px;
    --fs-18: 17px;

    --spc-100: 60px;
    --spc-50: 30px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --fs-64: 30px;
    --fs-60: 28px;
    --fs-50: 26px;
    --fs-40: 25px;
    --fs-32: 24px;
    --fs-28: 20px;
    --fs-25: 20px;
    --fs-24: 19px;
    --fs-22: 18px;
    --fs-20: 17px;
    --fs-18: 16px;
    --fs-16: 15px;

    --spc-100: 40px;
    --spc-50: 25px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-dm-sans);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #f5fbff;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

:is(h1, h2, h3, h4, h5, h6, p, a, li) {
  margin: 0;
  padding: 0;
}
:is(p, li) {
  font-size: var(--fs-16);
  color: var(--clr-666666);
  line-height: 1.7;
  font-weight: 400;
}
p + p {
  margin-top: 15px;
}
:is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-syne);
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--clr-00ADEF);
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}
@media (min-width: 1550px) {
  .container {
    max-width: 1680px;
  }
}
.primary_btn {
  position: relative;
  padding: 15px 30px;
  background-color: var(--clr-00ADEF);
  color: var(--clr-white);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  border-radius: 10px;
  border: 1px solid var(--clr-00ADEF);
  transition: all 0.4s;
  text-transform: capitalize;
  text-align: center;
}
.primary_btn:hover {
  background-color: transparent;
  color: var(--clr-00ADEF);
}
.secondary_btn {
  padding: 15px 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  transition: all 0.4s;
  text-transform: capitalize;
}
.secondary_btn:hover {
  background-color: var(--clr-white);
  color: var(--clr-0B1A22);
}
.sec_hdng {
  position: relative;
  font-size: var(--fs-40);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-0A0A0A);
  margin-bottom: 10px;
}
.sec_hdng span {
  color: var(--clr-00ADEF);
}
.sec_subhdng {
  position: relative;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  background-color: rgba(0, 173, 239, 0.1);
  color: var(--clr-00ADEF);
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* for spacing */
.pt_100 {
  padding-top: var(--spc-100);
}
.pb_100 {
  padding-bottom: var(--spc-100);
}
.pt_50 {
  padding-top: var(--spc-50);
}
.pb_50 {
  padding-bottom: var(--spc-50);
}
.mt_100 {
  margin-top: var(--spc-100);
}
.mb_100 {
  margin-bottom: var(--spc-100);
}
.mt_50 {
  margin-top: var(--spc-50);
}
.mb_50 {
  margin-bottom: var(--spc-50);
}
.box_model {
  border-radius: 30px;
  background-color: var(--clr-white);
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.15);
  padding: var(--spc-100);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spc-50);
}
body .relative_header {
  padding-top: var(--headerHeight);
}
@media (max-width: 767.98px) {
  .sec_subhdng {
    margin-bottom: 20px;
  }
}
/* General css end */

/* header css start */
.site_header {
  position: static;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.4s;
  z-index: 9999;
  padding: 25px 0;
}
.site_header .site_logo a {
  color: var(--clr-00ADEF);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12; /* 112% */
  letter-spacing: 5px;
  text-transform: uppercase;
}
.site_header .header_wrapper {
  transition: all 0.3s;
}
.site_header .header_wrapper .right_wrapper,
.site_header .header_wrapper nav ul,
.site_header .header_wrapper nav {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}
.site_header .header_wrapper nav ul li {
  position: relative;
}
.site_header .header_wrapper nav ul li a {
  font-size: var(--fs-16);
  color: var(--clr-0B1A22);
  line-height: 1.7;
  font-weight: 500;
  transition: all 0.4s;
  position: relative;
}
.site_header .header_wrapper nav ul li.active a {
  color: var(--clr-00ADEF);
  pointer-events: none;
  font-weight: 600;
}
.site_header .header_wrapper nav ul li a:hover {
  color: var(--clr-00ADEF);
}
.site_header .header_wrapper .primary_btn {
  font-size: var(--fs-16);
}
.site_header .header_wrapper .primary_btn:hover {
  background-color: var(--clr-0B1A22);
  border-color: var(--clr-0B1A22);
  color: var(--clr-white);
}
.hemburger {
  width: 40px;
  height: 35px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  cursor: pointer;
  display: none;
}
.hemburger span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: var(--clr-00ADEF);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hemburger span:nth-child(1) {
  top: 0px;
}

.hemburger span:nth-child(2) {
  top: 15px;
}

.hemburger span:nth-child(3) {
  top: 30px;
}

.hemburger.open span:nth-child(1) {
  top: 15px;
  transform: rotate(135deg);
}
.hemburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hemburger.open span:nth-child(3) {
  top: 15px;
  transform: rotate(-135deg);
}
.relative_header {
  width: 100%;
  height: var(--headerHeight);
  background: var(--clr-white);
}
/* sticky header css */
.site_header.sticky {
  /* background-color: #261818; */
  background-color: var(--clr-0A0A0A);
  box-shadow: #261818 0px 8px 24px;
}
.site_header.sticky .header_wrapper {
  padding: 20px 0;
}
.site_header.sticky nav ul li a {
  color: var(--clr-white);
}
@media (max-width: 1199.98px) {
  
  .site_header .header_wrapper nav ul li a{
    color: var(--clr-white);
  }
  .hemburger {
    display: block;
  }
  .site_header .header_wrapper nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .site_header.sticky nav ul li a {
    color: var(--clr-white);
  }
  .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 22px;
  }
  .site_header .header_wrapper nav ul {
    padding: 0;
    margin-bottom: 20px;
    gap: 15px;
  }
  .close-btn {
    cursor: pointer;
  }
  .site_header .header_wrapper nav {
    position: fixed;
    padding: 50px 20px 20px 20px;
    left: -300px;
    top: 0;
    background-color: black;
    width: 300px;
    height: 100%;
    left: -300px;
    transition: all 0.5s;
    display: block;
    z-index: 1111;
  }
  .site_header .header_wrapper nav.open-nav {
    left: 0;
    align-items: flex-start !important;
  }
  .site_header .header_wrapper {
    padding: 15px 0px;
  }
  .site_header {
    padding: 15px 0;
  }
}
@media (max-width: 767.98px) {
  .hemburger {
    height: 30px;
  }
  .hemburger span {
    height: 4px;
  }
  .hemburger span:nth-child(2) {
    top: 12.5px;
  }
  .hemburger span:nth-child(3) {
    top: 25px;
  }
  .site_header .header_wrapper nav ul {
    gap: 10px;
  }
  .site_header.sticky .header_wrapper nav ul li a {
    color: var(--clr-white);
  }
  .primary_btn {
    padding: 13px 25px;
  }
  .secondary_btn {
    padding: 13px 25px;
  }
}
@media (max-width: 575.98px) {
  .hemburger {
    width: 30px;
  }
}
/* header css end */
/* banner css start */
.banner_hero {
  position: relative;
}
.banner_hero .box_model {
  background:
    linear-gradient(106deg, #0b1a22 22.67%, rgba(0, 173, 239, 0.2) 97.15%),
    #0a0a0a;
}

/* tags */

.banner_hero .tags_wrapper {
  gap: 15px;
  margin-bottom: 20px;
}

.banner_hero .tags_wrapper span {
  padding: 7px 25px;
  background: rgba(0, 173, 239, 0.2);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
}

.banner_hero .box_model_title {
  font-size: var(--fs-50);
  line-height: 1.2;
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: 25px;
}

.banner_hero .box_model_title span {
  color: var(--clr-00ADEF);
  font-family: var(--font-syne);
}

.banner_hero .box_model_desc {
  color: var(--clr-D1D5DC);
  font-size: var(--fs-18);
  margin-bottom: 25px;
}

.check_mark_list {
  margin: 0 0 35px;
}

.check_mark_list li {
  color: var(--clr-D1D5DC);
  font-size: var(--fs-16);
  margin-bottom: 14px;
  padding-left: 20px;
  line-height: 1.4;
  position: relative;
}

.check_mark_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-00ADEF);
  font-weight: 600;
}

.banner_hero .btn_wrapper {
  gap: 15px;
}

/* right */

.banner_hero .payroll_card {
  background: rgba(0, 173, 239, 0.2);
  border: 1px solid var(--clr-00ADEF);
  border-radius: 30px;
  padding: 35px 40px;
  backdrop-filter: blur(12px);
}

.banner_hero .payroll_card_header {
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.banner_hero .payroll_card_header h4 {
  color: var(--clr-white);
  font-size: var(--fs-20);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.banner_hero .payroll_card_header span {
  color: var(--clr-53FF93);
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .banner_hero .tags_wrapper {
    gap: 10px;
    margin-bottom: 20px;
  }
  .banner_hero .payroll_card {
    padding: 25px;
  }
}

/* card item */

.banner_hero .payroll_card_item {
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.2);
  background: rgba(249, 250, 251, 0.2);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.banner_hero .payroll_card_item .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
  margin-bottom: 5px;
}

.banner_hero .payroll_card_item h3 {
  color: var(--clr-white);
  font-size: var(--fs-40);
  font-weight: 700;
  font-family: var(--font-dm-sans);
  line-height: 1;
}
.banner_hero .payroll_card_item h3 small {
  color: var(--clr-white);
  font-size: 14px;
  /* margin-bottom: 5px; */
  font-weight: 400;
  display: block;
}

.banner_hero .payroll_card_item p {
  color: var(--clr-white);
  margin: 0;
  font-size: var(--fs-18);
  font-weight: 500;
  font-family: var(--font-syne);
}

/* progress */

.banner_hero .payroll_progress_wrapper {
  margin-top: 25px;
}

.banner_hero .payroll_progress_item {
  margin-bottom: 18px;
}

.banner_hero .progress_label {
  margin-bottom: 10px;
}

.banner_hero .progress_label span {
  color: var(--clr-white);
  font-size: 14px;
}

.banner_hero .progress_bar {
  width: 100%;
  height: 6px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.banner_hero .progress_bar span {
  display: block;
  height: 100%;
  border-radius: 30px;
  background: var(--clr-53FF93);
}

.banner_hero .blue_bar span {
  width: 100%;
  background: var(--clr-00ADEF);
}

.banner_hero .yellow_bar span {
  background: var(--clr-FDC700);
}

@media (max-width: 767px) {
  .box_model {
    padding: 40px 25px;
  }
}
/* banner css end */

/* about slarify css start */
.about_slarify_sec {
  position: relative;
}

.about_slarify_panel {
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 173, 239, 0.13), transparent 34%),
    linear-gradient(102deg, #ffffff 0%, #f7fbff 48%, #eaf5ff 100%);
}

.about_slarify_content {
  max-width: 520px;
}

.about_slarify_kicker {
  margin-bottom: 10px;
  color: #00adef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.about_slarify_title {
  margin-bottom: 20px;
  color: #080d1a;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.08;
}

.about_slarify_title span {
  color: #00adef;
}

.about_slarify_desc {
  max-width: 490px;
  margin-bottom: 26px;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.about_slarify_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about_slarify_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 42px;
  border: 1px solid #00adef;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about_slarify_btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.about_slarify_btn_primary {
  background: #00adef;
  color: var(--clr-white);
  box-shadow: 0 12px 24px rgba(0, 173, 239, 0.2);
}

.about_slarify_btn_primary:hover {
  color: var(--clr-white);
  box-shadow: 0 16px 30px rgba(0, 173, 239, 0.26);
}

.about_slarify_btn_secondary {
  background: rgba(255, 255, 255, 0.6);
  color: #00adef;
}

.about_slarify_btn_secondary:hover {
  background: var(--clr-white);
  color: #00adef;
}

.about_slarify_visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.about_slarify_visual img {
  display: block;
  width: min(100%, 760px);
  height: auto;
}

@media (max-width: 991.98px) {
  .about_slarify_visual {
    justify-content: center;
    margin-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .about_slarify_panel {
    padding: 32px 20px;
  }

  .about_slarify_actions {
    gap: 10px;
  }

  .about_slarify_btn {
    min-width: 0;
    flex: 1 1 130px;
  }
}
/* about slarify css end */

/* slarify mission css start */
.slarify_mission_sec {
  position: relative;
}

.slarify_mission_panel {
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.08);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 173, 239, 0.09), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(0, 173, 239, 0.1), transparent 32%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(7, 25, 46, 0.07);
}

.slarify_mission_content {
  max-width: 560px;
}

.slarify_mission_kicker {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 4px;
  background: rgba(0, 173, 239, 0.08);
  padding: 4px 8px;
  color: #00adef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_mission_content h2 {
  max-width: 520px;
  margin-bottom: 24px;
  color: #090f1e;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.slarify_mission_content p {
  max-width: 560px;
  margin-bottom: 20px;
  color: #172033;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.slarify_mission_content p:last-child {
  margin-bottom: 0;
}

.slarify_mission_list {
  display: grid;
  gap: 22px;
}

.slarify_mission_item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.slarify_mission_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 173, 239, 0.08);
  color: #00adef;
  font-size: 24px;
  line-height: 1;
}

.slarify_mission_item h3 {
  margin-bottom: 6px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.slarify_mission_item p {
  margin-bottom: 0;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .slarify_mission_panel {
    padding: 30px 20px;
  }

  .slarify_mission_item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .slarify_mission_icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}
/* slarify mission css end */

/* slarify story css start */
.slarify_story_sec {
  position: relative;
}

.slarify_story_panel {
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.08);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 173, 239, 0.1), transparent 28%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(7, 25, 46, 0.06);
}

.slarify_story_content {
  max-width: 780px;
}

.slarify_story_kicker {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 4px;
  background: rgba(0, 173, 239, 0.08);
  padding: 4px 8px;
  color: #00adef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_story_content h2 {
  margin-bottom: 22px;
  color: #090f1e;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.slarify_story_content p {
  max-width: 760px;
  margin-bottom: 15px;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.slarify_story_content p:last-child {
  margin-bottom: 0;
}

.slarify_story_visual {
  display: flex;
  justify-content: flex-end;
}

.slarify_story_visual img {
  display: block;
  width: min(100%, 470px);
  height: auto;
}

.slarify_story_placeholder {
  position: relative;
  width: min(100%, 470px);
  min-height: 240px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5fbff 0%, #e8f6fe 100%);
}

.slarify_story_card {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 173, 239, 0.12);
}

.slarify_story_card_one {
  top: 34px;
  left: 28%;
  width: 48%;
  height: 78px;
}

.slarify_story_card_two {
  top: 58px;
  left: 36%;
  width: 30px;
  height: 30px;
  background: #00adef;
}

.slarify_story_person {
  position: absolute;
  bottom: 20px;
  display: block;
  width: 96px;
  height: 120px;
  border-radius: 48px 48px 18px 18px;
  background: #00adef;
}

.slarify_story_person_left {
  left: 14%;
}

.slarify_story_person_right {
  right: 14%;
  background: #0b1220;
}

@media (max-width: 991.98px) {
  .slarify_story_visual {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .slarify_story_panel {
    padding: 28px 20px;
  }

  .slarify_story_placeholder {
    min-height: 210px;
  }
}
/* slarify story css end */

/* slarify products css start */
.slarify_products_sec {
  position: relative;
}

.slarify_products_panel {
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.08);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 173, 239, 0.08), transparent 28%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(7, 25, 46, 0.06);
}

.slarify_products_head {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}

.slarify_products_kicker {
  margin-bottom: 10px;
  color: #00adef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_products_head h2 {
  margin-bottom: 12px;
  color: #090f1e;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.slarify_products_head p {
  margin-bottom: 0;
  color: #172033;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.slarify_products_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.slarify_product_card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  min-height: 315px;
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 25, 46, 0.04);
}

.slarify_product_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: rgba(0, 173, 239, 0.08);
  color: #00adef;
  font-size: 34px;
  line-height: 1;
}

.slarify_product_card_purple .slarify_product_icon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.slarify_product_status {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  color: #22c55e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_product_card_purple .slarify_product_status {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.slarify_product_body h3 {
  margin-bottom: 14px;
  color: #0b1220;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.slarify_product_body > p {
  margin-bottom: 22px;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.slarify_product_features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.slarify_product_features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.slarify_product_features i {
  margin-top: 3px;
  color: #2f80ff;
  font-size: 13px;
}

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

@media (max-width: 575.98px) {
  .slarify_products_panel {
    padding: 28px 20px;
  }

  .slarify_product_card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .slarify_product_icon {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }
}
/* slarify products css end */

/* slarify serve css start */
.slarify_serve_sec {
  position: relative;
}

.slarify_serve_panel {
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.08);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 6%, rgba(0, 173, 239, 0.08), transparent 30%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(7, 25, 46, 0.06);
}

.slarify_serve_head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.slarify_serve_kicker {
  margin-bottom: 10px;
  color: #2f80ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_serve_head h2 {
  margin-bottom: 12px;
  color: #090f1e;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.slarify_serve_head p {
  margin-bottom: 0;
  color: #172033;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.slarify_serve_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}

.slarify_serve_card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
  min-height: 170px;
  border: 1px solid rgba(47, 128, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 25, 46, 0.035);
}

.slarify_serve_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(47, 128, 255, 0.08);
  color: #2f80ff;
  font-size: 27px;
  line-height: 1;
}

.slarify_serve_card_red .slarify_serve_icon {
  background: rgba(239, 68, 68, 0.09);
  color: #ef4444;
}

.slarify_serve_card_purple .slarify_serve_icon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.slarify_serve_card_yellow .slarify_serve_icon {
  background: rgba(250, 204, 21, 0.14);
  color: #f5b800;
}

.slarify_serve_card h3 {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.slarify_serve_card p {
  margin-bottom: 0;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 1199.98px) {
  .slarify_serve_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 575.98px) {
  .slarify_serve_panel {
    padding: 28px 20px;
  }

  .slarify_serve_card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  .slarify_serve_icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}
/* slarify serve css end */

/* slarify why css start */
.slarify_why_sec {
  position: relative;
}

.slarify_why_panel {
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.08);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 6%, rgba(0, 173, 239, 0.08), transparent 30%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(7, 25, 46, 0.06);
}

.slarify_why_head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.slarify_why_kicker {
  margin-bottom: 10px;
  color: #2f80ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_why_head h2 {
  margin-bottom: 10px;
  color: #090f1e;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.slarify_why_head p {
  margin-bottom: 0;
  color: #172033;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.slarify_why_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.slarify_why_card {
  min-height: 255px;
  border: 1px solid rgba(47, 128, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 25, 46, 0.035);
}

.slarify_why_card_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.slarify_why_number {
  color: #2f80ff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.slarify_why_card h3 {
  margin-bottom: 14px;
  color: #0b1220;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.slarify_why_card p {
  margin-bottom: 0;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 1199.98px) {
  .slarify_why_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 575.98px) {
  .slarify_why_panel {
    padding: 28px 20px;
  }

  .slarify_why_card {
    min-height: 0;
    padding: 20px;
  }
}
/* slarify why css end */

/* slarify final cta css start */
.slarify_final_cta_sec {
  position: relative;
}

.slarify_final_cta_panel {
  display: grid;
  grid-template-columns: minmax(180px, 310px) minmax(280px, 1fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  overflow: hidden;
  min-height: 162px;
  border-radius: 8px;
  padding: 20px clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 18% 42%, rgba(0, 173, 239, 0.22), transparent 26%),
    linear-gradient(105deg, #071a3f 0%, #08234d 48%, #061a3d 100%);
  box-shadow: 0 18px 48px rgba(7, 25, 46, 0.16);
}

.slarify_final_cta_visual {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  min-height: 120px;
}

.slarify_final_cta_visual img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  max-height: 145px;
  object-fit: contain;
}

.slarify_final_cta_placeholder {
  position: relative;
  width: min(100%, 300px);
  min-height: 130px;
}

.slarify_final_cta_person {
  position: absolute;
  bottom: 0;
  display: block;
  width: 86px;
  height: 112px;
  border-radius: 44px 44px 12px 12px;
  background: #2f80ff;
}

.slarify_final_cta_person_left {
  left: 18px;
}

.slarify_final_cta_person_right {
  right: 20px;
  background: #8ac5ff;
}

.slarify_final_cta_badge {
  position: absolute;
  top: 8px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #006cff;
  color: #ffffff;
  font-size: 22px;
  transform: translateX(-50%);
  box-shadow: 0 16px 30px rgba(0, 108, 255, 0.35);
}

.slarify_final_cta_content {
  min-width: 0;
}

.slarify_final_cta_kicker {
  margin-bottom: 10px;
  color: #2f80ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slarify_final_cta_content h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.slarify_final_cta_content > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.slarify_final_cta_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.slarify_final_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 46px;
  border: 1px solid rgba(47, 128, 255, 0.7);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.slarify_final_cta_btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.slarify_final_cta_btn_primary {
  background: #006cff;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 108, 255, 0.28);
}

.slarify_final_cta_btn_primary:hover {
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 108, 255, 0.34);
}

.slarify_final_cta_btn_secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.slarify_final_cta_btn_secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .slarify_final_cta_panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .slarify_final_cta_visual {
    justify-content: center;
  }

  .slarify_final_cta_actions {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .slarify_final_cta_panel {
    padding: 28px 20px;
  }

  .slarify_final_cta_actions {
    gap: 12px;
  }

  .slarify_final_cta_btn {
    width: 100%;
  }
}
/* slarify final cta css end */

/* contact hero css start */
.contact_hero {
  position: relative;
}

.contact_hero_panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(36px, 6vw, 78px);
  background:
    radial-gradient(circle at 76% 26%, rgba(0, 173, 239, 0.18), transparent 28%),
    linear-gradient(108deg, #07161d 8%, #0b2530 60%, #0d3541 100%);
  min-height: 420px;
}

.contact_hero_content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.contact_hero_kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 173, 239, 0.55);
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(0, 173, 239, 0.12);
  color: var(--clr-00ADEF);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact_hero_title {
  max-width: 540px;
  margin-bottom: 20px;
  color: var(--clr-white);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
}

.contact_hero_title span {
  color: var(--clr-00ADEF);
}

.contact_hero_desc {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-16);
  line-height: 1.7;
}

.contact_hero_features {
  display: grid;
  gap: 16px;
  max-width: 430px;
}

.contact_hero_feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: flex-start;
}

.contact_hero_feature_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 173, 239, 0.32);
  border-radius: 8px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--clr-00ADEF);
  font-size: 12px;
}

.contact_hero_feature strong,
.contact_hero_feature small {
  display: block;
}

.contact_hero_feature strong {
  margin-bottom: 3px;
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 700;
}

.contact_hero_feature small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.contact_hero_visual {
  position: relative;
  z-index: 2;
  min-height: 330px;
}

.contact_hero_chat_card {
  position: absolute;
  top: 45px;
  left: 50%;
  width: min(300px, 78vw);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px 20px;
  background: rgba(13, 39, 51, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.contact_hero_chat_avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: var(--clr-00ADEF);
  color: var(--clr-white);
  font-size: 16px;
}

.contact_hero_chat_body h2 {
  margin-bottom: 7px;
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.contact_hero_chat_body p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.contact_hero_chat_lines {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.contact_hero_chat_lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.contact_hero_chat_lines span:nth-child(1) {
  width: 72%;
}

.contact_hero_chat_lines span:nth-child(2) {
  width: 58%;
}

.contact_hero_chat_lines span:nth-child(3) {
  width: 82%;
}

.contact_hero_message_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-radius: 8px;
  padding: 5px 5px 5px 14px;
  background: rgba(3, 16, 22, 0.72);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.contact_hero_send_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, #008ff5 0%, var(--clr-00ADEF) 100%);
  color: var(--clr-white);
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 173, 239, 0.24);
}

.contact_hero_orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(360px, 82vw);
  height: min(360px, 82vw);
  border: 1px dashed rgba(0, 173, 239, 0.24);
  border-radius: 50%;
}

.contact_hero_orbit::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px dashed rgba(0, 173, 239, 0.14);
  border-radius: 50%;
}

.contact_hero_float_icon {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(33, 65, 78, 0.86);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.contact_hero_float_mail {
  top: 0;
  right: 28px;
}

.contact_hero_float_phone {
  top: 150px;
  left: 4px;
}

.contact_hero_float_chat {
  right: 32px;
  bottom: 40px;
}

.contact_hero_dots {
  position: absolute;
  width: 170px;
  height: 170px;
  opacity: 0.32;
  background-image: radial-gradient(rgba(0, 173, 239, 0.5) 1px, transparent 1px);
  background-size: 12px 12px;
}

.contact_hero_dots_left {
  left: 42%;
  bottom: 54px;
}

.contact_hero_dots_right {
  right: 10px;
  top: 135px;
}

@media (max-width: 991.98px) {
  .contact_hero_visual {
    min-height: 360px;
  }

  .contact_hero_chat_card {
    top: 36px;
  }

  .contact_hero_float_phone {
    left: calc(50% - 190px);
  }

  .contact_hero_float_mail {
    right: calc(50% - 180px);
  }

  .contact_hero_float_chat {
    right: calc(50% - 178px);
  }
}

@media (max-width: 575.98px) {
  .contact_hero_panel {
    padding: 32px 22px;
  }

  .contact_hero_title {
    font-size: 34px;
  }

  .contact_hero_visual {
    min-height: 335px;
  }

  .contact_hero_chat_card {
    width: min(280px, 86vw);
  }

  .contact_hero_float_icon {
    width: 42px;
    height: 42px;
  }

  .contact_hero_float_phone {
    left: 0;
  }

  .contact_hero_float_mail {
    right: 0;
  }

  .contact_hero_float_chat {
    right: 6px;
  }
}
/* contact hero css end */

/* reach us css start */
.reach_us_sec {
  position: relative;
}

.reach_us_panel {
  border: 1px solid rgba(209, 213, 220, 0.55);
  border-radius: 16px;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 5vw, 64px);
  background: var(--clr-white);
  box-shadow: 0 18px 55px rgba(11, 26, 34, 0.08);
}

.reach_us_head {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.reach_us_kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--clr-00ADEF);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.reach_us_head h2 {
  margin: 0;
  color: var(--clr-0B1A22);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

.reach_us_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reach_us_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 190px;
  padding: 0 clamp(18px, 3vw, 38px);
  text-align: center;
}

.reach_us_item + .reach_us_item {
  border-left: 1px solid rgba(209, 213, 220, 0.75);
}

.reach_us_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(0, 173, 239, 0.11);
  color: var(--clr-00ADEF);
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(0, 173, 239, 0.12);
}

.reach_us_item h3 {
  margin-bottom: 8px;
  color: var(--clr-0B1A22);
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 1.35;
}

.reach_us_item p {
  margin: 0 0 5px;
  color: #637381;
  font-size: 14px;
  line-height: 1.45;
}

.reach_us_item .reach_us_primary {
  margin-bottom: 8px;
  color: #425466;
  font-weight: 600;
}

.reach_us_item .reach_us_primary_extra {
  margin-bottom: 16px;
}

.reach_us_item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.reach_us_item a:hover {
  color: var(--clr-00ADEF);
}

@media (max-width: 991.98px) {
  .reach_us_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .reach_us_item:nth-child(odd) {
    border-left: 0;
  }

  .reach_us_item:nth-child(n + 3) {
    padding-top: 28px;
    border-top: 1px solid rgba(209, 213, 220, 0.75);
  }
}

@media (max-width: 575.98px) {
  .reach_us_grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reach_us_item {
    min-height: auto;
    padding: 28px 0;
  }

  .reach_us_item + .reach_us_item {
    border-top: 1px solid rgba(209, 213, 220, 0.75);
    border-left: 0;
  }

  .reach_us_item:first-child {
    padding-top: 0;
  }

  .reach_us_item:last-child {
    padding-bottom: 0;
  }
}
/* reach us css end */

/* contact box css start */
.contact_box_sec {
  position: relative;
}

.contact_box_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 28px;
}

.contact_box_panel {
  border: 1px solid rgba(209, 213, 220, 0.55);
  border-radius: 16px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--clr-white);
  box-shadow: 0 18px 55px rgba(11, 26, 34, 0.08);
}

.contact_box_map_panel {
  background:
    radial-gradient(circle at 82% 15%, rgba(0, 173, 239, 0.1), transparent 32%),
    #f7fbff;
}

.contact_box_kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 13px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--clr-00ADEF);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact_box_panel h2 {
  margin-bottom: 24px;
  color: var(--clr-0B1A22);
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.contact_box_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact_box_form label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.contact_box_form label span {
  color: #344054;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.contact_box_form input,
.contact_box_form select,
.contact_box_form textarea,
.contact_box_cf7 input,
.contact_box_cf7 select,
.contact_box_cf7 textarea {
  width: 100%;
  border: 1px solid rgba(209, 213, 220, 0.95);
  border-radius: 7px;
  background: var(--clr-white);
  color: #667085;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact_box_form input,
.contact_box_form select,
.contact_box_cf7 input,
.contact_box_cf7 select {
  height: 42px;
  padding: 0 14px;
}

.contact_box_form select,
.contact_box_cf7 select {
  appearance: auto;
}

.contact_box_form textarea,
.contact_box_cf7 textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}

.contact_box_form input:focus,
.contact_box_form select:focus,
.contact_box_form textarea:focus,
.contact_box_cf7 input:focus,
.contact_box_cf7 select:focus,
.contact_box_cf7 textarea:focus {
  border-color: var(--clr-00ADEF);
  box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.12);
  outline: 0;
}

.contact_box_full {
  grid-column: 1 / -1;
}

.contact_box_form button,
.contact_box_cf7 input[type="submit"],
.contact_box_cf7 button {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border: 0;
  border-radius: 7px;
  background: var(--clr-00ADEF);
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s;
}

.contact_box_form button:hover,
.contact_box_cf7 input[type="submit"]:hover,
.contact_box_cf7 button:hover {
  background: #079bd5;
  transform: translateY(-1px);
}

.contact_box_map {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(209, 213, 220, 0.7);
  border-radius: 14px;
  background: #eef7fb;
}

.contact_box_map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.contact_box_map_info h3 {
  margin-bottom: 6px;
  color: var(--clr-0B1A22);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.contact_box_map_info p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.contact_box_map_info {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.contact_box_map_info > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 173, 239, 0.11);
  color: var(--clr-00ADEF);
  font-size: 17px;
}

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

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

  .contact_box_panel {
    padding: 24px 18px;
  }
}
/* contact box css end */

/* inner section design start*/
.four_card_sec {
  position: relative;
}
.four_card_sec.bg_gradient .box_model {
  background: linear-gradient(96deg, #dceff8 3.44%, #fff 92.46%);
}
.four_card_sec.bg_dark_gradient .box_model {
  background:
    linear-gradient(80deg, #0b1a22 50.62%, rgba(0, 173, 239, 0.1) 121.23%),
    #0b1a22;
}
.four_card_sec .sec_hdng {
  max-width: 900px;
}
.four_card_sec.bg_dark_gradient .sec_hdng {
  max-width: 650px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 5px;
}
.four_card_sec.bg_dark_gradient .head p {
  color: var(--clr-D1D5DC);
}
.four_card_sec .icon_cards {
  margin-top: var(--spc-50);
}
.four_card_sec .icon_cards .icon_card {
  border-radius: 15px;
  border: 1px solid rgba(209, 213, 220, 0.5);
  background: #f9fafb;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s;
}
.four_card_sec.bg_gradient .icon_cards .icon_card {
  border: 1px solid transparent;
  background: transparent;
}
.four_card_sec.bg_gradient .icon_cards {
  position: relative;
}
.four_card_sec.bg_gradient .icon_cards::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(209, 213, 220, 0.5);
  width: 1px;
  height: 90%;
  transform: translate(-50%, -50%);
}
.four_card_sec.bg_gradient .icon_cards::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(209, 213, 220, 0.5);
  width: 90%;
  height: 1px;
  transform: translate(-50%, -50%);
}
.four_card_sec .icon_cards .icon_card .title {
  font-size: var(--fs-18);
  color: var(--clr-0A0A0A);
  font-weight: 700;
  line-height: 1.5;
}
.four_card_sec .icon_cards .icon_card img {
  transition: all 0.4s;
}
.four_card_sec .icon_cards .icon_card:hover {
  border-color: var(--clr-00ADEF);
  transform: translateY(-3px);
  background: rgba(0, 173, 239, 0.1);
}
.four_card_sec .icon_cards .icon_card:hover img {
  transform: rotateY(360deg);
}
.four_card_sec.bg_dark_gradient .icon_cards .icon_card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.four_card_sec.bg_dark_gradient .icon_cards .icon_card:hover {
  border: 1px solid var(--clr-00ADEF);
}
.four_card_sec.bg_dark_gradient .icon_cards .icon_card .title {
  color: var(--clr-white);
}
.four_card_sec.bg_dark_gradient .icon_cards .icon_card p {
  color: var(--clr-D1D5DC);
}
@media (max-width: 767.98px) {
  .four_card_sec.bg_gradient .icon_cards::before,
  .four_card_sec.bg_gradient .icon_cards::after {
    display: none;
  }
  .four_card_sec .icon_cards .icon_card {
    padding: 15px;
  }
}
/* inner section design css*/

/* pricing section css start */
.pricing_sec {
  position: relative;
}
.pricing_sec .head {
  max-width: 900px;
  margin: 0 auto;
}
.pricing_sec .pricing_cards {
  position: relative;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
.pricing_sec .pricing_cards .pricing_card {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e5e7eb;
  background: #fff;
}
.pricing_sec .pricing_cards .pricing_card {
  position: relative;
}
.pricing_sec .pricing_card p {
  font-size: 14px;
}
.pricing_sec .pricing_card p.type {
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-0A0A0A);
  margin-bottom: 5px;
}
.pricing_sec .pricing_card h3.price {
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-0A0A0A);
  margin-bottom: 5px;
  font-family: var(--font-dm-sans);
}
.pricing_sec .pricing_card h3.price span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-666666);
  margin-bottom: 15px;
}
.pricing_sec .pricing_card .check_mark_list {
  margin: 20px 0;
}
.pricing_sec .pricing_card .check_mark_list li {
  color: var(--clr-666666);
  font-size: 14px;
}
.pricing_sec .pricing_card a.primary_btn,
.pricing_sec .pricing_card button.primary_btn {
  margin-top: 30px;
  font-size: 14px;
  width: 100%;
  text-align: center;
  padding: 16px 25px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--clr-0A0A0A);
}
.pricing_sec .pricing_card a.primary_btn:hover,
.pricing_sec .pricing_card button.primary_btn:hover {
  background: var(--clr-00ADEF);
  color: var(--clr-white);
}
.pricing_sec .pricing_card.best_plan {
  background-color: var(--clr-00ADEF);
}
.pricing_sec .pricing_card.best_plan p,
.pricing_sec .pricing_card.best_plan h3.price,
.pricing_sec .pricing_card.best_plan h3.price span,
.pricing_sec .pricing_card.best_plan li,
.pricing_sec .pricing_card.best_plan li::before {
  color: var(--clr-white);
}
.pricing_sec .pricing_card.best_plan p {
  font-size: 14.7px;
}
.pricing_sec .pricing_card.best_plan h3.price {
  font-size: var(--fs-40);
}
.pricing_sec .pricing_card.best_plan p.type {
  font-size: calc(var(--fs-20) + 1px);
}
.pricing_sec .pricing_card.best_plan li {
  font-size: 14.7px;
}
.pricing_sec .pricing_card.best_plan a.primary_btn,
.pricing_sec .pricing_card.best_plan button.primary_btn {
  padding: 20px;
  background-color: var(--clr-white);
  color: var(--clr-00ADEF);
  font-size: 15px;
}
.pricing_sec .pricing_card.best_plan a.primary_btn:hover,
.pricing_sec .pricing_card.best_plan button.primary_btn:hover {
  background-color: var(--clr-0B1A22);
  color: var(--clr-white);
}
.pricing_sec .pricing_card.best_plan .popular {
  position: absolute;
  padding: 7px 10px;
  font-size: 12.6px;
  font-weight: 700;
  line-height: 1.3;
  background-color: var(--clr-FDC700);
  color: var(--clr-0A0A0A);
  border-radius: 30px;
  top: 0;
  right: 15%;
  transform: translateY(-50%);
}
.pricing_cards .row > div:last-child .primary_btn {
  background-color: var(--clr-00ADEF);
  color: var(--clr-white);
}
.pricing_cards .row > div:last-child .primary_btn:hover {
  background-color: rgba(0, 173, 239, 0.1);
  color: var(--clr-00ADEF);
}
@media (max-width: 1199.98px) {
  .pricing_sec .pricing_cards .pricing_card {
    padding: 20px;
  }
  .pricing_sec .pricing_card a.primary_btn {
    margin-top: 20px;
  }
}
/* pricing section css end */

/* faq section css start */
.faq_sec {
  position: relative;
}
.faq_sec .box_model {
  background: linear-gradient(96deg, #dceff8 3.44%, #fff 92.46%);
}
.faq_sec .head {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.custom_accordion {
  margin-top: var(--spc-50);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.custom_accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #dcdcdc;
  border-radius: 0;
  background-color: transparent;
}

.custom_accordion .accordion-button {
  padding: 34px 50px 34px 0;
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--clr-0A0A0A);
  background: transparent;
  box-shadow: none;
  position: relative;
}

.custom_accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--clr-0A0A0A);
  box-shadow: none;
}

.custom_accordion .accordion-button::after {
  display: none;
}

.custom_accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s ease;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

/* rotate + into x */

.custom_accordion .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(45deg);
  color: var(--clr-00ADEF);
}

.custom_accordion .accordion-body {
  padding: 0 0 34px;
  color: #666;
  font-size: var(--fs-16);
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  .custom_accordion .accordion-button {
    padding: 24px 50px 24px 0;
  }
  .custom_accordion .accordion-body {
    padding: 0 0 24px;
  }
}
/* faq section css end */
/* cta sec start */
.cta_sec {
  position: relative;
}
.cta_sec .box_model {
  background-color: var(--clr-0B1A22);
}
.cta_sec .head {
  max-width: 950px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.cta_sec .head .sec_hdng {
  color: var(--clr-white);
}
.cta_sec .head p:last-of-type {
  color: var(--clr-D1D5DC);
}
/* cta sec end */
/* footer css start */
.site_footer {
  position: relative;
}
.site_footer .box_model {
  padding-top: 40px;
  padding-bottom: 40px;
}
.site_footer .footer_top {
  padding-bottom: var(--spc-50);
}
.site_footer .footer_logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--clr-00ADEF);
  text-decoration: none;
  margin-bottom: 10px;
}
.site_footer .footer_desc {
  max-width: 320px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--clr-666666);
}
.site_footer .cus_col {
  width: auto;
}

.site_footer .footer_links h4 {
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--clr-00ADEF);
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: var(--font-dm-sans);
}
.site_footer .footer_links ul li {
  margin-bottom: 7px;
}
.site_footer .footer_links ul li:last-child {
  margin-bottom: 0;
}
.site_footer .footer_links ul li a {
  text-decoration: none;
  color: var(--clr-666666);
  font-size: 14px;
  line-height: 1.42;
  transition: 0.3s ease;
}
.site_footer .footer_links ul li a:hover {
  color: var(--clr-0B1A22);
}
.site_footer .footer_bottom {
  border-top: 1px solid rgba(209, 213, 220, 0.5);
  padding-top: 15px;
}
.site_footer .copyright_text {
  margin: 0;
  color: var(--clr-666666);
  font-size: 14px;
}

/* credit */

.site_footer .footer_credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.site_footer .footer_credit span {
  font-size: 14px;
  color: #8b8b8b;
}
.site_footer .footer_credit a {
  text-decoration: none;
  color: #00a6ff;
  font-size: 20px;
  font-weight: 700;
}

/* responsive */

@media (max-width: 991px) {
  .site_footer .footer_top {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .site_footer .footer_logo {
    font-size: 24px;
    letter-spacing: 4px;
  }
  .site_footer .footer_credit {
    justify-content: flex-start;
  }
  .site_footer .footer_bottom {
    padding-top: 20px;
  }
  .site_footer .copyright_text {
    text-align: center;
  }
  .footer_credit {
    justify-content: center !important;
  }
}
/* footer css end */



/* ==========================================================================
   Checkout Modal
   ========================================================================== */
.launch-modal[hidden] { display: none; }
.launch-modal { position: fixed; inset: 0; z-index: 10000; }
.launch-modal-backdrop { position: absolute; inset: 0; background: rgba(2, 6, 23, 0.62); }
.launch-modal-panel {
  position: relative; z-index: 2; width: min(34rem, calc(100% - 2rem));
  margin: 4rem auto 0; padding: 2rem; border-radius: 2rem;
  background: #fff; box-shadow: 0 36px 70px rgba(15, 23, 42, 0.3);
}
.launch-modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 2.6rem; height: 2.6rem;
  border-radius: 999px; border: 1px solid #d8edf8; background: #fff;
  color: #0f172a; font-size: 1.35rem; cursor: pointer;
}
.launch-modal-copy { margin: 1rem 0 0; color: #475569; line-height: 1.75; }
.launch-checkout-form { display: grid; gap: 1rem; margin-top: 1.4rem; }
.launch-checkout-form label { display: grid; gap: 0.45rem; color: #0f172a; font-weight: 600; }
.launch-checkout-form input { width: 100%; padding: 0.95rem 1rem; border: 1px solid #cbd5e1; border-radius: 1rem; font: inherit; }
.launch-checkout-highlight {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem; border-radius: 1rem; background: #effaff; color: #0f172a;
}
.launch-checkout-highlight span { color: #475569; }
.launch-checkout-status { min-height: 1.3rem; margin: 0; color: #475569; font-size: 0.95rem; }




/* today(1-6-26) css start */
.site_header .topbar {
  margin-bottom: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #0b1a22;
  border-radius: 20px;
}
.site_header .topbar svg{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.site_header .topbar p{
  color: var(--clr-white);
  font-size: var(--fs-16);
  margin-top: 0;
}
.site_header .topbar p a{
  color: var(--clr-white);
  font-size: var(--fs-16);
}
.site_header .topbar svg path{
  fill: var(--clr-00ADEF);
}
.site_header .call_us svg{
  width: 20px;
  height: 20px;
}
.site_header .call_us svg path{
  fill: var(--clr-00ADEF);
}
.site_header .call_us .img{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--clr-00ADEF);
}
.site_header .call_us a{
  color: var(--clr-0B1A22);
  font-weight: 400;
}
.site_header .call_us p{
  color: var(--clr-0B1A22);
  font-weight: 600;
}
.site_header .header_wrapper .right_wrapper .btns_wrapper{
  padding-left: var(--spc-50);
  border-left: 2px solid #e9ecf3;
}
.site_footer .footer_desc~p,
.site_footer .footer_desc~p a {
    max-width: 320px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--clr-666666);
    display: flex;
    gap: 10px;
    transition: all 0.4s;
  }
  .site_footer .footer_desc~p a:hover{
    color: var(--clr-0B1A22);
  }
.site_footer .footer_info svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.site_footer .footer_info svg path{
  fill: var(--clr-00ADEF);
}
.site_footer .cus_col:last-child{
  width: 40%;
}
.site_footer .cus_col:last-child ul{
  display: flex;
  gap: 10px;
}
.site_footer .cus_col:last-child ul li{
  width: 45px;
  height: 45px;
  border: 2px solid var(--clr-00ADEF);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s;
}
.site_footer .cus_col:last-child ul li:hover{
  transform: translateY(-2px);
}

.site_footer .data_safe{
  background: rgba(0, 173, 239, 0.1);
  border: 1px solid var(--clr-00ADEF);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}
.site_footer .data_safe .img {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--clr-00ADEF);
    flex-shrink: 0;
}
.site_footer .data_safe .img svg{
  width: 25px;
  height: 25px;
}
.site_footer .data_safe .data p{
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}
.site_footer .data_safe .data p+p{
  margin-top: 5px;
}
.site_footer .copyright_text svg{
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 1199.98px) {
  .site_footer .cus_col:last-child {
    width: 100%;
}
}
@media (max-width: 1199.98px) {
  .site_header .header_wrapper .right_wrapper .btns_wrapper{
    padding-left: 0;
    border: none;
  }
}
/* today css end */





.compliance_sec{
  margin-bottom: var(--spc-50);
}

.compliance_sec .box_model{
  background: #0b1a22;
}

.compliance_sec .sec_hdng,
.compliance_sec p{
  color: white;
}

.compliance_grid{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compliance_item{
  background: rgba(255,255,255,.08);
  padding: 22px 25px;
  border-left: 4px solid var(--clr-00ADEF);
  border-radius: 12px;
  transition: .4s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.compliance_item:hover{
  transform: translateX(8px);
}
.compliance_item img {
    transition: all 0.4s;
}
.compliance_item:hover img {
    transform: rotateY(360deg);
}


.compliance_item h4{
  color: white;
  font-size: 18px;
}

.automation_sec{
  margin-bottom: var(--spc-50);
}

.automation_sec .box_model{
  background: linear-gradient(96deg, #dceff8 3.44%, #fff 92.46%);
}

.automation_steps{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.step_box{
  text-align: center;
  padding: 30px 20px;
  border: 2px dashed #cfd9e5;
  border-radius: 20px;
  background: white;
  transition: .4s;
}

.step_box:hover{
  transform: translateY(-8px);
  border-color: var(--clr-00ADEF);
}
.step_box img {
    transition: all 0.4s;
}
.step_box:hover img {
    transform: rotateY(360deg);
}
.step_icon{
  width: 55px;
  height: 55px;
  margin: auto;
  margin-bottom: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}

.step_box h3{
  font-size: 18px;
  line-height: 1.5;
}

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

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