:root {
  --primary: #1E355E;
  --primary-light: #EAEAEA;
  --secondary: #30125A;
  --black: #000000;
  --white: #ffffff;
  --body-text:#333333;
  --text-dark: #0B001A;
  --bg-light: #E9ECF2;
  --bg-purple: #30125A;
  --bg-dark: #0B001A;
  --border-color: #e6e6e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1Q.ttf) format("truetype");
}
body {
  -webkit-tap-highlight-color: transparent;
  font-family: "Cairo", sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 960px) {
  .container {
    max-width: 920px;
  }
}
@media (min-width: 1020px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 1060px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1360px;
  }
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 0 15px 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  line-height: 1;
  height: 45px;
}

.btn-primary:hover {
  background-color: var(--primary);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.bg-white {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--text-dark);
}

.text-white {
  color: var(--white);
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 20px;
}

.gap-50 {
  gap: 50px;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-65 {
  width: 65%;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.minh120 {
  min-height: 120px;
}

.d-flex {
  display: flex;
}

.column-between {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

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

.flex-between {
  display: flex;
  justify-content: space-between;
}

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

.flex-start {
  display: flex;
  align-items: flex-start;
}

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

.flex-column {
  flex-direction: column;
}

.justify-self-end {
  justify-self: flex-end;
}

.text-center {
  text-align: center;
}

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

.align-baseline {
  display: flex;
  align-items: baseline;
}

.grid2fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid3fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid4fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid5fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

p {
  line-height: 1.5;
  font-weight: 400;
}

.fs-60 {
  font-size: 60px;
  font-weight: 600;
}

.fs-32 {
  font-size: 32px;
  font-weight: 500;
}

.fs-40 {
  font-size: 40px;
  font-weight: 500;
}

.fs-28 {
  font-size: 28px;
  font-weight: 500;
}

.fs-22 {
  font-size: 22px;
  font-weight: 500;
}

.fs-24 {
  font-size: 24px;
  font-weight: 500;
}

p.fs-20,
li {
  font-size: 20px;
}

h5.fs-20 {
  font-size: 20px;
  font-weight: 500;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

a {
  text-decoration: none;
}

.text-uppercase {
  text-transform: uppercase;
}

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.opacity7 {
  opacity: 0.7;
}

.br-24 {
  border-radius: 24px;
}

.br-15 {
  border-radius: 15px;
}

.pos-relative {
  position: relative;
}

.d-none {
  display: none;
}

.d-inline-flex {
  display: inline-flex;
}

.form-control {
  position: relative;
  height: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.form-label {
  position: absolute;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.5;
  top: 0.5rem;
  width: 100%;
  color: var(--white);
  transition: all 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.form-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  resize: none;
  border: none;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: all 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.form-input::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.form-input::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.form-input:not(:-moz-placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-input:not(:-moz-placeholder).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  transition: all 0.2s ease;
}

.form-button button {
  width: 250px;
  justify-content: center;
}

.validation-msg {
  display: inline-block;
  font-size: 11px;
  font-weight: normal;
  left: -3px;
  margin: 0 auto;
  padding: 4px;
  position: relative;
  top: 48px;
}

.error-message {
  color: red;
}

.common-section {
  align-items: center;
}

.com-star-section {
  text-align: center;
}

.client-desktop-hide {
  display: none !important;
}

.case-study-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.case-study-stats, .case-study-challenges {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
}

.case-study-stats svg {
  margin-top: 8px;
}

.case-study-challenges svg {
  margin-top: 3px;
}

.border-black {
  border: 1px solid var(--border-color);
}

.border-black-bottom {
  border-bottom: 1px solid var(--border-color);
}

.boxshedow-inner {
  box-shadow: inset 5px 6px 4px 0 rgba(0, 0, 0, 0.25);
}

.boxshedow-outer {
  box-shadow: 5px 6px 4px 0 rgba(0, 0, 0, 0.25);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background-color: var(--primary-light);
  border-radius: 15px;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
}

.benefit-card__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
}

.benefit-card--centered {
  width: calc(50% - 15px);
}

@media screen and (max-width: 768px) {
  .client-section.gap-30,
  .client-section .gap-30 {
    gap: 10px;
  }
  .form-card .container {
    padding: 0;
  }
  .form-card .br-24 {
    border-radius: 0;
  }
  .p-40 {
    padding: 20px 15px;
  }
  .form-card .p-40 {
    padding: 20px 15px;
  }
  p.fs-20,
  li {
    font-size: 16px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .pt-60 {
    padding-top: 0;
  }
  .p-bottom-none {
    padding-bottom: 0 !important;
  }
  .py-30 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .com-star-section {
    text-align: left;
  }
  .collaborators.gap-50 {
    gap: 30px;
  }
  .case-study-header .fs-32, .case-study-stats .fs-32 {
    font-size: 22px;
  }
  .case-study-header .text-center {
    text-align: left;
    grid-row-start: 1;
  }
  .case-study-header {
    gap: 20px;
  }
  .case-study-header ~ .gap-30 {
    gap: 15px;
  }
  .case-study-chall .gap-50 {
    gap: 30px;
  }
  .case-study-solution .gap-30 {
    gap: 15px;
  }
}
@media screen and (min-width: 761px) {
  p.fs-20,
  li {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .client-desktop-hide {
    display: grid !important;
  }
  .client-mobile-hide {
    display: none !important;
  }
  .mt-100, .mt-30 {
    margin-top: 30px;
  }
  .grid2fr,
  .grid3fr,
  .grid4fr,
  .grid5fr,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card--centered {
    width: 100%;
  }
  .fs-55 {
    font-size: 45px;
  }
  .fs-28 {
    font-size: 18px;
  }
  .br-24 {
    border-radius: 14px;
  }
  .p-30,
  .pxy-30 {
    padding: 15px;
  }
  .p-50 {
    padding: 15px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .p-top-none {
    padding-top: 0 !important;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .minh180 {
    min-height: 90px;
  }
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .border-bottom-none {
    border-bottom: none !important;
  }
  .w-100 {
    width: 100%;
  }
  .w-60,
  .w-70 {
    width: 100%;
  }
  .w-65 {
    width: 100%;
    padding: 0 15px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .mt-60 {
    margin-top: 40px;
  }
  .h-300,
  .h-350,
  .h-400,
  .h-500 {
    height: unset;
    width: 100%;
  }
  .column-mobile {
    justify-content: flex-start !important;
    flex-direction: row !important;
  }
  .btn-primary {
    width: 100%;
  }
  .common-section.gap-50 {
    gap: 20px;
  }
  .common-section .mb-30 {
    margin-bottom: 15px;
  }
  .pt-40 {
    padding-top: 0;
  }
  .common-reverse {
    flex-direction: column-reverse;
    display: flex;
  }
  .justify-self-end {
    width: 100%;
  }
  .fs-60 {
    font-size: 35px;
    font-weight: 600;
  }
  .fs-24 {
    font-size: 20px;
  }
}
@media screen and (min-width: 961px) {
  .h-300 {
    height: 250px;
  }
  .h-350 {
    height: 300px;
  }
  .h-400 {
    height: 350px;
  }
  .h-500 {
    height: 350px;
  }
  .column1-3 {
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .column3-3 {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
  }
}
@media screen and (min-width: 1200px) {
  .word-break {
    display: block;
  }
  .h-300 {
    height: 300px;
  }
  .h-350 {
    height: 350px;
  }
  .h-400 {
    height: 370px;
  }
  .h-500 {
    height: 480px;
  }
}
@media screen and (min-width: 1400px) {
  .h-300 {
    height: 350px;
  }
  .h-350 {
    height: 400px;
  }
  .h-400 {
    height: 500px;
  }
  .h-500 {
    height: 500px;
  }
}
.top-bar {
  position: relative;
  z-index: 0;
  background: var(--primary);
  overflow: hidden;
}

.nav-barWrapper {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.top-bar__item img {
  display: block;
  flex-shrink: 0;
}

.top-bar__social {
  position: absolute;
  top: 0;
  right: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.top-bar__social::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80px;
  right: -100vw;
  background: #809abd;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 16px;
  transform: skewX(-22deg);
  transform-origin: bottom left;
  z-index: -1;
}

.top-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  font-size: 10px;
}

@media screen and (max-width: 960px) {
  .top-bar__social {
    right: 30px;
  }
  .top-bar > .container {
    flex-direction: column;
  }
  .top-bar__contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    padding: 10px 0;
  }
  .top-bar__social {
    position: relative;
    right: auto;
    justify-content: center;
    height: auto;
    padding: 10px 0;
  }
  .top-bar__social::before {
    left: -100vw;
    transform: none;
    border-radius: 0;
  }
}
.main-header {
  --navy: #1b325f;
  --nav-gray: #707070;
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.main-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 30px;
}

.main-header .menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.main-header .menu-logo,
.main-header .menu-click {
  display: none;
}

.main-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-header__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-header__nav a,
.main-header__nav .nav-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  text-decoration: none;
  white-space: nowrap;
}

.main-header__nav span.nav-item {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.main-header__nav a i {
  font-size: 10px;
}

.main-header__dropdown {
  position: relative;
}

.main-header__dropdown > .nav-item svg {
  flex-shrink: 0;
}

.main-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  padding: 20px;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(11, 0, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.main-header__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.main-header__dropdown:hover .main-header__dropdown-menu,
.main-header__dropdown:focus-within .main-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-header__dropdown-menu li + li {
  margin-top: 15px;
}

.main-header__dropdown-menu {
  flex-direction: column;
  gap: 10px !important;
  align-items: flex-start !important;
}

.main-header__dropdown-menu a {
  color: var(--body-text);
}

.main-header__dropdown-menu a:hover {
  color: var(--primary);
}

.main-header__nav > ul > li > a.active {
  color: var(--primary);
  font-weight: 500;
}

/* ---------- Mobile header ---------- */
@media (max-width: 960px) {
  .nav-barWrapper {
    display: none;
  }
  body.menu-open {
    overflow: hidden;
  }
  .main-header > .container {
    min-height: 65px;
    gap: 0;
  }
  .main-header .logo {
    width: 100%;
    justify-content: space-between;
  }
  .main-header .logo > a img {
    width: 170px;
    height: auto;
  }
  .main-header .menu-click {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .main-header .menu {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    top: 0;
    bottom: 0;
  }
  .main-header .menu.open {
    right: 0 !important;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    overflow-y: auto;
    background-color: var(--white);
  }
  .main-header .menu-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    margin-bottom: 30px;
    width: 100%;
  }
  .main-header .menu-logo img {
    display: block;
    width: 170px;
    height: auto;
  }
  .main-header__nav {
    display: block;
    flex: none;
  }
  .main-header__nav ul {
    display: block;
    gap: 0;
  }
  .main-header__nav a,
  .main-header__nav .nav-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 17px;
    color: var(--body-text);
    text-transform: uppercase;
    white-space: normal;
  }
  .main-header__dropdown::after {
    display: none;
  }
  .main-header__dropdown > .nav-item svg {
    transition: transform 0.3s ease;
  }
  .main-header__dropdown.active-nav > .nav-item {
    color: var(--primary);
  }
  .main-header__dropdown.active-nav > .nav-item svg {
    transform: rotate(180deg);
  }
  .main-header__dropdown-menu,
  .main-header__dropdown:hover .main-header__dropdown-menu,
  .main-header__dropdown:focus-within .main-header__dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    max-height: 0;
    margin-left: 4px;
    padding: 0 0 0 20px;
    overflow: hidden;
    background: transparent;
    border-left: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease;
  }
  .main-header__dropdown.active-nav > .main-header__dropdown-menu {
    max-height: 500px;
  }
  .main-header__dropdown-menu li + li {
    margin-top: 0;
  }
  .main-header__dropdown-menu a {
    padding: 7px 0;
    font-size: 15px;
    text-transform: none;
  }
  .main-header .contact-me {
    margin-top: 30px;
  }
  .main-header__btn {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    font-size: 15px;
    text-transform: uppercase;
  }
}
.heroSection {
  position: relative;
  width: 100%;
  height: 63vh;
  overflow: visible;
}

.heroSection .mySwiper {
  width: 100%;
  height: 100%;
}

.text-underline {
  text-decoration: underline;
}

.whatsaap-Image {
  position: absolute;
  bottom: -40px;
  right: 1%;
  z-index: 5;
}

.heroSection swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.heroSection swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.heroSection swiper-container::part(button-prev),
.heroSection swiper-container::part(button-next),
.heroSection swiper-container::part(pagination),
.heroSection .swiper-pagination {
  display: none !important;
}

.nutshell-stats {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.nutshell-stats__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.nutshell-stat h3 {
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.nutshell-stat__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  min-height: 90px;
}

.nutshell-stat__divider img {
  display: block;
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.stats-item {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.stats-item h3 {
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.stats-item p {
  color: var(--grey-text);
  line-height: 1.4;
}

.stats-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 100px;
  flex-shrink: 0;
}

.stats-separator-line {
  display: block;
  width: 1px;
  flex: 1;
  background-color: #d9d9d9;
}

.stats-separator img {
  display: block;
  margin: 8px 0;
}

.service-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11, 0, 26, 0.12);
}

.service-card:hover .primary-content {
  top: 45%;
}

.service-card:hover .primary-content {
  background: var(--primary);
  color: var(--white);
}

.service-card:hover .white-content {
  top: 45%;
  background: var(--white);
  color: var(--primary);
}

.service-card-image {
  height: 100%;
  padding: 15px 15px 0;
  box-sizing: border-box;
}

.service-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 77%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 20px;
  background: var(--white);
  color: var(--primary);
  overflow: hidden;
  transition: top 0.4s ease-in-out, background-color 0.3s ease, color 0.3s ease;
}

.location-card__icon {
  margin-top: 3px;
}

.location-card__text {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.5;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-shrink: 0;
  padding: 0 10px;
}

.service-card-header h3 {
  line-height: 1.3;
  margin: 0;
}

.service-card-desc {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-card-dark .service-card-content {
  background: var(--primary);
  color: var(--white);
}

@media screen and (max-width: 960px) {
  .service-card {
    height: 400px;
  }
  .service-card-content {
    top: 40%;
  }
  .service-card {
    height: 360px;
  }
  .nutshell-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
    width: 100%;
  }
  .nutshell-stats__row {
    display: contents;
  }
  .nutshell-stat p {
    font-size: 16px;
    margin-top: 18px;
  }
  .stats-row {
    flex-direction: column;
    gap: 30px;
  }
  .stats-separator {
    flex-direction: row;
    min-height: auto;
    width: 100%;
    max-width: 200px;
  }
  .stats-separator-line {
    width: auto;
    height: 1px;
    flex: 1;
  }
  .stats-item {
    max-width: 100%;
  }
  .heroSection {
    height: 300px;
  }
  .whatsaap-Image {
    height: 80px;
    width: 100px;
  }
  .brand-logo {
    overflow: auto;
    gap: 40px;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  font-size: 16px;
  color: var(--grey-text);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-line {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .grid-area {
    grid-area: 5;
  }
  .footer-grid svg {
    width: 32px;
    height: 32px;
  }
  .footer-linktravel {
    grid-template-columns: 1fr 1fr;
  }
  .footer-mainWrap {
    flex-direction: column-reverse;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1Q.ttf) format("truetype");
}
body {
  -webkit-tap-highlight-color: transparent;
  font-family: "Cairo", sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 960px) {
  .container {
    max-width: 920px;
  }
}
@media (min-width: 1020px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 1060px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1360px;
  }
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 0 15px 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  line-height: 1;
  height: 45px;
}

.btn-primary:hover {
  background-color: var(--primary);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.bg-gradient {
  background: linear-gradient(180deg, rgba(48, 18, 90, 0) 0%, rgba(48, 18, 90, 0.5) 100%);
}

.bg-dark {
  background-color: var(--border-color);
}

.bg-purple {
  background-color: var(--bg-purple);
}

.bg-white {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--bg-light);
}

.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--text-dark);
}

.text-white {
  color: var(--white);
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 20px;
}

.gap-50 {
  gap: 50px;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-65 {
  width: 65%;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.minh180 {
  min-height: 180px;
}

.d-flex {
  display: flex;
}

.column-between {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

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

.flex-between {
  display: flex;
  justify-content: space-between;
}

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

.flex-column {
  flex-direction: column;
}

.justify-self-end {
  justify-self: flex-end;
}

.text-center {
  text-align: center;
}

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

.grid2fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid3fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid4fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

p {
  line-height: 1.5;
  font-weight: 400;
}

.fs-60 {
  font-size: 60px;
  font-weight: 600;
}

.fs-32 {
  font-size: 32px;
  font-weight: 500;
}

.fs-40 {
  font-size: 40px;
  font-weight: 500;
}

.fs-28 {
  font-size: 28px;
  font-weight: 500;
}

.fs-22 {
  font-size: 22px;
  font-weight: 500;
}

.fs-24 {
  font-size: 24px;
  font-weight: 500;
}

p.fs-20,
li {
  font-size: 20px;
}

h5.fs-20 {
  font-size: 20px;
  font-weight: 500;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

a {
  text-decoration: none;
}

.text-uppercase {
  text-transform: uppercase;
}

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.opacity7 {
  opacity: 0.7;
}

.br-24 {
  border-radius: 24px;
}

.white-space-nowrap {
  white-space: nowrap;
}

.pos-relative {
  position: relative;
}

.d-none {
  display: none;
}

.d-inline-flex {
  display: inline-flex;
}

.form-control {
  position: relative;
  height: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.form-label {
  position: absolute;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.5;
  top: 0.5rem;
  width: 100%;
  color: var(--white);
  transition: all 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.form-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  resize: none;
  border: none;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: all 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.form-input::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.form-input::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.form-input:not(:-moz-placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-input:not(:-moz-placeholder).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  transition: all 0.2s ease;
}

.form-button button {
  width: 250px;
  justify-content: center;
}

.validation-msg {
  display: inline-block;
  font-size: 11px;
  font-weight: normal;
  left: -3px;
  margin: 0 auto;
  padding: 4px;
  position: relative;
  top: 48px;
}

.error-message {
  color: red;
}

.common-section {
  align-items: center;
}

.com-star-section {
  text-align: center;
}

.client-desktop-hide {
  display: none !important;
}

.case-study-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.case-study-stats, .case-study-challenges {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
}

.case-study-stats svg {
  margin-top: 8px;
}

.case-study-challenges svg {
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .client-section.gap-30,
  .client-section .gap-30 {
    gap: 10px;
  }
  .form-card .container {
    padding: 0;
  }
  .form-card .br-24 {
    border-radius: 0;
  }
  .p-40 {
    padding: 20px 15px;
  }
  .form-card .p-40 {
    padding: 20px 15px;
  }
  p.fs-20,
  li {
    font-size: 16px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .pt-60 {
    padding-top: 0;
  }
  .py-30 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .com-star-section {
    text-align: left;
  }
  .collaborators.gap-50 {
    gap: 30px;
  }
  .case-study-header .fs-32, .case-study-stats .fs-32 {
    font-size: 22px;
  }
  .case-study-header .text-center {
    text-align: left;
    grid-row-start: 1;
  }
  .case-study-header {
    gap: 20px;
  }
  .case-study-header ~ .gap-30 {
    gap: 15px;
  }
  .case-study-chall .gap-50 {
    gap: 30px;
  }
  .case-study-solution .gap-30 {
    gap: 15px;
  }
}
@media screen and (min-width: 761px) {
  p.fs-20,
  li {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .client-desktop-hide {
    display: grid !important;
  }
  .client-mobile-hide {
    display: none !important;
  }
  .mt-100 {
    margin-top: 30px;
  }
  .grid2fr,
  .grid3fr,
  .grid4fr {
    grid-template-columns: 1fr;
  }
  .fs-55 {
    font-size: 45px;
  }
  .fs-28 {
    font-size: 18px;
  }
  .br-24 {
    border-radius: 14px;
  }
  .p-30,
  .pxy-30 {
    padding: 15px;
  }
  .p-50 {
    padding: 15px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .minh180 {
    min-height: 90px;
  }
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .w-60,
  .w-70 {
    width: 100%;
  }
  .w-65 {
    width: 100%;
    padding: 0 15px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .mt-60 {
    margin-top: 40px;
  }
  .h-300,
  .h-350,
  .h-400,
  .h-500 {
    height: unset;
    width: 100%;
  }
  .column-mobile {
    justify-content: flex-start !important;
    flex-direction: row !important;
  }
  .btn-primary {
    width: 100%;
  }
  .common-section.gap-50 {
    gap: 20px;
  }
  .common-section .mb-30 {
    margin-bottom: 15px;
  }
  .common-reverse {
    flex-direction: column-reverse;
    display: flex;
  }
  .justify-self-end {
    width: 100%;
  }
  .fs-60 {
    font-size: 35px;
    font-weight: 600;
  }
  .fs-24 {
    font-size: 20px;
  }
}
@media screen and (min-width: 961px) {
  .h-300 {
    height: 250px;
  }
  .h-350 {
    height: 300px;
  }
  .h-400 {
    height: 350px;
  }
  .h-500 {
    height: 350px;
  }
  .column1-3 {
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .column3-3 {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
  }
}
@media screen and (min-width: 1200px) {
  .word-break {
    display: block;
  }
  .h-300 {
    height: 300px;
  }
  .h-350 {
    height: 350px;
  }
  .h-400 {
    height: 370px;
  }
  .h-500 {
    height: 480px;
  }
}
@media screen and (min-width: 1400px) {
  .h-300 {
    height: 350px;
  }
  .h-350 {
    height: 400px;
  }
  .h-400 {
    height: 500px;
  }
  .h-500 {
    height: 500px;
  }
}/*# sourceMappingURL=app.css.map */