/* Imports */
/* Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&family=Rock+Salt&display=swap');

:root {
  --primary: #9E0DCE;
  --secondary: #5D0DCE;
  --text-gradient: linear-gradient(-90deg, #9E0DCE 0%, #5D0DCE 100%);
  --card-bg: #15161B;
  --body-bg: #0E0F12;
  --nav-text-color: #FDFBF5;
  --white: #FFFFFF;
  --black: #000000;
  --font-almarai: "Almarai", sans-serif;
  --font-rock-salt: "Rock Salt", cursive;
  --font-TTOctosquaresCond-Bold: "TTOctosquaresCond-Bold", sans-serif;
  --space: clamp(28px, 4vw, 64px);
  --radius-lg: clamp(21px, 6vw, 48px);
}

::selection {
  background-color: var(--secondary);
  color: var(--white);
}


@font-face {
  font-family: "TTOctosquaresCond-Bold";
  src: url("../fonts/TTOctosquaresCond-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: var(--font-almarai);
  overflow-wrap: break-word;
}

html {
  /* scroll-behavior: smooth; */
}

body {
  background: var(--body-bg) url("../images/nosie-bg.jpg") no-repeat center center fixed;
  position: relative;
  overflow-x: clip;
  color: var(--white);
}

a,
button {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
}

svg {
  max-width: 100%;
}

ul,
ol,
dl,
address,
label,
figure {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-TTOctosquaresCond-Bold);
}

p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
}

section {
  position: relative;
}

.padd-y {
  padding: 5rem 0;
}

.themeBtn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 3.125rem;
  transition: all 0.3s ease;
}

.themeBtnNew {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(-90deg, #9e0dcebf 0%, #5d0dcead 100%);

  color: var(--white);
  font-size: 1rem;
  border: 2px solid var(--primary);
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 3.125rem;
  transition: all 0.3s ease;
}

.themeBtnNew:hover {
  color: #000;
}

.main-heading {
  font-size: 5.625rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

.sub-heading {
  display: block;
  font-size: 5rem !important;
  font-family: var(--font-rock-salt);
  line-height: 1.7;
  color: var(--white);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  overflow: unset;
}

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.5s ease;
  margin: 1.875rem 0 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}

.header-main__nav {
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: .5em 1.75em;
}

.header-main__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 52px;
  height: 100%;
  clip-path: polygon(30% 0%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 1;
  background: var(--black);
}

.header-main__nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 52px;
  height: 100%;
  clip-path: polygon(70% 0%, 70% 100%, 100% 70%, 100% 30%);
  z-index: 1;
  background: var(--black);
}

.header-main__nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-main__nav-menu ul li a {
  color: var(--nav-text-color);
  font-size: 0.813rem;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* hero-section */
.hero-section {
  height: 100vh;
}

.hero-bg {
  width: 100%;
  height: 100%;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--body-bg) 8%, rgb(14 15 18 / 97%) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 5%;
}

.hero-main {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1340px;
}

.hero-tagline {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-tagline ul {
  gap: 0.25rem;
}

.hero-content .main-heading {
  font-size: 7.125rem;
  margin-bottom: 2.5rem;
}

.hero-content p {
  font-size: 1.375rem;
  max-width: 940px;
  margin: 0 auto 2rem;
}

.hero-content .btn-group {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.try-it-free a {
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: underline !important;
  color: var(--white);
}

/* video-section */
.video-poster {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  -webkit-clip-path: url(#clip);
  clip-path: url(#clip)
}

.video-poster svg {
  position: absolute;
  width: calc(100% + 0px);
  height: 100%
}

.video-poster path {
  -webkit-transform-origin: 42.7% 45.94%;
  -ms-transform-origin: 42.7% 45.94%;
  transform-origin: 42.7% 45.94%
}

video {
  margin-left: -.25%;
  width: 100.5%;
  margin-bottom: -.5%
}

.video-poster video {
  width: 100.5%
}

.video-frame {
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  padding-top: 57%
}

.video-frame video {
  position: absolute;
  top: 0;
  left: 0
}

.object-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* how-works-section */
.how-works-wrap {
  background: var(--body-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin: 0 3.75rem;
  border-radius: 6.25rem;
  padding: 9.375rem 6.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.how-works-heading {
  margin-bottom: 3rem;
}

.how-works_layout {
  padding: 8.75rem 0 0;
  flex-flow: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.how-works_desktop-svg {
  max-width: 85rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
  overflow: visible !important;
}

.how-works_mobile-svg {
  display: none;
  overflow: visible !important;
}

.how-works_card {
  background: var(--card-bg);
  padding: 3em 2.25em;
  border-radius: 3rem;
  height: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  justify-content: center;
  gap: 5rem;
}

.how-works_card h4 {
  font-size: 5rem;
  line-height: .86;
  text-transform: uppercase;
  margin: 0;
  color: var(--white);
}

.how-works_card p {
  color: rgb(255 255 255 / 70%);
  letter-spacing: -0.2px;
  margin: 0;
}

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

.how-works_img img {
  border-radius: 1.875rem;
}

.how-works_layout .row:nth-child(even) {
  flex-direction: row-reverse;
  margin: 11.25rem 0;
}

.stripe_loop_section {
  justify-content: flex-end;
  min-height: auto;
  color: #fff;
  flex-direction: column;
  max-width: 100vw;
  z-index: 2;
  min-height: 32svh;
  display: flex;
  position: relative;
  overflow-x: clip;
}

.stripe_large_col_container {
  flex-flow: column;
  max-width: 100vw;
  display: flex;
  overflow: hidden;
}

.stripe_row_large {
  white-space: nowrap;
  display: flex;
}

.stripe_row_large_item {
  letter-spacing: -.225rem;
  text-transform: uppercase;
  background-color: #9542f4cc;
  border-top: .375rem solid #15171a;
  border-bottom: .375rem solid #15171a;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  font-family: Tt Octosquares Condensed, Verdana, sans-serif;
  font-size: 8rem;
  line-height: 1;
  display: flex;
}

.stripe_row_inner {
  grid-row-gap: 1rem;
  background: rgb(162 13 206 / 90%);
  white-space: nowrap;
  align-items: center;
  padding-top: .563rem;
  padding-bottom: .563rem;
  display: flex;
}

.stripe_row {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--violet-flame-600);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.stripe_row.left {
  position: absolute;
  bottom: 3.5rem;
}

.stripe_container {
  color: #fdfbf5;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  padding-top: 16rem;
  display: flex;
  position: relative;
  overflow-x: clip;
}

.stripe_container_inner {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  width: 105vw;
  display: flex;
  position: relative;
  left: -2.5vw;
}

.stripe_text {
  opacity: .7;
  text-transform: uppercase;
  /* padding-left: 1rem; */
  /* padding-right: 1rem; */
  font-family: var(--font-TTOctosquaresCond-Bold);
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
}

.stripe_rotate_left {
  transform: rotate(-3.79deg);
}

.stripe_rotate_right {
  transform: translate(0, -8.5rem)rotate(5.2deg);
}

.stripe_row_inner img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin: 0 2rem;
}

.stripe_row_inner .stripe_text_black {
  color: var(--black);
}

.strip-round {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: spin 8s linear infinite;

}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* build-website-section */
.build-website_wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  z-index: -1;
  height: 100%;
}

.build-website_heading {
  position: relative;
}

.build-website_heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #9E0DCE 0%, #5D0DCE 100%);
  z-index: -1;
  transform: rotate(15deg) translate(-50%, -50%);
  filter: blur(300px);
  max-width: 900px;
  border-radius: 50px;
  opacity: 50%;
}

.build-website_heading .main-heading {
  font-size: 10.625rem;
  margin-bottom: 2.5rem;
}

.build-website_heading .main-heading .word {
  font-family: var(--font-TTOctosquaresCond-Bold);
}

.build-website_heading img {
  position: absolute;
  z-index: 1;
}

.build-website_heading .crown-icon {
  top: -20px;
  left: 200px;
}

.build-website_heading .quote-icon {
  bottom: 160px;
  right: -20px;
}

/* case-study-section */
.case-study_silder {
  overflow: visible;
}

.case-study_silder .swiper-slide {
  height: 700px;
}

.cs-box {
  overflow: hidden;
  -webkit-transition: .35s cubic-bezier(.4, 0, .2, 1);
  -o-transition: .35s cubic-bezier(.4, 0, .2, 1);
  transition: .35s cubic-bezier(.4, 0, .2, 1);
  height: 100%;
  display: flex;
  flex-direction: column
}

.swiper-slide .top .imgbox {
  margin-bottom: 1rem;
  -webkit-transition: .35s cubic-bezier(.4, 0, .2, 1);
  -o-transition: .35s cubic-bezier(.4, 0, .2, 1);
  transition: .35s cubic-bezier(.4, 0, .2, 1);
  position: relative
}

.swiper-slide .top h3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: .25rem;
  font-size: 3.125rem;
}

.swiper-slide .top h3 a:hover {
  opacity: .8
}

.swiper-slide .top h3 a {
  color: var(--white);
  font-family: var(--font-TTOctosquaresCond-Bold);
}

.swiper-slide .top {
  display: flex;
  flex-direction: column;
  flex: auto
}

.swiper-slide .bottom {
  -webkit-transition: .2s cubic-bezier(.4, 0, .2, 1);
  -o-transition: .2s cubic-bezier(.4, 0, .2, 1);
  transition: .2s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden
}

.swiper-slide .bottom a {
  margin-bottom: 12px
}

@media(min-width: 992px) {
  .swiper-slide .bottom a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }
}

small {
  font: clamp(10px, 3vw, 11px) / 1.75 var(--font-almarai);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em
}

.csSwiper .swiper-slide {
  height: 700px
}

.swiper-slide .bottom {
  -webkit-transition: .35s cubic-bezier(.4, 0, .2, 1);
  -o-transition: .35s cubic-bezier(.4, 0, .2, 1);
  transition: .35s cubic-bezier(.4, 0, .2, 1)
}

.swiper-slide:hover .bottom {}

.swiper-slide:hover .top .imgbox {}

.swiper-slide .bottom p {
  font: clamp(13px, 3vw, 14px) / 1.75 var(--font-almarai);
}

@media(min-width: 1200px) {
  .swiper-slide .bottom p {}
}

.swiper-slide .top .imgbox {
  -webkit-transition: .35s cubic-bezier(.4, 0, .2, 1);
  -o-transition: .35s cubic-bezier(.4, 0, .2, 1);
  transition: .35s cubic-bezier(.4, 0, .2, 1);
  -webkit-box-shadow: 0px 16px 6px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 16px 6px -10px rgba(0, 0, 0, 0.2);
  border-radius: clamp(5px, 2vw, 12px);
  flex: auto;
  overflow: hidden;
}


.tag-wrapper {
  position: absolute;
  left: 12px;
  top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: calc(100% - 24px)
}

.tag-wrapper span {
  border-radius: 13px;
  background: linear-gradient(0deg, #A40DCE 0%, #560DCE 100%);
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .35);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .35);
  padding: 3px 12px;
  text-transform: uppercase;
  letter-spacing: .02em;
  width: auto;
  font-size: 11px;
  color: #FEFCF9;
}

.single .tag-wrapper span {
  background: var(--primary)
}

/* ===== PAGINATION BULLET BASE ===== */
.pagination-navigation-wrap.dark.justify-content-md-end.align-items-center {
  display: flex;
  gap: 1rem;
}

.swiper-pagination-bullet,
button.swiper-pagination-bullet,
.swiper-pagination-bullet.swiper-pagination-bullet {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  margin: 0 4px !important;
  border: none !important;
  background: none !important;
  background-color: transparent !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  opacity: 1 !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
  line-height: 30px !important;
  overflow: visible !important;
}

/* ===== NUMBER SPAN ===== */
.swiper-pagination-bullet span {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: none !important;
  -webkit-transform: none !important;
  font-size: 10px !important;
  line-height: 1 !important;
  z-index: 2 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #3e4e4d;
}

/* ===== SVG CIRCLE ===== */
.swiper-pagination-bullet .rounded-progress {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 30px !important;
  height: 30px !important;
  transform: rotate(-90deg) !important;
  -webkit-transform: rotate(-90deg) !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== PAGINATION WRAP ===== */
.swiper-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
}

.pagination-navigation-wrap .swiper-pagination {
  position: static !important;
  width: auto !important;
  column-gap: 8px !important;
}

.pagination-navigation-wrap .swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 30px !important;
  height: 30px !important;
}

/* ===== SPAN COLOR IN DARK MODE ===== */
.pagination-navigation-wrap .swiper-pagination .swiper-pagination-bullet span {
  font-size: 10px !important;
  color: var(--white) !important;
  transition: .35s cubic-bezier(.4, 0, .2, 1) !important;
}

.pagination-navigation-wrap .swiper-pagination .swiper-pagination-bullet:hover span {
  color: var(--secondary) !important;
}

/* ===== BEFORE PSEUDO (BORDER RING) ===== */
.pagination-navigation-wrap .swiper-pagination .swiper-pagination-bullet::before {
  content: "" !important;
  width: 83% !important;
  height: 83% !important;
  position: absolute !important;
  border-radius: 50% !important;
  left: 8.5% !important;
  top: 8.5% !important;
  border-width: 1px !important;
  z-index: -1 !important;
}

.pagination-navigation-wrap.dark .swiper-pagination-bullet::before {
  border: 2px solid rgba(108, 108, 108, 0.3) !important;
}

/* ===== ACTIVE CIRCLE ANIMATION ===== */
.circle-origin {
  fill: transparent;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}

.swiper-pagination-bullet-active .circle-origin {
  animation: 22s progress;
  -webkit-animation: 22s progress;
}

.pagination-navigation-wrap.dark .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-origin {
  stroke: var(--secondary) !important;
}

@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }

  90% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -125.664px;
  }
}

@-webkit-keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }

  90% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -125.664px;
  }
}

/* ===== ARROW BUTTONS ===== */
.pagination-navigation-wrap .arr {
  width: 30px !important;
  height: 30px !important;
  flex: none !important;
  border: 2px solid var(--primary) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: .35s cubic-bezier(.4, 0, .2, 1) !important;
  cursor: pointer !important;
}

.pagination-navigation-wrap .arr:hover {
  border-color: var(--secondary) !important;
}

.pagination-navigation-wrap .arr:hover svg path {
  fill: var(--secondary) !important;
}

.pagination-navigation-wrap .arr svg path {
  transition: .35s cubic-bezier(.4, 0, .2, 1) !important;
}

.swiper-scrollbar {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 1px;
  position: static !important;
  height: 2px !important;
  width: 100% !important
}

.swiper-scrollbar .swiper-scrollbar-drag {
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1) !important;
  -o-transition-timing-function: cubic-bezier(.4, 0, .2, 1) !important;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1) !important;
  height: 6px !important;
  top: -2px !important;
  -webkit-transition-property: width, left, top, height !important;
  transition-property: width, left, top, height !important;
  -o-transition-property: width, left, top, height !important;
  transition-property: width, left, top, height !important;
  transition-property: width, left, top, height !important;
  -webkit-transition-duration: .35s !important;
  -o-transition-duration: .35s !important;
  transition-duration: .35s !important
}

@media(min-width: 992px) {

  .swiper-scrollbar .swiper-scrollbar-drag:hover,
  .swiper-scrollbar .swiper-scrollbar-drag:active {
    height: 10px !important;
    top: -4px !important;
    width: 168px !important;
    left: -20px !important
  }
}

.swiper-scrollbar.dark {
  background: #262624;
}

.case-study-section .swiper-scrollbar {
  background: #262624;
}

.swiper-scrollbar.dark .swiper-scrollbar-drag {
  background-color: var(--secondary) !important
}

/* circleboxes-section */

.circleboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 8rem;
}

.circlebox {
  width: 270px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121317;
  z-index: 1;
  position: relative;
  margin-top: -1.5rem;
  transform: translate(0, 64px);
  aspect-ratio: 1/1;
  padding: 20px;
  /* important */
}

/* Gradient Border */
.circlebox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */
  border-radius: 50%;
  background: linear-gradient(-90deg, #9E0DCE 0%, #5D0DCE 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@media(min-width: 992px) {
  .circlebox {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0
  }
}

@media(min-width: 1200px) {
  .circlebox {
    width: 250px;
    margin-left: -3rem;
    margin-top: 0
  }
}

@media(min-width: 1320px) {
  .circlebox {
    width: 280px;
  }
}

.circlebox:nth-child(1) {
  margin-left: 0;
  z-index: 5
}

.circlebox:nth-child(2) {
  z-index: 4
}

.circlebox:nth-child(3) {
  z-index: 3
}

.circlebox:nth-child(4) {
  z-index: 2
}

.circlebox:nth-child(5) {
  z-index: 1
}

.circlebox .inner {
  text-align: center
}

.circlebox .inner h3 {
  font-size: 3.625rem;
  margin-bottom: .5rem
}

.circlebox .inner p {
  max-width: 200px;
  margin: 0;
  font-size: 0.95rem;
}

/* our-service-section */
.our-service-section .container-inner {
  margin-left: calc(-1 * clamp(28px, 4vw, 64px));
}

@media (min-width: 992px) {
  .our-service-section .container-inner {
    margin-left: 0;
  }

  .our-service-section .col-lg-6:first-child {
    position: relative;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background-color: #15161B;
  }

  .our-service-section .col-lg-6:first-child::before {
    content: "";
    height: 100%;
    width: 50vw;
    background-color: #15161B;
    position: absolute;
    top: 0;
    right: 100%;
  }

  .focus.focus {
    height: 100%;
    padding-left: 0;
    padding-right: var(--space);
  }

  .sticky {
    position: sticky;
    top: 104px;
    z-index: 3;
  }
}

.focus,
.development,
.seo,
.design {
  padding: var(--space) 0 var(--space) var(--space);
}

.seo {
  border-radius: 0 0 0 var(--radius-lg);
}

.design.design {
  background-color: #15161B;
  border-radius: 0 var(--radius-lg)var(--radius-lg)0;
  position: relative;
  padding-right: var(--space);
}

.development {
  border-radius: var(--radius-lg) 0 0 0;
}

.focus-inner h3 {
  font-size: 3rem;
  margin-bottom: 0.875rem;
}

.focus-inner p {
  font-size: 1.063rem;
  margin: 0;
}

/* client-section */
.client-section {
  position: relative;
}

.client-card {
  background: #15161B;
  padding: 3.75rem;
  border-radius: 1.875rem;
}

.cards-stage {
  position: relative;
  width: 100%;
  height: 260px; /* card ki height ke barabar */
}

.client-card_inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.client-card_img img {
  width: 180px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.client-card_img span {
  font-size: 1.5rem;
  color: var(--white);
  display: block;
}

.client-card_content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0;
  line-height: 1.09;
}

/* logo-section */
.logo-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-img img {
  width: 200px;
  transform-origin: center;
  will-change: transform;
  scale: 0.5;
}

/* global-impact */
.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.impact-item:not(:last-child) {
  border-bottom: 1px solid #626061;
  padding-bottom: 1.875rem;
}

.impact-value .sub-heading {
  font-size: 5.375rem !important;
  color: var(--white);
  background: linear-gradient(0deg, #920CC3 0%, #550CBA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
  font-family: var(--font-TTOctosquaresCond-Bold);
  text-transform: capitalize;
  line-height: 1;
}

.impact-label {
  font-size: 2rem;
  color: #B4B4B4;
  margin: 0;
}

.impact-label span {
  color: var(--white);
  display: block;
}

.impact-map {
  position: relative;
}

.impact-map img {
  width: 100%;
  filter: brightness(0) invert(1);
  /* white map */
  opacity: 0.7;
}

/* Dots */
.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #8b5cf6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* start-your-website */
.start-your-website .main-heading {
  font-size: 9.375rem;
}

.start-your-website .build-website_heading .quote-icon {
  right: 160px;
}

.line-mask {
  overflow: hidden;
  display: block;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  font-family: var(--font-TTOctosquaresCond-Bold);
}

/* ════════════════════════════ FOOTER MAIN (white area) ════════════════════════════ */
.ft-main {
  padding: 73px 0px;
  /* border-top: 1px solid #ebebeb; */
  margin-bottom: 65px;
}

/* ── TOP ROW: subscribe + badges + social ── */
.ft-top {
  padding-bottom: 28px;
  /* border-bottom: 1px solid #e8e8e8; */
  margin-bottom: 32px;
}

/* Subscribe block */
.ft-subscribe__label {
  font-size: 19.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  font-family: var(--font-TTOctosquaresCond-Bold);
}

.ft-subscribe__sub {
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-almarai);
}

.ft-subscribe__form {
  display: flex;
  align-items: center;
  /* border: 1.5px solid #d0d0d0; */
  /* border-radius: 6px; */
  overflow: hidden;
  width: 384px;
}

.ft-subscribe__input {
  flex: 1;
  /* border: none; */
  outline: none;
  padding: 17px 14px !important;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 36px;
}

.ft-subscribe__input::placeholder {
  color: #aaa;
}

.ft-subscribe__btn {
  background: transparent;
  border: none;
  padding: 13px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  transition: background 0.2s;
  margin-left: 15px;
  border-radius: 50px;
}

.ft-subscribe__btn:hover {
  background: #333;
}

.ft-subscribe__btn svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* Badges */
.ft-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 57px;
  margin-top: 70px;
}

.ft-badge {
  width: 56px;
  height: 68px;
  background: #f5f5f5;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border: 1px solid #e8e8e8;
}

.ft-badge__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 4px;
}

.ft-badge__star {
  color: #f0a500;
  font-size: 9px;
}

.ft-badge__label {
  font-size: 7.5px;
  font-weight: 700;
  color: #333;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ft-badge__sub {
  font-size: 6.5px;
  color: #888;
  text-align: center;
  margin-top: 2px;
}

/* Social icons */
.ft-social__label {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.ft-social__icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ft-social__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
  background: #fff;
}

.ft-social__icon:hover {
  opacity: 0.8;
}

/* ── LINKS GRID ── */
.ft-links {}

.ft-col__heading {
  font-size: 16.8px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 42px;
  font-family: var(--font-TTOctosquaresCond-Bold);
  position: relative;

}

.ft-col__heading::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 67%;
  border-bottom: 2px dashed #686868;
}

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

.ft-col__list li {
  margin-bottom: 17px;
}

.ft-col__list a {
  font-size: 17px;
  color: #fff;
  text-decoration: none !important;
  transition: color 0.18s;

  font-family: var(--font-almarai);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-col__list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* contact icons */
.ft-contact-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.ft-contact-icon--email {
  /* background: #fff3cd; */
  color: #b8860b;
}

.ft-contact-icon--phone {
  /* background: #d4edda; */
  color: #155724;
}

.ft-contact-icon--chat {
  /* background: #cce5ff; */
  color: #004085;
}

.ft-contact-icon--help {
  /* background: #f8d7da; */
  color: #721c24;
}

.ft-contact-icon--status {
  /* background: #e2e3e5; */
  color: #383d41;
}

.ft-col__list a.ft-link--underline {
  text-decoration: underline;
  color: #111;
}

/* ════════════════════════════
                                                    FOOTER BOTTOM (yellow bar)
                                                 ════════════════════════════ */
.ft-bottom {
  background: #000;
  padding: 14px 60px;


  %;
}

/* Logo */
.ft-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.ft-logo__text {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  /* margin-left: 40px; */
  line-height: 1;
}

.ft-logo__text span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-top: -2px;
}

.ft-logo__exclaim {
  color: #fff;
}

/* AI Summary pill */
.ft-ai-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border-radius: 999px;
  padding: 0px 11px;
  font-size: 12.5px;
  font-weight: 600;
  color: #111;
  margin-left: 16px;
  cursor: pointer;
  border: 1px solid #000;
  transition: background 0.2s;
}

.ft-ai-pill:hover {
  background: #f0f0f0;
}

.ft-ai-pill__star {
  font-size: 14px;
  color: #f0c800;
}

.ft-ai-pill__caret {
  font-size: 11px;
  color: #555;
  margin-left: 2px;
}

/* Bottom links */
.ft-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.ft-bottom-links a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.15s;
}

.ft-bottom-links a:hover {
  text-decoration: underline;
}

.logo-second-section .sub-heading {
  font-size: 22px !important;
}

.logo-second-section {
  padding-bottom: 5rem;
}


.maserc {
  padding-bottom: 12rem;
}

/*  */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f1a;
  color: #fff;
}

/* Swiper Container */
.mj-swiper-container {
  padding: 60px 20px;
}

.client-card {
  position: sticky;
  top: 20px;
  z-index: var(--card-index, 1);
  transform-origin: top center;
  transition: transform 0.3s ease;
  margin-bottom: 16px;
}

.client-card:nth-child(1) {
  --card-index: 1;
}

.client-card:nth-child(2) {
  --card-index: 2;
}

.client-card:nth-child(3) {
  --card-index: 3;
}

.client-card:nth-child(4) {
  --card-index: 4;
}



.elvaris-slider-section {
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}

.elvaris-swiper {
  width: 100%;
  padding: 0 0 2.5rem !important;
}

.elvaris-swiper .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.elvaris-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  box-sizing: border-box;
  position: relative;
}

.elvaris-card-coffee {
  background: #1a1a1a;
}

.elvaris-card-pixel {
  background: linear-gradient(135deg, #1a3a1a 0%, #0d2e0d 40%, #0a1f0a 100%);
}

.elvaris-card-brand {
  background: linear-gradient(135deg, #1a0a2e 0%, #2a0a4a 50%, #1a0a3a 100%);
}

.elvaris-card-bear {
  background: #3ecfef;
}

.elvaris-card-rave {
  background: #d62b2b;
}

.elvaris-card-label {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
}

.elvaris-card-label.elvaris-dark {
  color: #111;
}

.elvaris-coffee-mug {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.elvaris-pixel-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  display: grid;
  grid-template-columns: repeat(9, 14px);
  grid-template-rows: repeat(8, 14px);
  gap: 1px;
}

.elvaris-pixel {
  border-radius: 2px;
}

.elvaris-brand-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.elvaris-logo-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.elvaris-logo-bar {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6a9fff, #a78bfa, #60a5fa);
}

.elvaris-logo-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.elvaris-bear-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 130px;
  height: 130px;
}

.elvaris-rave-graphic {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 90px;
  height: 180px;
}

.elvaris-swiper .swiper-pagination-bullet {
  background: var(--color-text-secondary);
  opacity: 0.4;
  width: 6px;
  height: 6px;
}

.elvaris-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-text-primary);
}

.srefefn-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}



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

.pkg-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: transparent;
  margin-top: 3rem;
}

.pkg-box {
  background: #111118;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.pkg-header {
  background: var(--text-gradient);
  padding: 5px 20px;
  text-align: center;
  border-radius: 7px;
}

.pkg-header h2 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pkg-body {
  padding: 22px 24px 24px;
}

.pkg-price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 20px;
}

.pkg-price-main {
  color: var(--white);
  background: linear-gradient(0deg, #920CC3 0%, #550CBA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 800;
  font-family: var(--font-TTOctosquaresCond-Bold);
  line-height: 1;
}

.pkg-price-old {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pkg-price-old s {
  color: #aaa;
  font-size: 15px;
  font-weight: 500;
}

.pkg-price-old span {
  color: #aaa;
  font-size: 13px;
  margin-top: 2px;
}

.pkg-divider {
  height: 1px;
  background: #2a2a3a;
  margin-bottom: 18px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d0e0;
  font-size: 13.5px;
  line-height: 1.4;
}

.pkg-arrow {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.pkg-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pkg-btn {
  background: var(--text-gradient);
  color: #fff;
  border: none;
  border-radius: 46px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.pkg-btn:hover {
  background: #6a30cc;
}

.pkg-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pkg-chat-icon {
  width: 36px;
  height: 36px;
  background: #1e1e2e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pkg-chat-text {
  display: flex;
  gap: 10px;
}

.pkg-chat-text small {
  color: #888;
  font-size: 10px;
}

.pkg-chat-text span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.package-box-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer {
  position: relative;
  overflow: hidden;
}

.footer-bottom-text h2 {
  font-size: clamp(1rem, -2.225rem + 16.125vw, 17.125rem);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: .9;
  opacity: 0.5;

  /* Gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* White stroke */
  -webkit-text-stroke: 2px rgb(255 255 255 / 20%);

  /* Animation */
  animation: marquee-scroll 12s linear infinite;
}

.footer-bottom-text {
  overflow: hidden;
  width: 100%;
  position: absolute;
  bottom: -4rem;
  z-index: -1;
}

/* Duplicate text for seamless loop */
/* HTML mein do span/h2 chahiye */

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.mj-container {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}

.mj-card_wrapper {
  /* grid-column-gap: clamp(2.5*1rem,((2.5 - ((4 - 2.5)/(108 - 20)*20))*1rem + ((4 - 2.5)/(108 - 20))*100vw),4*1rem);
  grid-row-gap: clamp(2.5*1rem,((2.5 - ((4 - 2.5)/(108 - 20)*20))*1rem + ((4 - 2.5)/(108 - 20))*100vw),4*1rem); */
  width: max-content;
  padding-left: 100vw;
  padding-right: 100vw;
  display: flex;
}

.mj-card {
  background: #0E0F11;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
  flex-flow: column;
  width: 21vw;
  align-items: stretch;
  padding: 6rem 2rem;
  display: flex;
  transform: translateZ(0);
  margin-right: 40px;
}

.mj-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: radial-gradient(circle at bottom right,
  #6a0dad 0%,
  #3b0a57 2%,
  #0b0b0f 39%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mj-card::after {
  content: "";
  position: absolute;
  top: 21%;
  left: 82%;
  background-image: url(../images/pp.png);
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mj-card:hover::before {
  opacity: 1;
}

.mj-card-title {
  font-size: 46px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 0.9;
}

.mj-card-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-top: 12px;
}

.mj-card:hover {
  transform: translateY(-10px);
}

.mj-section {
  padding-top: 5rem;
}

.footer-shape {
  position: absolute;
  width: 900px;
  height: 682px;
  background: #730BBE;
  opacity: 20%;
  border-radius: 1.25rem;
  filter: blur(250px);
  bottom: -25rem;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}

p .line-mask {
  display: inline !important;
}


.how-works_card-new {
  /* background: var(--card-bg); */
  padding: 3em 2.25em;
  border-radius: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  justify-content: center;
  gap: 0rem;

}

.how-works_card-new h4 {
  font-size: 5rem;
  line-height: 0.9;
}

.about-new-section {
  padding-top: 15rem;
  padding-bottom: 16rem;
  background-color: #0b0f19;
  z-index: -1;
}

.mv-section {
  position: relative;

}

.mv-section::before {
  z-index: -1;
  content: "";
  position: absolute;
  background-image: url(../images/light-logo.png);
  background-size: contain;
  background-position: center, center;
  background-repeat: no-repeat;
  width: 100%;
  height: 328px;
  top: 66px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-card {
  padding: 20px 30px;
  border-radius: 31px;
  background: #14151A;
  padding: 60px 40px;
  box-sizing: border-box;
  width: 100%;
  min-height: 382px;
  margin-top: 60px;
}

.mv-heading {
  font-size: clamp(22px, 3.5vw, 58px);
  font-weight: 900;
  font-family: var("--font-TTOctosquaresCond-Bold");
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 22px 0;
  text-align: center;
}

.mv-para {
  font-size: clamp(12px, 1.3vw, 18px);
  color: #ffff;
  opacity: 0.7;
  line-height: 1.7;
  font-family: var(--font-almarai) !important;
  text-align: center;
  margin: 0 0 18px 0;
  font-weight: 500;
}

.mv-para:last-child {
  margin-bottom: 0;
}

.mv-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.mv-diamond-wrap {
  position: relative;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .mv-section {
    padding: 40px 16px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-divider {
    padding: 16px 0;
  }

}

.ci-section {
  /* background: #16151c; */
  padding: 50px 40px;
  box-sizing: border-box;
  width: 100%;
  font-family: Arial, sans-serif;
}

.ci-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.ci-card {
  padding: 30px 40px;
  text-align: center;
  position: relative;
}

.ci-card:first-child {
  background: linear-gradient(135deg, #1e1630 0%, #16151c 60%);
  border-radius: 8px 0 0 8px;
}

.ci-label {
  font-family: var(--font-TTOctosquaresCond-Bold);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
}

.ci-sub {
  font-size: 11px;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-almarai);
  margin: 0 0 20px 0;
}

.ci-value-purple {
  font-family: var(--font-TTOctosquaresCond-Bold);
  font-size: clamp(14px, 2.2vw, 30px);
  font-weight: 900;
  color: var(--white);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-decoration: none;
  display: block;
}

.ci-value-purple:hover {
  color: #b455ff;
}

.ci-value-orange {
  font-family: var(--font-TTOctosquaresCond-Bold);
  font-size: clamp(14px, 2.2vw, 30px);
  font-weight: 900;
  color: var(--white);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin: 0;
  display: block;
}

@media (max-width: 600px) {
  .ci-section {
    padding: 30px 16px;
  }

  .ci-grid {
    grid-template-columns: 1fr;
  }

  .ci-card:first-child {
    border-radius: 8px 8px 0 0;
  }

  .ci-card {
    padding: 24px 20px;
  }
}

.cf-section {
  background: #111118;
  padding: 40px 30px;
  box-sizing: border-box;
  width: 100%;
  font-family: Arial, sans-serif;
}

.cf-wrap {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-almarai);
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: #fff;
  color: #ffffff;
  background-color: #000;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: #fff;
}

.cf-select {
  cursor: pointer;
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.cf-textarea {
  border-radius: 18px;
  resize: none;
  height: 130px;
  padding-top: 16px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #d0ccc8 0%, #e8e4df 50%, #d0ccc8 100%);
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.cf-btn:hover {
  opacity: 0.88;
}

.cf-footer {
  text-align: center;
  color: #fff;
  font-family: var(--font-almarai);
  font-size: 24px;
  margin: 4px 0 0 0;
}

@media (max-width: 500px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-section {
    padding: 30px 16px;
  }
}


.faq-section {
  background: #111118;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.faq-grid {
  /* display: grid; */
  grid-template-columns: 320px 1fr;
  min-height: 340px;
  align-items: stretch;
}

.faq-img-col {
  position: relative;
  overflow: hidden;
}

.faq-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 24px 24px 0;
  display: block;
}

.faq-content {
  padding: 40px 36px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-title-top {
  font-family: var(--font-TTOctosquaresCond-Bold);
  font-size: 3rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

.faq-title-bottom {
  display: block;
  font-size: 3.2rem !important;
  font-family: var(--font-rock-salt);
  line-height: 1.7;
  color: var(--white);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  overflow: unset;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1.5px solid #fff;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-family: var(--font-almarai◘);
  font-weight: 400;
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none !important;
  gap: 12px;
  font-family: var(--font-almarai);

}

.faq-question:hover {
  color: #ffffff;
}

.faq-arrow {
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  font-size: 18px;
  color: #686868;
  line-height: 1.7;
  font-family: var(--font-almarai);
  margin: 0;
  padding: 0 18px 16px 18px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

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

  .faq-img-col {
    height: 220px;
  }

  .faq-img-col img {
    border-radius: 0 0 24px 24px;
  }

  .faq-content {
    padding: 28px 20px;
  }
}




.why-table-wrap {
  width: 100%;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto;
}

.why-table-head {
  /* background: #fff; */
}

.why-table-head,
.why-epic-row,
.why-feat-row {
  display: grid;
  grid-template-columns: 3.4fr 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #1e1e1e;
}


.why-head-logo {
  display: flex;
  align-items: center;
  padding: 14px 18px;
}

.why-head-col {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* border-left: 1px solid #e8e8e8; */
  font-family: var(--font-almarai);
  padding: 14px 8px;
  text-align: center;
}

.why-epic-row {
  background: var(--text-gradient);
}

.why-table-head,
.why-epic-row,
.why-feat-row {
  display: grid;
  grid-template-columns: 3.4fr 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #1e1e1e;
}

.why-feat-label {
  padding: 16px 18px;
}

.why-feat-check {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #1e1e1e;
  padding: 12px 8px;
}

.why-table-head,
.why-epic-row,
.why-feat-row {
  display: grid;
  grid-template-columns: 3.4fr 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #1e1e1e;
}

.why-feat-check svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
}

.why-epic-check {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #000;
  padding: 40px 8px;
  /* margin: 30px; */
  /* border-radius: 13px; */
}

.why-epic-check svg {
  width: 24px;
  height: 24px;
  stroke: #000;
  stroke-width: 2;
  fill: none;
}


.why-epic-label {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background-color: #000;
}


.why-feat-title {
  font-size: 1.42rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-almarai);
}

.why-feat-desc {
  font-size: 1rem;
  color: #fff;
  line-height: 1.45;
  font-family: var(--font-almarai);
  width: 79%;
}

.why-me-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}





.portfolio-Box {
  display: block;
  height: 300px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.portfolio-Box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.portfolio-Box:hover img {
  transform: scale(1.2);
}

.portfolioInnerSec .row .row {
  gap: 2rem 0;
}

.portfolioInnerSec .nav-tabs {
  border-bottom: 0;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.portfolioInnerSec .heading {
  color: var(--white);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

.portfolioInnerSec .nav-tabs .nav-link.active {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  filter: none;
  font-family: var(--font-almarai);
}


.portfolioInnerSec .nav-tabs {
  border-bottom: 0;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  margin-top: 3rem;
  font-family: var(--font-almarai);

}

.portfolioInnerSec .nav-tabs .nav-link {
  background: var(--text-gradient);
  color: #fff !important;
  font-weight: 400;
  font-size: 0.8rem !important;
  padding: 9px 22px !important;
  /* border: none; */
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 39px;
  font-family: 'Lato' !important;
  font-weight: 600 !important;
  font-family: var(--font-almarai) !important;

}

.portfolioInnerSec .nav-tabs .nav-item.show .nav-link,
.portfolioInnerSec .nav-tabs .nav-link.active,
.portfolioInnerSec .nav-tabs .nav-link:hover {
  color: var(--primary);
  background-color: var(--primary);
  border-color: var(--primary);
  filter: none;
}

/* portfolio page end */
.packagesCard .themeBtn:hover {
  color: var(--secondary-color);
  box-shadow: 0 0 0 2px var(--secondary-color);
}


/* Dropdown container */
.header-main__nav-menu li.has-dropdown {
  position: relative;
}

/* Dropdown menu hidden by default */
.header-main__nav-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 999;
  list-style: none;
  margin: 0;
}

/* Hover pe show karo */
.header-main__nav-menu li.has-dropdown:hover .dropdown {
  display: block;
}

/* Dropdown links */
.header-main__nav-menu .dropdown li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
}

.header-main__nav-menu .dropdown li a:hover {
  background: #f5f5f5;
  color: var(--primary);
}

.wdwdwdwd {
  padding-top: 6rem;
}

.faq-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.inner-banner-bg::before {  
  background: linear-gradient(0deg, #111216 8%, #111216 100%);
}

.inner-banner-bg img{
  opacity: 20%;
}