@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --purple: #2f035b;
  --overly-purple: linear-gradient(
    0deg,
    rgba(47, 3, 91, 1) 0%,
    rgba(47, 3, 91, 0.241) 100%
  );
  --white: #ffffff;
  --pink: #eb3678;
  --black: #000000;
  --heading-font: "Montserrat", serif;
  --primary-font: "Montserrat", serif;
  --purple-90: #3d0178;
  --purple-110: #330a5c;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--primary-font);
  transition: mix-blend-mode 0.3s ease;
}

.container-lg,
.container-fluid {
  padding: 0 !important;
}

.row {
  margin: 0 !important;
}

::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 100px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: var(--purple);
}

::-webkit-scrollbar {
  width: 4px !important;
}

p {
  margin: 0 !important;
  padding: 0 !important;
}

.logo_img {
  width: 170px;
}

nav{
    background: transparent;
      transition: background 0.5s ease;
}

.nav_options_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  height: 100%;
}

.nav_options_container .box {
  background-color: var(--purple-90);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 19px;
  transition: all 0.3s ease;
  user-select: none;
}

.nav_options_container .box:hover {
  transform: scale(0.96);
}

/* Specific Grid Placement */
.nav_options_container .about {
  grid-column: 1 / 1;
  grid-row: 1 / 4;
  background: url("../images/about_nav.webp")
    no-repeat center center;
  background-size: cover;
  min-height:200px;
}

.nav_options_container .about a {
  color: var(--purple-90);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
}

.nav_options_container .archive {
  background: url("../images/services_nav.webp")
    no-repeat center center;
  background-size: cover;
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  direction: rtl;
  min-height:120px;
}

.nav_options_container .socials {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  min-height:200px;
}

.nav_options_container .contact {
  grid-column: 3 / 3;
  grid-row: 1 / 2;
  display: flex;
  justify-content: end;
  align-items: end;
  min-height:120px;
}

.nav_options_container .contact a,
.nav_options_container .contact p,
.nav_options_container .weather a,
.nav_options_container .weather p,
.nav_options_container .clock a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
}

.nav_options_container .contact a svg,
.nav_options_container .contact p svg,
.nav_options_container .weather p svg,
.nav_options_container .weather a svg,
.nav_options_container .clock a svg {
  flex: none;
  width: 50px;
  height: 50px;
  stroke-width: 2.5px;
}

.nav_options_container .weather {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  display: flex;
  justify-content: end;
  align-items: end;
  min-height:120px;
}

.nav_options_container .clock {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
  display: flex;
  justify-content: end;
  align-items: end;
  background: var(--pink);
  min-height:120px;
}

button.navbar-toggler:focus {
  box-shadow: none !important;
}

button.navbar-toggler {
  all: unset;
  color: white;
border: 2px solid white;
    border-radius: 100%;
    padding: 8px;
    backdrop-filter:blur(20px);
}

button.navbar-toggler svg {
  width: 30px;
  height: 30px;
}

.nav_div {
  clip-path: circle(0%);
}

.hero_section {
  width: 100%;
  min-height:750px;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  overflow: hidden;
}

.overly_purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--overly-purple);
  backdrop-filter: blur(2px);
}

.highlight_text span {
  color: var(--pink) !important;
}

.heading_span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.heading_span div {
  overflow: hidden;
  user-select: none;
}

.heading_span div span {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 8.5vw;
  line-height: 6rem;
  font-weight: 700;
  overflow: hidden;
  display: inline-block;
}

.service_nav_card {
  background: white;
  padding: 5px;
  border-radius: 13px;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.service_nav_card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: 10px;
}

.menu-text {
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.menu-text.hidden {
  opacity: 0;
  transform: translateY(-5px);
}

.menu-text.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  background: var(--purple) !important;
}

.hero_content_box_outer {
  padding: 1.5px;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.2)
    ),
    linear-gradient(92.5deg, #c5aede 2.84%, #5900b0 97.45%);
  border-radius: 12px;
  overflow: hidden;
}

.hero_content_box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 0;
  background: var(--purple);
  backdrop-filter: blur(10px);
}

.hero_content_box p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.hero_section_btn {
  background: var(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
  color: var(--white);
  padding: 30px;
  border-radius: 100%;
}

.heading_three {
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 600;
}

.boxes {
  width: 100%;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxes a {
  text-decoration: none;
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.boxes video {
  width: 100%;
  height: 220px;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.boxes div {
  background: #000000a0;
}

.client_logo {
  background: var(--purple-90);
}

.client_logo img {
  width: 150px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
}

.circle_client {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 100%;
  background: var(--pink);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle_client svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.service_section {
  height: 100vh;
  width: 100%;
  background: var(--purple);
  overflow: hidden;
  position: relative;
}

.gradient_svg {
  width: 60%;
  height: 60%;
}

.layers {
  mix-blend-mode: color-dodge;
}

.layers img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.layer_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100vw;
  height: 100vh;
}

.layer_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100vw;
  height: 76vh;
}

.layer_3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100vw;
  height: 56vh;
}

.layer_4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100vw;
  height: 40vh;
}

#serviceText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 5;
  opacity: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 4rem;
}

.services_section {
  background: var(--purple);
}

.service_card {
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 75vh;
  width: 70vw;
  min-height: 550px;
  margin-right: auto;
  margin-left: auto;
  backdrop-filter: blur(10px);
  user-select: none;
  transition: all 0.3s ease;
}

.service_card .img_decor {
  width: 50%;
  position: absolute;
  top: -50%;
  right: -25%;
  z-index:0;
  filter: invert(1);
}

.sticky_parent {
  position: sticky;
}

.sticky_parent .service_card.blurred .img_decor {
  animation: img_rotate 1s linear forwards;
}

@keyframes img_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

.sticky_parent.one {
  top: 10%;
}

.service_card.one {
  border: 1px solid #ff6bcb;
  background: linear-gradient(to right, #2f035b, #6a0572, #ff6bcb);
}

.service_card.two {
  border: 1px solid #00bcd4;
  background: linear-gradient(to right, #2f035b, #4a148c, #00bcd4);
}

.service_card.three {
  border: 1px solid #ffcc80;
  background: linear-gradient(to right, #2f035b, #702963, #ffcc80);
}

.service_card.four {
  border: 1px solid #00acc1;
  background: linear-gradient(to right, #2f035b, #0d47a1, #00acc1);
}

.service_card.five {
  border: 1px solid #cb23d7;
  background: linear-gradient(to right, #2f035b, #8e44ad, #cb23d7);
}

.service_card.six {
  border: 1px solid #50e3c2;
  background: linear-gradient(to right, #2f035b, #4a90e2, #50e3c2);
}

.blurred {
  transform: scale(0.94);
  transition: all 0.3s ease;
}

.batch {
  background: var(--purple-110);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 7px;
}

.batch p {
  color: var(--white);
  font-weight: 600;
}

.service_title_content {
  padding: 40px 0 40px 0;
  position:relative;
  z-index:10;
}

.service_title_content h2 {
  font-size: 4.2svw;
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.service_title_content p {
  width: 65%;
  margin-left: auto !important;
  margin-right: auto !important;
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.circle_dots {
  width: 12%;
  animation: rotating 7s linear infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.detail_btn {
  background: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--purple) !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.detail_absolute_btn{
    position:absolute;
    bottom:0;
    right:0;
    z-index:20;
}

.testimonial_section {
  background-color: var(--purple);
  height: 100vh;
  position: relative;
}

.testimonial_title {
  color: var(--white);
  font-family: var(--heading-font);
  text-align: center;
  font-size: 20vw;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}

.testimonial_title_overly {
  color: var(--pink);
  text-align: center;
  font-family: var(--heading-font);
  font-size: 20vw;
  font-weight: 700;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  text-transform: uppercase;
}

.testimonial_parent {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0%, -50%);
  height: 500px;
  width: 100%;
  white-space: nowrap;
}

.test_card {
  background: #5801af;
  border-radius: 8px;
  width: 450px;
  white-space: wrap;
  flex: none;
}

.test_card h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.test_card h6 {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
}

.test_card p {
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
  text-align: justify;
  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 8;*/
  /*line-clamp: 8;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
}

svg {
  flex: none;
}

.portfolio_section {
  background: var(--purple);
  user-select: none;
}

.portfolio_slider .swiper-slide {
  position: relative;
  overflow: hidden;
  padding: 5px !important;
}

.port_next,
.port_prev {
  background: var(--white);
  border: none;
  color: var(--purple);
  border-radius: 100%;
  padding: 10px;
}

.port_next svg,
.port_prev svg {
  width: 24px;
  height: 24px;
}

.blogs_section {
  background: var(--purple);
}

.blog_prev,
.blog_next {
  background: var(--white);
  border: none;
  color: var(--purple);
  border-radius: 100%;
  padding: 10px;
}

.blog_prev svg,
.blog_next svg {
  width: 24px;
  height: 24px;
}

.blog_card {
  border-radius: 13px;
  border: 2px solid rgba(255, 255, 255, 0.362);
}

.blog_card img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 13px;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s ease-in-out;
}

.blog_card:hover img {
  transform: scale(1.1);
}

.blog_card a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.blog_title {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.line_clamp_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
  font-size: 14px;
  line-height: 23px;
}

.blog_date {
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
}

.blogs_overly {
  background: linear-gradient(
    180deg,
    rgba(47, 3, 91, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  border-radius: 13px;
}

.blog_card div.bg-white {
  transition: all 0.2s linear;
}

.accordion-button:focus {
  box-shadow: none !important;
}

button.accordion-button {
  background-color: transparent !important;
  color: var(--white) !important;
  font-size: 20px;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.accordion-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(171, 171, 171, 0.06) 100%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.342) !important;
  user-select: none;
  transition: all 0.1s linear;
}

.accordion-item:hover {
  transform: scale(1.02);
}

.accordion-button::after {
  width: 25px !important;
  height: 25px !important;
  background-image: url(../images/accordian-icon.svg) !important;
  background-size: cover !important;
}

.accordion-item:has(.accordion-collapse.show) {
  background: linear-gradient(0deg, #8265b5, #8265b5),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(171, 171, 171, 0.06) 100%
    ) !important;
}

.svg_cover {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.purple_cover {
  background: var(--purple);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(1%);
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: transform 1s ease-in-out;
}

.footer_h2 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--heading-font);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer_h2_overly {
  color: var(--pink);
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--heading-font);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  overflow: hidden;
}

.lets_talk_parent {
  width: fit-content;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  user-select: none;
}

.lets_talk_parent .footer_h2_overly {
  transition: all 0.3s linear;
}

.lets_talk_parent:hover .footer_h2_overly {
  width: 100%;
}

.footer_logo {
  width: 200px;
}

.footer_links li {
  position: relative;
}

.footer_links img {
  width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(20deg);
  pointer-events: none;
  opacity: 0;
  z-index: 4;
}

.footer_links li a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.footer_links li a::after {
  content: "";
  width: 0%;
  height: 1.5px;
  background: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}

@keyframes underlineAppear {
  0% {
    width: 0%;
    transform: translateX(0%);
  }
  100% {
    width: 100%;
    transform: translateX(0%);
  }
}

/* Keyframe animation for hover out (underline disappears to the right) */
@keyframes underlineDisappear {
  0% {
    width: 100%;
    transform: translateX(0%);
  }
  100% {
    width: 100%;
    transform: translateX(110%);
  }
}

.footer_links li a:hover::after {
  animation: underlineAppear 0.3s ease-in-out forwards;
}

.footer_links li a:not(:hover)::after {
  animation: underlineDisappear 0.3s ease-in-out forwards;
}

.footer_social_icons svg {
  width: 37px;
  height: 37px;
}

input:focus {
  outline: none !important;
}

.newsletter_input::placeholder {
  color: var(--white);
}

.newsletter_input {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--white);
  padding: 10px 5px;
  width: 100%;
  color: var(--white);
}

.newsletter_input + button {
  background: transparent;
  border: none;
  color: var(--purple);
  background: var(--white);
  padding: 9px 20px;
  border-radius: 5px;
}

.our_boxes {
  background: var(--purple);
}

.our_stories {
  background: var(--white);
  height: 80vh;
  width: 80vw;
  border-radius: 20px;
  overflow: hidden;
  flex: none;
  user-select: none;
  position: relative;
}

.our_stories .border_bottom {
  border-bottom: 2px solid var(--purple);
}

.our_stories .row {
  width: 80vw;
}

.our_stories:last-child {
  width: 70vw;
}

.our_stories:last-child .row {
  width: 70vw;
}

.border_bottom .numb {
  background: var(--pink);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}

.border_bottom h2 {
  color: var(--purple);
  font-weight: 600;
  white-space: nowrap;
  position: absolute;
  top: 4%;
  left: 4%;
  min-width: 300px;
  transform-origin: center;
}

.our_stories_img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--purple);
}

.view_btn {
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 7px;
}

.banner_section {
  height: 400px;
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.banner_title {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white);
  overflow: hidden;
  margin: 0;
}

.banner_title span {
  display: inline-block;
}

.heading_five {
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.heading_five svg {
  flex: none;
  width: 22px;
  height: 22px;
}

.heading_two {
  font-size: 3rem;
  line-height: 3.7rem;
  font-weight: 600;
  color: var(--white);
}

.ltr_spacing {
  letter-spacing: 0.5px;
  line-height: 24px;
  line-height: 28px;
}

.about_box {
  overflow: hidden;
  border: 1px solid #5701b0;
}

.about_box p {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-wrap-style: balance;
}

.read_more {
  border: 1px solid #5701b0;
  border-radius: 10px;
  padding: 13px 30px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.experience_img img:nth-child(1) {
  width: 50%;
  height: 540px;
  object-fit: cover;
  border-radius: 20px;
}

.experience_img img:nth-child(2) {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 20px;
}

.exp_box {
  background: #5701b0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 3px 3px 0px 1px white;
}

.exp_box h4 {
  font-size: 3rem;
}

.exp_box p {
  line-height: 20px;
}

.splide__arrows,
.splide__pagination {
  display: none !important;
}

.team_card {
  position: relative;
}

.team_card a {
  position: absolute;
  top: 4%;
  right: 4%;
  z-index: 1;
  background: #5800b0a8;
  backdrop-filter: blur(10px);
  border: 1px solid #5601b0b4;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s linear;
}

.team_card:hover a {
  opacity: 1;
  transform: scale(1);
}

.team_card a svg {
  width: 25px;
  height: 25px;
}

.team_card img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.team_card .team_card_content {
  padding: 20px 17px 20px 17px;
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%, 0) scale(0);
  width: 90%;
  height: auto;
  border-radius: 10px;
  background: #5800b0a8;
  backdrop-filter: blur(10px);
  border: 1px solid #5601b0b4;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s linear;
}

.team_card:hover .team_card_content {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.team_card .team_card_content h4 {
  color: white;
  font-weight: 500;
  margin-bottom: 3px;
}

.team_card .team_card_content p {
  color: white;
  font-weight: 400;
}

.journey_box svg {
  width: 80px;
  height: 80px;
  stroke: white;
  stroke-width: 1px;
}

@keyframes stroke-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Default style for paths (no animation until visible) */
.animated_svg path {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

/* Animated style applied when in the viewport */
.animated_svg path.animated {
  animation: stroke-draw 2s ease forwards;
}

.spacer_1 {
  height: 300px;
}

.sticky_parent {
  position: sticky;
  top: 30%;
}

.development_card {
  border: 1px dashed rgba(255, 255, 255, 0.805);
  border-radius: 10px;
  position: relative;
  height: 100%;
}

.development_card .icon_box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.development_card .icon_box svg {
  width: 40px;
  height: 40px;
  stroke:#330A5C;
  stroke-width:2;
}

.approach_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.approach_box .index_div {
  width: 65px;
  height: 65px;
  display: inline-block;
  border: 1px dashed rgba(255, 255, 255, 0.805);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.approach_box h4 {
  color: white;
  font-weight: 600;
}

.approach_box p {
  color: white;
  letter-spacing: 0.2px;
}

.content_approach_box {
  border-left: 2.5px solid white;
  padding-left: 15px;
  position: relative;
}

.content_approach_box::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-65%, 0px);
  z-index: 1;
}

/* .reviews_card{
  background: white;
  width: 100%;
  padding: 10px;
} */

.testimonial_card {
  background: #eee8f5;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  height:100%;
}

.testimonial_card img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
}

.testimonial_card .title {
  color: black;
  font-weight: 650;
  margin: 0;
}

.testimonial_card .subtitle {
  color: #868686;
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}

.testimonial_card .content {
  color: black;
  font-weight: 550;
  letter-spacing: 0.3px;
  line-height: 22px;
  text-wrap-style: balance;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial_card .rating_img img {
  width: 120px;
  height: auto;
}

.services_card_2 {
  border-radius: 20px;
  background: #5601b0c7;
  border: 1px solid #5701b0;
  padding: 24px;
}

.services_card_2 .icon_border {
  border: 1.5px dashed white;
  padding: 12px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services_card_2 svg {
  width: 40px;
  height: 40px;
}

.services_card_2 h4.services_title {
  color: white;
  font-weight: 600;
}

.services_card_2 p.services_description {
  color: rgba(255, 255, 255, 0.815);
  font-weight: 600;
  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 8;*/
  /*line-clamp: 8;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  margin-top: 6px;
}

.services_card_2 .services_link {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid white;
  padding: 7px 20px;
  border-radius: 30px;
}

.seo_square {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
}

.content_view {
  letter-spacing: 0.3px;
  line-height: 28px;
  text-wrap-style: pretty;
}

.read_more .ringing {
  transition: all 0.2s linear;
}

.read_more:hover .ringing {
  animation: ring 1.5s infinite;
  transform-origin: center;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.custom_input_style {
  padding: 10px 15px;
  background: transparent;
  width: 100%;
  border: 1.5px solid white;
  color: white;
  border-radius: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.form-select:focus,
.form-control:focus {
  box-shadow: none !important;
}

.form-select option,
.form-control {
  font-weight: 500 !important;
}

.border_gradient {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(171, 171, 171, 0.06) 100%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.342) !important;
}

.services_card_2 {
  user-select: none;
}

img {
  user-select: none;
}

.fs-7 {
  font-size: 14px;
}

.line_fill {
  background: white;
  height: 100%;
  width: 4px;
  position: absolute;
  top: 50%;
  left: 46%;
  z-index: 1;
  transform: translate(-120%, -50%);
  border-radius: 10px;
}

.svg_radio_dot svg {
  width: 39px;
  height: 39px;
}

.svg_radio_dot svg circle:nth-child(1) {
  stroke: white;
}

.svg_radio_dot svg circle:nth-child(2) {
  stroke: #eb3678;
  fill: #eb3678;
}

.flow_svg {
  padding: 10px;
}

.flow_svg svg {
  width: 30px;
  height: 30px;
}

.nav-tabs li button.active {
  background: #330a5c !important;
  border: 0 !important;
  font-weight: 550;
  font-size: 16px;
  color: white !important;
  border-radius: 10px !important;
}

.nav-tabs li button {
  background: transparent !important;
  border: 0 !important;
  font-weight: 550;
  font-size: 16px;
  color: #330a5c !important;
  border-radius: 10px !important;
}

.contact_svg svg {
  stroke: white;
  width: 60px;
  height: 60px;
  stroke-width: 1.5px;
}

textarea:focus {
  outline: none !important;
}

/* Parent container needs position: relative for pinning */
.design_process {
  position: relative;
  width: 100%;
  height: 600px; /* or min-height: 100vh if you want full-viewport pinning */
  margin: 0 auto !important;
  overflow: hidden;
  background: var(--pink);
}

/* Upper and lower layers */
.up_layer,
.down_layer {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  overflow: hidden;
  background: #eee8f5;
}

.up_layer {
  top: 0;
}

.down_layer {
  bottom: 0;
}

.up_layer h3,
.down_layer h3 {
  font-size: 8vw;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #330a5c;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

/* Adjust the text positioning for the reveal effect */
.up_layer h3 {
  transform: translateY(50%);
}

.down_layer h3 {
  transform: translateY(-50%);
}

.circle_points_row {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(150%, -50%);
}

.process_card {
  border: 1.5px solid #330a5c;
  border-radius: 14px;
  width: 350px;
  flex-shrink: 0 !important;
  background: radial-gradient(
      circle at 25% 25%,
      /* position the highlight */ rgba(255, 255, 255, 0.3),
      /* white highlight in the center */ rgba(255, 255, 255, 0) 40%
    ),
    linear-gradient(135deg, #330a5c 0%, #4b2485 100%);
  background-blend-mode: screen;
}

.process_card svg {
  width: 50px;
  height: 50px;
  stroke:white;
  stroke-width:1.5px;
}

.process_card p {
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 5;*/
  /*line-clamp: 5;*/
  /*-webkit-box-orient: vertical;*/
  /*white-space: wrap;*/
}

.tools_section {
  opacity: 0;
}

.case_studies_card img {
  width: 100%;
  height: 250px;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.case_studies_card a {
  padding: 12px 18px;
}

.border_br {
  border-bottom: 1px solid rgba(255, 255, 255, 0.573);
  border-right: 1px solid rgba(255, 255, 255, 0.573);
}

.border_b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.573);
}

.border_r {
  border-right: 1px solid rgba(255, 255, 255, 0.573);
}

.pentagon_div {
  font-size: 1vw;
}

.pentagon_div h5 {
  margin-bottom: 0;
  font-size: 1.7em;
  user-select: none;
}

.pentagon_div h5:nth-child(1) {
  position: absolute;
  top: 19%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.pentagon_div h5:nth-child(2) {
  position: absolute;
  top: 38%;
  left: 10%;
  z-index: 1;
}

.pentagon_div h5:nth-child(3) {
  position: absolute;
  top: 38%;
  right: 11%;
  z-index: 1;
}

.pentagon_div h5:nth-child(4) {
  position: absolute;
  top: 58%;
  right: 36%;
  transform: translateX(-50%);
  z-index: 1;
}

.pentagon_div h5:nth-child(5) {
  position: absolute;
  bottom: 19%;
  left: 10%;
  z-index: 1;
}

.pentagon_div h5:nth-child(6) {
  position: absolute;
  bottom: 19%;
  right: 13%;
  z-index: 1;
}

.width_set svg {
  width: 60%;
}

.team img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  object-position: top;
}

.team .team_designation {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  background: transparent;
  user-select: none;
  transition: all 0.2s linear;
}

.team:hover .team_designation {
  top: 0;
  background: linear-gradient(
    0deg,
    rgba(47, 3, 91, 1) 0%,
    rgba(47, 3, 91, 0.241) 100%
  );
}

.all_service_card{
    height:100%;
}

/*.all_service_card img.circle_dots{*/
/*    width:70px;*/
/*    height:70px;*/
/*}*/

.all_service_card a{
    color: #5801b0;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    line-height: 14px;
    font-size: 12px;
    background: white;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
}

.all_service_card .serv_batch{
    color:white;
    background:#330A5C;
}

.all_service_card .absolute_img{
    position: absolute;
    top: -50%;
    right: -25%;
    z-index: 0;
    width: 50%;
    filter: brightness(10);
}

.all_service_card.card_one{
    border: 1px solid #ff6bcb;
    background: linear-gradient(to right, #2f035b, #6a0572, #ff6bcb);
}

.all_service_card.card_two {
  border: 1px solid #00bcd4;
  background: linear-gradient(to right, #2f035b, #4a148c, #00bcd4);
}

.all_service_card.card_three {
  border: 1px solid #ffcc80;
  background: linear-gradient(to right, #2f035b, #702963, #ffcc80);
}

.all_service_card.card_four {
  border: 1px solid #00acc1;
  background: linear-gradient(to right, #2f035b, #0d47a1, #00acc1);
}

.all_service_card.card_five {
  border: 1px solid #cb23d7;
  background: linear-gradient(to right, #2f035b, #8e44ad, #cb23d7);
}

.all_service_card.card_six {
  border: 1px solid #50e3c2;
  background: linear-gradient(to right, #2f035b, #4a90e2, #50e3c2);
}

.why_choose_us svg{
    width:120px;
    height:120px;
    stroke-width: 1px;
}

.blog_img{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.opacity_50{
    opacity:0.5 !important;
}

.team_card_parent{
 perspective: 1000px;
  width: 100%;
}

.team_card_new{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(171, 171, 171, 0.06) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.342) !important;
    user-select: none;
    border-radius: 20px;
    filter:grayscale(1);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.team_card_new:hover{
    filter:grayscale(0);
}

.team_card_new .img_div{
    border: 1px solid rgba(255, 255, 255, 0.342) !important;
    border-radius: 15px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    padding: 15px 15px 0 15px;
}

.team_card_new .img_div img{
    aspect-ratio:4/5;
    width:100%;
    object-fit:contain;
    user-select:none !important;
    pointer-events:none;
}

.image-reveal {
    position: relative;
    margin: 2rem auto;
    overflow: hidden;
    background: transparent;
}

.custom-cursor {
  pointer-events: none; /* Let clicks pass through */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

/* Outer & inner cursor circles */
.cursor-circle {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}

.cursor-circle--outer {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  opacity: 0.6;
}

.cursor-circle--inner {
  width: 10px;
  height: 10px;
  background-color: #fff;
}

.top_bottom_btn{
    background: var(--pink);
    border: none;
    min-width: 50px;
    min-height: 50px;
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: white;
    position: fixed;
    bottom: 5%;
    right: 3%;
    z-index: 999;
    transition:transform 0.3s linear;
}

.parent_pentagon{
    height:100vh;
    display: flex;
    justify-content: center;
    align-items:center;
    position:relative;
    overflow:hidden;
    user-select: none;
}

.pentagon_svg{
    width: 24vw;
    height: 24vw;
    overflow:hidden;
}

.pentagon_svg .penta_content{
    height:0;
    opacity:0;
    transform:translateY(50%);
    will-change: height;
    transition:all 0.3s linear;
}

.pentagon_svg:hover .penta_content{
    height:auto;
    opacity:1;
    transform:translateY(0);
}

.pentagon_svg svg{
    width: 100%;
    height: 100%;
}

.penta_title{
    color: white;
    font-size: 2vw;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.penta_content{
    color: white;
    text-align: center;
    font-size: 1.1vw;
}

.revenue_penta{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:6;
}

.referral_penta{
    position: absolute;
    bottom: -50%;
    right: 33%;
    transform: translate(70%, -90%);
    z-index: 5;
}

.retention_penta{
    position: absolute;
    left: 33%;
    bottom: -50%;
    transform: translate(-70%, -90%);
    z-index: 4;
}

.activation_penta{
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 4;
}