/*** 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 ***/
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(34,0,34,0.9), rgba(153,41,234,0.7));
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(153,41,234,0.6), 0 0 20px rgba(153,41,234,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Hover glow effect */
#backToTop:hover {
    background: linear-gradient(145deg, rgba(0,0,0,0.8), rgba(34,34,34,0.8));
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(153,41,234,0.8), 0 0 30px rgba(153,41,234,0.5);
}


/*** 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;
}
/* Primary Button – Black */
.btn.btn-primary {
    background: linear-gradient(145deg, #000000, #222222);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 
                0 0 10px rgba(153, 41, 234, 0.4); /* subtle violet glow */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Primary Hover – shiny glow */
.btn.btn-primary:hover {
    background: linear-gradient(145deg, #222222, #000000);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(153, 41, 234, 0.6);
    transform: translateY(-2px);
}

/* Shiny overlay animation */
.btn.btn-primary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}
.btn.btn-primary:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(30%, 30%);
}

/* Secondary Button – Violet */
.btn.btn-secondary {
    background: linear-gradient(145deg, #9929ea, #6f1fc1);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(153, 41, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Secondary Hover – violet glow with lift */
.btn.btn-secondary:hover {
    background: linear-gradient(145deg, #6f1fc1, #9929ea);
    box-shadow: 0 6px 25px rgba(153, 41, 234, 0.6);
    transform: translateY(-2px);
}

/* Shiny overlay animation for secondary */
.btn.btn-secondary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}
.btn.btn-secondary:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(30%, 30%);
}
/* Hide scrollbars */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
::-webkit-scrollbar {
  display: none;
}

/*** Topbar Start ***/
.topbar {
  padding: 2px 10px 2px 20px;
  background-color: rgb(0 0 0);
}
/*** Topbar End ***/

/* ** Cursor ** */
/* Hide default cursor */
body {
    cursor: none;
}

/* Main glowing cursor orb */
.cursor {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(153,41,234,0.8), rgba(0,0,0,0));
    box-shadow: 0 0 8px rgba(153,41,234,0.6),
                0 0 20px rgba(153,41,234,0.4),
                0 0 30px rgba(153,41,234,0.2);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    z-index: 9999;
}

/* Trailing particles container */
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
}

/* Interactive hover effect (buttons, links, etc.) */
a:hover, button:hover, .btn:hover {
    cursor: none; /* hide default */
}


/*** Navbar ***/
.sticky-top {
  transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
  color: white;
}

.navbg {
  background: linear-gradient(rgb(153 41 234 / 83%), rgb(0 0 0)),
    url("your-image.jpg");
}
.navbar .navbar-nav .nav-link {
  position: relative;
  padding: 10px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  transition: 0.5s;
  z-index: 99;
}

.navbar .navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border: 2px solid var(--bs-white);
  opacity: 0;
  transition: 0.5s;
  z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
  top: 0;
  left: 0;
  border-bottom: 0;
  border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
  bottom: 0;
  right: 0;
  border-top: 0;
  border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
  width: 50%;
  height: 50%;
  opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

.navbar .navbar-toggler {
  padding: 8px 15px;
  color: white;
  background: var(--bs-secondary);
}

.nav-bar .navbar-toggler {
  color: white;
  box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

.navbar .nav-item .dropdown-menu {
  background: var(--bs-light);
  transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
  transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    margin-top: 15% !important;
    transform: rotateX(-75deg);
    transform-origin: 0 0;
    border: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9;
  }
}

@media (max-width: 991px) {
  .navbar .nav-item .dropdown-menu {
    position: relative;
    margin-top: 0;
    transition: 0.5s;
  }

  .navbar .navbar-nav .nav-item::after,
  .navbar .navbar-nav .nav-item::before {
    display: none;
  }

  .navbar .navbar-nav .nav-item:hover::after,
  .navbar .navbar-nav .nav-item:hover::before,
  .navbar .navbar-nav .nav-item.active::after,
  .navbar .navbar-nav .nav-item.active::before {
    display: none;
  }

  .navbar .navbar-nav .nav-link {
    padding: 12px 0;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar .navbar-nav .nav-item.nav-link {
    padding: 12px 0;
  }
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.6);
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse at center,
    rgb(153 41 234 / 83%) 5%,
    black 75%
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel .carousel-inner .carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(0px);
    opacity: 1;
  }

  25% {
    width: 115%;
    height: 115%;
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }

  50% {
    width: 130%;
    height: 130%;
    -webkit-filter: blur(10px);
    opacity: 0.7;
  }

  75% {
    width: 115%;
    height: 115%;
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }

  100% {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(0px);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-item .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-item .carousel-caption p.fs-5 {
    font-size: 15px;
  }
}

.carousel .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.carousel .carousel-indicators {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
  margin-right: 30px !important;
  width: 10px;
  height: 10px;
  border: 6px solid var(--bs-secondary);
  background: var(--bs-white);
  transition: 0.5s;
}

.carousel .carousel-indicators li.active {
  border: 10px solid var(--bs-primary);
}
/* Transparent base for carousel controls */
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: auto;
    background: transparent;
}

/* Arrow icons */
.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #000000, #222222); /* black glass base */
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 10px rgba(153,41,234,0.3);
    transition: all 0.4s ease;
    position: absolute;
}

/* Previous arrow position */
.carousel .carousel-control-prev-icon {
    left: -30px; /* adjust as needed */
}

/* Next arrow position */
.carousel .carousel-control-next-icon {
    right: -30px; /* adjust as needed */
}

/* Arrow hover effect – violet glow + lift */
.carousel .carousel-control-prev-icon:hover,
.carousel .carousel-control-next-icon:hover {
    background: linear-gradient(145deg, #222222, #000000);
    box-shadow: 0 6px 25px rgba(0,0,0,0.5), 0 0 15px rgba(153,41,234,0.6);
    transform: translateY(-2px) scale(1.05);
}

/* Optional shiny overlay for futuristic vibe */
.carousel .carousel-control-prev-icon::before,
.carousel .carousel-control-next-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
    border-radius: 50%;
}
.carousel .carousel-control-prev-icon:hover::before,
.carousel .carousel-control-next-icon:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(30%, 30%);
}

/* Icon arrow color */
.carousel .carousel-control-prev-icon::after,
.carousel .carousel-control-next-icon::after {
    font-size: 24px;
    color: #fff;
}

}
/*** Carousel End ***/

/*** About Start ***/
.about .about-item-content-img {
  border: 4px solid;
  border-color: var(--bs-secondary) var(--bs-primary) var(--bs-primary)
    var(--bs-secondary);
}

.about .about-item-image {
  position: relative;
  background: var(--bs-light);
  background-image: url('https://github.com/MyOwnHosting-ST/syn-avess-sait-aug-us-t-0126/blob/main/img/RockAutotec3.png?raw=true');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.about .about-item-image .img-1 {
  margin-bottom: 250px;
  margin-right: 0;
  border: 4px solid;
  border-color: var(--bs-secondary) var(--bs-light) var(--bs-light)
    var(--bs-secondary);
  z-index: 3;
}

.about .about-item-image .img-2 {
  margin-top: 250px;
  margin-left: 0;
  border: 4px solid;
  border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary)
    var(--bs-light);
  z-index: 3;
}

.about .about-item-image::before {
  width: 80%;
  height: 80%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-style: dotted;
  border-color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 2;
}

.about .about-item-image .about-item-image-content {
  width: 55%;
  height: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bs-secondary);
  border: 4px solid var(--bs-primary);
  opacity: 0.9;
  z-index: 4;
}

.about .about-item-image .about-item-image-effect {
  position: absolute;
  top: 0;
  right: 0;
}
.bg-grad {
  background: radial-gradient(
    ellipse at center,
    rgb(153 41 234 / 83%) 5%,
    black 75%
  );
}
/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
  position: relative;
  transition: 0.5s;
  margin: 20px 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* frosted glass + animated gradient */
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2),
    rgba(153, 41, 234, 0.25),
    rgba(255, 255, 255, 0.1),
    rgba(153, 41, 234, 0.25)
  );
  background-size: 300% 300%;
  animation: featureGradient 12s ease infinite;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Hover → violet glow + lift */
.feature .feature-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 35px rgba(153, 41, 234, 0.7);
}

/* Animate gradient inside features */
@keyframes featureGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Text + link transition */
.feature .feature-item a {
  color: #fff;
  transition: color 0.3s;
}

.feature .feature-item:hover a:hover {
  color: var(--bs-secondary);
}

/* Icon box */
.feature .feature-item .feature-img {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

/* Icon hover border */
.feature .feature-item:hover .feature-img {
  border: 1px solid var(--bs-secondary);
}

/*** Services Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 1;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}

.service .service-item::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.service .service-item .service-content {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.5s;
  opacity: 0;
  z-index: 3;
}

.service .service-item:hover .service-content {
  opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
  color: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
  color: var(--bs-secondary);
}

.service .service-item .service-tytle {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  right: 0;
   background: linear-gradient(to bottom left, #8913dd 0%, /* light grey at top */ #000000e3 50%, /* medium grey */ #420172 100% /* violet at bottom-left */);
  display: flex;
  transition: 0.5s;
  z-index: 3;
}

.service .service-item:hover .service-tytle {
  margin-right: -100%;
}
/*** Services End ***/
/*** Fact Counter ***/
/*** Fact Counter ***/
.counter {
  background: radial-gradient(
    ellipse at center,
    rgba(153, 41, 234, 0.9) 0%,
    /* strong violet in middle */ rgba(0, 0, 0, 0.95) 70%
      /* fades to black at edges */
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

/* Counter item container */
.counter .counter-item {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* 🌈 Glass + animated gradient card */
.counter .counter-item .counter-item-inner {
  position: relative;
  margin: 20px;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* frosted + gradient */
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2),
    rgba(153, 41, 234, 0.25),
    rgba(255, 255, 255, 0.1),
    rgba(153, 41, 234, 0.25)
  );
  background-size: 300% 300%;
  animation: cardGradient 12s ease infinite;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: 0.4s ease;
  z-index: 2;
}

/* Hover effect → glow + lift */
.counter .counter-item .counter-item-inner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(153, 41, 234, 0.55);
}

/* Animated gradient movement inside cards */
@keyframes cardGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Counter number box (mini glass) */
.counter .counter-item .counter-counting {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 20px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.25);
  font-size: 36px;
  font-weight: bold;
  color: var(--bs-primary);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/*** Fact Counter ***/

/* Logo Scroller Start */
.home-logo-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;

  /* Dark background */
  background-color: #000;
}

.clients-grid {
  display: flex;
  align-items: center;
  gap: 4rem; /* space between logos */
  flex: none;
  min-width: 100%;
  animation: slide 130s linear infinite;
}

.client-logo {
  height: 30px; /* uniform size */
  object-fit: contain;

  /* Make all logos white */
  filter: brightness(0) invert(1);

  pointer-events: none; /* not clickable */
  user-select: none;
  transition: filter 0.3s ease;
}

.client-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(153, 41, 234, 0.3));
}

/* Animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    height: 25px;
  }
  .clients-grid {
    gap: 2rem;
  }
}

/*** Projects Start ***/
.project .project-item .project-img {
  position: relative;
}

.project .project-item .project-img::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  background: var(--bs-secondary);
  z-index: -1;
}

.project .project-item .project-content a.h4 {
  transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
  color: var(--bs-secondary);
}
/*** Projects End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  z-index: 1;
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #9929ea26;
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}

.team .team-item .team-img .team-icon {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scale(-1);
  margin-bottom: 100%;
  background: transparent;
  transition: 0.5s;
  opacity: 0;
  z-index: 5;
}

.team .team-item:hover .team-img .team-icon {
  transform: scale(1);
  margin-bottom: 0;
  opacity: 1;
}

.team .team-item .team-border-style-1,
.team .team-item .team-border-style-2 {
  width: 50%;
  height: 50%;
  position: absolute;
  background: var(--bs-secondary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-1 {
  top: 0;
  left: 0;
}

.team .team-item .team-border-style-2 {
  right: 0;
  bottom: 0;
}

.team .team-item .team-border-style-3,
.team .team-item .team-border-style-4 {
  width: 0;
  height: 0;
  position: absolute;
  background: white;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-3 {
  top: 0;
  right: 0;
}

.team .team-item .team-border-style-4 {
  left: 0;
  bottom: 0;
}

.team .team-item:hover .team-border-style-1,
.team .team-item:hover .team-border-style-2 {
  width: 0%;
  height: 0%;
}

.team .team-item:hover .team-border-style-3,
.team .team-item:hover .team-border-style-4 {
  width: 50%;
  height: 50%;
}
/*** Team End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
}

.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 {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--bs-secondary);
}
/*** Blog End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  color: white;
  padding: 5px 25px;
  border: 1px solid white;
  border-radius: 20px;
  transition: 0.5s;
}

.bg-test {
  background: linear-gradient(
    to bottom left,
    #9929ea70 0%,
    /* light grey at top */ #000000 50%,
    /* medium grey */ #9929ea70 100% /* violet at bottom-left */
  );
  border-radius: 20px;
  color: white;
}
.testimonial .owl-nav .owl-prev:hover {
  color: var(--bs-secondary);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  color: white;
  padding: 5px 25px;
  border: 1px solid white;
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  color: var(--bs-secondary);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border: 1px solid var(--bs-primary);
  background: var(--bs-secondary) !important;
  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 span::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}
/*** testimonial End ***/

/*** Contact Start ***/
.contact .contact-map {
  position: relative;
  overflow: hidden;
  padding: 20px;
  z-index: 1;
}

.contact .contact-map::before {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bs-primary);
  z-index: -1;
}

.contact .contact-map::after {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--bs-secondary);
  z-index: -1;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: radial-gradient(
    ellipse at center,
    rgb(153 41 234 / 83%) 5%,
    black 75%
  );

  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.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-secondary);
}

.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 ***/
/* Text styles */
h6,h5,h4,h3,h2,h1{
  color:white;
}
p{
  color:#dcc7eb;
}

/* Default: Desktop big and bold */
.carousel-caption h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
.carousel-caption p {
  font-size: 1.25rem;
}
.carousel-caption .btn {
  font-size: 1.1rem;
  padding: 14px 36px;
  margin: 5px;
}

/* 📱 Mobile Fix */
@media (max-width: 768px) {
  .carousel-caption {
    position: static;   /* take out from overlay */
    padding: 15px;
    text-align: center;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;  /* smaller headline */
  }
  .carousel-caption p {
    font-size: 1rem;    /* smaller sub text */
  }

  .carousel-caption .d-flex {
    flex-direction: column; /* stack buttons */
    gap: 10px;
  }

  .carousel-caption .btn {
    width: 100%;  /* full width for comfort tap */
    font-size: 1rem;
    padding: 12px;
  }
}

/* ===== Privacy Page ===== */
.privacy-wrap {
  position: relative;
  overflow: hidden;
  padding: 90px 0;                 /* breathing room */
  background: radial-gradient(
    ellipse at center,
    rgba(153,41,234,0.85) 0%,
    rgba(60,0,100,0.65) 30%,
    rgba(10,10,10,0.95) 75%,
    rgba(0,0,0,1) 100%
  );
}

/* soft vignette */
.privacy-wrap::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0) 60%);
}

/* page heading */
.privacy-heading {
  text-align: center;
  margin-bottom: 32px;
}
.privacy-heading .eyebrow {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #b78ae9; /* subtle violet */
  margin-bottom: 8px;
}
.privacy-heading h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
}

/* glass card */
.glass-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)) ;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  box-shadow:
    0 10px 35px rgba(0,0,0,0.5),
    0 0 40px rgba(153,41,234,0.18);
  overflow: hidden;
}

/* animated subtle gradient sheen inside card */
.glass-card::before {
  content: "";
  position: absolute; inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(153,41,234,0.08),
    rgba(255,255,255,0.06),
    rgba(153,41,234,0.08));
  animation: sheen 16s linear infinite;
  filter: blur(40px);
  opacity: .6;
}
@keyframes sheen {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1); }
}

.glass-card .content {
  position: relative;
  padding: 40px 36px;
}

.glass-card h2 {
  font-size: 1.5rem;
  margin: 18px 0 8px;
  color: #ffffff;
}
.glass-card p, .glass-card li {
  color: rgba(255,255,255,0.92);
}
.glass-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

/* section dividers */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  margin: 24px 0;
}

/* small meta row */
.meta {
  font-size: .95rem;
  color: rgba(255,255,255,0.8);
}

/* responsive */
@media (max-width: 992px) {
  .privacy-wrap { padding: 70px 0; }
  .glass-card .content { padding: 28px 22px; }
  .privacy-heading h1 { font-size: 2rem; }
}
@media (min-width: 993px) {
  .privacy-heading h1 { font-size: clamp(2.4rem, 2.2rem + 1vw, 3.25rem); }
}


