.custom-points ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-points ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 2%;
  font-size: 16px;
  /* line-height: 1.6; */
}

.custom-points ul li::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  background-color: red;
  border-radius: 50%;
  padding: 6px;
  font-size: 10px;
  position: absolute;
  left: 0;
  /* top: 2px;
  width: 20px;
  height: 20px; */
  text-align: center;
  line-height: 8px;
}


.whatsapp-icon {
  position: fixed;
  bottom: 20%; /* Distance from the bottom */
  right: 40px;  /* Distance from the right */
  z-index: 99; /* Ensure it's always on top */
  transition: 0.5s;
  color: green;
}


.back {
  display: block;
  /* background-image: url("../img/card.png"); */
  background-image: linear-gradient(
      rgba(2, 2, 53, 0.85),
      rgba(2, 0, 10, 0.85)
    ),
    url("../img/card.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem; /* Add padding if needed */

}

.content-wrapper {
  max-width: 700px;
  text-align: justify;
}

.gp {
  margin: 0em 0;
  font-size: 1rem;
}

.gh1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.gh1,
.gp {
  line-height: 1.8;
  font-family: 'Lora', serif;
  color: white;
}

.glowIn span {
  animation: glow-in 0.8s both;
}

@keyframes glow-in {
  from {
    opacity: 0;
  }
  65% {
    opacity: 1;
    text-shadow: 0 0 25px white;
  }
  75% {
    opacity: 1;
  }
  to {
    opacity: 0.7;
  }
}

.gradient-border {
  border-width: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.gradient-border::after {
  position: absolute;
  content: "";
  top: calc(-1 * var(--border-width));
  left: calc(-1 * var(--border-width));
  z-index: -1;
  width: calc(100% + var(--border-width) * 2);
  height: calc(100% + var(--border-width) * 2);
  background: linear-gradient(
    60deg,
    hsl(224, 85%, 66%),
    hsl(269, 85%, 66%),
    hsl(0, 90%, 32%),
    hsl(359, 85%, 66%),
    hsl(44, 94%, 49%),
    hsl(89, 96%, 47%),
    hsl(303, 73%, 41%),
    hsl(179, 81%, 23%)
  );
  background-size: 300% 300%;
  background-position: 0 50%;
  border-radius: 10px;
  animation: moveGradient 4s alternate infinite;
}

@keyframes moveGradient {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/*@keyframes moveGradient {*/
/*  50% {*/
/*    background-position: 100% 50%;*/
/*  }*/
/*}*/



/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }
}
/*** Icon Animation End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
  /* background: #cac9c9; */
}

.sticky-top {
  transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
  object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
  height: 500px;
  background-size: 100% 100%;
}

.carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.carousel .carousel-indicators {
  left: 75%;
  top: 50%;
  margin-right: 25%;
  transform: translateY(-50%);
  flex-direction: column;
}

.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 6px solid var(--bs-white);
  border-radius: 15px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--bs-secondary);
  opacity: 1;
  transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
  background-color: var(--bs-primary);
}

@media (max-width: 992px) {
  .carousel-indicators [data-bs-target] {
    display: none;
  }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom,
  rgba(31, 46, 78, 1) 0%,
  rgba(31, 46, 78, 0.5) 50%,
  rgba(0, 0, 139, 0) 100%
),
    url(../img/fact-bg1.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
  background: var(--bs-light);
}

.feature .feature-item {
  display: flex;
  border-radius: 10px;
}

.feature .feature-item .feature-icon span {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about .about-img .img-1 {
  height: 85%;
  margin-right: 50px;
}

.about .about-img .img-2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  padding-left: 50px;
  border-radius: 10px;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 98%;
  top: 0;
  right: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  z-index: -1;
}

.about .about-item .text-item {
  position: relative;
  padding-left: 25px;
}

.about .about-item .text-item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}
/*** About End ***/

/*** Fact Counter Start ***/
.counter {
  background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
    url(../img/fact-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item .counter-item-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  background: var(--bs-light);
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-primary);
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover::after {
  opacity: 1;
}

.service .service-item .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}
/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
  position: relative;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item:hover {
  border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
  box-shadow: 0 0 50px rgba(234, 0, 30, 0.3);
}

.categories .categories-item-inner .categories-img {
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
  border-top: 4px solid var(--bs-white);
  text-align: center;
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-carousel .owl-stage-outer {
  margin-top: 65px;
  margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
  position: absolute;
  top: -65px;
  padding: 10px 35px;
  color: var(--bs-white);
  background: var(--bs-primary);
  border-radius: 50px;
  transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
  right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
/*** Cars Categories End ***/

/*** Process Start ***/
.steps {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.steps .steps-item {
  position: relative;
  background: var(--bs-secondary);
  border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
  color: var(--bs-white);
}

.steps .steps-item .setps-number {
  position: absolute;
  width: 64px;
  height: 64px;
  bottom: 0;
  right: 40px;
  font-weight: 900;
  border: 1px solid var(--bs-white);
  border-radius: 64px;
  transform: translateY(50%);
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
/*** Process End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  position: relative;
  background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
  display: flex;
  justify-content: space-between;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  text-align: center;
  border-radius: 10px;
  margin-top: 100px;
  background: var(--bs-light);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
  z-index: 2;
  transition: 0.5s;
}

.team .team-item:hover::after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-white);
}
.team .team-item:hover .team-content p {
  color: var(--bs-white);
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 10px;
  z-index: 3;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 4;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}

.fixed-img-wrapper {
  height: 200px; /* Change as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fixed-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-right: -1px;
}

.testimonial .testimonial-item {
  position: relative;
  margin-top: 35px;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 25px;
  transform: translateY(-50%);
  border-radius: 70px;
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
  display: flex;
  align-items: center;
  background: var(--bs-light);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

.client-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.client-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.client-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.client-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.client-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.client-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-text {
  height: 300px;
  overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primaryh {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.5s;
  background: lightblue;
}

.team-item .team-text .bg-primaryh {
  flex-direction: column;
  text-align: center;
}

.team-item:hover .team-text .bg-light {
  margin-top: -300px;
}

.team-item .team-text .bg-primaryh .btn {
  color: var(--primary);
  background: #ffffff;
}

.team-item .team-text .bg-primaryh .btn:hover {
  color: #ffffff;
  background: gray;
}

/* circle */

.holderCircle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  margin: 30% auto;
  position: relative;
}

.dotCircle {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 20;
}
.dotCircle .itemDot {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  background: #ffffff;
  color: var(--bs-primary);
  border-radius: 20px;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  z-index: 3;
  cursor: pointer;
  border: 2px solid #e6e6e6;
}
.dotCircle .itemDot .forActive {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.dotCircle .itemDot .forActive::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 3px solid var(--bs-primary);
  bottom: -31px;
  left: -14px;
  filter: blur(1px);
  position: absolute;
  border-radius: 100%;
}
.dotCircle .itemDot .forActive::before {
  content: "";
  width: 6px;
  height: 6px;
  filter: blur(5px);
  top: -15px;
  position: absolute;
  transform: rotate(-45deg);
  border: 6px solid #850838;
  right: -39px;
}
.dotCircle .itemDot.active .forActive {
  display: block;
}
.round {
  position: absolute;
  left: 40px;
  top: 45px;
  width: 410px;
  height: 410px;
  border: 2px dotted #850838;
  border-radius: 100%;
  -webkit-animation: rotation 100s infinite linear;
  animation: rotation 100s infinite linear;
}
.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
  color: #ffffff;
  transition: 0.5s;
  background: var(--bs-primary); /* Old browsers */
  background: -moz-linear-gradient(
    left,
    var(--bs-primary) 0%,
    #850838 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    var(--bs-primary) 0%,
    #850838 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    var(--bs-primary) 0%,
    #850838 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--bs-primary)', endColorstr='#850838', GradientType=1); /* IE6-9 */
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
}
.dotCircle .itemDot {
  font-size: 40px;
}
.contentCircle {
  width: 250px;
  border-radius: 100%;
  color: #222222;
  position: relative;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contentCircle .CirItem {
  border-radius: 100%;
  color: #222222;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  font-size: 15px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  margin: auto;
  line-height: 250px;
}
.CirItem.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s;
}
.contentCircle .CirItem i {
  font-size: 180px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -90px;
  color: #000000;
  opacity: 0.1;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  .holderCircle {
    /* width: 300px; height: 300px;*/
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    display: none;
  }
  .holderCircle::after {
    width: 100%;
    height: 100%;
  }
  .dotCircle {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .holderCircle {
    /* width: 300px; height: 300px;*/
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }
  .holderCircle::after {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .holderCircle {
    /* width: 300px; height: 300px;*/
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }
  .holderCircle::after {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
}
.title-box .title {
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  padding-top: 35%;
  z-index: -1;
}
.title-box span {
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  font-weight: 800;
  color: #a31f40;
}
.title-box p {
  font-size: 17px;
  line-height: 2em;
}

.enroll-area {
  position: relative;
  background-image: url("../img/Dark Blue Abstract Technology LinkedIn Banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.enroll-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--bs-body);
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.enroll-left {
  margin-right: 30px;
}

.enroll-form {
  background: var(--bs-white);
  border-radius: 20px 20px 20px 0;
  box-shadow: var(--bs-dark);
}

.enroll-form form {
  padding: 30px;
}

.enroll-form-header {
  background: var(--bs-primary);
  border-radius: 20px 20px 20px 0;
  padding: 20px 30px;
}

.enroll-form-header h3 {
  color: var(--bs-white);
}

.enroll-form-header p {
  color: var(--bs-white);
}

.enroll-form .form-group {
  margin-bottom: 20px;
}

.enroll-form .form-group .form-control {
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 12px;
  color: #6c757d;
  background-color: var(--bs-primary);
  border: none;
  box-shadow: none;
}

.enroll-form .form-group .form-select {
  padding: 15px 22px;
  background-color: var(--bs-secondary);
  color: #6c757d;
  border: none;
  box-shadow: none;
  border-radius: 8px;
}

@media all and (max-width: 991px) {
  .enroll-left {
    margin-right: 0px;
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.gallery-img {
  height: 350px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #f0f0f0; */
}

.gallery-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 20px 20px 20px 0;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 0px 10px 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.tab-btn.active {
  background-color: var(--bs-secondary);
  color: white;
}

.tab-content-wrapper {
  text-align: center;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
  font-weight: bold;
}

.tab-content h4 {
  font-weight: bold;
  color: #222222;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*** Banner Start ***/
.banner .banner-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.banner .banner-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}

.banner .banner-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  z-index: 2;
}

.banner .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
}

/* Wave and headline text */
.wave-text {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.wave-text span {
  font-size: inherit;
}

/* Scrolling Text Box */
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.box .inner {
  position: relative;
  width: 90vw;
  max-width: 250px;
  height: 90px;
  overflow: hidden;
  background-color: var(--bs-secondary);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 0px;
  padding: 15px;
}

.box .inner:first-child {
  background-color: var(--bs-secondary);
  color: lightcoral;
  transform-origin: right;
  transform: perspective(100px) rotateY(-10deg);
}

.box .inner:last-child {
  background-color: var(--bs-dark);
  color: antiquewhite;
  transform-origin: left;
  transform: perspective(100px) rotateY(10deg);
}

.box .inner span {
  position: absolute;
  left: 100%;
  animation: marquee 15s linear infinite;
}

.box .inner:first-child span {
  animation-delay: 4.5s;
}

/* Keyframe animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* Responsive font */
/* @media (max-width: 768px) {
  .box .inner {
    font-size: 5vw;
    height: auto;
  }
} */

/* Wave Animation */
@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
}

.wave-text span {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}
.wave-text span:nth-child(2) {
  animation-delay: 0.3s;
}
.wave-text span:nth-child(3) {
  animation-delay: 0.6s;
}

/* Media Queries */
@media (max-width: 768px) {
  .wave-text {
    font-size: 3vw;
  }

  .box .inner {
    position: relative;
    width: 50vw;
    max-width: 150px;
    height: 50px;
    overflow: hidden;
    background-color: var(--bs-secondary);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    border-radius: 0px;
    padding: 10px;
  }
  .box .inner:first-child span {
    animation-delay: 5.5s;
  }
}



.canvas-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  .canvas + .canvas {
    margin-left: 40px;
  }
}
.canvas {
  position: relative;
  display: block;
  width: 35vw;
  min-height: 50vh; 
  height: auto;     
  color: inherit;
  text-decoration: none;
}
.canvas_border {
  position: absolute;
  top: 40px;
  left: -35px;
  height: 100%;
  width: 100%;
  z-index: 0;

  svg {
    height: 100%;
    width: 100%;
  }
}
.rect-gradient {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: erase-line 1s ease-in-out forwards;
}
.canvas_img-wrapper {
  position: relative; /* changed from absolute */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  width: 100%;
  padding: 5% 5% 5% 5%;
  background-image: url("../img/card.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.canvas_copy {
  position: absolute;
  bottom: 0;
  left: 85%;
  text-transform: uppercase;
  color: #dac527;
  z-index: 100;
}
.canvas_copy--left {
  left: -20%;
}
.canvas_copy_title {
  font-size: 2.5rem;
  display: block;
  transform: translateX(-80px);
  color: rgb(216, 12, 12);
  opacity: 0;
}

.canvas_copy_title:nth-child(1) {
  transition-delay: 0.1s;
}

.canvas_copy_title:nth-child(2) {
  transition-delay: 0.2s;
}

.canvas_copy_subtitle {
  display: block;
  transform-origin: top left;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.35s;
  opacity: 0;
}

.canvas_border,
.canvas_img-wrapper,
.canvas_img {
  transition: all 0.25s ease-in-out 0s;
}


.canvas_copy_title,
.canvas_copy_subtitle,
.canvas_copy_details {
  opacity: 0;
}
.canvas:hover {
  .canvas_copy_title,
  .canvas_copy_subtitle,
  .canvas_img {
    opacity: 1;
  }

  .canvas_copy_title,
  .canvas_copy_details {
    transform: translateX(0);
  }
  .canvas_copy_subtitle {
    transform: rotate(270deg) translateY(-100%) translateX(-100%);
  }
  .rect-gradient {
    animation: draw-line 3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 2000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes erase-line {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 2000;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  
.canvas-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;

  .canvas + .canvas {
    margin-left: 10px;
  }

}
.canvas {
  position: relative;
  display: block;
  width: 100%;
  height: 50vh;
  color: inherit;
  text-decoration: none;
}

.canvas_copy{
  display: none;

}
}



.head{
  display: flex;
  flex-direction: row;
}

.head-left{
  padding-left: 3%;
}
.head-right{
  padding-right: 3%;
  text-align: justify;
}

.signature {
  font-size: 1.5rem;
  text-align: end;
  color: #c41818;
  animation: slideIn 2s ease-in-out;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }

  to {
      opacity: 1;
      transform: translateX(0);
  }
}



@media (max-width: 768px) {
  .head-left{
    padding-left: 0;
    margin-left: 0%;
    padding-right: 0;
    margin-right: 0%;
  }
  .head-right{
    padding-left: 0%;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0%;
    padding-top: 3%;
  }

}


