@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

/* Root Styling */
:root {
  --c1: #0FD6DA;
  --c2: #5F1069;
  --c3: linear-gradient(90deg, #5A1A6E 0%, #0FD6DA 100%);
  ;
  --f1: 'poppins';
  --f2: 'rethink sans';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 11px 27px;
  background: var(--c3);
  color: #fff;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 99;
}

.themebtn:hover {
  background: var(--c3);
  color: #fff;
  box-shadow: 0px 0px 14px 0px var(--c1);
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c1);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  position: relative;
}

a.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 60px;
  padding: 10px 0px;
}

ul.header-main__nav li a {
  font-size: 14px;
  font-family: var(--f1);
  position: relative;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: var(--c1);
}

ul.header-main__nav li a.active {
  color: var(--c1);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  min-height: 94vh;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 400;
}

.banner_cont h3 {
  font-size: 60px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 10px 0px 0;
  font-weight: 700;
  line-height: 1.2;
}

.banner_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
  width: 96%;
}

/* baner css end */

a.header__logo {
  position: absolute;
  top: -68px;
  left: 0;
  width: 203px;
  height: 126px;
  overflow: hidden;
  /* background: #fff; */
  padding: 10px 10px;
}

.top_bar {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.top_contact {
  display: flex;
  align-items: center;
  gap: 19px;
}

.top_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.top_bar {
  padding: 13px 0px;
}

.themebtn i {
  transform: rotate(136deg);
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  margin-left: 2px;
  transition: 500ms;
}

.bg_transparent {
  background: transparent;
  box-shadow: 0px 0px 0px 1px #fff;
}

.topbar_main {
}

.top_contact a {
}

.top_contact a i {
  font-size: 19px;
  color: var(--c1);
}

.bg_transparent:hover {
  box-shadow: 0px 0px 21px 0px var(--c2);
  background: transparent;
}

.bg_transparent::after {
  background: var(--c2);
}

.themebtn:hover i {
  transform: rotate(180deg) translateX(-7px);
}

.top_contact a:hover {
}

.top_contact a:hover i {
  color: #fff;
}

.top_contact a i {
  transition: 500ms;
}

.banner_cont h4 {
  padding: 9px 15px 7px;
  background: #fff;
  width: max-content;
  border-radius: 11px;
  color: var(--c2);
  font-size: 18px;
  font-family: var(--f1);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.banner_cont ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 10px;
  margin: 16px 0px;
  width: 79%;
}

.banner_cont ul li {
  width: 49%;
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  padding-left: 20px;
  font-size: 13px;
}

.banner_cont ul li::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/book_icon.webp);
  top: -1px;
  left: -10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.banner_cont h3 span {
  font-family: var(--f2);
  background: var(--c2);
  padding: 0px 0px;
  font-style: italic;
  display: inline-block;
  font-weight: 500;
  line-height: 0.9;
}

.banner_btn {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

.chat_form {
  width: 77%;
  background: #ffffff2e;
  padding: 33px 34px;
  border-radius: 12px;
  backdrop-filter: blur(13px);
  float: inline-end;
  position: relative;
  overflow: hidden;
} 

.chat_form h4 {
  text-align: center;
}

.chat_form h3 {
  text-align: center;
}

.chat_form h4 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  color: var(--c1);
  font-family: var(--f2);
  z-index: 1;
}

.chat_form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--f2);
  position: relative;
  z-index: 1;
}

.form_field input,
.form_field textarea {
  width: 100%;
  padding: 11px 19px;
  border-radius: 7px;
  outline: 0;
  border: none;
  font-size: 14px;
}

.form_field textarea {
  height: 109px;
}

.form_field {
  margin-bottom: 11px;
}

.form_check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.form_check input {
  width: 20px;
  height: 20px;
  accent-color: var(--c2);
  cursor: pointer;
}

.form_check label {
  font-size: 12px;
  color: #fff;
  font-family: var(--f1);
  cursor: pointer;
}

.form_check label a {
  color: #fff;
  text-decoration: underline !important;
}

.form_check label a:hover {
  color: var(--c1);
}

.chat_form::before {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  background: var(--c2);
  top: -100px;
  left: -100px;
  filter: blur(95px);
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  background: var(--c2);
  bottom: -100px;
  right: -100px;
  filter: blur(95px);
}

.chat_form form {
  position: relative;
  z-index: 1;
  margin-top: 15px;
} 

a.get_in_arrow {
  position: absolute;
  bottom: -80px;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  box-shadow: 0px 0px 9px 0px #00000030;
}

a.get_in_arrow:before {
  position: absolute;
  content: '';
  width: 87%;
  height: 87%;
  background: url(../images/get_in_text.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* footer_css start */

.footer {
  padding-top: 70px;
  background-color: #111122;
  background-image: url(../images/footer_img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer_logo {
  width: 200px;
  height: auto;
  margin-bottom: 12px;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_about p {
  margin: 0;
  color: #ffffffde;
  font-size: 14px;
  line-height: 1.7;
}

h4.f_title {
  color: #fff;
  font-size: 20px;
  font-family: var(--f2);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 29px;
  position: relative;
}

.footer_links ul li a {
  color: #fff;
  font-size: 14px;
  margin-bottom: 23px;
  width: 100%;
}

h4.f_title::before {
  position: absolute;
  content: '';
  width: 30%;
  background: var(--c2);
  bottom: -8px;
  left: 0;
  height: 3px;
}

.footer_links {
  margin-top: 60px;
}

.footer_form {
  margin-top: 60px;
}

ul.footer_social {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 23px 13px;
  border-radius: 10px;
  border: 1px solid #fff;
}

ul.footer_social li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
}

ul.footer_social li a:hover {
  transform: translateY(-7px);
  background: var(--c1);
  box-shadow: 0px 0px 20px 0px var(--c1);
  border-color: var(--c1);
}

.fooetr_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 30px;
  border-radius: 10px;
  border: 1px solid #fff;
  height: 100%;
}

.fooetr_info a {
  color: #fff;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fooetr_info a i {
  font-size: 23px;
  color: var(--c1);
  transition: 500ms;
}

.fooetr_info a:hover i {
  color: #fff;
}

.fooetr_info a:hover {
  color: var(--c1);
}

.footer_about {
  width: 91%;
}

.social_links {
  padding: 26px 0px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 25px 0px 0;
}

.copy_right p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.copy_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0px;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  padding: 5px 8px;
  font-size: 13px;
  background: transparent;
  border: 1px solid #ffffff96;
  border-radius: 3px;
  color: #fff;
  outline: 0;
}

.form_fields {
  margin-bottom: 11px;
}

.form_fields button {
  width: 100%;
}

.footer_links ul li a:hover {
  transform: translateX(7px);
  color: var(--c1);
}

.faqs_section {
  padding: 70px 0px;
}

.section_title h3 {
  font-size: 80px;
  font-family: var(--f2);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #00000040;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: -41px;
}

.section_title h5 {
  font-size: 42px;
  font-family: var(--f2);
  font-weight: 700;
  background: linear-gradient(0deg, transparent, #ffffff, #fff, #ffffff, transparent);
  position: relative;
  z-index: 1;
  color: #000;
  padding: 2px 0px;
  text-transform: capitalize;
}

.section_title h5 span {
  font-family: var(--f2);
  font-weight: 700;
  color: var(--c2);
}

.faqs_mian .accordion-button {
  padding: 26px 20px;
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  border-radius: 0 !important;
  background: #fff;
}

.faqs_mian .accordion-item {
  margin-bottom: 17px;
  border: 1px solid #c7c7c7 !important;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faqs_mian .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
  box-shadow: none;
}

.faqs_mian .accordion-body {
  background: var(--c3);
  padding: 24px 24px;
}

.faqs_mian .accordion-body p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.faqs_mian .accordion-button::after {
  background-image: none;
  content: "\ee90";
  font-size: 14px;
  width: 23px;
  height: 23px;
  font-family: boxicons !important;
  border: 2px solid;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqs_mian .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg) scale(1.3);
  color: var(--c1);
}

.faqs_mian .accordion-button:hover {
  color: var(--c1);
}

.faqs_img {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transform: translateX(30px);
}

.faqs_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo_main {
  position: relative;
  width: 100%;
  height: 510px;
}

/* common bubble */
.logo_item {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgb(0 0 0 / 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatScale ease-in-out infinite;
  padding: 14px;
}

.logo_item img {
  max-width: 70%;
}

/* layout positions */
.logo_1 {
  top: -20px;
  left: 31%;
}

.logo_2 {
  top: 29%;
  left: 6%;
}

.logo_3 {
  top: 22%;
  right: 7%;
}

.logo_4 {
  bottom: 26%;
  left: 44%;
}

.logo_5 {
  bottom: -50px;
  left: 15%;
}

.logo_6 {
  bottom: 2%;
  right: 8%;
}

/* size difference */
.logo_1 {
  width: 220px;
  height: 220px;
  background: var(--c3);
}

.logo_2 {
  width: 150px;
  height: 150px;
  background: var(--c2);
}

.logo_3 {
  width: 140px;
  height: 140px;
  background: var(--c2);
}

.logo_4 {
  width: 150px;
  height: 150px;
  background: var(--c1);
}

.logo_5 {
  width: 220px;
  height: 220px;
  background: var(--c3);
}

.logo_6 {
  width: 150px;
  height: 150px;
  background: var(--c1);
}

/* animation delays and durations */
.logo_1 {
  animation-delay: 0s;
  animation-duration: 6s;
}

.logo_2 {
  animation-delay: 0.8s;
  animation-duration: 5.5s;
}

.logo_3 {
  animation-delay: 1.2s;
  animation-duration: 6.2s;
}

.logo_4 {
  animation-delay: 1.5s;
  animation-duration: 5.8s;
}

.logo_5 {
  animation-delay: 0.5s;
  animation-duration: 6.5s;
}

.logo_6 {
  animation-delay: 2s;
  animation-duration: 6.1s;
}

/* floating + scaling animation */
@keyframes floatScale {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.08);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.client-approved {
  padding: 70px 0px;
}

.client_form {
  position: relative;
  padding: 139px 30px 70px;
  background: #111122;
  border-radius: 18px;
  width: 94%;
  float: inline-end;
}

.form_logo {
  width: 220px;
  height: auto;
  position: absolute;
  top: 5%;
  right: 2%;
}

.form_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

span.get_span {
  position: absolute;
  top: 14%;
  background: var(--c2);
  left: 0;
  padding: 7px 28px;
  text-transform: capitalize;
  font-family: var(--f2);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
}

h3.get_title {
  font-size: 45px;
  color: #fff;
  font-weight: 800;
  font-family: var(--f2);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.get_input {
  width: 100%;
  padding: 11px 10px;
  font-size: 14px;
  font-family: var(--f1);
  margin-bottom: 16px;
  border: 1px solid #ffffff4a;
  border-radius: 5px;
  color: var(--c1);
  background: transparent;
  outline: 0;
}

.get_input:focus {
  border-color: var(--c1);
}

.client_form form .themebtn {
  width: 100%;
  font-size: 15px;
}



.portfolio_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio_image {
  width: 19%;
  height: 403px;
  position: relative;
  margin: 21px 23px;
}

section.portfolio {
  padding: 120px 0 70px;
} 

.portfolio_image .off {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -16px;
  right: -35px;
  background-image: url(../images/porfolio_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
}

.portfolio_image span {
  font-size: 30px;
  font-family: var(--f1);
  color: #ffff;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.portfolio_image span small {
  display: block;
  line-height: 1;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio_slider {
  margin-bottom: 0px;
}

.services_designed {
  background-image: url(../images/design_bg.webp);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  padding: 70px 0;
  background-size: cover;
}

.services_designed::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111222;
  top: 0;
  left: 0;
  z-index: -1;
}

.design_main .services_designed::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111222;
  top: 0;
  left: 0;
  z-index: -1;
}

.design_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.design_logo {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.design_main {
  display: flex;
  justify-content: center;
  gap: 14px;
  border: 2px solid #80808045;
  padding: 40px 26px;
  backdrop-filter: blur(10px);
  transition: all 300ms;
  margin-bottom: 30px;
  background: #ffffff1c;
  height: 300px;
}

.design_cnt {
  width: 80%;
  color: #FFF;
}

.design_cnt h4 {
  font-family: var(--f2);
  font-size: 20px;
}

.design_cnt p {
  font-size: 13px;
  line-height: 2;
  margin: 0;
}

.design_main:hover::before {
  height: 100%;
}

.transformative_img img {
  width: 80%;
  object-fit: cover;
  height: 100%;
  border-radius: 16px;
  border-top-right-radius: 64px;
}

.transformative_img {
  width: 100%;
  height: 514px;
  text-align: center;
  position: sticky;
  top: 50px;
}

section.transformative {
  padding: 120px 0;
  background: #e1e1e1;
}

.transformative_cnt h3 {
  font-family: var(--f2);
  font-size: 42px;
  font-weight: 700;
  color: #000;
}

.transformative_cnt h3 span {
  font-size: 42px;
  color: var(--c2);
  font-weight: 700;
  font-family: var(--f2);
}

.transformative_cnt p {
  font-size: 14px;
  line-height: 2;
}


.transformative_cnt p {
  font-size: 14px;
  line-height: 2;
}


.transformative_cnt ul li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: #000;
}

.transformative_ancher {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.transformative_cnt ul li::before {
  content: '';
  position: absolute;
  background-image: url(../images/tentative1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0px;
}

.transformative_ancher .bg_transparent {
  color: #000;
  box-shadow: 0 0 0 1px black;
}

.transformative_img::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 115%;
  background: #223554;
  z-index: -1;
  left: 19px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.transformative_ancher .bg_transparent:hover {
  color: #fff;
  box-shadow: 0 0 0 1px var(--c2);
}

.journey {
  background-image: url(../images/journey.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0 70px;
}

.journey_heading h2 {
  color: #fff;
  font-family: var(--f2);
  font-weight: 700;
  font-size: 51px;
  margin: 0;
}

.journey_cnt p {
  color: #fff;
  font-size: 14px;
  line-height: 2;
}

.journey_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey_img {
  width: 180px;
  height: 113px;
  margin-left: -40px;
}

.journey_ancher {
  display: flex;
  align-content: center;
  gap: 15px;
}

.client_hrad_img {
  text-align: center;
}

.client_hrad_img img {
  width: 290px;
  height: auto;
}

section.clint {
  padding: 70px 0;
  background: #F4F5F5;
}

.clint_star {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.clint_star ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.clint_star p {
  margin-bottom: 0;
}

.clint_cnt {
  background: #fff;
  padding: 40px 20px;
  box-shadow: 0 0 15px 0 #0000001a;
  border-radius: 10px;
}

.clint_star ul li {
  width: 20px;
  height: 20px;
  background: #21BA81;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

.clint_cnt span {
  color: var(--c2);
  font-size: 20px;
  font-family: var(--f2);
  font-weight: 500;
}

.clint_cnt h4 {
  font-family: var(--f2);
  font-size: 24px;
  font-weight: 700;
}

.clint_cnt p {
  font-size: 15px;
  margin: 0;
  line-height: 1.9;
}

.clint_slider {
  margin-bottom: 0 !important;
}

.clint_cnt {
  margin: 20px 10px;
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li button {
  width: 40px;
  height: 7px;
  background: #631c6d4d;
  border-radius: 50px;
  padding: 0px;
  font-size: 0;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active button {
  background: var(--c2) !important;
  width: 60px;

}

section.book_journey {
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
}

.book_journey_heading h2 {
  font-family: var(--f2);
  font-size: 50px;
  font-weight: 600;
  width: 80%;
}

.book_journey_heading h2 span {
  font-size: 46px;
  font-weight: 600;
  font-family: var(--f2);
  color: var(--c2);
}

.book_journey_ancher {
  display: flex;
  margin-top: 40px;
  gap: 15px;
}

.book_journey_ancher .bg_transparent {
  color: #000;
  box-shadow: 0 0 0 1px;
}

.book_journey_ancher .bg_transparent:hover {
  color: #fff;
}

.book_journey_card {
  background: #223355;
  padding: 40px 15px 40px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 40px;
  height: 281px;
}

.bookjourney_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bookjourney_img {
  width: 45px;
  height: 45px;
  padding: 3px;
}

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

.book_journey_cnt h5 {
  font-family: var(--f2);
  font-size: 21px;
  color: #fff;
  margin: 0;
}

.book_journey_card p {
  color: #fff;
  margin-top: 13px;
  font-size: 13px;
  margin-bottom: 0;
  line-height: 2;
}

.book_journey_card span {
  font-family: var(--f2);
  font-size: 19px;
  position: absolute;
  top: -16px;
  right: 25px;
  color: #fff;
  background: #121223;
  padding: 2px 30px;
  border-radius: 7px;
  border: 2px solid var(--c2);
}

.book_journey_headingimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book_journey_headingimg {
  width: 90%;
  height: auto;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

section.book_journey::before {
  content: '';
  position: absolute;
  width: 630px;
  height: 630px;
  background: var(--c3);
  border-radius: 100%;
  bottom: -43%;
  left: -11%;
}

.text_bg_transparent {
  background: transparent !important;
}

.float-end {
  float: inline-end;
}

.design_main::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  background: var(--c3);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 500ms;
}

.design_main:hover .design_logo {
  animation: tada 1s;
}


/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0px 0px 10px 0px #cfcfcf;
}


.side_menu {
  width: 90%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 75px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2);
}

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  border: none;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 19px;
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1);
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1);
}

.close_menu i {
  font-size: 23px;
}



.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0px 1px 0px 0px #ebebeb;
  margin-bottom: 14px;
  margin-top: 0px;
}

.side_form input {
  background: transparent;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%;
}

.side_form button {
  background: transparent;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social a {
  font-size: 24px;
  color: var(--c2);
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0px;
  justify-content: space-between;
  padding-left: 14px;
}

.link_colom {
  width: 100%;
}


.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px;
}


.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px;
}

.custom-select img {
  width: 20px;
  height: 14px;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99;
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.custom-select.open .options {
  display: block;
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto;
}

/* responsive  css end */

/* dropdown css start */

ul.dropdown_menu {
  background: #fff;
  position: absolute;
  z-index: 99999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  padding: 12px 10px;
  color: #000000;
  font-size: 13px;
  align-items: center;
}

.dropdown-submenu>.dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown_menu {
  padding: 0;
  margin: 0;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.dropdown_menu {
  position: static;
  float: none;
}

li:hover>ul.dropdown_menu {
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
  min-width: 14rem;
  visibility: visible;
  opacity: 1;
}

.header-main__nav li {
  position: relative;
}

ul.dropdown_menu li a::after {
  display: none;
}

.dropdown-toggle {
  font-size: 17px;
  transition: 500ms;
}

ul.header_nav li a i {
  font-size: 15px;
  transition: 300ms;
}

ul.header_nav li:hover i {
  transform: rotate(180deg);
}

.dropdown-submenu:hover .dropdown-toggle {
  transform: rotate(-90deg);
}

.top-radious {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}

.bottom-radious {
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}

ul.dropdown_menu li a:hover {
  background: var(--c1);
  color: #000;
}

ul.header_nav li {
  position: relative;
}

/* dropdown css end */

/* popup form css start */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  top: 6px;
  right: 6px;
  z-index: 999;
  background: var(--c1);
  border-radius: 8px;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #59362982;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.popup_form .banner_form {
  width: 30%;
  background: url(../images/banner-image.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 73px 40px;
}

.popup_form .form_arrow {
  display: none;
}

.popup_form.active {
  display: flex;
}

.popup_form .form_close {
  display: flex;
}

.popup_form .banner_form .form_fields input,
.popup_form .banner_form .form_fields textarea {
  background: #ffffff7a;
  filter: blur(0px);
  box-shadow: 0px 0px 10px 0px inset #a180608c;
}

.popup_form .banner_form::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  background: url(../images/splatter.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  top: -7px;
  right: -28px;
  transform: rotate(75deg);
}

.form_close:hover {
  color: #fff;
  background: var(--c2);
}

.popup_form .chat_form {
  width: 30%;
}

/* popup form css end */


/* inner banner css */

.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 94vh;
}

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(0.3);
}

.inner_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_cont {
  position: relative;
  z-index: 9;
  color: #fff;
}

.inner_cont h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 400;
}

.inner_cont h3 {
  font-size: 48px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 14px 0px;
  font-weight: 700;
  line-height: 1.1;
}

.inner_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.inner_sub_img {
  width: 80%;
  height: 580px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.inner_sub_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_banners {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 107vh;
  backdrop-filter: blur(5px);
  padding: 52px 0px;
  background: #ffffff69;
}

.inner_sub_cont h3 {
  font-size: 38px;
  font-family: var(--f2);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.inner_sub_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.inner_sub_banners_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_banners_overly img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_cont {
  position: relative;
  z-index: 9;
}

.inner_cont.text-center h3 {
  font-size: 80px;
  letter-spacing: 2px;
}

.inner_cont h3 span {
  font-family: var(--f2);
  background: var(--c2);
  padding: 0px 0px;
  font-style: italic;
  display: inline-block;
  font-weight: 500;
  line-height: 0.9;
}

.inner_sub_cont ul li {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
  position: relative;
}

.inner_sub_cont ul {
  padding-left: 18px;
}

.inner_sub_cont ul li::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--c2);
  top: 50%;
  left: -21px;
  transform: translateY(-50%);
}

/* inner banner css end */

/* contact us page css start */


.contact_img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  transform: scale(1.1);
  margin-left: -30px;
}

.contact_img img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: contain;
}

.contact_us {
  padding: 70px 0px 100px;
  /* background: url(../images/contact-back.webp); */
  /* background-position: center; */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: #ffffff36;
}

.contact_img::before {
  position: absolute;
  content: '';
  border: 50px solid;
  border-radius: 100%;
  background: transparent;
  height: 395px;
  width: 395px;
  right: 110px;
  top: 30px;
}

.contact_form input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 11px 14px;
  outline: 0;
  background: #EDEDED;
  border: 2px solid #2f2f2d54;
}

.contact_form textarea {
  height: 103px;
}

.contact_us_cont h5 {
  font-family: var(--f2);
  font-size: 20px;
  text-transform: uppercase;
  color: #333;
  word-spacing: 2px;
}

.contact_us_cont h3 {
  font-family: var(--f2);
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
  font-weight: 800;
}

.contact_us_cont h3 span {
  font-family: var(--f2);
  text-transform: uppercase;
  font-weight: 900;
}

.contact_form {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.contact_form input::placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  text-transform: capitalize;
}

.contact_form textarea::placeholder {
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  font-weight: 400;
}

.contact_us::before {
  position: absolute;
  content: '';
  background: url(../images/splatter.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  height: 208px;
  top: 8px;
  left: -74px;
  z-index: 9;
  transform: scaleX(-1) rotate(75deg);
}

.contact_us::after {
  position: absolute;
  content: '';
  background: url(../images/splatter.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 280px;
  height: 298px;
  bottom: 28px;
  right: -5px;
  transform: scaleX(-1) rotate(75deg);
}

.per-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0 15px;
}

.per-check input {
  width: fit-content;
}

.per-check label {
  font-size: 12px;
}

.per-check label a {
  color: #000;
  font-weight: 800;
  text-decoration: underline !important;
  font-size: 11px;
}

.contBox a {
  width: 100%;
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.contBox a i {
  font-size: 20px;
}

.contBox a span {
  font-weight: 600;
}


/* contact us page css end */

.copy_right ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copy_right a {
  text-transform: capitalize;
  color: #fff;
  font-size: 14px;
}

.copy_right a:hover {
  color: var(--c1);
}

/* privacy page css start */

.privacy {
  padding: 80px 0;
  background: #f9fafc;
}

.policy_content {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Section Headings */
.policy_content h4 {
  font-size: 26px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 13px 0;
  color: #111827;
  position: relative;
  padding-left: 18px;
  text-transform: capitalize;
}

.policy_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--c2);
  border-radius: 4px;
}

/* Paragraph Styling */
.policy_content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 14px;
}

/* Bold text highlight */
.policy_content p b {
  color: var(--c2);
  font-weight: 600;
}

/* Links */
.policy_content a {
  color: var(--c2);
  text-decoration: none;
  font-weight: 500;
}

.policy_content a:hover {
  color: var(--c1);
}

/* Contact Section Highlight */ 

.policy_content h1 {
  font-size: 50px;
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  text-decoration: underline !important;
  text-decoration-color: var(--c2) !important;
}

.policy_content ul,
.terms_content ul {
  padding-left: 22px;
  margin: 15px 0;
}

.policy_content ul li,
.terms_content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

/* Custom bullet */
.policy_content ul li::before,
.terms_content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--c2);
  font-size: 21px;
  line-height: 1.9;
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.policy_content h5 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 500;
}

/* privacy page css end */
.transformative_img--alt::before {
  left: 30%;
  border-radius: 0 30px 30px 0px;
}

.transformative--alt {
  background: #fff !important;
}

.contImg {
  width: 100%;
  height: 590px;
  border-radius: 40px;
  overflow: hidden;
}

.contImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form_fields input:focus, .form_fields textarea:focus {
    border-color: var(--c1);
}

.transformative_cnt h4 {
    font-size: 23px;
    font-family: var(--f2);
    font-weight: 700;
    margin-bottom: 20px;
}
.disclaimer {
    margin: 40px auto 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    width: 760px;
}

.policy_sec {
  padding: 70px 0;
}

.sub-heading {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 10px;
  font-family: 'Poppins';
}

header.header {
    background: #ffffff30;
    padding-bottom: 14px;
}

.top_btn .bg_transparent {
    box-shadow: 0px 0px 0px 1px #000;
    color: #000;
}

.top_btn .bg_transparent:hover {
    box-shadow: 0px 0px 0px 1px var(--c2);
    color: #fff;
} 
.BookJourney--alt .book_journey {
    background: transparent;
}
.copy_right p span {
    display: block;
}