:root {
  --background-color: #080d30;
  --primary-color: #4a90e2;
  --secondary-color: #7257d4;
  --section-bg-color: #1c287e;
  --title-color: #ffffff;
  --p-color: #ffffff;
  --border-color: #ffffff;
  --featured-border-color: #331246;
  --navbar-text: #e0e6f0;
  --navbar-hover: #00ffff;
  --navbar-active: #b300ff;
  --navbar-text-shadow: 0 0 8px rgba(224, 230, 240, 0.5);
  --navbar-hover-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  --navbar-active-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
  --icon-size: 50px;
  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}


body {
  background: var(--background-color);
  font-family: var(--body-font-family);
}

html,
body {
  overflow-x: clip;
}


h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;

}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}



.tech-box .text-muted {
  color: #ffffff !important;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--background-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--background-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  z-index: 1;
  position: relative;
}

.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-image {
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 transparent;
}

.avatar-image:hover {
  transform: scale(1.1);

}


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--background-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--background-color);
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}



.navbar-icon {
  background: var(--background-color);
  border-radius: var(--border-radius-large);
  color: var(--title-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--background-color);
}

.form-check-icon {
  color: var(--secondary-color);
}



.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  color: white;
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: black;
  border-color: transparent;
  color: white;
}

.custom-btn {
  background: black;
  border-radius: var(--border-radius-large);
  color: white;
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--background-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--background-color);
}

.custom-link {
  background-color: var(--primary-color);
}

.custom-link:hover {
  background-color: var(--secondary-color);
}



.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--background-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--navbar-hover);
  text-shadow: var(--navbar-hover-shadow);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.is-sticky .navbar-nav .nav-link {
  color: var(--navbar-hover);
  text-shadow: var(--navbar-hover-shadow);
  transition: color 0.1s ease, text-shadow 0.3s ease;
}

.is-sticky .navbar .custom-btn {
  border-color: rgb(73, 162, 245);
  color: white;
}

.is-sticky .navbar .custom-btn:hover {
  background: rgb(41, 89, 134);
  color: white;
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--navbar-text);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--navbar-text);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: var(--navbar-active);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--navbar-active);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--background-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--background-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}



.hero {
  background: linear-gradient(180deg, #3f56ff, #080d30);
  position: relative;
  overflow: hidden;
  padding-top: 330px;
  padding-bottom: 330px;
}


@media screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}

.hero-title,
.hero h2 {
  background: var(--background-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
}

.hero-title {
  font-size: 50px;
}

.hero-title {
  color: white;
}

.hero h2 {
  font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
}

.hero-image-wrap {
  background: var(--background-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}


.hero-image {
  position: absolute;
  z-index: 23;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80% !important;
  max-width: 290px !important;
  height: auto;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}



.profile-thumb {
  background-color: #0f1021;
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.profile-body {
  font-size: 18px;
  margin-top: 20px;
}

.profile-value {
  color: #37a9d6 !important;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.profile-label {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  flex: 1;
}

.profile-value {
  font-size: 18px;
  text-align: right;
  flex: 2;
  color: #333;
  word-break: break-word;
}

.profile-value a {
  color: #b88400;
  font-weight: bold;
  text-decoration: none;
}

.profile-value a:hover {
  text-decoration: underline;
}


.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}




.clients-item-height {
  height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}




.services,
.featured,
.profile {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.profile-thumb {
  position: relative;
  z-index: 1;
}

.services-thumb {
  background: var(--background-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.section-services-wrap {
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  background: var(--background-color);
  position: relative;
  z-index: 1;
}


.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}


.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
  color: #ffffff;
  transition: color 0.3s ease;
}


.services-icon-wrap {
  border: 1px solid var(--border-color);
  background: transparent;
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all 0.3s ease;
}


.services-thumb:hover .services-icon-wrap {
  border-color: var(--secondary-color);
}

.services-thumb:hover .services-icon {
  color: var(--secondary-color);
}


.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--background-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.projects {
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  min-height: 100vh;
}

.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--featured-border-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
  z-index: 1;
  position: relative;
}


.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}



.contact {
  background: var(--section-bg-color);
  position: relative;
  z-index: 1;
}


.contact-info {
  background: var(--background-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
  z-index: 1;
  position: relative;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
  z-index: 1;
  position: relative;
}

.contact-form {
  margin-left: 10px;
}

.section-contact-wrap {
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  background: var(--background-color);
  position: relative;
  z-index: 1;
}


.custom-form .form-control {
  background: var(--background-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
  field-sizing: content;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}



.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--background-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}



.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--background-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}



.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: 28px;
  color: var(--title-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--background-color);
}



.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--title-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--background-color);
}

.tech-box {
  background-color: #1b1f3b;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.tech-box-frame {
  border: 3px solid #37a9d6;
  border-radius: 16px;
  padding: 15px;
  display: inline-block;
  background-color: #4a90e2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-box-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(55, 169, 214, 0.6);
}

.tech-box .clients {
  background-color: #1b1f3b !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #056df5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.tech-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: auto;
  display: block;
  transition: transform 0.3s ease;
  z-index: 10;
  position: relative;
}

.tech-img:hover {
  transform: scale(1.15);
}

.carousel-item {
  overflow: visible !important;
  padding: 20px 0;
}

.carousel-item img {
  max-height: none;
}

.tech-caption {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #ffffff;
  color: #1b1f3b;
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;

}

.tech-caption:hover {
  background-color: #005fa3;
  color: #ffffff;
}

.tech-section {
  position: relative;
  width: 100%;
  background-color: (var(--background-color));
  overflow: hidden;
}

.tech-text {
  text-align: center;
  color: white;
  padding: 40px 20px 10px;
  z-index: 2;
  position: relative;
}

.tech-text h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.tech-text p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
}

.tech-spline-wrapper {
  width: 100%;
  height: 80vh;
}

.tech-spline {
  width: 100%;
  height: 100%;
  display: block;
}


@media (max-width: 768px) {
  .tech-spline-wrapper {
    height: 45vh;
  }

  .tech-text h3 {
    font-size: 1.4rem;
  }

  .tech-text p {
    font-size: 0.9rem;
  }
}



@media screen and (max-width: 1600px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-image-wrap {
    width: 100px;
    height: 100px;
    top: 1px;
    right: 0;
    left: 0;
    margin: auto;
  }

  .hero-image {
    top: 100px;
    width: 200px !important;
    max-width: 200px !important;
    transform: translateX(-50%);
  }

  .hero-title,
  .hero h2 {
    text-align: center;
    font-size: 37px;
  }


}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--background-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--title-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--background-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--title-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: -10px;
  }

  .hero-text {
    top: 0;
    margin-bottom: -70px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }


  .services-icon {
    color: #ffffff !important;
    transition: color 0.3s ease;
  }


  .services-icon-wrap {
    width: 45%;
    height: 60%;
    background: transparent !important;
    border-color: transparent !important;
    color: #ffffff !important;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }

}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 10px;
    height: 10px;
  }


}

.correo-link {
  color: orange;
  text-decoration: none;
  transition: color 0.3s ease;
}

.correo-link:hover {
  color: blue;
}


.btn-comencemos {
  font-size: 20px;
  padding: 18px 36px;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(79, 209, 197, 0.6), 0 0 30px rgba(79, 209, 197, 0.4);
  transition: all 0.3s ease-in-out;
  animation: glowPulse 2s infinite alternate;
}

.btn-comencemos:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(79, 209, 197, 0.9), 0 0 45px rgba(79, 209, 197, 0.6);
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(79, 209, 197, 0.4), 0 0 20px rgba(79, 209, 197, 0.2);
  }

  100% {
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.8), 0 0 40px rgba(79, 209, 197, 0.5);
  }
}


.contenedor-animacion {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.icono-animacion {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.texto-animacion {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
}

.texto-animacion span {
  color: #ff4c60;
  font-weight: bold;
}

.seccion-animaciones {
  background-color: var(--background-color);
  color: #fff;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.contenedor-animacion {
  max-width: 900px;
  margin: 0 auto;
}

.icono-animacion {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #ff4c60);
}

.texto-animacion {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.texto-animacion span {
  color: #ff4c60;
  text-shadow: 0 0 10px #ff4c60;
}

.subtexto-animacion {
  color: #FFFFFF;
  background: var(--background-color);
  text-shadow: 0 -1px 4px #FFF, 0 -2px 10px rgb(0, 195, 255), 0 -10px 20px #5c6ed4, 0 -18px 40px rgb(4, 172, 250);
  color: #FFFFFF;
  background: var(--background-color);
}

.neon-box {
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid #00ffe1;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 0 5px #00ffe1, 0 0 10px #00ffe1;
  box-shadow: 0 0 10px #00ffe1, 0 0 20px #00ffe1 inset;
  transition: all 0.3s ease-in-out;
}

.neon-box:hover {
  box-shadow: 0 0 15px #00ffe1, 0 0 30px #00ffe1 inset;
  transform: scale(1.02);
}


.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tech-badge {
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  display: inline-block;
}


.tech-badge.html {
  background-color: #e34f26;
}

.tech-badge.css {
  background-color: #264de4;
}

.tech-badge.js {
  background-color: #f7df1e;
  color: #000;
}

.tech-badge.php {
  background-color: #777bb4;
}

.tech-badge.python {
  background-color: #3572A5;
}

.tech-badge.java {
  background-color: #f89820;
}

.tech-badge.mysql {
  background-color: #00758f;
}

.tech-badge.postgresql {
  background-color: #336791;
}

.tech-badge.sqlserver {
  background-color: #cc2927;
}

.tech-badge.bootstrap {
  background-color: #7952b3;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.7rem !important;
  }
}

@media (min-width: 769px) {
  .navbar-brand {
    font-size: 1.7rem;
  }
}


#language-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  display: none;
  transition: top 0.3s ease;
}


@media screen and (max-width: 767px) {
  #language-toast {
    top: 90px;
  }
}


.iframe-wrapper {
  width: 100%;
  max-width: 990px;
  height: 630px;
  overflow: hidden;
  margin: 0 auto;
}


@media (max-width: 768px) {
  .iframe-wrapper {
    height: 650px;
    padding: 0 20px;
  }
}


@media (max-width: 480px) {
  .iframe-wrapper {
    width: 100%;
    height: 650px;
    padding: 0 16px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}


@media (max-width: 576px) {
  .navbar-brand {
    margin-left: 1.3rem;
  }
}

@media (max-width: 400px) {
  #greeting {
    font-size: 2rem;/
  }
}



.d-title-desktop {
  display: none;
}

.d-title-responsive {
  display: none;
}


@media (min-width: 1000px) {
  .d-title-desktop {
    display: block;
  }
}


.d-title-responsive {
  display: none;
}

@media (max-width: 999px) {
  .d-title-responsive {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
  }

  .navbar-mobile-header {
    padding: 0.5rem 1rem;
  }

  .navbar-toggler {
    order: 1;
    margin-right: auto;
  }

  .dropdown {
    order: 3;
    margin-left: auto;
  }

  .navbar-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
  }


  .navbar-toggler {
    order: 1;
  }

  .navbar-brand.d-title-responsive {
    order: 2;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dropdown#lang-toggle-container {
    order: 3;
    margin-left: auto;
  }

  .lang-mobile-dropdown {
    order: 3;
    margin-left: auto;
  }

  .lang-mobile-dropdown .btn {
    padding: 0.25rem;
  }
}


.tech-spline-wrapper,
.tech-video,
.tech-spline-wrapper spline-viewer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  margin-inline: auto;
}

.tech-video {
  height: 100%;
  object-fit: cover;
  background: #000;
}


.only-mobile {
  display: none;
}

.only-desktop {
  display: block;
}

@media (max-width: 400px),
(prefers-reduced-motion: reduce) {
  .only-mobile {
    display: block;
  }

  .only-desktop {
    display: none;
  }
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}


.stat-item {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #ffffff, #4a90e2);
  border-radius: 10px;
}

.stat-item h4 {
  color: white;
  font-size: 2rem;
  margin-bottom: 5px;
}


.social-card {
  background: linear-gradient(135deg, #8f44fd 0%, #6c5ce7 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}


.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }
}


.social-card h5 {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 15px;
}

.social-icon-item {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.3);
}

.social-icon-item:hover::before {
  opacity: 1;
}

.social-icon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.social-icon-item:hover {
  background: rgba(224, 13, 13, 0.2);
  transform: scale(1.05);
}

.contact-status {
  position: relative;
  padding-left: 22px;
  color: #d3f7c8;
  font-weight: 700;
  line-height: 1.4;
}


.contact-status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, .9),
    0 0 18px rgba(34, 197, 94, .7);
  animation: core 1.8s ease-in-out infinite alternate;
}


.contact-status::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(34, 197, 94, 1) 0 40%,
      rgba(34, 197, 94, .35) 55%,
      rgba(34, 197, 94, 0) 70%);
  filter: blur(6px);
  pointer-events: none;
  animation: pulse 1.8s ease-in-out infinite;
}


@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: .9;
  }

  50% {
    transform: translateY(-50%) scale(1.25);
    opacity: 1;
  }

  100% {
    transform: translateY(-50%) scale(1);
    opacity: .9;
  }
}


@keyframes core {
  from {
    box-shadow: 0 0 8px rgba(34, 197, 94, .9), 0 0 18px rgba(34, 197, 94, .7);
  }

  to {
    box-shadow: 0 0 12px rgba(34, 197, 94, 1), 0 0 26px rgba(34, 197, 94, .9);
  }
}

@media (max-width: 768px) {
  .social-icon-item {
    height: 50px;
    /* Altura menor en móviles */
  }

  .social-card {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .social-icon-item {
    height: 45px;
    /* Aún más pequeño en móviles muy pequeños */
  }
}



.contact-method {
  margin-bottom: 53px;
  padding: 25px;
  border-left: 3px solid var(--navbar-hover);
  background: var(--section-bg-color);
  align-items: center;
  color: #fff;
}

.contact-method a:hover {
  color: #ff00ff;
  text-decoration: wavy;
}

.contact-method strong {
  font-size: 1rem;
  color: #fff;
  margin-right: 15px;
}

.contact-methods .contact-method:hover {
  background: rgba(143, 68, 253, 0.2);
  box-shadow: 0 0 8px 2px rgba(143, 68, 253, 0.3);

}

.contact-method .contact-link {
  color: #44f1fd;
  font-weight: bold;
  text-decoration: none;

}

.guarantee-box {
  background: linear-gradient(135deg, #ffc107, #ff6b35);
  padding: 50px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: x-large;
}

.guarantee-box .icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.guarantee-box .garantia {

  display: flex;
  flex-direction: column;
  gap: 8px;
}


.guarantee-box .title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee-box .garantia strong {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

.guarantee-box .garantia small {
  font-size: 0.75em;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 0;
}

.services-list-custom li {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.services-list-custom li lord-icon {
  margin-right: 10px;
}

.about.section-padding {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.about-content {
  position: relative;
  z-index: 10;
}



@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

:is(h1, h2, h3, h4, h5, h6, strong).heading-gradient {
  --hg-blur: 15px;
  --hg-speed: 4s;
  --hg-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--navbar-hover));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  animation: gradientShift var(--hg-speed) ease infinite;
  font-weight: var(--hg-weight);
  position: relative;
  display: inline-block;
  isolation: isolate;
  text-shadow: none;
}

:is(h1, h2, h3, h4, h5, h6, strong).heading-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(var(--hg-blur));
  opacity: 0.2;
  z-index: 1;
}

.about-thumb h3 {
  color: var(--navbar-hover);
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  animation: subtleGlow 3s ease-in-out infinite alternate;
  margin-bottom: 1.5rem;
}

@keyframes subtleGlow {
  from {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  }

  to {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  }
}


.about-thumb p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}


.about-thumb .paragraph-highlight {
  color: var(--navbar-text);
  text-shadow: var(--navbar-text-shadow);
  font-weight: 400;
}


.about-thumb .paragraph-standard {
  color: #d0d6e0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}


.keyword-primary {
  color: var(--primary-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.4);
}

.keyword-secondary {
  color: var(--secondary-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(114, 87, 212, 0.4);
}

.keyword-accent {
  color: var(--navbar-hover);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}


.avatar-image {
  border: 3px solid var(--primary-color);
  box-shadow:
    0 0 20px rgba(74, 144, 226, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: avatarFloat 4s ease-in-out infinite;
}

.avatar-image:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(74, 144, 226, 0.6),
    0 8px 25px rgba(0, 0, 0, 0.4);
}



@keyframes avatarFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.iframe-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--navbar-hover));
  z-index: -1;
  border-radius: 12px;
  animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }
}

.iframe-wrapper:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(114, 87, 212, 0.5),
    0 15px 40px rgba(0, 0, 0, 0.5);
}


@media (max-width: 400px) {
  .iframe-wrapper {
    padding-top: 75%;
  }
}


@media (max-width: 400px) {
  .about.section-padding {
    padding: 60px 0;
  }

  .section-title-wrap h2 {
    font-size: 2rem;
  }

  .about-thumb h3 {
    font-size: 1.3rem;
  }

  .about-thumb p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .particle {
    opacity: 0.2;
  }
}


@media (max-width: 400px) {
  .section-title-wrap {
    flex-direction: column;
    text-align: center;
  }

  .section-title-wrap h2 {
    margin-bottom: 1rem;
  }
}


.about-thumb {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* particulas */
.particle-primary,
.particle-secondary,
.particle-accent {
  box-sizing: border-box;

}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 12s infinite linear;
}


.particle-primary {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, var(--navbar-hover), transparent);
  box-shadow: 0 0 12px var(--border-color);
}

.particle-secondary {
  width: 7px;
  height: 7px;
  background: radial-gradient(circle, var(--navbar-active), transparent);
  box-shadow: 0 0 10px var(--border-color);
}

.particle-accent {
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--navbar-hover), transparent);
  box-shadow: 0 0 7px var(--navbar-hover);
}


@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 0.8;
  }

  95% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-20vh) rotate(360deg);
    opacity: 0;
  }
}

/* Estilos para el selector de idioma */

#lang-toggle-desktop::after {
  color: #00ffff !important;
}

.speech-bubble {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f0f0f;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  top: 100%;

  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #0f0f0f transparent transparent transparent;
}

.iframe-wrapper:hover .speech-bubble {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .btn.dropdown-toggle {
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown .btn.dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.dropdown .btn.dropdown-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.3);
}

.dropdown-menu {
  background-color: #1a1a2e;
  border: 2px solid #4a90e2;
  border-radius: 12px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(74, 144, 226, 0.3);
  padding: 8px 0;
  min-width: 140px;
  margin-top: 8px;
  z-index: 1000;
  overflow: hidden;
}


.dropdown-menu.show {
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}


.dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 20px;
  margin: 0;
  color: #ffffff;
  background-color: transparent;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid transparent;
  box-sizing: border-box;
}


.dropdown-item:hover {
  background-color: rgba(114, 87, 212, 0.2);
  color: #b300ff;
  border-left: 4px solid #b300ff;
  text-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
}

.dropdown-item:focus {
  outline: none;
  background-color: rgba(114, 87, 212, 0.2);
  color: #b300ff;
}


.dropdown-item.active-lang {
  background-color: rgba(0, 255, 255, 0.2) !important;
  color: #00ffff !important;
  font-weight: bold;
  border-left: 4px solid #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  position: relative;
}


.dropdown-item.active-lang::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(0, 255, 255, 0.1) 0%,
      rgba(0, 255, 255, 0.2) 50%,
      rgba(0, 255, 255, 0.1) 100%);
  z-index: -1;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

.dropdown-item:first-child {
  border-radius: 10px 10px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 10px 10px;
}

.dropdown-item:first-child:last-child {
  border-radius: 10px;
}

.dropdown-item+.dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .dropdown-menu {
    min-width: 120px;
    font-size: 0.9rem;
  }

  .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}


@media (max-width: 400px) {
  .dropdown-menu {
    min-width: 100px;
    right: 0;
    left: auto;
  }

  .dropdown-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}


.lang-mobile-dropdown .dropdown-menu {
  background-color: #1a1a2e;
  border: 2px solid #4a90e2;
  border-radius: 12px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(74, 144, 226, 0.3);
  right: 0;
  left: auto;
}

.lang-mobile-dropdown .btn {
  background: transparent;
  border: none;
  padding: 6px 8px;
  border-radius: 8px;
}

.lang-mobile-dropdown .btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu,
.dropdown-item {
  backface-visibility: hidden;
  transform: translateZ(0);
}


.dropdown-menu[data-bs-popper] {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.dropdown-item:focus-visible {
  outline: 2px solid #00ffff;
  outline-offset: -2px;
}


@media (prefers-contrast: high) {
  .dropdown-menu {
    border-color: #ffffff;
    background-color: #000000;
  }

  .dropdown-item {
    color: #ffffff;
  }

  .dropdown-item.active-lang {
    background-color: #0066cc !important;
    color: #ffffff !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dropdown-menu,
  .dropdown-item,
  .dropdown .btn.dropdown-toggle img {
    animation: none !important;
    transition: none !important;
  }
}

/* Skills Section */
.profile-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  animation: glowTitle 2s ease-in-out infinite alternate;
}

@keyframes glowTitle {
  from {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  }

  to {
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
  }
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.skill-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

.skill-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
}

.skill-item:nth-child(1) {
  animation-delay: 0.1s;
}

.skill-item:nth-child(2) {
  animation-delay: 0.2s;
}

.skill-item:nth-child(3) {
  animation-delay: 0.3s;
}

.skill-item:nth-child(4) {
  animation-delay: 0.4s;
}

.skill-item:nth-child(5) {
  animation-delay: 0.5s;
}

.skill-item:nth-child(6) {
  animation-delay: 0.6s;
}

.skill-item:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  display: block;
}

.progress-bar-container {
  width: 100%;
  height: 40px;
  background: var(--background-color);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.skill-item {
  --hue: 150;
}

.progress-bar {
  height: 100%;

  background: linear-gradient(90deg,
      hsl(var(--hue) 90% 90%),
      hsl(var(--hue) 70% 45%),
      hsl(var(--hue) 65% 30%));
  border-radius: 25px;
  width: 0%;
  position: relative;
  transition: width 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 15px hsl(var(--hue) 100% 50% / 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.progress-percentage {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 0 10px hsl(var(--hue) 100% 60% / 0.5);
  z-index: 10;
  position: relative;
  opacity: 1;
  transform: scale(1);
}


.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}


.progress-bar.complete {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow:
      0 4px 15px hsl(var(--hue) 100% 50% / 0.4),
      inset 0 2px 4px rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow:
      0 4px 25px hsl(var(--hue) 100% 50% / 0.6),
      inset 0 2px 4px rgba(255, 255, 255, 0.3),
      0 0 20px hsl(var(--hue) 100% 50% / 0.3);
  }
}

@media (max-width: 768px) {
  .skill-item {
    padding: 15px;
  }

  .skill-name {
    font-size: 1rem;
  }

  .progress-bar-container {
    height: 35px;
  }

  .progress-percentage {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .progress-bar-container {
    height: 30px;
  }

  .progress-percentage {
    font-size: 0.8rem;
  }
}

/* services section */

#section_6 {
  --orbit-duration: 25s;
  --step-size: 130px;
  --label-gap: 42px;
  --nav-offset: 96px;
  scroll-margin-top: var(--nav-offset);
  position: relative;
  z-index: 0;
}


@media (max-width: 992px) {
  #section_6 {
    --step-size: 90px;
    --label-gap: 28px;
  }
}

@media (max-width: 768px) {
  #section_6 {
    --step-size: 70px;
    --label-gap: 20px;
  }
}

@media (max-width: 400px) {
  #section_6 {
    --label-gap: 22px;
  }
}


#section_6 .process-orbit-container {
  position: relative;
  width: min(90vw, 700px);
  height: min(90vw, 700px);
  margin: clamp(8px, 2vh, 16px) auto 12px;
  isolation: isolate;
  overflow-anchor: none;
}


#section_6 .process-orbit {
  position: absolute;
  inset: 0;
  width: 75%;
  height: 75%;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(143, 68, 253, .05) 0%,
      rgba(143, 68, 253, .10) 40%,
      rgba(255, 193, 7, .05) 70%,
      transparent 100%);
  border: 3px solid rgba(143, 68, 253, .2);
  box-shadow:
    0 0 50px rgba(143, 68, 253, .2),
    inset 0 0 50px rgba(143, 68, 253, .1);
  z-index: 1;
  will-change: transform;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  overflow-anchor: none;
}


#section_6 .process-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(143, 68, 253, .05) 0%,
      rgba(143, 68, 253, .10) 40%,
      rgba(255, 193, 7, .05) 70%,
      transparent 100%);
  border: 3px solid rgba(143, 68, 253, .25);
  box-shadow:
    0 0 50px rgba(143, 68, 253, .25),
    inset 0 0 50px rgba(143, 68, 253, .12);
  animation: services-orbit-rot var(--orbit-duration) linear infinite reverse;
  z-index: 0;
  pointer-events: none;
}


#section_6 .process-orbit::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      rgba(255, 193, 7, .95) 0 9deg,
      rgba(255, 193, 7, 0) 9deg 18deg);
  mask: radial-gradient(circle at center,
      transparent calc(100% - 3px), #000 calc(100% - 0px));
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, .55));
  opacity: .9;
  animation: services-orbit-rot calc(var(--orbit-duration) * .9) linear infinite;
  pointer-events: none;
  z-index: 0;
}


#section_6 .inner-orbit {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 193, 7, .35);
  animation: services-orbit-rot calc(var(--orbit-duration) * 1.3) linear infinite;
  opacity: .85;
  z-index: 1;
  pointer-events: none;
}


#section_6 .process-step {
  position: absolute;
  width: var(--step-size);
  height: var(--step-size);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 68, 253, .95) 0%, rgba(255, 193, 7, .95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(15px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .3),
    0 0 20px rgba(143, 68, 253, .4);
  z-index: 2;
  transform: var(--t, none);
}


#section_6 .process-step:hover,
#section_6 .process-step.selected {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, .4),
    0 0 50px rgba(143, 68, 253, .8),
    0 0 100px rgba(255, 193, 7, .4);
  border-color: rgba(255, 255, 255, .8);
  background: linear-gradient(135deg, rgba(255, 193, 7, .95) 0%, rgba(143, 68, 253, .95) 100%);
  z-index: 3;
}


#section_6 .process-step:not(.step-1):not(.step-4):hover,
#section_6 .process-step:not(.step-1):not(.step-4).selected {
  transform: scale(1.25) !important;
}

#section_6 .step-1:hover,
#section_6 .step-1.selected,
#section_6 .step-4:hover,
#section_6 .step-4.selected {
  transform: translateX(-50%) scale(1.25) !important;
}


#section_6 .step-1,
#section_6 .step-4 {
  --t: translateX(-50%);
  left: 50%;
}

#section_6 .step-1 {
  top: -45px;
}

#section_6 .step-2 {
  top: 75px;
  right: -65px;
}

#section_6 .step-3 {
  bottom: 75px;
  right: -65px;
}

#section_6 .step-4 {
  bottom: -45px;
}

#section_6 .step-5 {
  top: 75px;
  left: -65px;
}

#section_6 .step-6 {
  bottom: 75px;
  left: -65px;
}


#section_6 .step-number {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}


#section_6 .glow-effect {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(143, 68, 253, .3), transparent);
  opacity: 0;
  animation: services-rotate 3s linear infinite;
  pointer-events: none;
  transition: opacity .3s ease;
}

#section_6 .process-step:hover .glow-effect {
  opacity: 1;
}

/* Centro de la órbita */
#section_6 .orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, .08);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, .1);
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .2),
    inset 0 0 20px rgba(255, 255, 255, .1);
  z-index: 1;
}

#section_6 .center-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

#section_6 .center-subtitle {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.3;
}


#section_6 .step-label {
  position: absolute;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}


#section_6 .label-1 {
  top: calc(10px - var(--step-size) / 2);
  left: 50%;
  transform: translate(-50%, calc(-1 * var(--label-gap)));
}

#section_6 .label-2 {
  top: calc(-40px + var(--step-size) / 2);
  right: calc(78px - var(--step-size) / 2);
  transform: translate(var(--label-gap), -50%);
}

#section_6 .label-3 {
  bottom: calc(200px + var(--step-size) / 2);
  right: calc(65px - var(--step-size) / 2);
  transform: translate(var(--label-gap), 50%);
}

#section_6 .label-4 {
  bottom: calc(220px - var(--step-size) / 2);
  left: 50%;
  transform: translate(-50%, var(--label-gap));
}

#section_6 .label-5 {
  top: calc(-40px + var(--step-size) / 2);
  left: calc(53px - var(--step-size) / 2);
  transform: translate(calc(-1 * var(--label-gap)), -50%);
}

#section_6 .label-6 {
  bottom: calc(200px + var(--step-size) / 2);
  left: calc(55px - var(--step-size) / 2);
  transform: translate(calc(-1 * var(--label-gap)), 50%);
}

/* Panel de detalles */
#section_6 .step-details-panel {
  position: relative;
  margin: 24px auto 4px;
  background: rgba(255, 255, 255, .1);
  padding: 30px 40px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, .2);
  width: min(90%, 700px);
  text-align: center;
  min-height: 160px;
  opacity: 1;
  visibility: visible;
  transition: box-shadow .3s ease;
  z-index: 1;
}

#section_6 .step-details-panel.active {
  box-shadow: 0 25px 50px rgba(143, 68, 253, .3);
}

#section_6 .detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #8f44fd, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#section_6 .detail-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
  margin-bottom: 20px;
}

#section_6 .detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

#section_6 .detail-feature {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 8px;
}

#section_6 .detail-feature::before {
  content: "✦";
  color: #ffc107;
  font-weight: bold;
}

#section_6 .interaction-hint {
  text-align: center;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  animation: services-hint 2s ease-in-out infinite;
  margin-top: 6px;
  z-index: 1;
}

@keyframes services-orbit-rot {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes services-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes services-hint {

  0%,
  100% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes services-float {

  0%,
  100% {
    transform: translateY(0) rotate(0) scale(.5);
    opacity: .3;
  }

  25% {
    transform: translateY(-50px) rotate(90deg) scale(.8);
    opacity: .7;
  }

  50% {
    transform: translateY(-120px) rotate(180deg) scale(1);
    opacity: 1;
  }

  75% {
    transform: translateY(-80px) rotate(270deg) scale(.8);
    opacity: .7;
  }
}

@media (max-width: 992px) {
  #section_6 .process-orbit-container {
    width: min(90vw, 500px);
    height: min(90vw, 500px);
  }

  #section_6 .step-number {
    font-size: 1.3rem;
  }

  #section_6 .orbit-center {
    width: 130px;
    height: 130px;
    padding: 15px;
  }

  #section_6 .center-title {
    font-size: 1rem;
  }

  #section_6 .center-subtitle {
    font-size: .75rem;
  }

  #section_6 .step-details-panel {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  #section_6 .process-orbit-container {
    width: min(92vw, 350px);
    height: min(92vw, 350px);
  }

  #section_6 .step-1 {
    top: -35px;
  }

  #section_6 .step-2 {
    top: 55px;
    right: -35px;
  }

  #section_6 .step-3 {
    bottom: 55px;
    right: -35px;
  }

  #section_6 .step-4 {
    bottom: -35px;
  }

  #section_6 .step-5 {
    top: 55px;
    left: -35px;
  }

  #section_6 .step-6 {
    bottom: 55px;
    left: -35px;
  }


  #section_6 .orbit-center {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  #section_6 .center-title {
    font-size: .9rem;
  }

  #section_6 .center-subtitle {
    font-size: .7rem;
  }

  #section_6 .detail-features {
    grid-template-columns: 1fr;
  }


  #section_6 .label-1 {
    top: calc(-5px - var(--step-size) / 2);
    left: 50%;
    transform: translate(-50%, calc(-1 * var(--label-gap)));
  }

  #section_6 .label-2 {
    top: calc(-20px + var(--step-size) / 2);
    right: calc(32px - var(--step-size) / 2);
    transform: translate(calc(var(--label-gap)), 50%);
  }

  #section_6 .label-3 {
    bottom: calc(-10px + var(--step-size) / 2);
    right: calc(20px - var(--step-size) / 2);
    transform: translate(calc(var(--label-gap)), -50%);
  }

  #section_6 .label-4 {
    bottom: calc(100px - var(--step-size) / 2);
    left: 50%;
    transform: translate(-50%, calc(var(--label-gap)));
  }

  #section_6 .label-5 {
    top: calc(-10px + var(--step-size) / 2);
    left: calc(2px - var(--step-size) / 2);
    transform: translate(calc(-1 * var(--label-gap)), 50%);
  }

  #section_6 .label-6 {
    bottom: calc(-10px + var(--step-size) / 2);
    left: calc(10px - var(--step-size) / 2);
    transform: translate(calc(-1 * var(--label-gap)), -50%);
  }
}

/* Ajustes para vista móvil del navbar */
@media (max-width: 400px) {
  .navbar-mobile-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 1rem;
  }


  .navbar-toggler {
    position: absolute;
    left: -1px;
    z-index: 10;
    order: unset;
  }


  .navbar-brand.d-title-responsive {
    order: unset;
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
  }


  .lang-mobile-dropdown {
    position: absolute;
    right: -20px;
    z-index: 10;
    order: unset;
  }

  .lang-mobile-dropdown .btn.dropdown-toggle::after {
    border-top-color: #00ffff !important;
  }
}


.icon {
  inline-size: var(--icon-size);
  block-size: var(--icon-size);
  aspect-ratio: 1/1;
  display: block;
  transform: translateY(-6px);
}

.btn-icon {
  inline-size: 30px;
  block-size: 30px;
  aspect-ratio: 1/1;
  display: block;
}

.toast-btn {
    background: linear-gradient(135deg, #8f44fd, #b84afc);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(143, 68, 253, 0.3);
}

.toast-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 68, 253, 0.4);
    color: white;
}


.featured#section_3 .progress-percentage,
.skill-item .progress-percentage,
.skills-list .progress-percentage {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    color: white !important;
    font-weight: bold !important;
    transition: none !important;
    animation: none !important;
    z-index: 10 !important;
}


.skills-list .skill-item {
    opacity: 1 !important;
    visibility: visible !important;
}

.skills-list .progress-bar {
    opacity: 1 !important;
    visibility: visible !important;
}


[class*="toast-"] {

}

#section_3 * {
    animation-play-state: running !important;
}


.progress-percentage:not([class*="toast"]) {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}