:root {
  --font-regular: 'n27-regular';
  --font-medium: 'n27-medium';
  --font-bold: 'n27-bold';
  --theme-gradient: linear-gradient(to right, var(--dvsc-purple-700) 100%, var(--dvsc-purple-900) 0%);
  --theme-gradient-hover: linear-gradient(90deg, #000000 -221.71%, rgba(20, 113, 0, 0.6) 20%, rgba(28, 160, 0, 0) 80%);
  --theme-text-gradient: linear-gradient(to right, var(--dvsc-purple-200) 100%, var(--dvsc-purple-900) 100%);
  --theme-color: #301781;
  --primary-color: #2C2C6F;
  --secondary-color: #E2EAFF;
  --white-color: #fff;
  --black-color: #000000;
  --transition: all ease-in-out .3s;

  --dvsc-purple-100: #f3eff9;
  --dvsc-purple-200: #dbcfef;
  --dvsc-purple-300: #b7a0e0;
  --dvsc-purple-400: #9371d0;
  --dvsc-purple-500: #6f42c1;
  --dvsc-purple-600: #533190;
  --dvsc-purple-700: #372160;
  --dvsc-purple-800: #1b1030;
  --dvsc-purple-900: #100a1e;

  --dvsc-pink-100: #fbeef4;
  --dvsc-pink-200: #f4cce0;
  --dvsc-pink-300: #ea99c1;
  --dvsc-pink-400: #e066a2;
  --dvsc-pink-500: #d63384;
  --dvsc-pink-600: #a02663;
  --dvsc-pink-700: #6b1942;
  --dvsc-pink-800: #350c21;
  --dvsc-pink-900: #210714;

  --dvsc-neutral-100: #fff;
  --dvsc-neutral-200: #dfdfdf;
  --dvsc-neutral-300: #bfbfbf;
  --dvsc-neutral-400: #9f9f9f;
  --dvsc-neutral-500: #808080;
  --dvsc-neutral-600: #606060;
  --dvsc-neutral-700: #404040;
  --dvsc-neutral-800: #202020;
  --dvsc-neutral-900: #000;

  --dvsc-green-100: #ebfdf6;
  --dvsc-green-200: #c4fbe4;
  --dvsc-green-300: #89f8ca;
  --dvsc-green-400: #4ef4af;
  --dvsc-green-500: #14f195;
  --dvsc-green-600: #0fb46f;
  --dvsc-green-700: #0a784a;
  --dvsc-green-800: #053c25;
  --dvsc-green-900: #032517;

  --dvsc-orange-100: #fff1e9;
  --dvsc-orange-200: #ffd5bf;
  --dvsc-orange-300: #ffab7f;
  --dvsc-orange-400: #ff813f;
  --dvsc-orange-500: #ff5700;
  --dvsc-orange-600: #bf4100;
  --dvsc-orange-700: #7f2b00;
  --dvsc-orange-800: #3f1500;
  --dvsc-orange-900: #270d00;
}

body {
  margin: 0;
  font-family: 'n27-regular';
  font-size: .875rem;
  line-height: 1.2;
  color: rgba(219, 207, 239, 1);
  background-color: rgba(16, 10, 30, 1);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  height: 100%;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-medium);
  line-height: 1.4;
  margin: 0;
}

.img-fluid {
  width: 100%;
}

ol,
ul {
  padding-left: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all ease-in-out .3s;
}

a:hover {
  color: inherit;
  transition: all ease-in-out .3s;
}

section {
  position: relative;
}

.sec-padding {
  padding: 5rem 0;
}

.sec-padding-both {
  padding: 4rem;
}

p {
  font-size: .875rem;
  line-height: 1.4;
  font-family: var(--font-regular);
  opacity: .5;
  margin-bottom: 0;
  color: var(--dvsc-purple-200);
}

.opacity-50 {
  opacity: 50%;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  border-color: transparent;
}

.fade-in {
  animation: fade-in 3s ease-in-out alternate;
}

@keyframes fade-in {
  0% {
    transition: none;
  }

  100% {
    transition: all ease .5s
  }
}

::placeholder,
.form-select {
  font-size: 14px;
  line-height: 24px;
  color: red;
  opacity: 1;
}

.header-title-36 {
  font-size: 36px;
  font-family: var(--font-regular);
  color: var(--dvsc-purple-100);
}

.btn {
  padding: .5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid transparent;
  /* background-color: inherit; */
}

/* Preloader */
#preloader {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dvsc-green-500);
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
  animation: fillScreen 5s forwards;
}

.progress-text {
  font-size: 10rem;
  color: var(--black-color);
  font-weight: bold;
}

/* #content-wrap {
  display: none;
} */

@keyframes fillScreen {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

/* header */
.btn-signin {
  font-size: .875rem;
  border-color: var(--dvsc-purple-500);
  background-color: var(--dvsc-purple-800);
  color: var(--dvsc-purple-200);
}

.btn-signin:hover {
  border-color: #14f195;
  background-color: #053c25;
  color: #c4fbe4;
}

.navbar .nav-link {
  color: var(--dvsc-purple-200);
  font-size: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #14f195;
}

/* Banner */
.banner-home .left-content h1 {
  font-size: 64px;
  font-family: var(--font-bold);
  color: var(--dvsc-neutral-100);
}

.banner-home .left-content p {
  font-size: 24px;
}

.banner-home {
  margin-top: 80px;
}

.btn-explore {
  background-image: linear-gradient(to right, var(--dvsc-green-800) 5%, #0EA264 100%);
  border-color: var(--dvsc-green-500);
  color: var(--dvsc-green-300);
  font-size: 24px;
  transition: var(--transition);
  /* background-color: red; */
}

.btn-explore:hover {
  background-color: var(--dvsc-green-500);
  color: var(--dvsc-green-800);
  background-image: none;
  transition: var(--transition);
}

.right-content {
  position: absolute;
  z-index: -1;
  right: 0;
}

.banner-home .ratings {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
}

.banner-home .ratings p {
  color: var(--dvsc-purple-400);
  font-size: 24px;
}

.banner-home .ratings span {
  background-color: var(--dvsc-purple-400);
  color: var(--black-color);
  padding: .5rem .5rem;
  border-radius: 8px;
  margin-bottom: .25rem;
  width: 100%;
  max-width: 60px;
}

/* Wrapper */
.wrapper-hero-banner {
  overflow: hidden;
  max-height: 950px;
  height: 100%;
  position: relative;
  border-radius: 20px;
}

.wrapper-hero-banner .sec-padding-both {
  background-color: rgba(27, 16, 48, .5);
  backdrop-filter: blur(50px);
  /* border: 1px solid var(--dvsc-purple-700); */
  border-radius: 20px;
}

.wrapper-hero-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(111, 66, 193, 1);
  height: 500px;
  width: 600px;
  filter: blur(100px);
  z-index: -2;
  border-radius: 50%;
}

.wrapper-hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(27, 16, 48, 1);
  height: 300px;
  width: 300px;
  filter: blur(50px);
  z-index: -1;
  border-radius: 50%;
}

/* Slider */
.splide {
  padding: 20px 0;
}

.splide__slide {
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: transform 400ms;
  transform: scale(0.9);
  transform-origin: center center;
}

.splide__slide.is-active {
  transform: scale(1);
}

.box-gradient {
  position: relative;
  border: 1px solid transparent;
  border-radius: 10px;
  /* background: linear-gradient(90deg, rgba(183, 160, 224, 0.25) 100%, #64577A 0%); */
  /* background: linear-gradient(180deg, var(--dvsc-purple-800) 10%,
      var(--dvsc-purple-900) 100%); */
  background: linear-gradient(45deg, #131222 60%, #322c3f 100%);
  background-clip: padding-box;
  padding: 10px;
  /* backdrop-filter: blur(2px); */
}

.box-gradient::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(200deg, rgba(183, 160, 224, 0.25) 100%, #64577A 0%);
  ;
  content: '';
  z-index: -1;
  border-radius: 10px;
  /* background: linear-gradient(to right, rgba(183, 160, 224, 0.125) 100%, #64577A 0%); */
}

#features .splide__slide .icon {
  height: 100px;
  width: 100px;
  backdrop-filter: blur(20px);
}

#features .splide__slide .splide_wrapper {
  /* border: 1px solid green; */
  padding: 3rem 1.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  /* backdrop-filter: blur(20px); */
}

.splide__slide {
  margin: .125rem;
}

#features .splide__slide .splide_wrapper .icon::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 0px;
  background-color: rgba(111, 66, 193, 1);
  height: 120px;
  width: 120px;
  filter: blur(40px);
  z-index: -2;
  border-radius: 50%;
}

#features .splide__slide .splide_wrapper .content {
  text-align: center;
}

#features .splide__slide .splide_wrapper .content h3 {
  color: var(--white-color);
  font-size: 32px;
}

/* Excellence */
.excellence .excellence-contents ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.excellence .excellence-contents ul li {
  background-color: var(--dvsc-purple-800);
  border: 1px solid var(--dvsc-purple-600);
  padding: 1rem .75rem;
  border-radius: 6px;
  text-align: center;
}

.excellence .excellence-contents ul li img {
  width: 100%;
  max-width: 100px;
}

.excellence::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  background-color: rgba(55, 33, 96, 1);
  height: 400px;
  width: 500px;
  filter: blur(200px);
  z-index: -2;
  border-radius: 50%;
}

.excellence .header-title-36 {
  color: var(--dvsc-purple-200);
}

.text-gradient {
  background: linear-gradient(to bottom, rgba(219, 207, 239, 1) 50%, rgba(17, 11, 32, 1) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.services .title h2 {
  font-size: 200px;
  font-family: var(--font-medium);

  z-index: -11;
}

.services .service-single-item {
  padding: .75rem;
  border-radius: 25px;
}

.services .service-single-item .service-icon img {
  width: 100%;
  margin-bottom: .5rem;
}

.services .service-single-item h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.service-single-item.box-gradient {
  border-radius: 25px;
}

.service-single-item.box-gradient::after {
  border-radius: 25px;
}

.btn-order-now {
  color: var(--dvsc-purple-300);
  background:
    linear-gradient(#131222, #131222) padding-box,
    linear-gradient(60deg, rgba(183, 160, 224, 0.25) 100%, #64577A 0%) border-box;
  /* padding: 20px 70px; */
  border: 1px solid transparent;
  border-radius: 15px;
  display: inline-block;
  font-size: 20px;
  transition: var(--transition);
}

.btn-order-now:hover {
  background: linear-gradient(#14f195 100%, #14f195) padding-box,
    linear-gradient(60deg, transparent 100%, transparent 0%) border-box;
  color: var(--dvsc-green-800);
  transition: var(--transition);
}

.on-top-of-text {
  margin-top: -100px;
}

/* Card */

/* Outer Container Styling */
.custom-container {
  border-radius: 20px 20px 50px 0;
  padding: 30px;
  position: relative;
  min-height: 460px;
}

.custom-container.box-gradient::after {
  border-radius: 20px 20px 50px 0;
}

/* Tabs Styling */
.tab-button {
  padding: 6px 20px;
  width: 100%;
  border-radius: 6px;
  color: var(--dvsc-purple-200);
}

.custom-container ul.nav-pills li {
  /* flex-grow: 1; */
  background: linear-gradient(#131222, #131222) padding-box,
    linear-gradient(60deg, rgba(183, 160, 224, 0.25) 100%, #64577A 0%) border-box;
  padding: 1px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-block;
  font-size: 16px;
  transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
  background: #9371D0;
  color: var(--white-color);
}

/* Cards Styling */
.custom-card {
  color: var(--dvsc-purple-300);
  background:
    linear-gradient(#131222, #131222) padding-box,
    linear-gradient(60deg, rgba(183, 160, 224, 0.25) 100%, #64577A 0%) border-box;
  /* padding: 20px 70px; */
  border: 1px solid transparent;
  border-radius: 6px;
  /* display: inline-block; */
  font-size: 20px;
  transition: var(--transition);
  text-align: center;
}

.custom-card:hover {
  transform: scale(1.015);
  /* Slight zoom effect on hover */
  box-shadow: 0 0 15px rgba(150, 120, 200, 0.5);
  /* Glow effect */
}

.custom-card img {
  height: 60px;
  width: 60px;
  margin: auto;
}

.category-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 36px;
  margin: 0 0 50px;
  color: var(--dvsc-purple-600)
}

.rounded-corner-1 {
  /* content: ''; */
  position: absolute;
  height: 100px;
  width: 50px;
  background-color: #100a1e;
  left: -2px;
  bottom: -2px;
  border-radius: 0px 25px 0 0;
  border-right: 1px solid #32254b;
  z-index: 99;
  border-top: 1px solid #32254b;
}

.rounded-corner-4 {
  position: absolute;
  right: -15px;
  bottom: -1px;
  height: 60px;
  width: 60px;
  background-color: #100a1e;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.rounded-corner-4::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 125px;
  right: -4px;
  bottom: 0px;
  background: linear-gradient(200deg, rgba(183, 160, 224, 0.25) 100%, #64577A 0%);
  transform: rotate(135deg);

}

.rounded-corner-2 {
  position: absolute;
  height: 30px;
  width: 20px;
  background-color: #131222;
  left: -1px;
  bottom: 97px;
  border-radius: 0px 0px 0 25px;
  border-left: 1px solid #32254b;
  z-index: 100;
  border-bottom: 1px solid #32254b;
  transform: rotate(0deg);
}

.rounded-corner-1::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #100a1e;
  left: 0px;
  top: -20px;
  z-index: -1;
  border-radius: 0;
}

.rounded-corner-3 {
  /* content: ''; */
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #131222;
  left: 47px;
  bottom: -1px;
  border-radius: 0px 0px 0 20px;
  border-left: 1px solid #32254b;
  z-index: 99;
  border-bottom: 1px solid #32254b;
}

.rounded-corner-1::after {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #100a1e;
  right: -20px;
  bottom: 0px;
  /* z-index: -1; */
  border-radius: 0px 0 0 0;
}

.technologies::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -10%;
  background-color: rgba(55, 33, 96, 1);
  height: 400px;
  width: 300px;
  filter: blur(100px);
  z-index: -2;
  border-radius: 50%;
}

.technologies::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0%;
  background-color: rgba(55, 33, 96, 1);
  height: 400px;
  width: 300px;
  filter: blur(100px);
  z-index: -2;
  border-radius: 50%;
}

.presence {
  background: url(../images/map.png)no-repeat;
  background-position: center 50px;
  min-height: 320px;
}

.presence .title {
  margin-top: 50px;
}

.presence .title h2 {
  color: var(--white-color);
}

.country-content h3 {
  font-size: 64px;
}

.country-content p {
  font-size: 20px;
}

.country-content p.office-type {
  margin-top: -40px;
  color: var(--dvsc-neutral-200);
  margin-bottom: 1rem;
}

.country-content p.office-address {
  color: var(--dvsc-neutral-300);
  margin-bottom: 1rem;
}

.country-content a.call-number {
  color: var(--dvsc-neutral-200);
  font-size: 24px;
}

/* Footer */
#footer {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: end;
  color: var(--dvsc-purple-200);
}

#footer::before {
  content: '';
  position: absolute;
  background: url(../images/footer-logo.png) top center;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -11;
}

#footer::after {
  content: '';
  position: absolute;
  background: linear-gradient(to bottom, var(--dvsc-purple-900) 0%, var(--dvsc-purple-700) 100%);
  height: 100%;
  width: 100%;
  z-index: -15;
  left: 0;
  top: 0;
}

#footer .footer-content .social a {
  font-size: 16px;
  color: var(--dvsc-purple-200);
}

.footer-links ul {
  display: flex;
  justify-content: center;
}

.footer-links ul li {
  padding: 0rem 1rem;
}

.footer-links ul li a {
  color: var(--dvsc-purple-200);
}

.footer-links ul li:not(:last-child) {
  border-right: 1px solid var(--dvsc-neutral-200);
}

.copyright p {
  color: var(--dvsc-purple-200);
}

#footer a:hover,
#footer a .bi:hover {
  color: var(--dvsc-green-500);
}

/* navabr */
.navbar-toggler {
  border-radius: 50px;
  border: 1px solid rgba(219, 207, 239, .25);
  height: 45px;
  width: 45px;
}

.navbar-desktop {
  display: flex;
}

#mobile-menu .nav-link {
  font-size: 2rem;
}

#mobile-menu .nav-item {
  margin-bottom: 2rem;
}

.offcanvas-header .btn-close {
  --bs-btn-close-bg: none;
}

.marque-wrapper {
  background-color: var(--dvsc-green-500);
  color: #000;
}