html {
  overflow-x: hidden;
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Barlow Condensed", sans-serif;
}

a {
  text-decoration: none;
}

* {
  scrollbar-width: unset;
  scrollbar-color: #000 #1a1a1a;
}

.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* common styles */
.common-padding-bottom {
  padding-bottom: 80px;
}

.common-padding-top {
  padding-top: 80px;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3300ff, #1f0099);
  border: none;
  border-radius: 10%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(51, 0, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 0, 255, 0.4);
}

.scroll-top iconify-icon {
  transition: transform 0.3s ease;
  animation: bounceUp 2s infinite;
}

.scroll-top:hover iconify-icon {
  transform: translateY(-3px);
  animation: none;
}

@keyframes bounceUp {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 300;
	font-style: normal;
}

h1 {
	font-weight: 300;
	font-style: normal;
	margin-bottom: 25px;
	font-size: 100px;
	line-height: 110px;
}

h2 {
	font-size: 40px;
	line-height: 50px;
	font-weight: 300;
	font-style: normal;
	margin-bottom: 25px;
	text-transform: capitalize;
}

h3 {
	font-size: 45px;
	line-height: 60px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 25px;
	text-transform: capitalize;
}

h4 {
	font-size: 25px;
	line-height: 35px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 500;
	font-style: normal;
	margin-bottom: 25px;
	text-transform: capitalize;
} */

.gradient-text {
  background: linear-gradient(90deg, #000000 0%, #3300ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-50 {
  margin-top: 50px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.text-reveal-slide-up-infinite {
  animation: slideUpReveal-infinite 4s ease-in-out infinite;
}

@keyframes slideUpReveal-infinite {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  25% {
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}

.homebannersec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(95deg, #000000 0%, #000000 50%, #1800ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.homebannersec::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -330px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4, 99, 232, 0.8), transparent 95%);
  filter: blur(100px);
  z-index: 1;
}

.homebannersec .container {
  z-index: 2;
}

.homebannersec .row {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.homeban-content h1 {
  color: #fff;
  text-transform: capitalize;
  display: inline-block;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 1.5s ease-in-out forwards;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 75px;
  line-height: 85px;
}

.homeban-content h1 span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(to bottom, #fff 0%, #fff 20%, #0000ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.learn-more-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #3300ff, #000);
  border: 1px solid #3300ff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  text-decoration: none;
  transition: ease-in-out 0.4s;
}

.learn-more-btn iconify-icon {
  font-size: 50px;
  color: #fff;
  transform: rotate(-45deg);
  transition: ease-in-out 0.4s;
}

.learn-more-btn:hover {
  background: linear-gradient(to top, #3300ff, #000);
}

.learn-more-btn:hover iconify-icon {
  transform: rotate(45deg);
}

.homeban-content p {
  color: #fff;
}

.home-banner img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* @media (max-width: 1400px) {
  .homeban-content h1 {
    font-size: 100px;
    line-height: 110px;
  }
} */

@media (max-width: 1300px) {
  .homeban-content h1 {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 992px) {
  .homebannersec {
    padding-top: 140px;
  }

  .homeban-content h1 {
    font-size: 65px;
    line-height: 75px;
  }
}

@media (max-width: 768px) {
  .homeban-content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 576px) {
  .homeban-content h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 500px) {
  .homeban-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

/****************************************** END HOME BANNER SECTION ******************************************/
.homeabtsec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.homeabt-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.homeabtlogoimg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  opacity: 0.7;
  z-index: 3;
}

.homeabtlogoimg img {
  width: 100%;
  object-fit: cover;
}

/* .homeabt-text h6 {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	background: linear-gradient(160deg, #000000 0%, #3300FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: 100%;
} */

.homeabt-gradient-text {
  background: linear-gradient(90deg, #000000, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.home-clrdot {
  width: 12px;
  height: 12px;
  background: linear-gradient(175deg, #665dcd 0%, #5fa4e6 40%, #d0169e 100%);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.homeabt-text h3 {
  font-size: 40px;
  line-height: 50px;
  color: #000;
  font-weight: 400;
  max-width: 850px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  margin-bottom: 25px;
}

.homeabt-brand {
  background: linear-gradient(90deg, #665dcd 0%, #5fa4e6 45%, #d0169e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.homeabt-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeabt-circle-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #3300ff;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.3s ease;
  margin-top: 40px;
}

.homeabt-circle-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(#000000, #3300ff, #000000);
  z-index: -1;
  transition: transform 2s linear;
}

.homeabt-circle-btn:hover::before {
  transform: rotate(360deg);
}

.homeabt-circle-btn span,
.homeabt-circle-btn .homeabt-arrow {
  color: #fff;
  z-index: 1;
}

.homeabt-circle-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

.homeabt-circle-btn .homeabt-arrow {
  display: block;
  margin-top: 6px;
  font-size: 30px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.homeabt-circle-btn:hover .homeabt-arrow {
  transform: rotate(45deg);
}

.homeabt-arrow {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

.homeabt-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  margin: 0;
}

.homeabt-marquee + .homeabt-marquee {
  margin-top: 5px;
}

.homeabt-marquee-content {
  display: flex;
  align-items: center;
  padding-right: 50px;
}

.homeabt-marquee-content span {
  font-size: 100px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 50px;
  background: linear-gradient(90deg, #3300ff 0%, #3300ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.homeabt-marquee-content .dot_clr {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(175deg, #665dcd 0%, #5fa4e6 40%, #d0169e 100%);
  vertical-align: middle;
  margin: 0 20px;
}

@keyframes homeabt-marquee-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes homeabt-marquee-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.homeabt-marquee-left .homeabt-marquee-content {
  animation: homeabt-marquee-left 20s linear infinite;
}

.homeabt-marquee-right .homeabt-marquee-content {
  animation: homeabt-marquee-right 20s linear infinite;
}

@media (max-width: 1300px) {
  .homeabt-text h3 {
    font-size: 40px;
    line-height: 50px;
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  .homeabt-text h3 {
    font-size: 35px;
    line-height: 45px;
    max-width: 700px;
  }

  .homeabt-button {
    display: flex;
    align-items: center;
    justify-content: left;
  }

  .homeabt-circle-btn {
    width: 110px;
    height: 110px;
    font-size: 23px;
    margin-top: 25px;
    margin-bottom: 40px;
  }

  .homeabt-marquee-content span {
    font-size: 80px;
  }

  .homeabt-marquee-content .dot_clr {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .homeabt-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .homeabt-text h3 {
    font-size: 30px;
    line-height: 40px;
    max-width: unset;
    margin-bottom: 15px;
  }

  .homeabt-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .homeabt-marquee-content span {
    font-size: 65px;
  }

  .homeabt-text h3 {
    font-size: 25px;
    line-height: 35px;
    max-width: unset;
  }
}

/****************************************** END HOME ABOUT SECTION ******************************************/
.homewhychoosesec {
  background: #000;
  position: relative;
  overflow: hidden;
}

.homewhychoosesec-circle {
  content: "";
  position: absolute;
  top: 50%;
  right: -330px;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.9), transparent 95%);
  filter: blur(100px);
  /* z-index: 1; */
}

.homewhychoose-content {
  position: relative;
  z-index: 2;
}

.homewhychoose-gradient-text {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.homewhychoose-content h3 {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  max-width: 820px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
}

#hm-whychoose-slider {
  margin-top: 35px;
}

.homewhychoose-slide {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.homewhychooseimg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  opacity: 0.7;
  z-index: 3;
}

.homewhychooseimg img {
  width: 100%;
  object-fit: cover;
}

.homewhychoose-slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.homewhychoose-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.homewhychoose-text {
  text-align: left;
  padding-left: 50px;
}

.homewhychoose-title {
  font-size: 90px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.2;
  background: linear-gradient(to bottom, #3300ff 40%, #fff 80%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.homewhychoose-text p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  max-width: 700px;
  margin-bottom: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1300px) {
  .homewhychoose-content h3 {
    font-size: 40px;
    line-height: 50px;
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  .homewhychoose-content h3 {
    font-size: 35px;
    line-height: 45px;
    max-width: 700px;
  }

  .homewhychoose-slider {
    max-width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
  }

  .homewhychoose-slider img {
    margin-bottom: 0px;
  }

  .homewhychoose-text {
    padding-left: 0px;
  }

  .homewhychoose-title {
    font-size: 80px;
    margin-top: 0px;
  }

  .homewhychoosesec-circle {
    content: "";
    position: absolute;
    top: 80%;
    right: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .homewhychoose-content h3 {
    font-size: 30px;
    line-height: 40px;
    max-width: unset;
    margin-bottom: 15px;
  }

  .homewhychoose-title {
    font-size: 70px;
    margin-top: 0px;
  }

  .homewhychoose-text p {
    max-width: unset;
  }

  .homewhychoosesec-circle {
    content: "";
    position: absolute;
    top: 90%;
    right: -200px;
    transform: translateY(-50%);
    width: 350px;
    height: 300px;
  }

  .homewhychoose-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .homewhychoose-content h3 {
    font-size: 25px;
    line-height: 35px;
    max-width: unset;
  }

  .homewhychoose-title {
    font-size: 60px;
  }

  .homewhychoose-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END HOME WHY CHOOSE US SECTION ******************************************/
.homehtlgtsec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.homehtlgt-text h2 {
  font-size: 90px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.homehtlgt-text h2 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.homehtlgtimg img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1400px) {
  .homehtlgt-text h2 {
    font-size: 90px;
  }
}

@media (max-width: 1300px) {
  .homehtlgt-text h2 {
    font-size: 80px;
  }
}

@media (max-width: 992px) {
  .homehtlgt-text h2 {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .homehtlgt-text h2 {
    font-size: 60px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .homehtlgt-text h2 {
    font-size: 50px;
  }
}

@media (max-width: 500px) {
  .homehtlgt-text h2 {
    font-size: 40px;
  }
}

/****************************************** END HOME HIGHLIGHT SECTION 1 ******************************************/
.homeservicesec {
  /* background: #000; */
  background: linear-gradient(180deg, #000 0%, #000 99%, #1f0099 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.homeservicesec-circle {
  position: absolute;
  top: 10%;
  left: -250px;
  transform: translateY(-50%);
  width: 400px;
  height: 280px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.9), transparent 95%);
  filter: blur(100px);
  /* z-index: 1; */
}

.homeservicesec-circle2 {
  position: absolute;
  bottom: -200px;
  right: -200px;
  transform: translateY(-50%);
  width: 400px;
  height: 280px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.9), transparent 95%);
  filter: blur(100px);
  /* z-index: 1; */
}

.homeservice-content {
  z-index: 3;
}

.homeservicebgimg {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 350px;
  opacity: 0.3;
  z-index: -1;
}

.homeservicebgimg img {
  width: 100%;
  object-fit: cover;
}

.homeservice-gradient-text {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.homeservice-content h3 {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  max-width: 800px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
}

.homeservice-content h3 span {
  color: #3300ff;
}

.homeservice-content h2 {
  font-size: 110px;
  line-height: 120px;
  color: #fff;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  margin-bottom: 25px;
  margin-top: 25px;
  text-align: left;
  text-transform: capitalize;
}

.homeservice-content h2 span {
  background: linear-gradient(90deg, #3300ff 0%, #1f0099 45%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.service-section {
  display: flex;
  gap: 50px;
  position: relative;
  padding: 30px 0 50px 0;
}

.service-left {
  position: relative;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  cursor: pointer;
  font-size: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 10px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(300deg, #3300ff 0%, #1f0099 45%, #665dcd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.4s;
  opacity: 0.7;
}

.service-list li.active {
  color: #fff;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  opacity: 1;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}

.service-list li:hover {
  color: #fff;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  opacity: 1;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}

.service-list .bullet {
  width: 12px;
  height: 12px;
  background: linear-gradient(175deg, #665dcd 0%, #5fa4e6 40%, #d0169e 100%);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.service-line {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, #000 0%, #3300ff 45%, #000 100%);
}

.service-line .service-dot {
  position: absolute;
  top: 50px;
  left: -5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(180deg, #3300ff 0%, #1f0099 45%, #1f0099 100%);
  border-radius: 50%;
}

.service-right {
  position: relative;
  max-width: 800px;
  max-height: 530px;
  overflow: hidden;
}

.service-content-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-content-group.active {
  opacity: 1;
  pointer-events: auto;
}

.subservice-container {
  position: relative;
  height: 100%;
  transition: transform 0.5s ease;
}

.subservice {
  width: 100%;
  height: 530px;
  padding: 20px;
  box-sizing: border-box;
}

.subservice h3 {
  background: linear-gradient(90deg, #3300ff 0%, #1f0099 45%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.subservice p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.subservice {
  margin-top: 15px;
}

.subserviceimg {
  max-width: 300px;
  height: 530px;
}

.subserviceimg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: rotate360 5s linear infinite;
  transform-origin: center center;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.subserviceimg-mob {
  display: none;
  width: 220px;
  margin: 20px auto;
}

.subserviceimg-mob img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: rotate360 5s linear infinite;
  transform-origin: center center;
}

.subservice-button {
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.subservice-button::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: linear-gradient(175deg, #665dcd 0%, #5fa4e6 40%, #d0169e 100%);
  border-radius: 50%;
  margin-right: 10px;
}

.subservice-button:hover {
  color: #3300ff;
}

.subservice-button:hover::before {
  background: linear-gradient(-175deg, #fff 0%, #fff 40%, #fff 100%);
}

.ser-btncvr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ser-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  margin-top: 25px;
  text-transform: capitalize;
  border: 1px solid #fff;
}

.ser-btn::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #3300ff;
  border-radius: 50%;
  margin-right: 10px;
}

.ser-btn:hover {
  background: #3300ff;
  color: #fff;
  border: 1px solid #3300ff;
}

.ser-btn:hover::before {
  background: #fff;
}

@media (max-width: 1400px) {
  .service-list li {
    font-size: 25px;
  }

  .service-list li.active {
    font-size: 35px;
  }

  .service-list li:hover {
    font-size: 35px;
  }

  .homeservicesec-circle {
    width: 350px;
    height: 250px;
    left: -200px;
  }

  .homeservicesec-circle2 {
    width: 350px;
    height: 250px;
    right: -150px;
    bottom: -150px;
  }

  .homeservicebgimg {
    width: 300px;
  }

  .service-section {
    gap: 40px;
  }

  .service-right {
    max-width: 700px;
  }
}

@media (max-width: 1400px) {
  .homeservice-content h2 {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (max-width: 1300px) {
  .homeservice-content h3 {
    font-size: 40px;
    line-height: 50px;
    max-width: 700px;
  }

  .homeservice-content h2 {
    font-size: 90px;
    line-height: 100px;
  }
}

@media (max-width: 1250px) {
  .service-list li {
    font-size: 23px;
  }

  .service-list li.active {
    font-size: 28px;
  }

  .service-list li:hover {
    font-size: 28px;
  }

  .subservice h3 {
    font-size: 25px;
    line-height: 35px;
  }

  .subservice {
    width: 100%;
    height: 600px;
    padding: 20px;
    box-sizing: border-box;
  }

  .subserviceimg {
    max-width: 300px;
    height: 600px;
  }
}

@media (max-width: 1199px) {
  .service-section {
    gap: 35px;
  }

  .subservice p {
    font-size: 17px;
    line-height: 28px;
  }

  /* .service-list li {
		font-size: 28px;
	}

	.service-list li.active,
	.service-list li:hover {
		font-size: 36px;
	} */

  .service-right {
    max-width: 600px;
  }

  /* .subservice h3 {
		font-size: 28px;
		line-height: 38px;
	}

	.subserviceimg {
		width: 260px;
	} */
}

@media (max-width: 992px) {
  .homeservice-content h3 {
    font-size: 35px;
    line-height: 45px;
    max-width: 700px;
  }

  .homeservice-content h2 {
    font-size: 80px;
    line-height: 90px;
  }

  .homeservicesec-circle {
    width: 300px;
    height: 200px;
    left: -150px;
    top: 5%;
  }

  .homeservicesec-circle2 {
    width: 300px;
    height: 200px;
    right: -100px;
    bottom: -100px;
  }

  .homeservicebgimg {
    width: 250px;
    opacity: 0.2;
  }

  .service-section {
    flex-direction: column;
    gap: 30px;
    padding: 20px 0 40px 0;
  }

  .service-left {
    order: 1;
  }

  .service-right {
    order: 2;
    max-width: 100%;
    max-height: none;
    min-height: 400px;
  }

  .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .service-list li {
    font-size: 20px;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #3300ff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    /* background: linear-gradient(90deg, #3300ff 0%, #2b2935 45%, #1f0099 100%);
     background: rgba(51, 0, 255, 0.1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;
    transition: color 0.4s;
    opacity: 0.6;
  }

  .service-list li.active,
  .service-list li:hover {
    font-size: 25px;
    background: rgba(51, 0, 255, 0.2);
    border: 1px solid rgba(51, 0, 255, 0.6);
    transform: translateY(-2px);
  }

  .service-line {
    display: none;
  }

  .service-content-group {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .service-content-group.active {
    display: block;
  }

  .subservice-container {
    position: relative;
    height: auto;
    transform: none !important;
  }

  .subservice {
    height: auto;
    min-height: 300px;
    padding: 20px 50px 50px 50px !important;
    margin-top: 40px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 0, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
  }

  .subservice:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(51, 0, 255, 0.2);
    transform: translateY(-2px);
  }

  .subservice:last-child {
    margin-bottom: 0;
  }

  .subserviceimg {
    width: 220px;
    margin: 20px auto;
    /* display: block; */
    display: none;
  }

  .subserviceimg-mob {
    display: block;
  }

  .subservice-button {
    justify-content: center;
  }

  .subservice:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(51, 0, 255, 0.3) 50%,
      transparent 100%
    );
  }
}

@media (max-width: 768px) {
  .homeservicesec-circle {
    width: 250px;
    height: 180px;
    left: -100px;
    top: 0%;
  }

  .homeservicesec-circle2 {
    width: 250px;
    height: 180px;
    right: -80px;
    bottom: -80px;
  }

  .homeservice-content h3 {
    font-size: 30px;
    line-height: 40px;
    max-width: unset;
    margin-bottom: 15px;
  }

  .homeservice-content h2 {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 15px;
  }

  .homeservicebgimg {
    width: 200px;
    opacity: 0.15;
  }

  .service-section {
    gap: 25px;
    padding: 15px 0 30px 0;
  }

  .service-right {
    min-height: 350px;
  }

  .service-list {
    gap: 12px;
  }

  .service-list li {
    font-size: 20px;
    padding: 6px 12px;
    flex: 1;
    min-width: calc(50% - 6px);
    text-align: center;
  }

  .service-list li.active,
  .service-list li:hover {
    font-size: 20px;
  }

  /* .subservice p {
		font-size: 16px;
		line-height: 28px;
	} */

  /* .subservice-button,
	.ser-btn {
		font-size: 15px;
		margin-top: 15px;
		padding: 0.4rem 0.8rem;
	} */

  .homeservice-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .homeservice-content h2 {
    font-size: 60px;
    line-height: 70px;
  }

  .homeservice-content h3 {
    font-size: 25px;
    line-height: 35px;
    max-width: unset;
  }
}

@media (max-width: 500px) {
  .homeservice-content h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .subservice p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 479px) {
  .homeservicesec-circle {
    width: 200px;
    height: 150px;
    left: -80px;
    top: -5%;
  }

  .homeservicesec-circle2 {
    width: 200px;
    height: 150px;
    right: -60px;
    bottom: -60px;
  }

  .homeservicebgimg {
    width: 150px;
    opacity: 0.1;
  }

  .service-section {
    gap: 20px;
    padding: 12px 0 25px 0;
  }

  .service-right {
    min-height: 300px;
  }

  .service-list {
    gap: 8px;
  }

  .service-list li {
    font-size: 18px;
    padding: 5px 10px;
    min-width: calc(50% - 4px);
  }

  .service-list li.active,
  .service-list li:hover {
    font-size: 18px;
  }

  /* .subservice {
		min-height: 220px;
		padding: 12px;
		margin-bottom: 15px;
	} */

  .subserviceimg {
    width: 150px;
  }

  /* .subservice-button,
	.ser-btn {
		font-size: 14px;
		margin-top: 12px;
		padding: 0.3rem 0.6rem;
	} */

  .subservice-button::before,
  .ser-btn::before {
    width: 10px;
    height: 10px;
    margin-right: 8px;
  }
}

@media (max-width: 374px) {
  .service-list li {
    font-size: 16px;
    padding: 4px 8px;
  }

  .service-list li.active,
  .service-list li:hover {
    font-size: 16px;
  }

  .subserviceimg {
    width: 130px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .service-list li {
    padding: 10px 15px;
    margin-bottom: 5px;
  }

  .service-list li:hover {
    transform: none;
  }

  .subservice-button:hover,
  .ser-btn:hover {
    transform: none;
  }
}

@media (max-width: 896px) and (orientation: landscape) {
  /* .homeservicesec {
		padding-bottom: 40px;
	} */

  .service-right {
    min-height: 280px;
  }

  .subservice {
    min-height: 200px;
    padding: 8px;
    margin-bottom: 10px;
  }

  .subserviceimg {
    width: 120px;
  }
}

@media (min-width: 1920px) {
  .service-section {
    gap: 70px;
  }

  .service-right {
    max-width: 1000px;
    max-height: 600px;
  }

  .subservice {
    height: 600px;
    padding: 25px;
  }

  .subserviceimg {
    width: 350px;
  }
}

/****************************************** END HOME SERVICE SECTION ******************************************/
.homehowwewrksec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.homehowwewrk-text h2 {
  font-size: 100px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.homehowwewrk-text h2 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.homehowwewrk-text p {
  font-size: 30px;
  line-height: 40px;
  color: #313131;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 900px;
}

@media (max-width: 1400px) {
  .homehowwewrk-text h2 {
    font-size: 90px;
  }
}

@media (max-width: 1300px) {
  .homehowwewrk-text h2 {
    font-size: 80px;
  }
}

@media (max-width: 992px) {
  .homehowwewrk-text h2 {
    font-size: 70px;
  }

  .homehowwewrk-text p {
    font-size: 27px;
    line-height: 37px;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .homehowwewrk-text h2 {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .homehowwewrk-text p {
    font-size: 25px;
    line-height: 35px;
    max-width: unset;
  }
}

@media (max-width: 576px) {
  .homehowwewrk-text h2 {
    font-size: 50px;
  }

  .homehowwewrk-text p {
    font-size: 23px;
    line-height: 33px;
  }
}

@media (max-width: 500px) {
  .homehowwewrk-text h2 {
    font-size: 40px;
  }

  .homehowwewrk-text p {
    font-size: 20px;
    line-height: 30px;
  }
}

.twobond-slider-container {
  position: relative;
  height: 80vh;
  /* background: white; */
  overflow: hidden;
}

.twobond-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.twobond-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.twobond-navigation {
  position: absolute;
  right: 50px;
  top: 50px;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
}

.twobond-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.twobond-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.twobond-nav-btn.prev {
  background: #3300ff;
  color: #fff;
}

.twobond-nav-btn.next {
  background: #fff;
  color: #3300ff;
}

.twobond-timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.twobond-timeline-track {
  position: relative;
  width: 100%;
  height: 1.5px;
  background: #e0e0e0;
  /* margin: 0 100px; */
}

.twobond-timeline-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}

.twobond-timeline-circle {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.twobond-slide1-timeline .twobond-circle1 {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 2px solid #e0e0e0;
  left: 6%;
}

.twobond-slide1-timeline .twobond-circle2 {
  width: 12px;
  height: 12px;
  background: #000;
  left: 16%;
}

.twobond-slide1-timeline .twobond-circle3 {
  width: 130px;
  height: 130px;
  background: transparent;
  border: 1px solid #3300ff;
  left: 27%;
}

.twobond-slide1-timeline .twobond-circle4 {
  width: 180px;
  height: 180px;
  background: transparent;
  border: 2px dotted #ccc;
  left: 33%;
}

.twobond-slide1-timeline .twobond-circle5 {
  width: 70px;
  height: 70px;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  left: 39%;
}

.twobond-slide1-timeline .twobond-circle6 {
  width: 12px;
  height: 12px;
  background: #000;
  left: 52%;
}

.twobond-slide1-timeline .twobond-circle7 {
  width: 200px;
  height: 200px;
  background: transparent;
  border: 1px solid #000;
  left: 62%;
}

.twobond-slide1-timeline .twobond-circle8 {
  width: 60px;
  height: 60px;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  left: 75%;
}

.twobond-slide1-timeline .twobond-circle9 {
  width: 20px;
  height: 20px;
  background: #000;
  left: 88%;
}

.twobond-slide1-timeline .twobond-circle10 {
  width: 10px;
  height: 10px;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  left: 94%;
}

.twobond-slide2-timeline .twobond-circle1 {
  width: 12px;
  height: 12px;
  background: #000;
  left: 10%;
}

.twobond-slide2-timeline .twobond-circle2 {
  width: 130px;
  height: 130px;
  background: transparent;
  border: 1px solid #3300ff;
  left: 23%;
}

.twobond-slide2-timeline .twobond-circle3 {
  width: 180px;
  height: 180px;
  background: transparent;
  border: 2px dotted #ccc;
  left: 27%;
}

.twobond-slide2-timeline .twobond-circle4 {
  width: 48px;
  height: 48px;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  left: 44%;
}

.twobond-slide2-timeline .twobond-circle5 {
  width: 12px;
  height: 12px;
  background: #000;
  left: 52%;
}

.twobond-slide2-timeline .twobond-circle6 {
  width: 200px;
  height: 200px;
  background: transparent;
  border: 1px solid #000;
  left: 60%;
}

.twobond-slide2-timeline .twobond-circle7 {
  width: 70px;
  height: 70px;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  left: 62%;
}

.twobond-slide2-timeline .twobond-circle8 {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid #ccc;
  left: 86%;
}

.twobond-slide2-timeline .twobond-circle9 {
  width: 15px;
  height: 15px;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  left: 90%;
}

@media (max-width: 1200px) {
  .twobond-nav-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1000px) {
  .twobond-timeline-circle {
    transform: translateY(-50%) scale(0.7);
  }
}

@media (max-width: 992px) {
  .twobond-navigation {
    top: auto;
    bottom: -30px;
    right: auto;
    left: 60px;
    transform: none;
  }

  .homehowwewrksec {
    overflow: unset;
  }

  .twobond-slider-container {
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .twobond-slide {
    padding: 0 40px;
  }

  .twobond-nav-links {
    display: none;
  }
}

@media (max-width: 576px) {
  .twobond-slide {
    padding: 0 40px;
  }

  .twobond-nav-links {
    display: none;
  }
}

@media (max-width: 500px) {
  .twobond-slider-container {
    height: 70vh;
  }
}

/****************************************** END HOME HOW WE WORK SECTION ******************************************/
.homehtlgtsec2 {
  background: #000;
  position: relative;
  min-height: 90vh;
}

.round-falling-circles {
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 600px;
  height: 400px;
  pointer-events: none;
  z-index: 1;
}

.round-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #3300ff 0%, #6633ff 50%, #9966ff 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0;
  box-shadow: 0 25px 50px rgba(51, 0, 255, 0.4),
    0 10px 30px rgba(51, 0, 255, 0.3), inset 0 -12px 30px rgba(0, 0, 0, 0.3),
    inset 0 12px 30px rgba(255, 255, 255, 0.15);
}

.round-circle::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 18%;
  width: 30%;
  height: 30%;
  background: radial-gradient(
    ellipse at 20% 20%,
    rgba(255, 255, 255, 0.7),
    transparent 60%
  );
  border-radius: 50%;
  filter: blur(1px);
}

.round-circle::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.3), transparent 65%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: -1;
}

.round-circle.wave-1:nth-child(1) {
  width: 220px;
  height: 220px;
  font-size: 16px;
  left: 0px;
  bottom: 90px;
  animation: smoothFall1 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0s;
}

.round-circle.wave-1:nth-child(2) {
  width: 180px;
  height: 180px;
  font-size: 14px;
  left: 450px;
  bottom: 0px;
  animation: smoothFall2 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
}

.round-circle.wave-1:nth-child(3) {
  width: 130px;
  height: 130px;
  font-size: 11px;
  left: 200px;
  bottom: 200px;
  animation: smoothFall3 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1s;
}

.round-circle.wave-1:nth-child(4) {
  width: 200px;
  height: 200px;
  font-size: 15px;
  left: 400px;
  bottom: 150px;
  animation: smoothFall4 3.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.5s;
}

.round-circle.wave-2:nth-child(5) {
  width: 160px;
  height: 160px;
  font-size: 12px;
  left: 140px;
  bottom: 0px;
  animation: smoothFall5 2.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 2.2s;
}

.round-circle.wave-2:nth-child(6) {
  width: 110px;
  height: 110px;
  font-size: 9px;
  left: 10px;
  bottom: 0px;
  animation: smoothFall6 2.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 2.6s;
}

.round-circle.wave-2:nth-child(7) {
  width: 240px;
  height: 240px;
  font-size: 17px;
  left: 280px;
  bottom: 0px;
  animation: smoothFall7 3.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 3s;
}

@keyframes smoothFall1 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(20deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(60deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(120deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(180deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(240deg) scale(1.02);
  }

  80% {
    transform: translateY(-10px) rotate(300deg) scale(1.05);
  }

  90% {
    transform: translateY(-2px) rotate(340deg) scale(1.02);
  }

  95% {
    transform: translateY(2px) rotate(355deg) scale(0.98);
  }

  100% {
    transform: translateY(0px) rotate(360deg) scale(1);
    opacity: 1;
  }
}

@keyframes smoothFall2 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(-25deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(-70deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(-140deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(-200deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(-260deg) scale(1.02);
  }

  80% {
    transform: translateY(-10px) rotate(-320deg) scale(1.04);
  }

  90% {
    transform: translateY(-2px) rotate(-350deg) scale(1.01);
  }

  95% {
    transform: translateY(2px) rotate(-365deg) scale(0.99);
  }

  100% {
    transform: translateY(0px) rotate(-380deg) scale(1);
    opacity: 1;
  }
}

@keyframes smoothFall3 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(30deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(90deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(160deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(220deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(280deg) scale(1.03);
  }

  80% {
    transform: translateY(-10px) rotate(330deg) scale(1.05);
  }

  90% {
    transform: translateY(-2px) rotate(350deg) scale(1.02);
  }

  95% {
    transform: translateY(2px) rotate(365deg) scale(0.98);
  }

  100% {
    transform: translateY(0px) rotate(380deg) scale(1);
    opacity: 1;
  }
}

@keyframes smoothFall4 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(-35deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(-100deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(-180deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(-250deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(-310deg) scale(1.04);
  }

  80% {
    transform: translateY(-10px) rotate(-360deg) scale(1.06);
  }

  90% {
    transform: translateY(-2px) rotate(-380deg) scale(1.03);
  }

  95% {
    transform: translateY(2px) rotate(-390deg) scale(0.99);
  }

  100% {
    transform: translateY(0px) rotate(-400deg) scale(1);
    opacity: 1;
  }
}

@keyframes smoothFall5 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(40deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(110deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(200deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(270deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(340deg) scale(1.03);
  }

  80% {
    transform: translateY(-10px) rotate(390deg) scale(1.05);
  }

  90% {
    transform: translateY(-2px) rotate(410deg) scale(1.02);
  }

  95% {
    transform: translateY(2px) rotate(425deg) scale(0.98);
  }

  100% {
    transform: translateY(0px) rotate(440deg) scale(1);
    opacity: 1;
  }
}

@keyframes smoothFall6 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(-45deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(-120deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(-210deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(-280deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(-350deg) scale(1.04);
  }

  80% {
    transform: translateY(-10px) rotate(-400deg) scale(1.06);
  }

  90% {
    transform: translateY(-2px) rotate(-420deg) scale(1.03);
  }

  95% {
    transform: translateY(2px) rotate(-435deg) scale(0.99);
  }

  100% {
    transform: translateY(0px) rotate(-450deg) scale(1);
    opacity: 1;
  }
}

@keyframes smoothFall7 {
  0% {
    transform: translateY(-800px) rotate(0deg) scale(0.2);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
    transform: translateY(-700px) rotate(50deg) scale(0.5);
  }

  20% {
    transform: translateY(-500px) rotate(140deg) scale(0.7);
  }

  35% {
    transform: translateY(-300px) rotate(240deg) scale(0.85);
  }

  50% {
    transform: translateY(-150px) rotate(320deg) scale(0.95);
  }

  65% {
    transform: translateY(-50px) rotate(400deg) scale(1.05);
  }

  80% {
    transform: translateY(-10px) rotate(460deg) scale(1.08);
  }

  90% {
    transform: translateY(-2px) rotate(480deg) scale(1.04);
  }

  95% {
    transform: translateY(2px) rotate(495deg) scale(1);
  }

  100% {
    transform: translateY(0px) rotate(510deg) scale(1);
    opacity: 1;
  }
}

.round-falling-circles.paused .round-circle {
  animation-play-state: paused;
}

.round-circle.landed {
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-2px) rotate(1deg);
  }

  50% {
    transform: translateY(-4px) rotate(0deg);
  }

  75% {
    transform: translateY(-2px) rotate(-1deg);
  }
}

@media (max-width: 1600px) {
  .round-falling-circles {
    width: 550px;
    height: 370px;
    left: 90px;
  }

  .round-circle.wave-1:nth-child(1) {
    width: 200px;
    height: 200px;
    font-size: 15px;
    left: 0px;
    bottom: 80px;
  }

  .round-circle.wave-1:nth-child(2) {
    width: 160px;
    height: 160px;
    font-size: 13px;
    left: 460px;
    bottom: 0px;
  }

  .round-circle.wave-1:nth-child(3) {
    width: 115px;
    height: 115px;
    font-size: 10px;
    left: 180px;
    bottom: 180px;
  }

  .round-circle.wave-1:nth-child(4) {
    width: 180px;
    height: 180px;
    font-size: 14px;
    left: 370px;
    bottom: 140px;
  }

  .round-circle.wave-2:nth-child(5) {
    width: 140px;
    height: 140px;
    font-size: 11px;
    left: 125px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(6) {
    width: 95px;
    height: 95px;
    font-size: 8px;
    left: 8px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(7) {
    width: 220px;
    height: 220px;
    font-size: 16px;
    left: 250px;
    bottom: 0px;
  }
}

@media (max-width: 1400px) {
  .round-falling-circles {
    width: 500px;
    height: 340px;
    left: 80px;
  }

  .round-circle.wave-1:nth-child(1) {
    width: 180px;
    height: 180px;
    font-size: 14px;
    left: 0px;
    bottom: 70px;
  }

  .round-circle.wave-1:nth-child(2) {
    width: 140px;
    height: 140px;
    font-size: 12px;
    left: 400px;
    bottom: 0px;
  }

  .round-circle.wave-1:nth-child(3) {
    width: 100px;
    height: 100px;
    font-size: 9px;
    left: 160px;
    bottom: 160px;
  }

  .round-circle.wave-1:nth-child(4) {
    width: 160px;
    height: 160px;
    font-size: 13px;
    left: 320px;
    bottom: 130px;
  }

  .round-circle.wave-2:nth-child(5) {
    width: 125px;
    height: 125px;
    font-size: 10px;
    left: 110px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(6) {
    width: 85px;
    height: 85px;
    font-size: 7px;
    left: 6px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(7) {
    width: 200px;
    height: 200px;
    font-size: 15px;
    left: 220px;
    bottom: 0px;
  }
}

@media (max-width: 1200px) {
  .round-falling-circles {
    width: 450px;
    height: 310px;
    left: 70px;
  }

  .round-circle.wave-1:nth-child(1) {
    width: 160px;
    height: 160px;
    font-size: 13px;
    left: 0px;
    bottom: 60px;
  }

  .round-circle.wave-1:nth-child(2) {
    width: 125px;
    height: 125px;
    font-size: 11px;
    left: 350px;
    bottom: 0px;
  }

  .round-circle.wave-1:nth-child(3) {
    width: 85px;
    height: 85px;
    font-size: 8px;
    left: 140px;
    bottom: 140px;
  }

  .round-circle.wave-1:nth-child(4) {
    width: 140px;
    height: 140px;
    font-size: 12px;
    left: 280px;
    bottom: 115px;
  }

  .round-circle.wave-2:nth-child(5) {
    width: 110px;
    height: 110px;
    font-size: 9px;
    left: 95px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(6) {
    width: 75px;
    height: 75px;
    font-size: 6px;
    left: 5px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(7) {
    width: 180px;
    height: 180px;
    font-size: 14px;
    left: 190px;
    bottom: 0px;
  }
}

@media (max-width: 992px) {
  .homehtlgtsec2 {
    min-height: 110vh;
  }

  /* .round-falling-circles {
    width: 400px;
    height: 280px;
    left: 60px;
  }

  .round-circle.wave-1:nth-child(1) { width: 140px; height: 140px; font-size: 12px; left: 0px; bottom: 50px; }
  .round-circle.wave-1:nth-child(2) { width: 110px; height: 110px; font-size: 10px; left: 400px; bottom: 0px; }
  .round-circle.wave-1:nth-child(3) { width: 70px; height: 70px; font-size: 7px; left: 120px; bottom: 120px; }
  .round-circle.wave-1:nth-child(4) { width: 125px; height: 125px; font-size: 11px; left: 250px; bottom: 100px; }
  .round-circle.wave-2:nth-child(5) { width: 95px; height: 95px; font-size: 8px; left: 80px; bottom: 0px; }
  .round-circle.wave-2:nth-child(6) { width: 65px; height: 65px; font-size: 5px; left: 4px; bottom: 0px; }
  .round-circle.wave-2:nth-child(7) { width: 160px; height: 160px; font-size: 13px; left: 160px; bottom: 0px; }
 */

  .round-falling-circles {
    width: 450px;
    height: 310px;
    left: 100px;
  }

  .round-circle.wave-1:nth-child(1) {
    width: 160px;
    height: 160px;
    font-size: 13px;
    left: 0px;
    bottom: 60px;
  }

  .round-circle.wave-1:nth-child(2) {
    width: 125px;
    height: 125px;
    font-size: 11px;
    left: 370px;
    bottom: 0px;
  }

  .round-circle.wave-1:nth-child(3) {
    width: 85px;
    height: 85px;
    font-size: 8px;
    left: 140px;
    bottom: 140px;
  }

  .round-circle.wave-1:nth-child(4) {
    width: 140px;
    height: 140px;
    font-size: 12px;
    left: 280px;
    bottom: 115px;
  }

  .round-circle.wave-2:nth-child(5) {
    width: 110px;
    height: 110px;
    font-size: 9px;
    left: 95px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(6) {
    width: 75px;
    height: 75px;
    font-size: 6px;
    left: 5px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(7) {
    width: 180px;
    height: 180px;
    font-size: 14px;
    left: 190px;
    bottom: 0px;
  }
}

@media (max-width: 800px) {
  .homehtlgtsec2 {
    min-height: 120vh;
  }
}

/* @media (max-width: 768px) {
  .round-falling-circles {
    width: 320px;
    height: 220px;
    left: 40px;
  }

  .round-circle.wave-1:nth-child(1) { width: 100px; height: 100px; font-size: 9px; left: 0px; bottom: 40px; }
  .round-circle.wave-1:nth-child(2) { width: 85px; height: 85px; font-size: 7px; left: 350px; bottom: 0px; }
  .round-circle.wave-1:nth-child(3) { width: 55px; height: 55px; font-size: 5px; left: 90px; bottom: 90px; }
  .round-circle.wave-1:nth-child(4) { width: 95px; height: 95px; font-size: 8px; left: 200px; bottom: 70px; }
  .round-circle.wave-2:nth-child(5) { width: 75px; height: 75px; font-size: 6px; left: 60px; bottom: 0px; }
  .round-circle.wave-2:nth-child(6) { width: 50px; height: 50px; font-size: 4px; left: 3px; bottom: 0px; }
  .round-circle.wave-2:nth-child(7) { width: 120px; height: 120px; font-size: 10px; left: 120px; bottom: 0px; }
} */

@media (max-width: 700px) {
  .round-falling-circles {
    left: 70px;
  }
}

/* @media (max-width: 640px) {
  .round-falling-circles {
    width: 280px;
    height: 190px;
    left: 30px;
  }

  .round-circle.wave-1:nth-child(1) { width: 85px; height: 85px; font-size: 7px; left: 0px; bottom: 35px; }
  .round-circle.wave-1:nth-child(2) { width: 70px; height: 70px; font-size: 6px; left: 300px; bottom: 0px; }
  .round-circle.wave-1:nth-child(3) { width: 45px; height: 45px; font-size: 4px; left: 75px; bottom: 75px; }
  .round-circle.wave-1:nth-child(4) { width: 80px; height: 80px; font-size: 6px; left: 170px; bottom: 60px; }
  .round-circle.wave-2:nth-child(5) { width: 60px; height: 60px; font-size: 5px; left: 50px; bottom: 0px; }
  .round-circle.wave-2:nth-child(6) { width: 40px; height: 40px; font-size: 3px; left: 2px; bottom: 0px; }
  .round-circle.wave-2:nth-child(7) { width: 100px; height: 100px; font-size: 8px; left: 100px; bottom: 0px; }
} */

@media (max-width: 576px) {
  .round-falling-circles {
    left: 10px;
  }
}

@media (max-width: 520px) {
  .homehtlgtsec2 {
    min-height: 110vh;
  }

  .round-falling-circles {
    left: 70px;
  }

  .round-circle.wave-1:nth-child(1) {
    width: 100px;
    height: 100px;
    font-size: 9px;
    left: 0px;
    bottom: 40px;
  }

  .round-circle.wave-1:nth-child(2) {
    width: 85px;
    height: 85px;
    font-size: 7px;
    left: 250px;
    bottom: 0px;
  }

  .round-circle.wave-1:nth-child(3) {
    width: 55px;
    height: 55px;
    font-size: 5px;
    left: 90px;
    bottom: 90px;
  }

  .round-circle.wave-1:nth-child(4) {
    width: 95px;
    height: 95px;
    font-size: 8px;
    left: 200px;
    bottom: 70px;
  }

  .round-circle.wave-2:nth-child(5) {
    width: 75px;
    height: 75px;
    font-size: 6px;
    left: 60px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(6) {
    width: 50px;
    height: 50px;
    font-size: 4px;
    left: 3px;
    bottom: 0px;
  }

  .round-circle.wave-2:nth-child(7) {
    width: 120px;
    height: 120px;
    font-size: 10px;
    left: 120px;
    bottom: 0px;
  }
}

/* @media (max-width: 480px) {
  .round-falling-circles {
    display: none; 
  }
} */

.homehtlgtsec2-circle {
  position: absolute;
  top: 50%;
  left: -500px;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.9), transparent 95%);
  filter: blur(100px);
  /* z-index: 1; */
}

.homehtlgtsec2-content {
  z-index: 3;
}

.homehtlgtsec2-content h3 {
  font-size: 45px;
  line-height: 55px;
  color: #fff;
  max-width: 750px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
}

.homehtlgtsec2-content p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1300px) {
  .homehtlgtsec2-content h3 {
    font-size: 40px;
    line-height: 50px;
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  .homehtlgtsec2-content h3 {
    font-size: 35px;
    line-height: 45px;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .homehtlgtsec2-content h3 {
    font-size: 30px;
    line-height: 40px;
    max-width: unset;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .homehtlgtsec2-content h3 {
    font-size: 25px;
    line-height: 35px;
    max-width: unset;
  }
}

@media (max-width: 500px) {
  .homehtlgtsec2-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END HOME HIGHLIGHT SECTION 2 ******************************************/
.homeareaservesec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.homeareaservesecimg {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 300px;
  opacity: 1;
  z-index: 2;
}

.homeareaservesecimg img {
  width: 100%;
  object-fit: cover;
}

.homeareaservice-content {
  z-index: 3;
}

.homeareaserve-text h2 {
  font-size: 100px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: center;
}

.homeareaserve-text h2 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.homeareaserve-text p {
  font-size: 30px;
  line-height: 40px;
  color: #313131;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .homeareaserve-text h2 {
    font-size: 90px;
  }

  .homeareaservesecimg {
    width: 250px;
  }
}

@media (max-width: 1300px) {
  .homeareaserve-text h2 {
    font-size: 80px;
  }

  .homeareaservesecimg {
    width: 240px;
  }
}

@media (max-width: 992px) {
  .homeareaserve-text h2 {
    font-size: 70px;
  }

  .homeareaservesecimg {
    width: 200px;
  }

  .homeareaserve-text p {
    font-size: 27px;
    line-height: 37px;
    max-width: 750px;
  }
}

@media (max-width: 768px) {
  .homeareaserve-text h2 {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .homeareaservesecimg {
    width: 150px;
  }

  .homeareaserve-text p {
    font-size: 25px;
    line-height: 35px;
    max-width: unset;
  }
}

@media (max-width: 576px) {
  .homeareaserve-text h2 {
    font-size: 50px;
  }

  .homeareaservesecimg {
    width: 100px;
  }

  .homeareaserve-text p {
    font-size: 23px;
    line-height: 33px;
    max-width: unset;
  }
}

@media (max-width: 500px) {
  .homeareaserve-text h2 {
    font-size: 40px;
  }

  .homeareaserve-text p {
    font-size: 20px;
    line-height: 30px;
    max-width: unset;
  }
}

.accordion-columns {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: unset;
  margin-top: 60px;
}

.accordion-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #fff;
  transition: flex 0.3s ease;
  overflow: hidden;
  position: relative;
}

.accordion-header {
  /* background: #f3f3f3; */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  height: 100%;
}

/* .accordion-header img,
.accordion-header .icon {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
} */

.accordian-headimg {
  max-width: 200px;
  height: 400px;
}

.accordian-headimg img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 25px;
}

.accordion-header .label span {
  /* color: #3a0ca3;
	font-weight: bold; */
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  margin-bottom: 10px;
  font-size: 35px;
  line-height: 45px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px;
  text-transform: capitalize;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion-item.active {
  flex: 4;
  border: 0px solid #9d8be23b;
  border-radius: 10px;
}

.accordion-item.active .accordion-header {
  display: none;
}

.accordion-item .accordion-content {
  display: none;
  background: #fff;
  padding: 10px;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
}

.accordion-item.active .accordion-content {
  display: flex;
}

.accordion-item .accordion-content .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.accordion-item .accordian-image {
  flex: 1 1 100%;
}

.accordion-item .accordian-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 25px;
  height: 400px;
}

.accordion-item .row > div {
  flex: 1 1 calc(50% - 10px);
}

.accordion-item .accordian-label h3 {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 50px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px;
  text-transform: capitalize;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion-item .accordian-label p {
  font-size: 20px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.accordion-item .accordian-description p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #313131;
  text-align: justify;
}

.accordion-item .accordian-button {
  border-radius: 50px;
  color: #000;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.accordion-item .accordian-button::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: linear-gradient(175deg, #665dcd 0%, #5fa4e6 40%, #d0169e 100%);
  border-radius: 50%;
  margin-right: 10px;
}

.accordion-item .accordian-button:hover {
  color: #3300ff;
}

.accordion-item .accordian-button:hover::before {
  background: linear-gradient(-175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
}

@media (max-width: 992px) {
  .accordion-columns {
    flex-direction: column;
    height: auto;
    margin-top: 0px;
  }

  .accordion-item {
    flex: 1 1 100%;
    margin-top: 40px;
  }

  .accordion-item.active {
    flex: 1 1 100%;
  }

  .accordion-header {
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
  }

  .accordion-header .label span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .accordion-item .accordion-content .row {
    flex-direction: column;
  }

  .accordion-item .row > div,
  .accordion-item .accordian-image {
    flex: 1 1 100%;
    width: 100%;
  }

  .accordion-item .accordian-label h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .accordion-item .accordian-label h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .accordion-item .accordian-label h3 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media (max-width: 500px) {
  .accordion-item .accordian-description p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END HOME AREA WE SERVE SECTION ******************************************/
.twobond-testi-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../images/hmtestibannerimg.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.twobond-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.twobond-testimonial-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: 60px 0; */
}

.twobond-testimonial-left {
  color: #fff;
  max-width: 700px;
}

.hometesti-content h2 {
  font-size: 110px;
  line-height: 120px;
  color: #fff;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.hometesti-gradient-text {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.twobond-card {
  background: #fff;
  color: #000;
  border-radius: 20px;
  border-left: 12px solid #3300ff;
  padding: 30px;
  max-width: 650px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-bottom: 80px;
  margin-top: 25px;
}

.twobond-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  /* margin-bottom: 20px; */
}

.twobond-client-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
  color: #3300ff;
  margin-bottom: 5px;
}

.twobond-client-role {
  font-size: 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  margin-bottom: 20px;
}

.twobond-card-icon {
  width: 36px;
  height: 36px;
}

.twobond-client-text {
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #313131;
  text-align: justify;
}

#twobond-carousel .owl-nav {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 10px;
}

#twobond-carousel .owl-stage-outer {
  position: relative;
}

#twobond-carousel .owl-nav button {
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#twobond-carousel .owl-nav button iconify-icon {
  font-size: 16px;
}

#twobond-carousel .owl-nav .owl-prev {
  background: #fff;
  color: #3300ff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#twobond-carousel .owl-nav .owl-next {
  background: #3300ff;
  color: #fff;
}

#twobond-carousel .owl-nav .owl-prev:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#twobond-carousel .owl-nav .owl-next:hover {
  background: #1f0099;
}

#twobond-carousel .owl-dots {
  display: none;
}

@media (max-width: 1400px) {
  .hometesti-content h2 {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (max-width: 1300px) {
  .hometesti-content h2 {
    font-size: 90px;
    line-height: 100px;
  }
}

@media (max-width: 992px) {
  .hometesti-content h2 {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (max-width: 768px) {
  .hometesti-content h2 {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 15px;
  }

  .hometesti-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hometesti-content h2 {
    font-size: 60px;
    line-height: 70px;
  }

  .twobond-client-name {
    font-size: 23px;
  }

  .twobond-client-text {
    font-size: 16px;
    line-height: 28px;
  }

  .twobond-card {
    margin-top: 15px;
  }
}

@media (max-width: 500px) {
  .hometesti-content h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

/****************************************** END HOME TESTIMONIALS SECTION ******************************************/
.homeletstlksec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.homeletstlksecimg {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 300px;
  opacity: 1;
  z-index: 2;
}

.homeletstlksecimg img {
  width: 100%;
  object-fit: cover;
}

.homeletstlk-content {
  z-index: 3;
}

.homeletstlk-gradient-text {
  background: linear-gradient(90deg, #000000, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.homeletstlk-text h2 {
  font-size: 100px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: left;
  max-width: 1000px;
}

.homeletstlk-text h2 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.hmletstlkvideocvr {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-top: 40px;
  height: 370px;
}

.hmletstlkvideocvr img {
  width: 100%;
  display: block;
  border-radius: 25px;
  object-fit: cover;
}

.hmletstlkvideocvr2 {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-top: 100px;
  height: 370px;
}

.hmletstlkvideocvr2 img {
  width: 100%;
  display: block;
  border-radius: 25px;
  object-fit: cover;
}

.letstlk-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  margin-top: 25px;
  text-transform: capitalize;
  border: 1px solid #3300ff;
  background-color: #3300ff;
  position: absolute;
  bottom: 30px;
  left: 45%;
  transform: translateX(-45%);
  justify-content: center;
}

.letstlk-btn::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.letstlk-btn:hover {
  background: #1f0099;
  color: #fff;
  border: 1px solid #1f0099;
}

.letstlk-btn:hover::before {
  background: #fff;
}

/* .video-button {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #3300FF;
	color: #fff;
	padding: 8px 16px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.3s ease;
}

.video-button .dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	display: inline-block;
}

.video-button:hover {
	background: #1F0099;
} */

@media (max-width: 1400px) {
  .homeletstlk-text h2 {
    font-size: 90px;
  }

  .homeletstlksecimg {
    width: 250px;
  }

  .letstlk-btn {
    left: 35%;
    transform: translateX(-35%);
    bottom: 50px;
  }
}

@media (max-width: 1300px) {
  .homeletstlk-text h2 {
    font-size: 80px;
  }

  .homeletstlksecimg {
    width: 240px;
  }
}

@media (max-width: 1200px) {
  .letstlk-btn {
    left: 22%;
    transform: translateX(-22%);
    bottom: 100px;
  }
}

@media (max-width: 992px) {
  .homeletstlk-text h2 {
    font-size: 70px;
  }

  .homeletstlksecimg {
    width: 200px;
  }

  .letstlk-btn {
    bottom: 30px;
    left: 45%;
    transform: translateX(-45%);
  }

  .hmletstlkvideocvr2 {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .homeletstlk-text h2 {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .homeletstlksecimg {
    width: 150px;
  }

  .letstlk-btn {
    left: 50%;
    transform: translateX(-50%);
  }

  .homeletstlk-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .homeletstlk-text h2 {
    font-size: 50px;
  }

  .homeletstlksecimg {
    width: 100px;
  }
}

@media (max-width: 500px) {
  .homeletstlk-text h2 {
    font-size: 40px;
  }
}

/****************************************** END HOME LETS TALK SECTION ******************************************/
.footersec {
  background: #000;
  position: relative;
  overflow: hidden;
}

.footersec-circle {
  position: absolute;
  top: 10%;
  left: -200px;
  transform: translateY(-50%);
  width: 400px;
  height: 280px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.9), transparent 95%);
  filter: blur(100px);
  /* z-index: 1; */
}

.footersec-circle2 {
  position: absolute;
  bottom: -500px;
  right: -250px;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.9), transparent 95%);
  filter: blur(100px);
  /* z-index: 1; */
}

.footersec-content,
.footersec-info {
  position: relative;
  z-index: 3;
}

.footersec-content h3 {
  font-size: 60px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
  text-align: left;
}

.footersec-content p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 500px;
}

.footersec-content h2 {
  font-size: 100px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
  text-transform: capitalize;
  margin-top: 80px;
  max-width: 800px;
}

.footersec-content h2 span {
  color: #3300ff;
}

.footer-action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #3300ff, #000);
  border: 1px solid #3300ff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  text-decoration: none;
  transition: ease-in-out 0.4s;
}

.footer-action-btn iconify-icon {
  font-size: 50px;
  color: #fff;
  transform: rotate(-45deg);
  transition: ease-in-out 0.4s;
}

.footer-action-btn:hover {
  background: linear-gradient(to top, #3300ff, #000);
}

.footer-action-btn:hover iconify-icon {
  transform: rotate(45deg);
}

.footer-btncvr {
  display: flex;
  align-items: center;
  justify-content: left;
}

.footersec-info {
  color: #fff;
}

.footersec-info h6 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #3300ff;
}

.footersec-info h6 span {
  color: #fff;
}

.footersec-info p {
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.footersec-info a {
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  transition: ease-in-out 0.4s;
}

.footersec-info a:hover {
  color: #3300ff;
}

.footersec-info .footer-email {
  font-size: 40px;
  line-height: 50px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  transition: ease-in-out 0.4s;
}

.footersec-info .footer-email:hover {
  color: #3300ff;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 25px;
  margin-top: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  background: #3300ff;
  color: #fff;
  border: 1px solid #3300ff;
}

.footer-ball {
  position: absolute;
  top: 20%;
  left: 43%;
  width: 160px;
  height: 160px;
  transform: translate(-20%, -43%);
  animation: moveSquare 8s linear infinite;
  z-index: 0;
}

.footer-ball img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes moveSquare {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(100px, 0) rotate(90deg);
  }

  50% {
    transform: translate(100px, -100px) rotate(180deg);
  }

  75% {
    transform: translate(0, -100px) rotate(270deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.footersec-content ul {
  margin: 40px 0 0 0;
  padding: 0;
  list-style: none;
}

.footersec-content ul li {
  display: inline-block;
  margin-right: 20px;
}

.footersec-content ul li a {
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  padding: 5px 10px 5px 0;
  transition: ease-in-out 0.4s;
  text-decoration: none;
}

.footersec-content ul li a:hover {
  color: #3300ff;
}

.footersec-content ul li a:hover {
  color: #3300ff;
}

.footersec hr {
  border: none;
  height: 1.5px;
  background: linear-gradient(to right, #000, #3300ff, #000);
  margin: 60px 0 25px 0;
}

.footersec .copywrite {
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 25px;
  z-index: 3;
  position: relative;
}

@media (max-width: 1400px) {
  .footersec-content h2 {
    font-size: 90px;
  }

  .footersec-content p {
    max-width: 400px;
  }
}

@media (max-width: 1300px) {
  .footersec-content h3 {
    font-size: 55px;
  }

  .footersec-content h2 {
    font-size: 80px;
  }

  .footersec-info .footer-email {
    font-size: 30px;
    line-height: 40px;
  }

  .footersec-info h6 {
    font-size: 23px;
    line-height: 33px;
  }

  .footer-ball {
    width: 120px;
    height: 120px;
    z-index: 2;
  }
}

@media (max-width: 992px) {
  .footersec-content h3 {
    font-size: 50px;
  }

  .footersec-content h2 {
    font-size: 70px;
    max-width: unset;
    margin-top: 40px;
  }

  .footersec-content p {
    max-width: unset;
  }

  .footersec-content,
  .footersec-info {
    position: relative;
    z-index: 3;
  }

  .footer-ball {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 160px;
    height: 160px;
    transform: translate(20%, 15%);
    animation: moveSquare 8s linear infinite;
    z-index: -1;
  }

  .footersec-content ul {
    margin: 30px 0 20px 0;
  }

  .footersec-info .footer-email {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .footersec-content h3 {
    font-size: 45px;
    margin-bottom: 15px;
  }

  .footersec-content h2 {
    font-size: 60px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .footersec-content h3 {
    font-size: 40px;
  }

  .footersec-content h2 {
    font-size: 50px;
  }

  .footersec-content ul li {
    display: block;
    margin: 15px 0;
  }

  .footersec-info p {
    font-size: 16px;
    line-height: 28px;
  }

  .footersec-info a {
    font-size: 16px;
    line-height: 28px;
  }

  .footersec-content ul li a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 550px) {
  .footer-action-btn {
    margin-top: 25px;
  }
}

@media (max-width: 500px) {
  .footersec-content h3 {
    font-size: 35px;
  }

  .footersec-content h2 {
    font-size: 40px;
  }
}

/****************************************** END FOOTER SECTION ******************************************/
.aboutbannersec {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.aboutbannersec-circle {
  position: absolute;
  top: 20%;
  right: -300px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.1), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.aboutbannersec-circle2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.aboutbanner-content {
  position: relative;
  z-index: 2;
}

.aboutbanner-gradient-text {
  background: linear-gradient(90deg, #000, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.aboutbanner-content h1 {
  font-size: 80px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
}

.aboutbanner-content h1 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.aboutbanner-content p {
  color: #313131;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1400px) {
  .aboutbanner-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 1300px) {
  .aboutbanner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .aboutbanner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .aboutbanner-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .aboutbanner-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .aboutbanner-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.aboutbanner-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(51, 0, 255, 0.3);
  animation: floatAnimation 6s ease-in-out infinite;
}

.float-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.float-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.float-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
}

.float-5 {
  top: 45%;
  left: 18%;
  animation-delay: 4s;
}

.float-6 {
  top: 46%;
  right: 5%;
  animation-delay: 5s;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(2deg);
  }

  50% {
    transform: translateY(-20px) rotate(0deg);
  }

  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.central-logo {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: linear-gradient(135deg, #3300ff 0%, #6633ff 50%, #9966ff 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(51, 0, 255, 0.4),
    0 10px 30px rgba(51, 0, 255, 0.3), inset 0 -12px 30px rgba(0, 0, 0, 0.3),
    inset 0 12px 30px rgba(255, 255, 255, 0.15);
}

.central-logo::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 18%;
  width: 30%;
  height: 30%;
  background: radial-gradient(
    ellipse at 20% 20%,
    rgba(255, 255, 255, 0.7),
    transparent 60%
  );
  border-radius: 50%;
  filter: blur(1px);
}

.central-logo img {
  width: 150px;
  object-fit: contain;
}

.central-logo2 img {
  width: 120px;
  object-fit: contain;
}

.central-logo2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 3px solid #3300ff;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .central-logo {
    width: 150px;
    height: 150px;
  }

  .central-logo img {
    width: 120px;
    object-fit: contain;
  }
}

@media (max-width: 992px) {
  .central-logo {
    width: 250px;
    height: 250px;
  }

  .central-logo img {
    width: 150px;
    object-fit: contain;
  }

  .float-5 {
    top: 45%;
    left: 5%;
    animation-delay: 4s;
  }
}

@media (max-width: 768px) {
  .central-logo {
    width: 200px;
    height: 200px;
  }

  .float-5 {
    top: 45%;
    left: 5%;
    animation-delay: 4s;
  }

  .float-6 {
    top: 50%;
    right: 2%;
    animation-delay: 5s;
  }
}

@media (max-width: 576px) {
  .central-logo {
    width: 180px;
    height: 180px;
  }
}

/****************************************** END ABOUT BANNER SECTION ******************************************/
.aboutjourneysec {
  background: linear-gradient(135deg, #000000 0%, #0c0145 50%, #000000 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(51, 0, 255, 0.3),
    rgba(102, 51, 255, 0.1)
  );
  filter: blur(40px);
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -100px;
  animation-delay: 5s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }

  33% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }

  66% {
    transform: translateY(20px) translateX(-15px) scale(0.9);
  }
}

.aboutjourneyheader {
  text-align: center;
  margin-bottom: 80px;
}

.gradient-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(51, 0, 255, 0.2),
    rgba(102, 51, 255, 0.3)
  );
  border: 1px solid rgba(51, 0, 255, 0.4);
  border-radius: 50px;
  padding: 12px 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.gradient-badge .home-clrdot {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.gradient-badge span {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
}

.aboutjourney-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.aboutjourney-text h2 {
  font-size: 90px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.aboutjourney-text h2 span {
  background: linear-gradient(to right, #3300ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.aboutjourney-text h2 span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  border-radius: 2px;
  opacity: 0.6;
}

.title-highlight {
  /* background: linear-gradient(135deg, #3300ff 0%, #6633ff 50%, #9966ff 100%); */
  background: linear-gradient(to right, #3300ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  position: relative;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  border-radius: 2px;
  opacity: 0.6;
}

.aboutjourney-text p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 45px;
}

@media (max-width: 1400px) {
  .aboutjourney-text h2 {
    font-size: 80px;
  }
}

@media (max-width: 1300px) {
  .aboutjourney-text h2 {
    font-size: 70px;
  }
}

@media (max-width: 992px) {
  .aboutjourney-text h2 {
    font-size: 60px;
  }

  .aboutjourney-text h2 span::after {
    opacity: 0;
  }

  .aboutjourney-text p {
    max-width: 600px;
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .aboutjourney-text h2 {
    font-size: 50px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .aboutjourney-text h2 {
    font-size: 40px;
  }
}

@media (max-width: 500px) {
  .aboutjourney-text h2 {
    font-size: 30px;
  }

  .aboutjourney-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

/* .aboutjourney-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
} */

.aboutjourney-grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; */
  align-items: center;
}

.aboutstory-content {
  position: relative;
  padding-right: 30px;
}

.aboutstory-intro {
  font-size: 30px;
  line-height: 40px;
  color: #3300ff;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
}

.aboutstory-intro::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -10px;
  font-size: 60px;
  color: rgba(51, 0, 255, 0.3);
  font-family: serif;
}

.aboutstory-text {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
}

.aboutstory-highlight {
  background: linear-gradient(
    135deg,
    rgba(51, 0, 255, 0.1),
    rgba(102, 51, 255, 0.05)
  );
  border-left: 4px solid #3300ff;
  border-radius: 0 15px 15px 0;
  padding: 25px;
  margin: 50px 0 30px 0;
  position: relative;
  backdrop-filter: blur(10px);
}

.aboutstory-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 0, 255, 0.1), transparent);
  border-radius: 0 15px 15px 0;
  z-index: -1;
}

.about-highlight-quote {
  font-size: 20px;
  font-style: italic;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-icon {
  font-size: 30px;
  color: #3300ff;
  flex-shrink: 0;
}

.about-innovation-showcase {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.floating-tech-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tech-element {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(51, 0, 255, 0.9),
    rgba(102, 51, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(51, 0, 255, 0.3);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  text-align: center;
  min-width: 120px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: techFloat 8s ease-in-out infinite;
}

.tech-element:hover {
  background: linear-gradient(135deg, #3300ff, #6633ff);
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 40px rgba(51, 0, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.tech-element iconify-icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
  color: #fff;
}

.tech-element span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.element-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.element-2 {
  top: 5%;
  right: 20%;
  animation-delay: 1s;
}

.element-3 {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
}

.element-4 {
  top: 40%;
  right: 2%;
  animation-delay: 3s;
}

.element-5 {
  bottom: 5%;
  left: 20%;
  animation-delay: 4s;
}

.element-6 {
  bottom: 5%;
  right: 20%;
  animation-delay: 5s;
}

@keyframes techFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-25px) rotate(0deg);
    opacity: 0.9;
  }

  75% {
    transform: translateY(-10px) rotate(-2deg);
    opacity: 1;
  }
}

.central-visualization {
  position: relative;
  z-index: 2;
}

.pulsing-core {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  border-color: rgba(51, 0, 255, 0.6);
  animation-delay: 0s;
}

.ring-2 {
  width: 160px;
  height: 160px;
  border-color: rgba(102, 51, 255, 0.4);
  animation-delay: 1s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  border-color: rgba(153, 102, 255, 0.3);
  animation-delay: 2s;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.core-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: coreGlow 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(51, 0, 255, 0.6);
}

.core-logo iconify-icon {
  font-size: 40px;
  color: #fff;
}

@keyframes coreGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(51, 0, 255, 0.6);
  }

  50% {
    box-shadow: 0 0 50px rgba(51, 0, 255, 0.9);
  }
}

.data-streams {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stream {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #3300ff, transparent);
  border-radius: 1px;
  animation: streamFlow 2s ease-in-out infinite;
}

.stream-1 {
  top: 0;
  left: 50%;
  animation-delay: 0s;
}

.stream-2 {
  top: 50%;
  right: 0;
  animation-delay: 0.5s;
  transform: rotate(90deg);
}

.stream-3 {
  bottom: 0;
  left: 50%;
  animation-delay: 1s;
  transform: rotate(180deg);
}

.stream-4 {
  top: 50%;
  left: 0;
  animation-delay: 1.5s;
  transform: rotate(270deg);
}

@keyframes streamFlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@media (max-width: 992px) {
  .aboutstory-content {
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  .metric-number {
    font-size: 36px;
  }

  .pulsing-core {
    width: 150px;
    height: 150px;
  }

  .core-logo {
    width: 60px;
    height: 60px;
  }

  .core-logo iconify-icon {
    font-size: 30px;
  }

  .tech-element {
    padding: 12px;
    min-width: 80px;
  }
}

@media (max-width: 576px) {
  .aboutjourney-text h2 {
    font-size: 50px;
  }

  .aboutstory-intro {
    font-size: 25px;
    line-height: 35px;
  }

  .aboutstory-text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .aboutjourney-text h2 {
    font-size: 40px;
  }
}

/****************************************** END ABOUT JOURNEY OR STORY SECTION ******************************************/
.missionvisionsec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.missionvisionsec-circle {
  position: absolute;
  top: 50%;
  left: -250px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.1), transparent 70%);
  filter: blur(100px);
  /* z-index: 1; */
}

.missionvision-header {
  text-align: center;
  margin-bottom: 60px;
}

.missionvision-header h2 {
  font-size: 60px;
  line-height: 70px;
  color: #000;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
}

.missionvision-header h2 span {
  background: linear-gradient(to right, #1f0099, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.abt-mission-card,
.abt-vision-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  height: 100%;
  position: relative;
  z-index: 2;
}

.abt-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3300ff, #1f0099);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.abt-card-icon iconify-icon {
  font-size: 40px;
  color: #fff;
  animation: flipInfinite 2s linear infinite;
  transform-style: preserve-3d;
}

@keyframes flipInfinite {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.abt-mission-card h3,
.abt-vision-card h3 {
  font-size: 30px;
  line-height: 40px;
  color: #000;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
}

.abt-mission-card p,
.abt-vision-card p {
  font-size: 18px;
  line-height: 30px;
  color: #313131;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
}

.abt-mission-points {
  margin-top: 30px;
}

.abt-point {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.abt-point iconify-icon {
  font-size: 16px;
  color: #fff;
  margin-right: 12px;
  /* background: rgba(51, 0, 255, 0.1); */
  background: linear-gradient(135deg, #3300ff, #1f0099);
  padding: 6px;
  border-radius: 50%;
}

.abt-point span {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}

.abt-vision-elements {
  margin-top: 30px;
}

.abt-vision-element {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.abt-element-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3300ff, #1f0099);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  margin-right: 15px;
}

.abt-vision-element span {
  font-size: 16px;
  color: #313131;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}

@media (max-width: 992px) {
  .abt-vision-card {
    margin-top: 40px;
  }

  .abt-mission-card,
  .abt-vision-card {
    height: unset;
  }
}

@media (max-width: 768px) {
  .missionvision-header h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .abt-mission-card h3,
  .abt-vision-card h3 {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .missionvision-header h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .abt-mission-card h3,
  .abt-vision-card h3 {
    font-size: 25px;
    line-height: 35px;
  }

  .abt-mission-card p,
  .abt-vision-card p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .missionvision-header h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

/****************************************** END ABOUT MISSION VISION SECTION ******************************************/
.abtctasec {
  background: linear-gradient(135deg, #000 0%, #3300ff 100%);
  position: relative;
  overflow: hidden;
}

.abtcta-content {
  text-align: center;
  color: #fff;
}

.abtcta-content h2 {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
}

.abtcta-content h2 span {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.5)
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.abtcta-content p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 40px;
  /* opacity: 0.9; */
}

.abtcta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.abtcta-primary-btn {
  background: #fff;
  color: #3300ff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.abtcta-primary-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: #3300ff;
}

.abtcta-secondary-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.abtcta-secondary-btn:hover {
  background: #fff;
  color: #3300ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .abtcta-content h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .abtcta-content p {
    max-width: unset;
  }

  .abtcta-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .abtcta-content h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .abtcta-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .abtcta-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

/****************************************** END ABOUT CTA CONTENT SECTION ******************************************/
.contactbannersec {
  background: linear-gradient(95deg, #000000 0%, #000000 50%, #1800ff 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.contactbannersec-circle {
  position: absolute;
  top: 20%;
  right: -300px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.3), transparent 70%);
  filter: blur(100px);
  /* z-index: 1; */
}

.contactbannersec-circle2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.2), transparent 70%);
  filter: blur(80px);
  /* z-index: 1; */
}

.contactbanner-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contactfloat-element {
  position: absolute;
  /* background: linear-gradient(
    135deg,
    rgba(51, 0, 255, 0.8),
    rgba(102, 51, 255, 0.6)
  ); */
  background: linear-gradient(135deg, #3300ff, #6633ff);
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(51, 0, 255, 0.3);
  animation: contactFloatAnimation 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contactfloat-1 {
  top: 30%;
  right: 35%;
  animation-delay: 0s;
}

.contactfloat-2 {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.contactfloat-3 {
  bottom: 30%;
  right: 35%;
  animation-delay: 4s;
}

.contactfloat-4 {
  bottom: 15%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes contactFloatAnimation {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  50% {
    transform: translateY(-25px) rotate(0deg);
  }

  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.contactbanner-content {
  position: relative;
  z-index: 2;
}

.contactbanner-gradient-text {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.contactbanner-content h1 {
  font-size: 80px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}

.contactbanner-content h1 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.contactbanner-content p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
}

.contactbanner-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contactcentral-animation {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactpulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(51, 0, 255, 0.6);
  animation: contactPulseRing 3s ease-in-out infinite;
}

.contactring-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.contactring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 1s;
}

.contactring-3 {
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

@keyframes contactPulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.contactcore-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 0 30px rgba(51, 0, 255, 0.6);
  animation: contactCoreGlow 3s ease-in-out infinite;
}

.contactcore-icon iconify-icon {
  font-size: 35px;
  color: #fff;
}

@keyframes contactCoreGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(51, 0, 255, 0.6);
  }

  50% {
    box-shadow: 0 0 50px rgba(51, 0, 255, 0.9);
  }
}

@media (max-width: 1400px) {
  .contactbanner-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 1300px) {
  .contactbanner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .contactbanner-content h1 {
    font-size: 50px;
  }

  .contactfloat-1 {
    top: 50%;
    right: 60%;
    animation-delay: 0s;
  }

  .contactfloat-2 {
    top: 50%;
    right: 30%;
    animation-delay: 2s;
  }

  .contactfloat-3 {
    bottom: 20%;
    right: 65%;
    animation-delay: 4s;
  }

  .contactfloat-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 6s;
  }
}

@media (max-width: 768px) {
  .contactbanner-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .contactfloat-2 {
    top: 45%;
    right: 20%;
    animation-delay: 2s;
  }

  .contactfloat-4 {
    bottom: 13%;
    right: 30%;
    animation-delay: 6s;
  }

  .contactbanner-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contactbanner-visual {
    height: 400px;
    margin-top: 40px;
  }

  .contactcentral-animation {
    width: 150px;
    height: 150px;
  }

  .contactfloat-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
  }

  .contactring-1 {
    width: 90px;
    height: 90px;
  }

  .contactring-2 {
    width: 120px;
    height: 120px;
  }

  .contactring-3 {
    width: 150px;
    height: 150px;
  }

  .contactcore-icon {
    width: 60px;
    height: 60px;
  }

  .contactcore-icon iconify-icon {
    font-size: 25px;
  }
}

@media (max-width: 500px) {
  .contactbanner-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END CONTACT BANNER SECTION ******************************************/
.contactformsec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contactform-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.contactform-gradient-text {
  background: linear-gradient(90deg, #000000, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.contactform-text h2 {
  font-size: 60px;
  line-height: 70px;
  color: #000;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
}

.contactform-text h2 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.contactform-text p {
  font-size: 18px;
  line-height: 30px;
  color: #313131;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contactform-text h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .contactform-text p {
    max-width: unset;
  }

  .contactform-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contactform-text h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .contactform-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .contactform-text h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.contactform-wrapper {
  background: linear-gradient(to right, #1f0099, #3300ff);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  position: relative;
  z-index: 2;
}

.contactform-group {
  position: relative;
  margin-bottom: 30px;
}

.contactform-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contactform-input,
.contactform-textarea,
.contactform-select {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid #3300ff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
  outline: none;
}

.contactform-input:focus,
.contactform-textarea:focus,
.contactform-select:focus {
  border-bottom-color: #3300ff;
  color: #000;
}

.contactform-input:focus,
.contactform-textarea:focus {
  border-bottom-color: #3300ff;
  color: #fff;
}

.contactform-input:focus ~ .contactinput-underline,
.contactform-textarea:focus ~ .contactinput-underline {
  transform: scaleX(1);
}

.contactinput-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /* background: linear-gradient(90deg, #3300ff, #1f0099); */
  background: linear-gradient(90deg, #fff, #3300ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.contactform-select {
  appearance: none;
  cursor: pointer;
  position: relative;
}

.contactselect-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
  font-size: 14px;
}

.contactform-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 15px;
}

.contactform-textarea::placeholder {
  color: #fff;
  font-style: italic;
}

.contactform-submit {
  text-align: center;
  margin-top: 40px;
}

.contactsubmit-btn {
  /* background: linear-gradient(135deg, #3300ff, #1f0099); */
  background: linear-gradient(135deg, #3300ff, #000);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(51, 0, 255, 0.3);
}

.contactsubmit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(51, 0, 255, 0.4);
  /* background: linear-gradient(135deg, #1f0099, #3300ff); */
  background: linear-gradient(135deg, #000, #3300ff);
}

.contactbtn-icon {
  transition: transform 0.3s ease;
}

.contactsubmit-btn:hover .contactbtn-icon {
  transform: translateX(5px);
}

.contactmap-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .contactmap-wrapper {
    width: 100%;
    min-height: 500px;
    border-radius: 20px;
    margin-top: 50px;
  }

  .contactformsec {
    padding-bottom: 140px;
  }
}

/****************************************** END CONTACT FORM SECTION ******************************************/
.contactinfosec {
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%); */
  background: linear-gradient(135deg, #000 0%, #1f0099 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #3300ff;
  border-radius: 50%;
  animation: floatParticles 20s infinite linear;
  opacity: 0.6;
}

.particle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle-2 {
  top: 20%;
  right: 20%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.particle-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 10s;
  animation-duration: 20s;
}

.particle-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 15s;
  animation-duration: 35s;
}

.particle-5 {
  top: 50%;
  left: 50%;
  animation-delay: 20s;
  animation-duration: 28s;
}

@keyframes floatParticles {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  20% {
    transform: translateY(-20px) translateX(10px) scale(1.2);
  }

  40% {
    transform: translateY(-40px) translateX(-10px) scale(0.8);
  }

  60% {
    transform: translateY(-20px) translateX(15px) scale(1.1);
  }

  80% {
    transform: translateY(-60px) translateX(-5px) scale(0.9);
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-80px) translateX(0px) scale(1);
    opacity: 0;
  }
}

.contactinfo-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.contactinfo-gradient-text {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.contactinfo-text h2 {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.contactinfo-text h2 span {
  background: linear-gradient(135deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.contactinfo-text p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  /* opacity: 0.9; */
}

@media (max-width: 768px) {
  .contactinfo-text h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .contactinfo-text p {
    max-width: unset;
  }

  .contactinfo-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contactinfo-text h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .contactinfo-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .contactinfo-text h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.contactinfo-grid {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.contact-method {
  position: relative;
  height: 400px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 40px;
}

.contact-method:hover,
.contact-method.active {
  transform: translateY(-20px);
}

.method-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.method-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.05); */
  background: linear-gradient(135deg, #3300ff, #000);
  /* border: 2px solid rgba(51, 0, 255, 0.3); */
  border-radius: 50%;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
}

.contact-method:hover .method-icon-wrapper,
.contact-method.active .method-icon-wrapper {
  background: rgba(51, 0, 255, 0.2);
  border-color: #3300ff;
  box-shadow: 0 0 50px rgba(51, 0, 255, 0.4);
  transform: scale(1.1);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.8), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-method:hover .icon-glow,
.contact-method.active .icon-glow {
  opacity: 1;
}

.method-icon-wrapper iconify-icon {
  font-size: 50px;
  color: #fff;
  transition: all 0.5s ease;
  z-index: 2;
  position: relative;
  animation: flipInfinite 2s linear infinite;
  transform-style: preserve-3d;
}

.contact-method:hover .method-icon-wrapper iconify-icon,
.contact-method.active .method-icon-wrapper iconify-icon {
  color: #fff;
  transform: scale(1.2);
}

.method-connector {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #3300ff, transparent);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-method:hover .method-connector,
.contact-method.active .method-connector {
  opacity: 1;
}

.method-content {
  text-align: center;
  padding: 0 20px;
}

.method-content h3 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.contact-method:hover h3,
.contact-method.active h3 {
  color: #3300ff;
}

.method-details {
  margin-bottom: 25px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-method:hover .method-details,
.contact-method.active .method-details {
  opacity: 1;
}

.method-details p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.method-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3300ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  padding: 12px 25px;
  border: 2px solid rgba(51, 0, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(51, 0, 255, 0.1);
  backdrop-filter: blur(10px);
}

.method-action:hover {
  /* background: #3300ff; */
  background: linear-gradient(135deg, #3300ff, #000);
  color: #fff;
  border-color: transparent;
  border: 0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(51, 0, 255, 0.4);
}

.method-action iconify-icon {
  transition: transform 0.3s ease;
}

.method-action:hover iconify-icon {
  transform: translateX(5px);
}

.connection-lines {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  opacity: 0.6;
}

.connection-svg {
  width: 100%;
  height: 100%;
}

#connectionPath1,
#connectionPath2 {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawConnection 4s ease-in-out infinite;
}

#connectionPath2 {
  animation-delay: 2s;
}

@keyframes drawConnection {
  0%,
  100% {
    stroke-dashoffset: 500;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 992px) {
  .contact-method {
    margin-bottom: 80px;
  }

  .contactinfo-grid {
    margin-bottom: 0px;
  }
}

@media (max-width: 576px) {
  .method-content h3 {
    font-size: 25px;
    line-height: 35px;
  }

  .method-details p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END CONTACT METHOD CONTENT SECTION ******************************************/
.contactctasec {
  /* background: linear-gradient(135deg, #1f0099, #3300ff); */
  position: relative;
  overflow: hidden;
}

.contactcta-animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.contactcta-floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  animation: contactCtaFloat 15s infinite linear;
}

.contactcircle-1 {
  width: 25px;
  height: 25px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.contactcircle-2 {
  width: 30px;
  height: 30px;
  top: 75%;
  right: 15%;
  animation-delay: -5s;
}

.contactcircle-3 {
  width: 30px;
  height: 30px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.contactcircle-4 {
  width: 20px;
  height: 20px;
  top: 30%;
  right: 30%;
  animation-delay: -7s;
}

@keyframes contactCtaFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-30px) rotate(90deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.3;
  }

  75% {
    transform: translateY(-40px) rotate(270deg);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

.contactcta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contactcta-text {
  margin-bottom: 40px;
}

.contactcta-text h2 {
  font-size: 80px;
  line-height: 90px;
  color: #000;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.contactcta-text h2 span {
  /* background: linear-gradient(135deg, #fff, #3300ff); */
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.contactcta-text p {
  font-size: 18px;
  line-height: 30px;
  color: #313131;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  /* opacity: 0.9; */
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 40px auto 0;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: #3300ff;
  box-shadow: 0 0 0 4px rgba(51, 0, 255, 0.1);
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  outline: none;
}

.newsletter-button {
  padding: 15px 40px;
  background: linear-gradient(135deg, #3300ff, #1f0099);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 0, 255, 0.3);
}

@media (max-width: 1300px) {
  .contactcta-text h2 {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 992px) {
  .contactcta-text h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 768px) {
  .contactcta-text h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .contactcta-text p {
    max-width: unset;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .contactcta-text h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .contactcta-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END CONTACT NEWSLETTER SECTION ******************************************/
.insightsbannersec {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.insightsbannersec-circle {
  position: absolute;
  top: 20%;
  right: -300px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.1), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.insightsbannersec-circle2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.insightsbanner-content {
  position: relative;
  z-index: 2;
}

.insightsbanner-gradient-text {
  background: linear-gradient(90deg, #000, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.insightsbanner-content h1 {
  font-size: 80px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
}

.insightsbanner-content h1 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.insightsbanner-content p {
  color: #313131;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1400px) {
  .insightsbanner-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 1300px) {
  .insightsbanner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .insightsbanner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .insightsbanner-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .insightsbanner-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .insightsbanner-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.insights-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-insights {
  position: absolute;
  width: 100%;
  height: 100%;
}

.insight-bubble {
  position: absolute;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  color: #fff;
  padding: 20px 30px;
  border-radius: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 15px 40px rgba(51, 0, 255, 0.3);
  animation: bubbleFloat 8s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.insight-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(51, 0, 255, 0.4);
}

.bubble-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.bubble-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}

.bubble-4 {
  bottom: 13%;
  right: 20%;
  animation-delay: 6s;
}

.bubble-5 {
  top: 50%;
  left: 45%;
  animation-delay: 1s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.9;
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-10px) rotate(-2deg);
    opacity: 1;
  }
}

.insights-central-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #3300ff 0%, #6633ff 50%, #9966ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(51, 0, 255, 0.4);
  animation: centralPulse 4s ease-in-out infinite;
}

.insights-central-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(51, 0, 255, 0.3);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.insights-central-visual::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  border: 1px solid rgba(51, 0, 255, 0.2);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes centralPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.insights-central-icon {
  font-size: 80px;
  color: #fff;
}

@media (max-width: 1200px) {
  .insights-central-visual {
    width: 200px;
    height: 200px;
  }

  .bubble-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 6s;
  }

  .bubble-3 {
    bottom: 30%;
    left: -5%;
    animation-delay: 4s;
  }
}

@media (max-width: 992px) {
  .insights-central-visual {
    width: 250px;
    height: 250px;
  }

  .bubble-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
  }

  .bubble-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 6s;
  }
}

@media (max-width: 768px) {
  .insights-central-visual {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .central-logo {
    width: 180px;
    height: 180px;
  }
}

/****************************************** END INSIGHTS BANNER SECTION ******************************************/
.insightscontentsec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #3300ff 100%);
}

.insights-mb-80 {
  margin-bottom: 80px;
}

.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.insights-dot {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
}

.dot-1 {
  width: 8px;
  height: 8px;
  background: #fff;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.dot-2 {
  width: 6px;
  height: 6px;
  background: #3300ff;
  top: 25%;
  left: 15%;
  animation-delay: 1s;
}

.dot-3 {
  width: 10px;
  height: 10px;
  background: #ff6b35;
  bottom: 30%;
  right: 20%;
  animation-delay: 2s;
}

.dot-4 {
  width: 4px;
  height: 4px;
  background: #fff;
  bottom: 15%;
  left: 25%;
  animation-delay: 3s;
}

.dot-5 {
  width: 12px;
  height: 12px;
  background: #6633ff;
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}

.dot-6 {
  width: 6px;
  height: 6px;
  background: #ff9500;
  top: 60%;
  left: 5%;
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-10px) translateX(5px);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) translateX(-5px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-10px) translateX(3px);
    opacity: 0.9;
  }
}

.insights-meta-timeline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.insights-tag {
  background: rgba(51, 0, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1px;
  border: 1px solid rgba(51, 0, 255, 0.3);
  color: #fff;
}

.insights-date {
  font-size: 16px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: capitalize;
  color: #fff;
}

.insights-gradient-text {
  background: linear-gradient(90deg, #fff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: capitalize;
}

.insights-content h3 {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.insights-label {
  color: #3300ff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.insights-content p {
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: justify;
  margin-bottom: 25px;
}

.insights-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-figure {
  width: 300px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(51, 0, 255, 0.2),
    rgba(102, 51, 255, 0.3)
  );
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.figure-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
}

.figure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(51, 0, 255, 0.3),
    rgba(102, 51, 255, 0.2)
  );
  border-radius: 48px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  /* padding: 15px; */
  padding: 5px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: floatCard 4s ease-in-out infinite;
  overflow: hidden;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* .card-1 {
  top: 10%;
  right: -20px;
  width: 120px;
  height: 100px;
  animation-delay: 0s;
} */

.card-1 {
  top: 10%;
  right: 30px;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

/* .card-2 {
  bottom: 20%;
  left: -30px;
  width: 100px;
  height: 80px;
  animation-delay: 2s;
} */

.card-2 {
  bottom: 20%;
  left: 20px;
  width: 100px;
  height: 100px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@media (max-width: 992px) {
  .custom-row-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 768px) {
  .insights-gradient-text {
    margin-bottom: 15px;
  }

  .insights-content h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .insights-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END INSIGHTS CONTENT SECTION ******************************************/
.serbannersec {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.serbannersec-circle {
  position: absolute;
  top: 20%;
  right: -300px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.1), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.serbannersec-circle2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 0, 255, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.serbanner-content {
  position: relative;
  z-index: 2;
}

.serbanner-gradient-text {
  background: linear-gradient(90deg, #000, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.serbanner-content h1 {
  font-size: 80px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.2;
  color: #000;
  margin-bottom: 25px;
}

.serbanner-content h1 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.serbanner-content p {
  color: #313131;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1400px) {
  .insightsbanner-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 1300px) {
  .serbanner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .serbanner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .serbanner-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .serbanner-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .serbanner-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.ser-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.ser-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-bubble {
  position: absolute;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  color: #fff;
  box-shadow: 0 15px 40px rgba(51, 0, 255, 0.3);
  /* background: rgba(51, 0, 255, 0.1); */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(51, 0, 255, 0.3);
  padding: 20px 30px;
  border-radius: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  animation: orbit 20s linear infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ser-bubble-1 {
  animation-delay: 0s;
}

.ser-bubble-2 {
  animation-delay: -3.33s;
}

.ser-bubble-3 {
  animation-delay: -6.66s;
}

.ser-bubble-4 {
  animation-delay: -10s;
}

.ser-bubble-5 {
  animation-delay: -13.33s;
}

.ser-bubble-6 {
  animation-delay: -16.66s;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
  }
}

.services-central-icon {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #3300ff 0%, #6633ff 50%, #9966ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(51, 0, 255, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.services-central-icon iconify-icon {
  font-size: 80px;
  color: #fff;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 500px) {
  @keyframes orbit {
    from {
      transform: rotate(0deg) translateX(160px) rotate(0deg);
    }
    to {
      transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
  }

  .services-central-icon {
    width: 150px;
    height: 150px;
  }
}

/****************************************** END SERVICES BANNER SECTION ******************************************/
.servicescontentsec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #0c0145 100%);
  /* background-color: #0c0145; */
}

.sercontent-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.sercontent-gradient-text {
  background: linear-gradient(90deg, #fff, #3300ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: capitalize;
}

.sercontent-text h2 {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
}

.sercontent-text h2 span {
  background: linear-gradient(175deg, #3300ff 40%, #1f0099 80%, #1f0099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.sercontent-text p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sercontent-text h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .sercontent-text p {
    max-width: unset;
  }

  .sercontent-gradient-text {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .sercontent-text h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .sercontent-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .sercontent-text h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.service-card-content {
  /* background: linear-gradient(135deg, #000, #0c0145, #000, #0c0145); */
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  border: #0000ff 1px solid;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.service-card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #3300ff, #6633ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-content:hover {
  transform: translateY(-10px);
  border-color: rgba(51, 0, 255, 0.3);
  box-shadow: 0 20px 40px rgba(51, 0, 255, 0.2);
}

.service-card-content:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  /* background: linear-gradient(135deg, #3300ff, #6633ff); */
  background: linear-gradient(135deg, #3300ff 0%, #6633ff 50%, #9966ff 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  color: #fff;
}

.service-card-icon i {
  animation: flipInfinite 2s linear infinite;
  transform-style: preserve-3d;
}

.service-card-content:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card-content h3 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  /* color: #3300ff; */
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  margin-bottom: 25px;
}

.service-card-content p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 15px;
}

.service-features li {
  padding: 8px 0;
  color: #fff;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3300ff;
  font-weight: bold;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  gap: 10px;
  color: #3300ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-blue);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .service-card-content h3 {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .service-card-content h3 {
    font-size: 28px;
    line-height: 38px;
  }

  .service-card-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END SERVICES CARDS SECTION ******************************************/
.serinnerpgsec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #3300ff 100%);
}

.serinnerpg-content {
  padding-right: 40px;
}

.serinnerpg-content h3 {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.serinnerpg-content p {
  font-size: 18px;
  line-height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: justify;
  margin-bottom: 25px;
}

.serinnerpg img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .serinnerpg-content {
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  .serinnerpg-content h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .serinnerpg-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

/****************************************** END SERVICES INNERPAGE SECTION ******************************************/
