@import url("https://fonts.googleapis.com/css2?family=Londrina+Sketch&family=Special+Elite&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Risque&family=Snippet&display=swap');

* {
  margin: 0;
  padding: 0;
}
::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  padding: 0;
}
p {
    font-family: "Snippet", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: justify;
}

.bgSet {
  background: linear-gradient(to right, black, black, #25153f) !important;
}

.WebDesign {
  background: linear-gradient(
    to right,
    rgba(135, 80, 247, 1),
    rgb(217, 204, 243),
    rgb(217, 204, 243)
  );
  -webkit-background-clip: text !important;
  color: transparent;
}

.WebDesign {
  font-size: 70px;
}

.btnSet {
  border-radius: 30px;
  color: #905df8;
  font-size: 25px;
  padding: 2px 10px;
  border: 1px solid #905df8;
}

/* navbar code start  */
:root {
  --nav-bg: #03000e;
  --main-clr: dodgerblue;
  --nav-shadow: 0px 3px var(--main-clr);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 11111;
  margin: auto;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(5px);
  padding: 15px 0px;
  transition: 0.5s;
}
.is-sticky {
  padding: 5px 0px !important;
  background-color: rgba(0, 0, 0, 0.838);
}

nav ul {
  --padding: 5px 20px;
  --font-size: 17px;
  padding-left: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size);
  overflow-y: hidden;
  transition: 1s cubic-bezier(0.68, -0.55, 0.27, 10.55);
  margin-bottom: 0px !important;
}

nav ul li {
  padding: var(--padding);
}

nav ul li a {
  font-weight: bold;
  text-decoration: none;
  position: relative;
  background: linear-gradient(
    to right,
    rgba(135, 80, 247, 1),
    rgb(149, 98, 250),
    rgb(217, 204, 243)
  );
  -webkit-background-clip: text;
  font-size: 20px;
  color: transparent;
}

nav ul li a:hover {
  background: linear-gradient(
    to right,
    rgb(217, 204, 243),
    rgb(149, 98, 250),
    rgba(135, 80, 247, 1)
  ) !important;
  -webkit-background-clip: text !important;
  font-size: 20px;
  color: transparent;
}

nav ul li a::after {
  content: "";
  width: 0%;
  height: 1.7px;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    rgba(135, 80, 247, 1),
    rgba(135, 80, 247, 1),
    rgb(217, 204, 243)
  ) !important;
  position: absolute;
  bottom: 0;
  top: 25px;
  left: 0;
  transition: 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
  transition: 0.5s linear;
}

nav .menu {
  width: 22px;
  height: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 20px;
}

nav .menu span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: 0.3s ease;
  transform-origin: left;
}

nav .menu.active span {
  background: var(--main-clr);
}

nav .menu.active span:nth-child(1) {
  transform: rotate(40deg);
}

nav .menu span:nth-child(3) {
  transform-origin: left;
}

nav .menu.active span:nth-child(3) {
  transform: rotate(-40deg);
}

nav .menu.active span:nth-child(2) {
  transform: scale(0);
}

@media only screen and (max-width: 600px) {
  nav .menu {
    display: flex;
  }

  nav {
    display: flex;
    justify-content: end;
    margin: auto;
    width: 100%;
  }

  nav ul {
    --height: 0px;
    flex-direction: column;
    background: var(--nav-bg);
    position: absolute;
    width: 100%;
    left: 0;
    top: 56px;
    height: var(--height);
    transition: 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }

  nav ul.active {
    --height: calc(
      (((var(--padding) * 2) + (var(--font-size) * 1.5))) * var(--childenNumber)
    );

    transition: 1s ease;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    width: 100%;
    text-transform: capitalize;
  }
}

/* navbar code end  */

.iconSet {
  border: 1px solid #905df8;
  padding: 4px 11px;
  font-size:25px;
  border-radius: 50%;
  transition: 0.2s;
}

.iconSet:hover {
  background-color: #a985f0;
  color: white !important;
  border: 1px solid white;
} 

.iconSet:hover .Icon-Color {
  color: white  !important;
}

.imgSet {
  border: 2px solid #4b3967;
  transition: 0.3s linear;
  box-shadow: #8a8a93 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  overflow: hidden !important;
  transition: 0.5s linear;
  border-radius: 20px !important;
}

.mainimgSet:hover .imgSet {
  border: 2px solid #905df8;
  transform: scale(1.1);
  overflow: hidden !important;
  transition: 0.5s linear;
}

.mainBTN {
  border: 1px solid #25153f;
  border-radius: 30px;
  background: linear-gradient(
    to right,
    rgba(135, 80, 247, 1),
    rgb(168, 134, 238),
    rgb(146, 103, 233)
  );
  font-weight: bold;
  padding: 0px 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: 0.3s linear;
  color: white;
}

.mainBTN:hover {
  background: linear-gradient(
    to right,
    rgb(82, 9, 229),
    rgb(168, 134, 238),
    rgba(135, 80, 247, 1)
  );
}

/*  second section start */
.secondSection {
  background-color: black;
}

.secondText {
  text-align: center;
  padding: 50px 0px 20px 0px;
  font-weight: bold;
  font-size: 80px;
  -webkit-text-stroke: 2px red;
  color: transparent !important;
  -webkit-text-stroke-color: #905df8 !important;
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
}

.borderBottomSet1 {
  -webkit-text-stroke-color: rgb(190, 170, 228) !important;
}

.borderBottomSet::after {
  width: 100px;
  height: 2px;
  background-color: #905df8 !important;
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.cardSecond {
  /* margin: 10px 0px; */
  border-radius: 0px;
  background-color: transparent;
  color: white;
  border-bottom: 1px solid #a985f0;
  padding: 8px 5px;
}

.containerSet {
  height: 100%;
  width: 80vw;
  margin: auto;
  background-color: rgb(21, 0, 39);
  color: white;
  position: relative;
}

.containerSet .ROW {
  height: 150px;
  width: 100%;
  /* border-bottom: 1px solid #4c0079; */
  border-bottom: 1px solid #4c0079;

  padding: 20px 20px;
  position: relative;
  z-index: 2;
}

.ROW .IconDivSet {
  rotate: -60deg;
  transition: 0.5s;
}

.containerSet .ROW:hover .IconDivSet {
  rotate: -130deg !important;
}

.containerSet .color-bg {
  height: 150px;
  width: 100%;
  background-color: #4c0079;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

@media only screen and (max-width: 767px) {
  .containerSet {
    width: 100%;
  }
}

/* second section end */

/* fourth section start */
.skillicon img {
  filter: grayscale(100%);
}
.skillicon img {
  aspect-ratio: 3/3;
  object-fit: contain;
}

.dvcontent:hover img,
.dvcontent:hover h5 {
  filter: grayscale(0%);
  color: #905df8 !important;
  transition: 0.2s linear;
}

.skillicon {
  backdrop-filter: blur(9px);
  margin-top: 40px;
  background-color: rgba(243, 229, 225, 0.068);
  border-radius: 20px;
  padding: 15px 8px !important;
}

.startfourth {
  background: linear-gradient(to right, #25153f, black, black) !important;
}

/* fourth section end */

.Section5 {
  background-color: #000;
}
.Section5 h3 span {
  color: #6340a9;
}
.Section5 h3 {
  /* background: linear-gradient(to right, rgb(217, 204, 243), rgb(217, 204, 243), rgba(135, 80, 247, 1)); */
  /* -webkit-background-clip: text !important; */
  /* -webkit-text-stroke: 1px solid white; */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #6340a9;
  font-weight: 900;
  color: transparent;
}

/* slick slider code start  */
.brands-list {
  overflow: hidden;
}

.wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 15rem;
  justify-items: stretch;
  animation: scroll 20s linear infinite;
  gap: 40px;
  margin-left: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 40px));
  }
}


/* Optional: If you want to show scrollbar always */
.brands-list {
  overflow-x: scroll;
  scrollbar-width: thin;
}

/* Optional: Style scrollbar */
.brands-list::-webkit-scrollbar {
  width: 5px;
}

.brands-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.brands-list::-webkit-scrollbar-thumb {
  background: #888;
}

/* form code start  */

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

input[type="number"]::-webkit-inner-spin-button {
  display: none;
}

.button-87 {
  margin: 10px;
  padding: 10px 30px;
  text-align: center;
  /* text-transform: uppercase; */
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 25px;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(
    45deg,
    #8750f7 0%,
    #6340a9 51%,
    #c0ace8 100%
  );
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-87:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.button-87:active {
  transform: scale(0.95);
}

.formbg {
  background-color: #140c1c;
  padding: 30px;
}

input[type="text"],
input[type="number"],
input[type="email"],
select,
textarea {
  background-color: #000;
  color: #757575 !important;
}
select option {
  background-color: #000;
  color: #757575 !important; 
}

input,
select,
textarea {
  border: 1px solid #000;
  padding: 10px 3px;
  border-radius: 5px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid #905df8;
}

.contact-icon {
  text-align: center;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  background: linear-gradient(to bottom, #6340a9, #905df8, #6340a9);
}

/* form code end  */

/* Back to Top Button Styles */

#sttbtn {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.845) !important;
  backdrop-filter: blur(5px) !important;
  bottom: 20px;
  right: 20px;
  z-index: 1111111111;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #905df8;
  color: #905df8;
}

.backText {
  font-size: 200px;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-weight: bold;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: #f1f1f1;
  box-shadow: none;
  animation: 3s pulsate infinite alternate ease-in-out;
  opacity: 0.2;
  font-family: "Londrina Sketch", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

#HomeSection {
  position: relative;
}

/* @media query start  */

@media only screen and (max-width: 767px) {
  .WebDesign {
    font-size: 40px !important;
  }

  .backText {
    font-size: 100px !important;
  }

  .WebDesign {
    font-size: 30px;
  }

  .contact-content a {
    font-size: 15px !important;
  }

  .CountSet {
    font-size: 20px !important;
  }

  .secondText {
    font-size: 40px;
  }
  .spinner {
    font-size: 30px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contact-content a {
    font-size: 17px !important;
  }
  .dvcontent h5 {
    font-size: 14px !important;
  }
  .WebDesign {
    font-size: 40px;
  }

  .secondText {
    font-size: 50px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .contact-content a {
    font-size: 17px !important;
  }
}

/* @media query  end  */

/* loder button Set / */
/* Styles for the preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 99999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  padding: 50px 0px 20px 0px;
  font-weight: bold;
  font-size: 80px;
  -webkit-text-stroke: 2px red;
  color: transparent !important;
  -webkit-text-stroke-color: #905df8 !important;

}

/* about section start  */
.AboutSection {
  background-color: black;
}

.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: black;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 6px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: rgba(28, 28, 28, 0.886);
  backdrop-filter: blur(5px);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}



/* animation css  */


.moving-shape {
  width: 100px; 
  aspect-ratio:1;
  background-color: rgba(128, 128, 128, 0.7); 
  opacity: 0.4;
  position: absolute;
  top: -500px;
  z-index: -1;
  animation: rotate-fall 5s linear; 
   animation-iteration-count: 6;
  border: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
}


@keyframes rotate-fall {
  0% {
      transform: translateY(0) rotate(0deg);
      border-radius: 0;
  }
  50% {
      transform: translateY(500px)rotate(900deg);
      border-radius: 50%;
  }
  100% {
      transform: translateY(calc(1000px)) rotate(1800deg);
      border-radius: 0; 
  }
}


