@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Anton&family=Archivo+Black&family=Bungee&family=Caprasimo&family=Michroma&family=Righteous&family=Rubik+Mono+One&family=Russo+One&display=swap");

/* @media (max-width: 575px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
.img-logo {
  width: 152px;
  height: 50px;
  object-fit: contain;
}
@media (max-width: 425px) {
  .img-logo {
    width: 115px;
    height: 57px;
    object-fit: contain;
  }
}
@media (max-width: 375px) {
  .img-logo {
    width: 69px;
    height: 56px;
    object-fit: contain;
  }
}
@media (max-width: 320px) {
  .navbar .btn-primary {
    /* overflow: hidden;
    width: 100px;
    height: 50px; */
    display: none;
  }
}
.navbar {
  background-color: #a7b6c2;
  height: 80px;
  margin: 20px;
  border-radius: 16px;
  padding: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0d0e2a, #22cdd5);
  border: none;
  color: #060606;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(58, 68, 93, 0.4);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #f5f5f5;
  color: #f5f5f5;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f5f5f5;
  color: #060606;
  transform: translateY(-2px);
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
  outline: none;
}
.nav-link {
  color: #292929;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #060606 !important;
}
@media (min-width: 991px) {
  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0d0e2a;
    visibility: hidden;
    transition: 0.2s ease-in-out;
  }
  .nav-link:hover::before,
  .nav-link.active::before {
    width: 100%;
    visibility: visible;
  }
}
.hero-section h1 {
  font-family: "Rubik Mono One", sans-serif;
  background: linear-gradient(135deg, #f5f5f5, #b6b6b6);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section.custom {
  background: linear-gradient(-140deg, #060606, #0d0e2a, #1a1f4b, #0096c7);
  background-size: 300% 100%;
  animation: organicWave 18s ease-in-out infinite;
}
@keyframes organicWave {
  0% {
    background-position: 90% 10%;
  }
  20% {
    background-position: 70% 30%;
  }
  40% {
    background-position: 60% 40%;
  }
  60% {
    background-position: 50% 50%;
  }
  80% {
    background-position: 70% 30%;
  }
  100% {
    background-position: 90% 10%;
  }
}
.space-and-wave {
  margin: 0px;
  padding: 0px;
  z-index: 21;
}
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  z-index: 22;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #00b4d8;
  opacity: 0.6;
  z-index: 23;
}
.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #1a1f4b;
  opacity: 0.4;
}
.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #f5f5f5;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

.section-title {
  background: linear-gradient(135deg, #0d0e2a, #060606);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0d0e2a, #3a445d);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title:hover::after {
  width: 120px;
}
.hero-section .container {
  height: 100dvh;
  z-index: 1;
  position: relative;
}
.about,
.faq {
  background-color: #f5f5f5;
}
.img-button {
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 24px;
  position: relative;
  background-image: url(img/about.jpg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;

  & .content {
    position: absolute;
    height: 50px;
    background: linear-gradient(135deg, #060606, #0d0e2a);
    width: 10%;
    bottom: 0;
    right: 0;
    border-radius: 24px;
    outline: 10px solid #f5f5f5;
    transition: width 0.5s ease;

    &:before,
    &:after {
      position: absolute;
      content: "";
      width: 24px;
      aspect-ratio: 1;
      background: radial-gradient(circle 24px at top left, #0000 98%, #f5f5f5);
    }

    &:before {
      left: -34px;
      bottom: 0;
      top: 26px;
      width: 34px;
    }
    &:after {
      top: -34px;
      right: -10px;
      width: 34px;
    }
    &:hover {
      width: 40%;

      span {
        width: 100%;
      }
    }
  }
  span {
    color: #f5f5f5;
    overflow: hidden;
    width: 1.6ch;
    letter-spacing: 2px;
  }
}

.img-button span i {
  flex-shrink: 0;
}

.img-button span .text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.4s ease, max-width 0.4s ease;
}

.img-button .content:hover span .text {
  opacity: 1;
  max-width: 200px;
}
.custom-shape-divider-top-1758136917 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1758136917 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.custom-shape-divider-top-1758136917 .shape-fill {
  fill: #f5f5f5;
}

.services,
.faq,
.cta-section {
  position: relative;
}
.section-title-secondary {
  background: linear-gradient(135deg, #f5f5f5, #818181);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-title-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #f5f5f5, #818181);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title-secondary:hover::after {
  width: 120px;
}
/* Card Animation Styles */
.services .text-muted,
.faq .text-muted,
.footer .text-muted {
  color: #c0c0c0 !important;
}
.services i {
  color: #6c8ae4 !important;
}
.service-card {
  background-color: #2c303a;
  transition: all 0.3s ease;
}

.service-card:hover {
  background-color: #3a445d;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.service-icon {
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-bullets li {
  transition: color 0.2s ease;
}

.service-card:hover .service-bullets li {
  color: #f5f5f5 !important;
}
.custom-shape-divider-bottom-1758206312 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1758206312 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-1758206312 .shape-fill {
  fill: #f5f5f5;
}
.faq-item {
  background: #3a445d;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.faq-button {
  color: #f5f5f5;
}
.cta-section {
  background: linear-gradient(135deg, #0d0e2a, #1a1b4b, #3a7bd5);
  color: #060606;
}
.custom-shape-divider-top-1758209046 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1758209046 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1758209046 .shape-fill {
  fill: #f5f5f5;
}
.offcanvas {
  background-color: #0096c7;
}
.modal-content {
  background-color: #0d0e2a;
  border: #6c8ae4;
  border-radius: 12px;
}

.modal-header {
  border-bottom: 1px solid #22cdd5;
  background: linear-gradient(135deg, #0d0e2a, #1a1b4b, #3a7bd5);
}

.modal-title {
  color: #22cdd5;
  font-weight: 600;
}

.form-label {
  color: #f5f5f5;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  background-color: #0d0e2a;
  border: 2px solid #cacaca;
  color: #f5f5f5;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: #0d0e2a;
  border-color: #6c8ae4;
  box-shadow: 0 0 0 0.2rem rgba(195, 150, 60, 0.25);
  color: #f5f5f5;
}

.form-control::placeholder {
  color: #cacaca;
}
.footer {
  background: #0d0e2a;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: #191a33;
  line-height: 45px;
  color: #22cdd5;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #22cdd5;
  color: #0d0e2a;
  transform: translateY(-3px);
}
.space-and-wave-footer {
  margin: 0px;
  padding: 0px;
  z-index: 21;
}
.wave1-footer use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #00b4d8;
  opacity: 0.6;
  z-index: 23;
}
.wave2-footer use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #1a1f4b;
  opacity: 0.4;
}
.wave3-footer use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #0d0e2a;
}
.footer-img-logo {
  width: 224px;
  height: 70px;
  object-fit: contain;
}
