@font-face {
  font-family: yekan;
  src: url("../fonts/iranyekanwebbold.ttf") format("truetype");
}

* {
  font-family: yekan;
}


header {
  height: 100%;
  background: linear-gradient(rgb(31, 8, 59, 0.9), rgb(31, 8, 59, 0.9)), url(../image/space.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}


.innerSquare {
  background: linear-gradient(rgb(31, 8, 59, 0.9), rgb(31, 8, 59, 0.9)), url(../image/space.jpg);
  border-radius: 30px;
  height: 500px;
  width: 100%;
}

.rainbowGradient {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border-radius: 30px;
  background: linear-gradient(to right, #763681, rgb(120, 65, 175), #dc6ce6, #A037A9, #E12681);
  box-shadow: inset 0 0 12px 12px #1F0838, inset 0 0 3px 2px #1F0838;

}

.tank {
  position: relative;
  margin: 50px;
  top: 250px;
  width: 100%;
}

.tank .middle {
  width: 120px;
  height: 180px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  position: absolute;
  width: 100%;
  height: 100px;
  top: 60px;
  left: 50px
}

.tank .top {
  width: 100%;
  height: 80px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50px;

}

.tank .top2 {
  background: white;
  opacity: 0.1;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50px;

}

.tank .bottom {
  width: 100%;
  height: 50px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  -moz-border-radius: 60px / 25px;
  -webkit-border-radius: 60px / 25px;
  border-radius: 0 0 30px 30px;
  position: absolute;
  top: 151px;
  box-shadow: 0px 0px 10px #1F0838;
  left: 50px;

}

.innercircle {
  width: 74%;
  height: 54px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 67px;

}

.shadowbox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border-radius: 30px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  box-shadow: inset 0 0 12px 12px #1F0838, inset 0 0 3px 2px #1F0838;

}

#trapezoid1 {
  transform: perspective(10px) rotateX(-.9deg);
  height: 197px;
  width: 114%;
  position: absolute;
  bottom: 9px;
  right: -26px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  opacity: 0.1;
}

#squere_2 {
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  border-radius: 30px 30px 0 0;
  height: 164px;
  width: 135%;
  position: absolute;
  bottom: 223px;
  right: -64px;
  opacity: 0.1;
}

.circle {
  margin: 100px auto 0;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  border: 6px solid #dc6ce6;
  border: 6px solid transparent;
  border-left-color: #dc6ce6;
  border-right-color: #dc6ce6;
  animation: spin 5s ease-in-out infinite;
  position: absolute;
  bottom: 83px;
  right: 121px;
}

.circle3 {
  margin: 100px auto 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid #E12681;
  border: 6px solid transparent;
  border-top-color: #E12681;
  border-bottom-color: #E12681;
  animation: spin 10s ease-in-out infinite;
  position: absolute;
  bottom: 114px;
  right: 153px;

}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.text-nav {
  color: #dde6ed !important
}

.text-nav:hover {
  color: #E12681 !important;
}

#btndiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-radius: 5px;
}


#modernbtn {
  position: relative;
  background: #1F0838;
  color: #DDE6ED;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  padding: .375rem .75rem;
  ;
  transition: 0.5s;
  border-radius: 5px;
}

#modernbtn:hover {
  letter-spacing: 0.25rem;
  background: var(--color);
  color: var(--color);
  box-shadow: 0 0 35px var(--color);
  border-radius: 5px;
}

#modernbtn::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: #1F0838;
  border-radius: 5px;
}

#modernbtn span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

#modernbtn i {
  position: absolute;
  inset: 0;
  display: block;
}

#modernbtn i::before {
  content: '';
  position: absolute;
  top: -3.5px;
  left: 80%;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color);
  background: #1F0838;
  transform: translateX(-50%);
  transition: 0.5s;
}

#modernbtn:hover i::before {
  left: 20%;
  width: 20px;
}

#modernbtn i::after {
  content: '';
  position: absolute;
  bottom: -3.5px;
  left: 20%;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color);
  background: #1F0838;
  transform: translateX(-50%);
  transition: 0.5s;
}

#modernbtn:hover i::after {
  left: 80%;
  width: 20px;
}


/* سرچ باکس */
.search {
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(40deg, #1F0838, #E12681);
  color: #fff;
  border-radius: 50%;
  /* Circular shape */
  width: 35px;
  /* Adjust the initial width as needed */
  overflow: hidden;
  transition: width 0.5s, border-radius 0.5s;
  /* Transition to change the width and shape */
}

.search :is(input, button) {
  background: transparent;
  color: inherit;
  border: none;
  outline: none;
}

.search__input {
  width: 0;
  transition: width 0.5s;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
}

.search__button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 30px;
  /* Make the button a square shape */
  cursor: pointer;
  transition: color 0.25s;
}

.search__button i {
  font-size: 16px;
}

.search__button:hover {
  color: #dde6ed;
}

/* Change to full width when focused */
.search:focus-within {
  border-radius: 4px;
  /* Final shape: Rectangular */
  width: 200px;
  /* Adjust the final width as needed */
}

/* Change to full width when focused */
.search:focus-within .search__input {
  width: 100%;
  /* Full width when focused */
}


.baanner-1 {
  position: relative;
  font-size: 35px;
  color: #222;
  white-space: nowrap;
}

.baanner-1::before {
  content: attr(data-text);
  position: absolute;
  color: #dde6ed;
  overflow: hidden;
  white-space: nowrap;
  animation: anim 2s linear;
  filter: drop-shadow(0 0 1px #dde6ed) drop-shadow(0 0 10px #dde6ed);
}

@keyframes anim {

  0%,
  10%,
  100% {
    width: 0;
  }

  70%,
  90% {
    width: 100%;
  }
}

.circlelogo {
  position: absolute;
  bottom: 138px;
  right: 179px;
  width: 150px;
}

.cardimgsty {
  border-radius: 15px;
  background: rgb(31, 8, 59);
  border: 2px solid rgb(159, 56, 168, 0.4);
  padding: 20px;
  width: 90%;

}

.cardsty {
  border-radius: 15px;
  background: linear-gradient(to top, rgb(165, 33, 247, 0.2), rgb(159, 56, 168, 0.2));
  border: 2px solid rgb(159, 56, 168, 0.4);
}

.cardsty:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

.circleimgcard {
  position: relative;
  width: 150px;
  height: 150px;
}

.border-one {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px #E12681);
  overflow: hidden;
  animation: rotate 10s linear infinite;
}

.border-one::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 120px;
  height: 150px;
  background: linear-gradient(0deg, #E12681, #E12681);
}

.border-one::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 120px;
  height: 150px;
  background: linear-gradient(0deg, transparent, transparent, #E12681);
}

.border-two {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px #dc6ce6);
  overflow: hidden;
  animation: rotate 10s linear infinite;
  animation-delay: -10s;
}

.border-two::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 120px;
  height: 150px;
  background: linear-gradient(0deg, #dc6ce6, transparent, transparent);
}

.border-two::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 120px;
  height: 150px;
  background: linear-gradient(0deg, #dc6ce6, #dc6ce6);
}

/* Let's create animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contentimg {
  position: absolute;
  inset: 5px;
  background-color: #1F0838;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.contentimg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card-title-text {
  background: -webkit-linear-gradient(#a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
}

.card-title-text:after,
.card-title-text:before {
  content: "\00a0\00a0\00a0\00a0\00a0";
  text-decoration: line-through;

}

.iconservice {
  font-size: 30px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

#linkservice {
  text-decoration: none;
  color: #DDE6ED;
  font-size: 20px;
}

#linkservice:hover {
  text-decoration: none;
  letter-spacing: 0.20rem;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shadowbox1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 30px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);

}

.cardweb {
  margin: 0 0.3em;
  background-color: #DDE6ED;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);


}

.cardweb img {
  border-top-left-radius: 25px;
}

.bodyblog {
  background: #1F0838;
  border-bottom-right-radius: 25px;
}

.bannersty {
  border-radius: 5px;
  background: linear-gradient(to top, rgb(165, 33, 247, 0.2), rgb(159, 56, 168, 0.2));
  border: 2px solid rgb(159, 56, 168, 0.4);
}

.bannertxt {
  text-align: right;
  font-size: 20px;
  background: linear-gradient(to right, #a621f8, #7339AC, #dc6ce6, #A037A9, #E12681);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}


.footerback {
  height: 100%;
  background: linear-gradient(rgb(31, 8, 59, 0.9), rgb(31, 8, 59, 0.9)), url(../image/space.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

/*scroll btn*/
#scrollbtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: linear-gradient(#a621f8, #E12681);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

#scrollbtn:hover {
  border: 1px solid #DDE6ED;
}

@media screen and (max-width: 1196px) {
  #squere_2 {
    right: -27px;
  }

  #trapezoid1 {
    right: -9px;
  }

  .circlelogo {
    position: absolute;
    bottom: 171px;
    right: 67px;
    width: 128px;
  }

  .circle {
    width: 200px;
    height: 200px;
    bottom: 137px;
    right: 27px;
  }

  .circle3 {
    width: 160px;
    height: 160px;
    bottom: 154px;
    right: 51px;
  }

  .innercircle {

    top: 13px;
    left: 39px;
  }

}

@media screen and (max-width: 992px) {
  #squere_2 {
    right: -38px;
  }

  #trapezoid1 {
    right: -15px;
  }

  .circlelogo {
    right: 79px;
  }

  .circle {
    bottom: 137px;
    right: 40px;
  }

  .circle3 {
    bottom: 154px;
    right: 58px;
  }
}

@media screen and (max-width: 768px) {
  #squere_2 {
    right: -64px;
  }

  #trapezoid1 {
    right: -26px;
  }

  .circlelogo {
    position: absolute;
    bottom: 138px;
    right: 179px;
    width: 150px;
  }

  .circle {
    width: 255px;
    height: 255px;
    bottom: 83px;
    right: 121px;
  }

  .circle3 {
    width: 200px;
    height: 200px;
    bottom: 114px;
    right: 153px;
  }

  .innercircle {
    left: 60px;
  }
}

@media screen and (max-width: 520px) {
  #squere_2 {
    right: -58px;
  }

  #trapezoid1 {
    right: -21px;
  }
}



.headbox {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.bannerh1 {
  animation-name: anim;
  animation-duration: 3s;
}

@keyframes anim {
  0% {
    opacity: 0;
    transform: translateX(-120px);

  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.custom-navbar {
  transition: all 0.7s;
}

.line1,
.line2,
.line3 {
  width: 23px;
  height: 3px;
  margin: 5px;
  transition: all 0.4s;
  background-color: #E12681;
}

.change .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .line2 {
  opacity: 0;
}

.change .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.aboutlist {
  background-color: #dde6ed;
  padding: 5px;
  font-size: 15px;
}

.fromLeft {
  animation-name: fromLeft;
  animation-duration: 3s;
}

.fromRight {
  animation-name: fromRight;
  animation-duration: 3s;
}

@keyframes fromLeft {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fromRight {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}


.textbanner {
  position: relative;
  top: 20%;
}



.servicecard {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  background-color: #DDE6ED;
  border: #9DB2BF;
}

.servicecard:hover {
  transform: translateY(-1px);
  cursor: pointer;
}

.serviceheading {
  background-color: #9DB2BF;
  font-size: 25px;
  cursor: pointer;
  opacity: .8;
  transition: all .7s;
}

.servicesitem {
  margin: auto;
  background-color: #DDE6ED;
}

.serviceheading:hover {
  opacity: 1;
}

@keyframes moveFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes moveFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes moveFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.moveFromLeft {
  animation-name: moveFromLeft;
  animation-duration: 2s;
}

.moveFromRight {
  animation-name: moveFromRight;
  animation-duration: 2s;
}

.moveFromBottom {
  animation-name: moveFromBottom;
  animation-duration: 2s;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
}

.carousel-inner {
  padding: 1em;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .card img {
    height: 11em;
  }
}

.heading {
  width: 50vh;
  background-color: #DDE6ED;
}

.list-inline {
  display: block;
}

.list-inline li {
  display: inline-block;
}

/* start css for blog */

.cardblog {
  border: 0px;
}

/* start css for contact */

.contactbox {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.form-contact {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #DDE6ED;
  transition: all .4s;
}

.form-contact:focus {
  background: transparent;
  box-shadow: none;
  border-bottom: 2px solid #27374D;
}

.formbox {
  background: linear-gradient(rgb(157, 178, 191, 0.9), rgb(82, 109, 130, .9))
}

.iconcontact {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #6c757d;
}

/* start register*/

.register {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.gradient-custom-4 {
  background: #DDE6ED;

  background: linear-gradient(to right, rgb(157, 178, 191, 0.9), rgb(82, 109, 130, .9))
}

/*scroll btn*/

/*dashboard*/

.dashboardcard {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  background-color: #DDE6ED;
  border: #9DB2BF;
  border-radius: 1px;
}

.dashboarditem {
  background-color: #DDE6ED;
}

.dashboarditem:hover {
  color: rgba(0, 0, 0, .9);
  cursor: pointer;
}

.dashboardproitem {
  color: rgba(0, 0, 0, .9);
  background-color: #DDE6ED;
}

.cardprofile {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.tox-notifications-container {
  display: none;
}

.tox-statusbar__branding {
  display: none;
}

/* start about us */
.img-about-us {
  height: 350px !important;
  border-radius: 10px;
}

.card-about-us {
  background: none !important;
  color: #DDE6ED;
}

.about-us-list li {
  background: none !important;
  border: 0px;
}

/* start contact us */
.custom-card-about {
  border: none;
  background: none;
  color: #dde6ed;
}

.form-input {
  border: 1px solid #ced4da;
  border-radius: 10px;
}

.form-input-label {
  color: #ced4da !important;
}

.contact-ul li {
  background: none;
  border: 0;
  color: #ced4da;
}

textarea {
  resize: none;
  height: 120px !important;
}

/* start css for rolse */
.btn-roles-collaps:focus {
  box-shadow: none;

}

.card-roles-collaps {
  background: #ced4da;
}

.btn-roles-collaps {

  color: #1F0838;
}

/* start news */
.new-latter {
  background: #ced4da;
  color: #1F0838 !important;
}

.new-latter a {
  color: #1F0838 !important;
}

.new-latter-ul {
  border-radius: 10px;
}

/* start single-news */
.bg-single-news {
  background: #ced4da;
  border-radius: 10px;
}

.card-single-news {
  background: none;
  border: 0px;
}

/* start css for services */
.icon-services {
  width: 100px;
  height: 100px;
  background: #1F0838;
  border-radius: 50px;
}

.link-services a {
  color: #ced4da;
}

/* css for team page */
#tree {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* css for request */
.card-request {
  background: #ced4da;
  color: #222;
  border-radius: 10px;
}

.card-request ul li {
  background: none;
}