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

body {
  color: #14171c;
}

@font-face {
  font-family: 'HelveticaLTStdBlkCond';
  src: url('../fonts/helveticaltstd-blkcond.woff2') format('woff2'),
    url('fonts/helveticaltstd-blkcond.woff') format('woff'),
    url('fonts/helveticaltstd-blkcond.otf') format('opentype');
}

@font-face {
  font-family: 'HelveticaLTStdBold';
  src: url('../fonts/helveticaltstd-bold.woff2') format('woff2'),
    url('fonts/helveticaltstd-bold.woff') format('woff'),
    url('fonts/helveticaltstd-bold.otf') format('opentype');
}

@font-face {
  font-family: 'HelveticaLTStdComp';
  src: url('../fonts/helveticaltstd-comp.woff2') format('woff2'),
    url('fonts/helveticaltstd-comp.woff') format('woff'),
    url('fonts/helveticaltstd-comp.otf') format('opentype');
}

@font-face {
  font-family: 'HelveticaLTStdExtraComp';
  src: url('../fonts/helveticaltstd-extracomp.woff2') format('woff2'),
    url('fonts/helveticaltstd-extracomp.woff') format('woff'),
    url('fonts/helveticaltstd-extracomp.otf') format('opentype');
}

@font-face {
  font-family: 'HelveticaLTStdLight';
  src: url('../fonts/helveticaltstd-light.woff2') format('woff2'),
    url('fonts/helveticaltstd-light.woff') format('woff'),
    url('fonts/helveticaltstd-light.otf') format('opentype');
}

@font-face {
  font-family: 'HelveticaLTStdUltraComp';
  src: url('../fonts/helveticaltstd-ultracomp.woff2') format('woff2'),
    url('fonts/helveticaltstd-ultracomp.woff') format('woff'),
    url('fonts/helveticaltstd-ultracomp.otf') format('opentype');
}

@font-face {
  font-family: 'JustSans';
  src: url('../fonts/JUST Sans Regular.woff2') format('woff2'),
    url('fonts/JUST Sans Regular.woff') format('woff'),
    url('fonts/JUST Sans Regular.otf') format('opentype');
}

body {
  font-family: 'JustSans';

}

h1,
h2,
h3,
h4 {
  font-family: 'JustSans';
  text-transform: capitalize;
}

/* .bg-body-color{
    background-color: #121212;
} */
.logoIcon {
  width: 100px;
  /* Adjust size */
  height: 100px;
  background-color: #14171c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0.7px, transparent 1px);
  background-size: 7px 7px;
  animation: logoBG 10s linear infinite;
}

.logoIcon::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 104px;
  height: 104px;
  background-image: conic-gradient(#14171c, 330deg, #fff);
  /* background-image: conic-gradient(#14171c, 330deg, #732bf7,#fa6bbe,#ffa37b); */

  border-radius: 50%;
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

.logoIcon img {
  animation: logoImg 4s linear infinite;
}

.menuBtn {
  font-size: 28px;
  color: #14171c;
  /* background-color: #14171c; */
  display: inline-block;
  border-radius: 50%;
  padding: 11px;
  line-height: 1;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.gra-text {
  background: linear-gradient(88deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  /* Ensures background applies correctly */
  /* text-transform: uppercase; */
}

.countCard::after {
  content: "";
  height: 4px;
  width: 100%;
  background: linear-gradient(88deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);
  background-size: 300% 300%;
  animation: waveMove 5s infinite linear;
  position: absolute;
  bottom: 0;
  left: 0;

}

@keyframes waveMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoBG {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 100% 0%;
  }
}

@keyframes logoImg {
  0% {
    transform: rotate3d(1, 1, 1, 0deg);
  }

  100% {
    transform: rotate3d(1, 1, 1, 360deg);
  }
}

.bg-silver {
  background: linear-gradient(135deg, #f2f2f2, #fff, #f2f2f2, #ebebeb, #f2f2f2);
}

.bg-black {
  background: linear-gradient(135deg, #14171c, #1c2027, #14171c, #1d2229, #14171c);

}

.z-2 {
  z-index: 2;
}

.mainHeading {
  font-size: 50px;
  font-weight: 700;
}

.boxSocial {
  height: 45px;
  width: 45px;
  line-height: 1;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  backdrop-filter: blur(10px);
  background-color: #ffffff08 !important;
  border: 1px solid #fff3 !important;
}

.boxSocial:hover {
  color: #14171c;
  background-color: #f2f2f2 !important;
}

.bgnina {
  background-color: #ffffff08;
  backdrop-filter: blur(10px);
  border-color: #ffffff33 !important;

}

.gradient-btn {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 30px;
  display: block;
  background: linear-gradient(88deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);

  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.bg-gra {
     background: linear-gradient(88deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);
  border-radius: 20px;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.gradient-btn:hover {
      background: linear-gradient(88deg, #732bf7 -11.16%, #fa6bbe 46.95%, #ffa37b 94.89%);
  transform: scale(1.02);
  color: #fff;
}

.cardBorder {
  border-radius: 12px;
  color: #fff;
  backdrop-filter: blur(10px);
  background-color: #ffffff08 !important;
  border: 1px solid #fff3 !important;
}

.rounded-20 {
  border-radius: 20px;
}

.bg-opa {
  background-color: #14171c93;
}

.smalBtn {
  text-decoration: none;
  background: linear-gradient(150deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  /* Ensures background applies correctly */
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 14px;
  width: max-content;
}

.smalBtn svg {
  transition: all 0.5s ease;
}

.smalBtn:hover svg {
  transform: translateX(5px);
}

.smalBtn::after {
  content: "";
  height: 1px;
  width: 0%;
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: linear-gradient(150deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);
  transition: all 0.4s ease;
}

.smalBtn:hover::after {
  width: 100%;
}

.logosImg {
  height: 50px;
  width: 100%;
}

.rounded-12 {
  border-radius: 8px;
}

.clientLogos .highLIghtcard {
  position: relative;
  transition: all 0.4s ease;
  background: #23282f;
  /* Adjust based on your design */

  z-index: 1;
}

.clientLogos .highLIghtcard:hover {
  transform: translateY(-10px);
}

.bg-different {
  background-color: #323a48;
}

.reviewCard {
  background: linear-gradient(180deg, #d8d7f4 0, #ffedf7 100%) !important;
}

.imgMain img {
  height: 80px !important;
  width: 80px !important;
  border-radius: 50%;
  filter: grayscale(1);
  object-fit: cover;
  object-position: center top;
}

.owl-review .owl-nav {
  display: flex;
  justify-content: end;
  margin-top: 17px;
}

.contacts-section__list li {
  margin-bottom: 20px;
  line-height: 1.5;
  list-style: unset;
  display: flex;
  align-items: center;
  color: #f2f2f2;
  font-weight: 300;
  font-size: 15px;
}

.contacts-section__list {
  list-style: unset !important;
}

.contacts-section__list li::marker {
  /* display: none; */
  content: "";
}

.Myform .form-control {
  outline: unset !important;
  border: unset;
  border-bottom: 2px solid transparent;
  /* Ensures the border exists */
  border-image: linear-gradient(150deg, #ffa37b, #fa6bbe, #732bf7);
  border-image-slice: 1;
  /* Ensures the gradient covers the whole border */
}

.Myform .form-control:focus {
  box-shadow: unset;
}

.footerLink li a {
  text-decoration: none;
  color: #d8d7f4;
  font-size: 15px;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.4s ease;

}

.footerLink li a:hover {
  transform: translateX(5px);
}

.text-silver {
  color: #d8d7f4;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  right: -130%;
  width: 600px;
  height: 100vh;
  overflow-x: auto;
  color: white;
  box-shadow: 0 0 131px #00000096;
  transition: right 0.5s ease-in-out;
  z-index: 1000;
}
.fullscreen-menu.active {
  right: 0;
}
.fullscreen-menu .closeMenu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.menu-links li {
  margin: 15px 0;
}
.menu-links a {
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.menu-links a:hover {
  color: #f39c12;
}
.fullscreen-menu{
    background: linear-gradient(135deg, #14171c, #1c2027, #14171c, #1d2229, #14171c);
}
.z-100{
  z-index: 100!important;
}

.fs-15{
  font-size: 15px;
}
.text-pra{
  color: #666;
}

.rounded-abt{
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;


}
.rounded-abt2{
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
.border30{
  position: relative;

}
.border30::after{
  content: "";
  height: 4px;
  width: 30%;
  border-radius: 3px;
  background: linear-gradient(150deg, #ffa37b -11.16%, #fa6bbe 46.95%, #732bf7 94.89%);
  position: absolute;
  bottom: -10px;
  left: 0;
}
.line-2{
  overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.line-1{
  overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.portFoliorad .imgBox img{
  transition: all 0.4s ease;
}
.portFoliorad:hover .imgBox img{
  transform: translateY(-10px);
}
.menuItem{
  color: #666;
  transition: all 0.4s ease;
}
.menuItem:hover{
  color: #f2f2f2;
  transform: scale(1.02);
}
.stikyCOntent{
  position: sticky;
  top: 0;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-item a{
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.breadcrumb-item{
  font-size: 13px;

}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\F280";  /* Bootstrap Icon Unicode (chevron-right) */
  font-family: "Bootstrap-icons"; /* Bootstrap 5 icon font */
  font-weight: normal;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: #fff; /* Change icon color */
  font-size: 10px; /* Change icon size */
}
.cp{
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.imgb{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 7px;
}
.imgb img{
  height: 32px!important;
  width: 32px!important;
  object-fit: contain;
  object-position: center;
}
.overlay-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0), rgba(0, 0, 0, 0));
}
.newBox {
	background-color: #2b303c;
	border-radius: 40px;
}
@media (max-width: 575.98px) {
  .mainHeading {
    font-size: 30px;
    font-weight: 700;
  }
   
  .cardBAnner .cardBorder p{
    font-size: 12px;
  }
  .countCard p{
    font-size: 12px;
  }
  .bg-gra.fs-13{
    font-size: 11px!important;
  }
  .sidemenu ul {
    flex-direction: row!important;
  }
  .sidemenu ul li a{
    min-width: max-content;
    display: inline-block!important;
  }
  .sidemenu ul{
    overflow-x: auto;
    padding: 14px 0;
  }
  .sidemenu ul li{
    margin-left: 7px;
  }
	.fullscreen-menu{
		width: 100%;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .mainHeading {
    font-size: 35px;
    font-weight: 700;
  }
  .fs-5 {
    font-size: 17px !important;
  }
	.fullscreen-menu{
		width: 420px;
	}
}

@media (max-width: 767.98px) {
 
  #spaceCanvas{
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .animatedtext {
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (min-width: 1200px) {}
@media (max-width:755px) {
  .accounting-h1 {
    font-size: 30px !important;
    font-weight: 600 !important;
  }
}