@charset "UTF-8";
/* =====================================
   VARIABLES
===================================== */
/* =====================================
   GLOBAL
===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
}

.navbar-collapse {
  overflow-x: hidden;
}

.navbar-collapse {
  overflow-x: hidden;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html, body {
  width: 100%;
  overflow-x: hidden !important;
}

body {
  background-color: #000000;
}

.logo {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin: 0;
}

.padding-area {
  padding: 4%;
}

.sub-heading {
  color: rgba(240, 248, 255, 0.7098039216);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin: 0;
}

p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #fff;
  margin: 0;
}

.btn-purple {
  background: #8b3dff;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  border: none;
  width: auto;
  text-align: center;
}
.btn-purple:hover {
  background: #742de0;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #8b3dff;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  border: none;
  width: auto;
  text-align: center;
}
.btn-white:hover {
  background: #742de0;
  color: #fff;
}

/* CSS */
.button-86 {
  all: unset;
  width: 170px;
  height: 30px;
  font-size: 20px;
  background: transparent;
  border: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 10px;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-86::after,
.button-86::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: 10px;
}

.button-86::after {
  transform: translate(-5px, -5px);
  width: 20px;
  height: 20px;
  background: linear-gradient(359deg, #8b3dff 25%, rgb(189, 18, 246) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

#about {
  scroll-margin-top: 50vh;
}

#services {
  scroll-margin-top: 30vh;
}

/* =====================================
   HEADER / NAVBAR
===================================== */
header {
  padding: 0 10%;
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  /* Active state */
}
header .navbar {
  background: linear-gradient(359deg, #8b3dff 25%, rgb(189, 18, 246) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
header .mt-md-4 {
  padding: 0%;
}
header .nav-link {
  color: #fff;
  font-weight: 500;
}
header .navbar-nav .nav-link.active {
  background: #fff;
  color: #8b3dff;
  border-radius: 5px;
  width: 85px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
}
header .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
header .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
header .navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}
header .navbar-nav .nav-link.active {
  color: #8b3dff;
  /* your primary color */
}
header .navbar-nav .nav-link.active::before {
  transform: scale(1);
}
header .icon-btn {
  font-size: 18px;
  margin-right: 15px;
  color: #333;
  cursor: pointer;
}

.scrolled {
  padding: 0 !important;
  transition: all 0.8s ease;
}
.scrolled .mt-md-4 {
  margin-top: 0 !important;
  padding: 0%;
}
.scrolled .navbar {
  border-radius: 0;
}

.hero-section {
  padding: 12% 12% 5% 12%;
}

.hero-title {
  color: rgba(240, 248, 255, 0.7098039216);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.highlight {
  color: #8b3dff;
  font-size: 4rem;
}

.hero-text {
  color: rgba(240, 248, 255, 0.7098039216);
  max-width: 520px;
}

.profile-img {
  max-width: 70%;
  border-radius: 20px;
  background: #fff;
}

/* =====================================
   STATS
===================================== */
/* =====================================
   PROCESS SECTION
===================================== */
.process-section {
  padding: 4% 0;
}

.process-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
}

.process-text {
  color: #fff;
  max-width: 520px;
  line-height: 1.7;
}

.process-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  cursor: pointer;
}
.process-card:hover {
  transform: translateY(-6px);
}
.process-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}
.process-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 24.5px;
  letter-spacing: 0.4px;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: #8b3dff;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* =====================================
   ABOUT SECTION
===================================== */
.about-section {
  padding: 2% 0;
  background: linear-gradient(359deg, #8b3dff 25%, rgb(189, 18, 246) 100%);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
  position: relative;
  /* Image size */
  /* Border movement animation */
}
.about-section .about-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.about-section .about-card img {
  max-width: 55%;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
}
.about-section .about-card .btn-white {
  position: absolute;
  left: 0;
  right: 0;
  width: 30%;
  margin: auto;
  bottom: 15px;
}
.about-section .about-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}
.about-section .about-text {
  color: #fff;
  max-width: 520px;
}
.about-section .lang-card {
  display: flex;
  gap: 20px;
  border-radius: 50px;
}
.about-section .lang-card img {
  width: 50px;
  transition: transform 0.3s ease;
  border-radius: 10px;
  cursor: pointer;
}
.about-section .lang-card img:hover {
  transform: scale(1.1);
}
@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* =====================================
   CUSTOM CARD
===================================== */
.custom-card {
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
}
.custom-card .btn-purple {
  background: transparent;
  color: #8b3dff;
  border: 1px solid #8b3dff;
  font-size: 12px;
  width: 90px;
  padding: 5px;
}
.custom-card .card {
  background-color: #fff;
  position: relative;
  height: auto;
  border: none;
}
.custom-card .card .arrow-btn {
  background: #8b3dff;
  padding: 7px;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  bottom: 1%;
}
.custom-card .card svg {
  width: 25px;
  transform: rotate(233deg);
}
.custom-card .card .card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.custom-card .card .card-text {
  color: #333;
  font-size: 14px;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
.custom-card .nav-link:hover {
  color: #fff !important;
  background-color: #8b3dff;
  border: none;
  border-radius: 5px;
}
.custom-card .nav-tabs .nav-link {
  color: #fff;
  font-weight: 500;
}
.custom-card .nav-tabs .nav-link.active {
  background: #8b3dff;
  color: #fff;
  border-radius: 6px;
  border: none;
}
.custom-card .tab-content {
  padding: 20px;
  border: 1px solid #dee2e6;
  border-top: none;
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease;
}
.custom-card .tab-pane.animate {
  transition: all 0.3s ease;
}
.custom-card .tab-pane {
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}
.custom-card .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}
.custom-card .option-box {
  padding: 15px;
  background: #eef3ff;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}
.custom-card .option-box:hover {
  background: #dce6ff;
}

/* =====================================
   CALL TO ACTION
===================================== */
.call-to-action {
  background: #2b2b2b;
  padding: 4% 0;
}
.call-to-action h2,
.call-to-action p {
  color: #fff;
}
.call-to-action .btn-purple {
  width: 200px;
  padding: 14px 0;
  font-size: 1.1rem;
}

/* =====================================
   SERVICES
===================================== */
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #8b3dff;
  border-radius: 10px 0 0 10px;
  opacity: 0;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #333;
}
.service-card p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

/* =====================================
   SCROLL ANIMATION
===================================== */
.service-section {
  padding-top: 3%;
  padding-bottom: 30%;
}

.card-scroll-wrapper {
  height: 420px;
  overflow: hidden;
  padding: 20px;
}

.card-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 15s linear infinite;
}

.card-scroll-wrapper:hover .card-scroll {
  animation-play-state: paused;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
/* =====================================
   CONTACT
===================================== */
.contact-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: -100%;
  width: 70%;
  margin: auto;
}
.contact-wrapper .contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}
.contact-wrapper .contact-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 400;
}
.contact-wrapper p {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
}
.contact-wrapper .info-box {
  background: #f8f5ff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 90%;
  margin-bottom: 10px;
}
.contact-wrapper .info-icon {
  width: 45px;
  height: 45px;
  background: #8b3dff;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wrapper .contact-form input,
.contact-wrapper .contact-form textarea {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 12px 5px;
  margin-bottom: 25px;
}
.contact-wrapper .contact-form input:focus,
.contact-wrapper .contact-form textarea:focus {
  border-color: #8b3dff;
  box-shadow: none;
}
.contact-wrapper .contact-form svg {
  width: 20px;
  margin-left: 10px;
}
.contact-wrapper .contact-form .button-86 {
  position: relative;
  width: 90px;
  height: 20px;
  font-size: 16px;
  margin: 0;
}

/* =====================================
   FOOTER
===================================== */
.footer {
  background: linear-gradient(359deg, #8b3dff 25%, rgb(189, 18, 246) 100%);
  padding: 14% 0 2%;
}

.footer-logo {
  display: flex;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: #8b3dff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
.footer-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.footer-menu a:hover::after {
  width: 100%;
}

.footer-copy {
  color: #cbd5e1;
  font-size: 14px;
}

/* Small Devices (≥576px) */
@media (max-width: 576px) {
  header {
    width: 100%;
  }
  .logo {
    font-size: 26px;
  }
  .highlight {
    font-size: 2.0rem;
  }
  header .navbar {
    border-radius: 0;
  }
  header .navbar-nav .nav-link {
    padding: 8px 5px;
  }
  header .navbar-nav .nav-link.active {
    width: 100px;
  }
  .sub-heading {
    font-size: 34px;
  }
  .btn-purple,
  .btn-white {
    padding: 5px 15px;
    font-size: 14px;
  }
  p {
    font-size: 13px;
  }
  header {
    padding: 0%;
  }
  .hero-section {
    padding: 30% 1% 0% 1%;
  }
  .hero-section .hero-title {
    font-size: 2.6rem;
  }
  .hero-section .profile-img {
    max-width: 60%;
    margin-top: -20%;
  }
  .about-section {
    padding: 3%;
    margin: 4%;
  }
  .about-section .about-card {
    padding: 10px;
  }
  .about-section .about-card img {
    max-width: 90%;
  }
  .about-section .about-title {
    font-size: 22px;
  }
  .about-section .about-text {
    width: 100%;
    font-size: 13px;
  }
  .about-section .lang-card {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-section .button-86 {
    width: 120px;
    height: 20px;
    font-size: 16px;
    bottom: -5px;
  }
  .custom-card .tab-content {
    padding: 0px;
  }
  .custom-card .card {
    margin: 10px;
  }
  .custom-card .nav-tabs .nav-link {
    font-size: 12px;
  }
  .service-section {
    padding: 0% 5% 20% 5%;
  }
  .service-section .card-scroll-wrapper {
    padding: 10px;
  }
  .service-section .service-card {
    padding: 15px;
  }
  .service-section .service-card h4 {
    font-size: 16px;
  }
  .service-section .service-card p {
    font-size: 13px;
  }
  .contact-wrapper {
    padding: 15px;
    width: 95%;
    border-radius: 10px;
    position: relative;
    margin-bottom: -15%;
  }
  .contact-wrapper .contact-title {
    font-size: 26px;
    display: none;
  }
  .contact-wrapper .info-box {
    padding: 10px;
    width: 100%;
  }
  .contact-wrapper .info-icon {
    width: 40px;
    height: 40px;
  }
  .contact-wrapper .contact-form input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
  }
  .contact-wrapper .contact-form textarea {
    padding: 12px 5px;
    margin-bottom: 5px;
    font-size: 14px;
    height: 75px;
  }
  .contact-wrapper .address {
    display: none;
  }
  .footer-logo {
    display: none;
  }
  .footer-menu {
    margin-bottom: 0;
  }
  .modal-content {
    margin: 5%;
  }
}
/* Medium Devices (≥768px) */
/* Large Devices (≥992px) */
/* Extra Large (≥1200px) */
.modal-content {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.modal-content p {
  color: #333;
}

.modal-title {
  color: #6f42c1; /* same purple tone */
}/*# sourceMappingURL=Style.css.map */