:root {
  --background-color: #080d30;
  --primary-color: #4a90e2;
  --secondary-color: #7257d4;
  --section-bg-color: #1c287e;
  --tittle-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);






  --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);
}


h2,
h3,
h4,
h5,
h6 {
  color: var(--tittle-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(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}



.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(--tittle-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 {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.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;
}

.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-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--background-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.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);
}

.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%;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}



.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;
}

.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;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.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: var(--menu-font-size);
  color: var(--tittle-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(--tittle-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: #0d0d1c;
  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(--tittle-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(--tittle-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);
  }
}

.seccion-animaciones {
  background-color: #0a0a23;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

.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: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.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 {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.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;
  }
}




.dropdown.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}


.dropdown-menu {
  background: #0f0f0f;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1),
    0 0 40px rgba(0, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 150px;
  transition: all 0.3s ease;
  z-index: 1050;
}


.dropdown-item {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #00ffff;
  background-color: transparent;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}


.dropdown-item:not(.active-lang):hover,
.dropdown-item:not(.active-lang):focus {
  background-color: rgba(179, 0, 255, 0.1);
  color: #b300ff;
  border-left: 4px solid #b300ff;
  text-shadow: 0 0 5px #b300ff, 0 0 10px #b300ff;
}


.active-lang {
  background-color: rgba(0, 255, 255, 0.15) !important;
  color: #00ffff !important;
  font-weight: bold;
  border-left: 4px solid #00ffff;
  text-shadow: 0 0 5px #00ffff;
}



@media (max-width: 576px) {
  .dropdown-menu {
    min-width: 120px;
    font-size: 0.95rem;
    right: 0;
    left: auto;
  }

  .dropdown-item {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}


@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;
  }
}