/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2026 | 18:29:29 */
.why-choose__card-title {
    margin-top: 20px;
}
.privacy-hero {
    padding-top: 160px;
    padding-bottom: 40px;
}

/* GLOBAL — ALPHABOTZ DESIGN SYSTEM */
:root {
  --color-primary: #E8192C;
  --color-black: #000000;
  --color-dark: #101010;
  --color-white: #FFFFFF;
  --color-gray: #FFFFFFCC;
  --color-black-high: #000000F2;
  --color-black-mid: #000000CC;
}
.bg-color-dark{
  background-color: #101010;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  background-color: #000000F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600 !important;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
.h1-head {
  font-size: 96px;
  line-height: 96px;
}
.h2-head {
  font-size: 48px;
  line-height: 48px;
}
.h3-head {
  font-size: 28px;
  line-height: 40px;
}
.h4-head {
  font-size: 24px;
  line-height: 32px;
}
.p1-para {
  font-size: 20px;
  line-height: 28px;
}
.p2-para {
  font-size: 18px;
  line-height: 28px;
}
.p3-para {
  font-size: 16px;
  line-height: 24px;
}
.p4-para {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 1024px) {
.h1-head {
    font-size: 64px;
    line-height: 64px;
}
}
@media (max-width: 767px) {
  .h1-head { font-size: 48px; line-height: 54px; }
  .h2-head { font-size: 36px; line-height: 40px; }
  .h3-head { font-size: 24px; line-height: 32px; }
  .h4-head { font-size: 20px; line-height: 28px; }
  .p1-para { font-size: 20px; line-height: 28px; }
  .p2-para { font-size: 18px; line-height: 26px; }
  .p3-para { font-size: 16px; line-height: 24px; }
  .p4-para { font-size: 14px; line-height: 22px; }
}
.fw300 { font-weight: 300; }
.fw400 { font-weight: 400; }
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }
.fw700 { font-weight: 700; }
.text-primary { color: var(--color-primary); }
.text-black { color: var(--color-black); }
.text-dark { color: var(--color-dark); }
.text-white { color: var(--color-white); }
.text-gray {color: var(--color-gray);}
.text-black-high { color: var(--color-black-high); }
.text-black-mid { color: var(--color-black-mid); }
.bg-primary { background-color: var(--color-primary); }
.bg-black { background-color: var(--color-black); }
.bg-dark { background-color: var(--color-dark); }
.bg-white { background-color: var(--color-white); }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-flex { display: inline-flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.inner-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.space-left-right {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .space-left-right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  padding: 14px 28px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background-color: #c8152a;
}
.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
}
.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.btn-outline-dark {
  background-color: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
}
.btn-outline-dark:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.mb0 { margin-bottom: 0; }
.label {
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.btn-sweep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
  background-color: transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s ease;
}
.btn-sweep::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn-sweep:hover {
  color: var(--color-dark);
}
.btn-sweep:hover::before {
  transform: scaleX(1);
}
.btn-sweep--dark {
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-sweep--dark::before {
  background-color: var(--color-white);
}
.btn-sweep--dark:hover {
  color: var(--color-dark);
}
.btn-sweep--red {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.btn-sweep--red::before {
  background-color: #c8152a;
}
.btn-sweep--red:hover {
  color: var(--color-white);
}
.btn-sweep--outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--color-black-high);
  border: 1.5px solid var(--color-black-high);
  background-color: transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s ease;
  white-space: nowrap;
}
.btn-sweep--outline-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-black-high);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn-sweep--outline-dark:hover {
  color: var(--color-white);
}
.btn-sweep--outline-dark:hover::before {
  transform: scaleY(1);
}


.cta {
  position: relative;
  background-image: url('https://lightslategrey-ape-406595.hostingersite.com/wp-content/uploads/2026/03/Ready-to-Build-scaled.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}
.cta__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.cta .inner-container {
  position: relative;
  z-index: 1;
}
.cta__content {
  text-align: center;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.cta__content p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.cta__title {
  margin-bottom: 20px;
}
.cta__desc {
  line-height: 150%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1025px) and (max-width: 1300px) {
.why-choose__grid {
	grid-template-columns: 430px auto !important;
}
.empower__grid {
    grid-template-columns: 500px auto !important;
}
}
@media (max-width: 1024px) {
  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cta__content {
    max-width: 100%;
  }
.privacy-hero {
    padding-bottom: 20px;
}
}