@charset "UTF-8";
/* ------------------------------------------------------------------
    COMMON
------------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

@font-face {
  font-family: Orkney;
  src: url("/fonts/orkney/Orkney Regular.woff");
}
@font-face {
  font-family: Orkney;
  src: url("/fonts/orkney/Orkney Bold.woff");
  font-weight: bold;
}
@font-face {
  font-family: "Portico - Outline";
  src: url("/fonts/Portico/Portico Outline.otf");
}
body {
  background-color: #01143C;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.desktop-only {
  display: none;
}
@media screen and (min-width: 767px) {
  .desktop-only {
    display: inline;
  }
}

.mobile-only {
  display: inline;
}
@media screen and (min-width: 767px) {
  .mobile-only {
    display: none;
  }
}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #01143C;
  z-index: 99999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.page-transition.loaded {
  opacity: 0;
}
.page-transition .transition-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #01143C 0%, #020b1f 100%);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent .cookie-consent-content {
  max-width: 1100px;
  margin: 0 auto;
  background: #01143C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 767px) {
  .cookie-consent .cookie-consent-content {
    flex-direction: row;
    align-items: center;
    padding: 20px 30px;
    gap: 24px;
  }
}
.cookie-consent .cookie-icon {
  display: none;
}
@media screen and (min-width: 767px) {
  .cookie-consent .cookie-icon {
    display: flex;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(232, 12, 142, 0.1);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #e80c8e;
  }
}
.cookie-consent .cookie-text {
  flex: 1;
}
.cookie-consent .cookie-text p {
  font-family: Orkney;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}
.cookie-consent .cookie-text p a {
  color: #e80c8e;
  text-decoration: underline;
}
.cookie-consent .cookie-text p a:hover {
  color: #fff;
}
.cookie-consent .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .cookie-consent .cookie-actions {
    justify-content: flex-end;
  }
}
.cookie-consent .cookie-btn {
  font-family: Orkney;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent .cookie-btn.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.cookie-consent .cookie-btn.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.cookie-consent .cookie-btn.cookie-btn-accept {
  background: #e80c8e;
  border: 1px solid #e80c8e;
  color: #fff;
}
.cookie-consent .cookie-btn.cookie-btn-accept:hover {
  background: #fff;
  border-color: #fff;
  color: #01143C;
}

.header-open {
  overflow-y: hidden;
}
@media screen and (min-width: 767px) and (min-height: 576px) {
  .header-open {
    overflow-y: auto;
  }
  .header-open .circle-background {
    transform: translate(38%, -21%) scale(1) !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

/* a:hover {
    text-decoration: underline;
} */
button {
  background: none;
  border: none;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 767px) {
  .site-header {
    padding: 24px 0;
  }
}
.site-header .header-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.site-header .header-backdrop::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0), transparent);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  padding: 12px 0;
}
@media screen and (min-width: 767px) {
  .site-header.scrolled {
    padding: 14px 0;
  }
}
.site-header.scrolled .header-backdrop {
  background: rgba(1, 20, 60, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header.scrolled .header-backdrop::after {
  background: linear-gradient(90deg, transparent, rgba(232, 12, 142, 0.3), transparent);
}
.site-header.scrolled .header-logo .logo-img {
  height: 45px;
}
@media screen and (min-width: 767px) {
  .site-header.scrolled .header-logo .logo-img {
    height: 50px;
  }
}
.site-header.scrolled .header-menu-btn {
  width: 45px;
  height: 45px;
}
@media screen and (min-width: 767px) {
  .site-header.scrolled .header-menu-btn {
    width: 50px;
    height: 50px;
  }
}
.site-header.scrolled .header-menu-btn .menu-lines {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 767px) {
  .site-header.scrolled .header-menu-btn .menu-lines {
    width: 20px;
    height: 20px;
  }
}
.site-header.scrolled .header-menu-btn .menu-line {
  width: 4px;
  height: 4px;
}
.site-header.scrolled .nav-cta {
  background: #e80c8e;
  box-shadow: 0 4px 20px rgba(232, 12, 142, 0.4);
}
.site-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .site-header .header-container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .site-header .header-container {
    padding: 0 60px;
  }
}
.site-header .header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}
.site-header .header-logo .logo-img {
  height: 60px;
  width: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 767px) {
  .site-header .header-logo .logo-img {
    height: 70px;
  }
}
.site-header .header-logo:hover .logo-img {
  transform: rotate(360deg);
}
.site-header .header-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}
.site-header .header-center-logo .dream-logo-svg {
  height: 42px;
  width: auto;
}
@media screen and (min-width: 767px) {
  .site-header .header-center-logo .dream-logo-svg {
    height: 48px;
  }
}
.site-header .header-center-logo .dream-logo-svg .logo-letter {
  opacity: 0;
  transform: translateY(10px);
}
.site-header .header-center-logo .dream-logo-svg .logo-dot {
  opacity: 0;
  transform: scale(0);
}
.site-header.scrolled .header-center-logo {
  opacity: 1;
  pointer-events: auto;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-d {
  transition-delay: 0.1s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-r {
  transition-delay: 0.15s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-e1 {
  transition-delay: 0.2s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-e2 {
  transition-delay: 0.25s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-e-fade {
  transition-delay: 0.3s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-a {
  transition-delay: 0.35s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-letter-m {
  transition-delay: 0.4s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-dot {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-dot-1, .site-header.scrolled .header-center-logo .dream-logo-svg .logo-dot-1b {
  transition-delay: 0.5s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-dot-2 {
  transition-delay: 0.55s;
  animation: dot-pulse-color 3s ease-in-out infinite 1.5s;
}
.site-header.scrolled .header-center-logo .dream-logo-svg .logo-dot-3, .site-header.scrolled .header-center-logo .dream-logo-svg .logo-dot-3b {
  transition-delay: 0.6s;
}
.site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-letter {
  fill: #e80c8e;
  transition: fill 0.3s ease;
}
.site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-dot-1, .site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-dot-1b, .site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-dot-2, .site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-dot-3, .site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-dot-3b {
  fill: #e80c8e;
  transition: fill 0.3s ease;
}
.site-header.scrolled .header-center-logo:hover .dream-logo-svg .logo-dot-2 {
  animation: none;
}
@keyframes dot-pulse-color {
  0%, 100% {
    fill: #3C3E4B;
  }
  50% {
    fill: #F5C542;
  }
}
.site-header .header-nav {
  display: none;
}
.site-header .header-nav .nav-link {
  position: relative;
  padding: 20px 28px;
  font-family: "Orkney", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  overflow: visible;
}
@media screen and (min-width: 992px) {
  .site-header .header-nav .nav-link {
    padding: 20px 32px;
    letter-spacing: 4px;
  }
}
.site-header .header-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #e80c8e;
  border-radius: 50%;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) scale(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px #e80c8e, 0 0 30px rgba(232, 12, 142, 0.5);
}
.site-header .header-nav .nav-link::after {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, #e80c8e, transparent);
  bottom: 12px;
  left: 50%;
  right: 50%;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-nav .nav-link:hover {
  color: #fff;
  letter-spacing: 5px;
}
@media screen and (min-width: 992px) {
  .site-header .header-nav .nav-link:hover {
    letter-spacing: 6px;
  }
}
.site-header .header-nav .nav-link:hover::before {
  transform: translateY(-50%) scale(1);
  animation: orb-pulse 1.5s ease-in-out infinite;
}
.site-header .header-nav .nav-link:hover::after {
  left: 28px;
  right: 28px;
  opacity: 0.5;
}
@media screen and (min-width: 992px) {
  .site-header .header-nav .nav-link:hover::after {
    left: 32px;
    right: 32px;
  }
}
.site-header .header-nav .nav-link.active {
  color: #fff;
}
.site-header .header-nav .nav-link.active::before {
  transform: translateY(-50%) scale(1);
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 20px rgba(255, 255, 255, 0.5);
}
.site-header .header-nav .nav-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
  padding: 0;
  background: transparent;
  border: none;
  font-family: "Orkney", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 992px) {
  .site-header .header-nav .nav-cta {
    margin-left: 30px;
  }
}
.site-header .header-nav .nav-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(ellipse at center, rgba(232, 12, 142, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.site-header .header-nav .nav-cta span {
  position: relative;
  z-index: 1;
}
.site-header .header-nav .nav-cta svg {
  width: 36px;
  height: 36px;
  padding: 10px;
  background: #e80c8e;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(232, 12, 142, 0.5);
}
.site-header .header-nav .nav-cta svg path {
  transition: all 0.3s ease;
}
.site-header .header-nav .nav-cta:hover {
  letter-spacing: 4px;
}
.site-header .header-nav .nav-cta:hover::before {
  width: 200px;
  height: 80px;
  border-radius: 40px;
}
.site-header .header-nav .nav-cta:hover svg {
  transform: scale(1.15) rotate(45deg);
  background: #fff;
  stroke: #e80c8e;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}
@keyframes orb-pulse {
  0%, 100% {
    box-shadow: 0 0 15px #e80c8e, 0 0 30px rgba(232, 12, 142, 0.5);
  }
  50% {
    box-shadow: 0 0 25px #e80c8e, 0 0 50px rgba(232, 12, 142, 0.7);
  }
}
.site-header .header-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media screen and (min-width: 767px) {
  .site-header .header-menu-btn {
    width: 64px;
    height: 64px;
  }
}
.site-header .header-menu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-menu-btn .menu-lines {
  position: relative;
  width: 22px;
  height: 22px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 767px) {
  .site-header .header-menu-btn .menu-lines {
    width: 24px;
    height: 24px;
  }
}
.site-header .header-menu-btn .menu-line {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-header .header-menu-btn .menu-line:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.site-header .header-menu-btn .menu-line:nth-child(2) {
  bottom: 2px;
  left: 2px;
}
.site-header .header-menu-btn .menu-line:nth-child(3) {
  bottom: 2px;
  right: 2px;
}
.site-header .header-menu-btn:hover::before {
  border-color: rgba(232, 12, 142, 0.5);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(232, 12, 142, 0.3);
}
.site-header .header-menu-btn:hover .menu-lines {
  transform: rotate(60deg);
}
.site-header .header-menu-btn:hover .menu-line {
  background: #e80c8e;
  box-shadow: 0 0 10px #e80c8e;
}
.site-header .header-menu-btn.active::before {
  border-color: #e80c8e;
  transform: scale(1.15) rotate(45deg);
  box-shadow: 0 0 25px rgba(232, 12, 142, 0.5);
}
.site-header .header-menu-btn.active .menu-lines {
  transform: rotate(0);
}
.site-header .header-menu-btn.active .menu-line {
  background: #e80c8e;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 10px #e80c8e;
}
.site-header .header-menu-btn.active .menu-line:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .header-menu-btn.active .menu-line:nth-child(2) {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header .header-menu-btn.active .menu-line:nth-child(3) {
  opacity: 0;
  transform: scale(0);
}
.site-header .mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
  visibility: hidden;
}
.site-header .mobile-nav-overlay .mobile-nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #01143C 0%, #020B1F 50%, #0a0a20 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.site-header .mobile-nav-overlay .mobile-nav-bg::before, .site-header .mobile-nav-overlay .mobile-nav-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  transition: all 0.8s ease;
}
.site-header .mobile-nav-overlay .mobile-nav-bg::before {
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 12, 142, 0.3) 0%, transparent 70%);
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-overlay .mobile-nav-bg::before {
    width: 600px;
    height: 600px;
  }
}
.site-header .mobile-nav-overlay .mobile-nav-bg::after {
  bottom: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 37, 245, 0.3) 0%, transparent 70%);
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-overlay .mobile-nav-bg::after {
    width: 500px;
    height: 500px;
  }
}
.site-header .mobile-nav-overlay.active {
  pointer-events: auto;
  visibility: visible;
}
.site-header .mobile-nav-overlay.active .mobile-nav-bg {
  opacity: 1;
  transition-delay: 0.2s;
}
.site-header .mobile-nav-overlay.active .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.site-header .mobile-nav-overlay.active .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}
.site-header .mobile-nav-overlay.closing {
  pointer-events: none;
}
.site-header .mobile-nav-overlay.closing .mobile-nav-bg {
  opacity: 0;
  transition: opacity 0.4s ease;
  transition-delay: 0.3s;
}
.site-header .mobile-nav-overlay.closing .mobile-nav-link {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}
.site-header .mobile-nav-overlay.closing .mobile-nav-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  transition-delay: 0s;
}
.site-header .mobile-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav {
    gap: 12px;
  }
}
@media screen and (min-width: 992px) {
  .site-header .mobile-nav {
    gap: 16px;
  }
}
.site-header .mobile-nav-link {
  position: relative;
  font-family: Orkney, sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 8px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 30px;
}
@media screen and (min-width: 576px) {
  .site-header .mobile-nav-link {
    font-size: 42px;
    letter-spacing: 10px;
  }
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-link {
    font-size: 56px;
    letter-spacing: 12px;
    padding: 16px 40px;
  }
}
@media screen and (min-width: 992px) {
  .site-header .mobile-nav-link {
    font-size: 72px;
    letter-spacing: 16px;
  }
}
.site-header .mobile-nav-link::before {
  content: attr(data-index);
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 400;
  color: rgba(232, 12, 142, 0.5);
  font-family: "Orkney", sans-serif;
  letter-spacing: 2px;
}
@media screen and (min-width: 576px) {
  .site-header .mobile-nav-link::before {
    left: -40px;
    font-size: 11px;
  }
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-link::before {
    left: -60px;
    font-size: 12px;
  }
}
.site-header .mobile-nav-link::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  background: #e80c8e;
  border-radius: 50%;
  box-shadow: 0 0 20px #e80c8e, 0 0 40px rgba(232, 12, 142, 0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-link::after {
    right: -30px;
    width: 10px;
    height: 10px;
  }
}
.site-header .mobile-nav-link:hover {
  color: #fff;
  letter-spacing: 12px;
}
@media screen and (min-width: 576px) {
  .site-header .mobile-nav-link:hover {
    letter-spacing: 14px;
  }
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-link:hover {
    letter-spacing: 18px;
  }
}
@media screen and (min-width: 992px) {
  .site-header .mobile-nav-link:hover {
    letter-spacing: 22px;
  }
}
.site-header .mobile-nav-link:hover::after {
  transform: translateY(-50%) scale(1);
}
.site-header .mobile-nav-link.active {
  color: #fff;
}
.site-header .mobile-nav-link.active::after {
  transform: translateY(-50%) scale(1);
  background: #fff;
  box-shadow: 0 0 20px #fff, 0 0 40px rgba(255, 255, 255, 0.5);
}
.site-header .mobile-nav-footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.4s;
}
@media screen and (min-width: 767px) {
  .site-header .mobile-nav-footer {
    bottom: 60px;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
.site-header .mobile-nav-footer > a {
  font-family: Orkney, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.site-header .mobile-nav-footer > a:hover {
  color: #e80c8e;
  letter-spacing: 3px;
}
.site-header .mobile-nav-footer .mobile-nav-social {
  display: flex;
  gap: 24px;
}
.site-header .mobile-nav-footer .mobile-nav-social a {
  font-family: Orkney, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header .mobile-nav-footer .mobile-nav-social a:hover {
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

header:not(.site-header) {
  display: none;
}

.loading-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #01143C;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-screen .spinner {
  position: relative;
  height: 30px;
  display: flex;
  gap: 5px;
}
.loading-screen .spinner .dot {
  position: relative;
  background: #ad9ec5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 0;
  animation: 1.3s dotFalling infinite;
  overflow: hidden;
}
.loading-screen .spinner #dot3 {
  animation-delay: 0.2s;
}
.loading-screen .spinner #dot3:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #181a28;
  z-index: 2;
}
.loading-screen .spinner #dot2 {
  animation-delay: 0.1s;
}
.loading-screen .spinner #dot1:after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #181a28;
  z-index: 2;
}
@keyframes dotFalling {
  0% {
    margin-top: -20px;
    opacity: 0;
  }
  25%, 75%, 50% {
    margin-top: 0px;
    opacity: 0.7;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}
.loading-screen .bg-glow {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-shadow: 0px 0px 550px 150px rgba(232, 12, 142, 0.5);
  -moz-box-shadow: 0px 0px 550px 150px rgba(232, 12, 142, 0.5);
  box-shadow: 0px 0px 550px 150px rgba(232, 12, 142, 0.5);
}

/* Global styles */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0;
  }
}
@media screen and (min-width: 767px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1560px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1750px;
  }
}

.wrap-main {
  padding: 194px 0 0 0;
  font-family: Orkney;
  color: #ffffff;
}
@media screen and (min-width: 767px) {
  .wrap-main {
    padding: 275px 0 0 0;
  }
}

.heading1 {
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
  text-align: center;
  font-family: Orkney;
  color: #ffffff;
}
@media screen and (min-width: 576px) {
  .heading1 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media screen and (min-width: 767px) {
  .heading1 {
    font-size: 100px;
    text-align: left;
    line-height: 120px;
  }
}

.heading2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-family: Orkney;
  color: #ffffff;
}
@media screen and (min-width: 767px) {
  .heading2 {
    font-size: 80px;
    text-align: left;
    line-height: 100px;
  }
}

.heading3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  font-family: Orkney;
  color: #ffffff;
}
@media screen and (min-width: 576px) {
  .heading3 {
    font-size: 50px;
    line-height: 75px;
  }
}
@media screen and (min-width: 767px) {
  .heading3 {
    text-align: left;
    font-size: 60px;
  }
}

.heading4 {
  font-size: 40px;
  font-weight: 700;
  line-height: 75px;
  text-align: center;
  font-family: Orkney;
  color: #ffffff;
}
@media screen and (min-width: 767px) {
  .heading4 {
    text-align: left;
  }
}

.link {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.link:after {
  content: "";
  display: block;
  width: 0;
  height: 8px;
  background: #2525f5;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  transform: translate(-2px, -7px);
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  width: 0;
}
.link:hover:after {
  width: 100%;
}

.heading-light {
  color: #5b647b;
}

.bold {
  font-weight: bold;
}

.btn-form {
  background: none;
  color: #ffffff;
  font-family: Orkney;
  font-size: 30px;
  outline: none;
  border: none;
  position: relative;
  cursor: pointer;
}
.btn-form:after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background: #2525f5;
  transform: translate(-2px, -11px);
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}
@keyframes fill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.btn-form:hover:after {
  animation: 0.3s fill 1;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
}

/* ------------------------------------------------------------------
    HOMEPAGE
------------------------------------------------------------------ */
.wrap-homepage {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("/images/bg-homepage.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 600px;
  position: relative;
}
.wrap-homepage .bg-animated {
  width: 81%;
  position: absolute;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.wrap-homepage .bg-animated .comet {
  height: 70%;
  width: 10px;
  top: -10px;
  position: absolute;
  box-shadow: 0px 0px 15px 8px rgba(232, 12, 142, 0.5);
  filter: blur(2.5px);
  border-radius: 1px;
  background: #ffffff;
  transform: translateY(-100%);
}
.wrap-homepage .bg-animated .comet-1 {
  left: 5%;
  opacity: 0.05;
}
.wrap-homepage .bg-animated .comet-2 {
  left: 15%;
  opacity: 0.15;
}
.wrap-homepage .bg-animated .comet-3 {
  left: 25%;
  opacity: 0.25;
}
.wrap-homepage .bg-animated .comet-4 {
  left: 35%;
  opacity: 0.35;
}
.wrap-homepage .bg-animated .comet-5 {
  left: 45%;
  opacity: 0.45;
}
.wrap-homepage .bg-animated .comet-6 {
  left: 55%;
  opacity: 0.45;
}
.wrap-homepage .bg-animated .comet-7 {
  left: 65%;
  opacity: 0.35;
}
.wrap-homepage .bg-animated .comet-8 {
  left: 75%;
  opacity: 0.25;
}
.wrap-homepage .bg-animated .comet-9 {
  left: 85%;
  opacity: 0.15;
}
.wrap-homepage .bg-animated .comet-10 {
  left: 95%;
  opacity: 0.05;
}
.wrap-homepage .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}
.wrap-homepage .hero-text {
  position: relative;
  z-index: 1;
}
.wrap-homepage .hero-label {
  display: inline-block;
  font-family: Orkney;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e80c8e;
  background: rgba(232, 12, 142, 0.1);
  border: 1px solid rgba(232, 12, 142, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
}
@media screen and (min-width: 767px) {
  .wrap-homepage .hero-label {
    font-size: 13px;
    letter-spacing: 4px;
  }
}
.wrap-homepage .hero-title {
  font-family: Orkney;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .wrap-homepage .hero-title {
    font-size: 48px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-homepage .hero-title {
    font-size: 60px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-homepage .hero-title {
    font-size: 72px;
  }
}
.wrap-homepage .hero-title .gradient-text {
  background: linear-gradient(135deg, #e80c8e 0%, #ff6b9d 50%, #2525f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.wrap-homepage .hero-subtitle {
  font-family: Orkney;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 767px) {
  .wrap-homepage .hero-subtitle {
    font-size: 18px;
  }
}
.wrap-homepage .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .wrap-homepage .hero-cta {
    flex-direction: row;
    gap: 20px;
  }
}
.wrap-homepage .hero-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e80c8e, #2525f5);
  color: #fff;
  font-family: Orkney;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wrap-homepage .hero-cta .btn-primary svg {
  transition: transform 0.3s ease;
}
.wrap-homepage .hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(232, 12, 142, 0.4);
}
.wrap-homepage .hero-cta .btn-primary:hover svg {
  transform: translateX(5px);
}
.wrap-homepage .hero-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: Orkney;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wrap-homepage .hero-cta .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.wrap-homepage .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wrap-homepage .scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  position: relative;
}
.wrap-homepage .scroll-indicator .scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: #e80c8e;
  animation: scroll-pulse 2s ease-in-out infinite;
}
.wrap-homepage .scroll-indicator span {
  font-family: Orkney;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}
@keyframes scroll-pulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(30px);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .wrap-homepage .scroll-indicator {
    bottom: 20px;
  }
}

@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.99;
    fill: #fff;
    text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.4), 1px -1px 0 rgba(255, 255, 255, 0.4), -1px 1px 0 rgba(255, 255, 255, 0.4), 1px 1px 0 rgba(255, 255, 255, 0.4), 0 -2px 8px, 0 0 2px, 0 0 5px #ff7e00, 0 0 15px #ff4444, 0 0 2px #ff7e00, 0 2px 3px #000;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    fill: #fff;
    opacity: 0.4;
    text-shadow: none;
  }
}
/* ------------------------------------------------------------------
    ABOUT PAGE
------------------------------------------------------------------ */
.wrap-about {
  background-image: url("/images/bg_glow_mobile.png"), url("/images/bg_smoke_mobile.png"), url("/images/bottom_bg_mobile.png"), url("/images/bg_about-mobile.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center top, center top, right 32% bottom 45px, center top;
  background-size: auto, auto, auto, 100% 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-about {
    background-image: url("/images/bg_glow.png"), url("/images/bg_smoke.png"), url("/images/bottom_bg.png"), url("/images/bg_about.jpg");
    background-position: top, right calc(50% - 200px) top 252px, right -200px bottom -450px, 0 0;
    background-size: auto, auto, auto, cover;
  }
}
.wrap-about .main .section1 {
  margin-bottom: 162px;
}
.wrap-about .main .section1 .heading1 {
  max-width: 312px;
  margin: 0 auto 83px auto;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section1 .heading1 {
    max-width: 624px;
    margin: 0;
  }
}
.wrap-about .main .section1 .btn-scroll-outer {
  display: flex;
  justify-content: center;
  margin-top: -9px;
}
@media screen and (max-width: 767px) {
  .wrap-about .main .section1 .btn-scroll-outer {
    margin-top: 0;
  }
}
.wrap-about .main .section1 .btn-scroll-outer .btn-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 90px;
  height: 90px;
  box-shadow: 19px 29px 35px rgba(0, 0, 0, 0.33);
  border: 2px solid #5b698a;
  background-color: #11192d;
  border-radius: 50%;
  outline: none;
  position: relative;
  overflow: hidden;
}
.wrap-about .main .section1 .btn-scroll-outer .btn-scroll .img-arrow-scroll {
  z-index: 2;
}
.wrap-about .main .section1 .btn-scroll-outer .btn-scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #5b698a;
  z-index: 1;
  height: 0;
  -webkit-transition: 0.3s ease-out height;
  -moz-transition: 0.3s ease-out height;
  -o-transition: 0.3s ease-out height;
  transition: 0.3s ease-out height;
}
.wrap-about .main .section1 .btn-scroll-outer .btn-scroll:hover:after {
  height: 100%;
}
.wrap-about .main .section2 .content {
  position: relative;
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section2 .content {
    text-align: left;
    max-width: 499px;
    font-size: 30px;
    line-height: 45px;
    margin: 0;
  }
}
.wrap-about .main .section2 .content .tag {
  position: relative;
}
.wrap-about .main .section2 .content .tag:after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background: #2525f5;
  transform: translate(-2px, -15px);
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}
.wrap-about .main .section3 {
  padding-top: 187px;
  padding-bottom: 129px;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section3 {
    padding-top: 414px;
    padding-bottom: 374px;
  }
}
.wrap-about .main .section3 .services-outer {
  margin: 0 auto;
  max-width: 289px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section3 .services-outer {
    width: 289px;
    margin-right: 23.8%;
    float: right;
    text-align: left;
  }
}
.wrap-about .main .section3 .services-outer .list-services {
  font-size: 30px;
  position: relative;
}
.wrap-about .main .section3 .services-outer .list-services .item-service {
  margin-bottom: 55px;
  cursor: pointer !important;
}
.wrap-about .main .section3 .services-outer .list-services .item-service .title-item {
  position: relative;
}
.wrap-about .main .section3 .services-outer .list-services .item-service .title-item:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: #68224b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  transform: translate(-50%, 0);
  z-index: -1;
  -webkit-transition: 0.2s ease-in all;
  -moz-transition: 0.2s ease-in all;
  -o-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}
.wrap-about .main .section3 .services-outer .list-services .item-service .shape-item {
  position: absolute;
  opacity: 0;
  transform: translate(-100%, -50%);
  -webkit-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  pointer-events: none;
}
.wrap-about .main .section3 .services-outer .list-services .item-service:hover .title-item:before {
  width: 78px;
  height: 78px;
  background-color: #e80c8e;
  transform: translate(-50%, -30%);
}
.wrap-about .main .section3 .services-outer .list-services .item-service:hover .shape-item {
  opacity: 1;
}
.wrap-about .main .section4 {
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 463px 0;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section4 {
    padding: 374px 0;
    width: 100%;
  }
}
.wrap-about .main .section4 .heading3 {
  max-width: 355px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section4 .heading3 {
    margin: 0;
    margin-right: 102px;
    max-width: 625px;
  }
}
.wrap-about .main .section4 .btn-contact-outer {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section4 .btn-contact-outer {
    margin: 0;
  }
}
.wrap-about .main .section4 .btn-contact-outer .btn-contact {
  width: 231px;
  font-size: 25px;
  height: 70px;
  background-color: #2525f5;
  border: none;
  outline: none;
  color: inherit;
  line-height: 75px;
  text-align: left;
  padding: 0 0 0 42px;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.wrap-about .main .section4 .btn-contact-outer .btn-contact .img-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 60px;
  transform: translate(50%, -50%);
  -webkit-transition: 0.1s ease-in-out transform;
  -moz-transition: 0.1s ease-in-out transform;
  -o-transition: 0.1s ease-in-out transform;
  transition: 0.1s ease-in-out transform;
  display: none;
}
.wrap-about .main .section4 .btn-contact-outer .btn-contact:hover .img-arrow {
  transform: translate(65%, -50%);
}
@media screen and (min-width: 576px) {
  .wrap-about .main .section4 .btn-contact-outer .btn-contact {
    width: 316px;
    font-size: 30px;
    height: 85px;
  }
  .wrap-about .main .section4 .btn-contact-outer .btn-contact .img-arrow {
    transform: translate(50%, -50%);
    width: auto;
    display: block;
  }
}
@media screen and (min-width: 767px) {
  .wrap-about .main .section4 .btn-contact-outer .btn-contact {
    width: 379px;
    height: 125px;
    font-size: 40px;
  }
}
.wrap-about .main .section4 .btn-contact-outer .btn-contact {
  /* &:after {
      content: "";
      width: 70px;
      height: 30px;
      background-image: url('/images/arrow-right.png');
      background-repeat: no-repeat;
      background-size: contain;
      z-index: 1;
      position: absolute;
      right: 0;
      top: 50%;

      transform: translate(25%, -50%);

      @media screen and (min-width:$breakpoint-md) {
          width: 118px;
          height: 45px;
      }

      transition:0.2s ease all;
  } */
}
.wrap-about .main .section4 .btn-contact-outer .btn-contact:hover:after {
  transform: translate(65%, -50%);
}

/* ------------------------------------------------------------------
    ABOUT PAGE - NEW DESIGN
------------------------------------------------------------------ */
.wrap-about-new {
  background: #01143C;
  min-height: 100vh;
  font-family: Orkney;
  color: #fff;
}
.wrap-about-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.wrap-about-new .highlight {
  background: linear-gradient(135deg, #e80c8e 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wrap-about-new .gradient-text {
  background: linear-gradient(135deg, #e80c8e 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wrap-about-new .about-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.wrap-about-new .about-hero .hero-orb {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-hero .hero-orb {
    top: 45%;
    width: 650px;
    height: 650px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-about-new .about-hero .hero-orb {
    width: 800px;
    height: 800px;
  }
}
.wrap-about-new .about-hero .hero-orb .orb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
  height: 35%;
  background: radial-gradient(circle, rgba(232, 12, 142, 0.35) 0%, rgba(232, 12, 142, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: orbPulse 4s ease-in-out infinite;
}
.wrap-about-new .about-hero .hero-orb .orb-ring {
  position: absolute;
  border-radius: 50%;
}
.wrap-about-new .about-hero .hero-orb .orb-ring::before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(232, 12, 142, 0.08);
  animation: orbRotate 60s linear infinite;
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-1::before {
  width: 5px;
  height: 5px;
  top: -2.5px;
  left: 50%;
  margin-left: -2.5px;
  background: rgba(232, 12, 142, 0.6);
  box-shadow: 0 0 10px rgba(232, 12, 142, 0.4);
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-2 {
  top: 12%;
  left: 12%;
  width: 76%;
  height: 76%;
  border: 1px solid rgba(99, 102, 241, 0.1);
  animation: orbRotate 45s linear infinite reverse;
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-2::before {
  width: 4px;
  height: 4px;
  top: 50%;
  right: -2px;
  margin-top: -2px;
  background: #6366f1;
  box-shadow: 0 0 8px #6366f1, 0 0 16px rgba(99, 102, 241, 0.4);
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-3 {
  top: 22%;
  left: 22%;
  width: 56%;
  height: 56%;
  border: 1px solid rgba(232, 12, 142, 0.15);
  animation: orbRotate 30s linear infinite;
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-3::before {
  width: 6px;
  height: 6px;
  top: -3px;
  left: 50%;
  margin-left: -3px;
  background: #e80c8e;
  box-shadow: 0 0 12px #e80c8e, 0 0 25px rgba(232, 12, 142, 0.6);
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-4 {
  top: 35%;
  left: 35%;
  width: 30%;
  height: 30%;
  border: 1px solid rgba(99, 102, 241, 0.18);
  animation: orbRotate 20s linear infinite reverse;
}
.wrap-about-new .about-hero .hero-orb .orb-ring.orb-ring-4::before {
  width: 4px;
  height: 4px;
  bottom: -2px;
  left: 50%;
  margin-left: -2px;
  background: #6366f1;
  box-shadow: 0 0 8px #6366f1, 0 0 15px rgba(99, 102, 241, 0.5);
}
.wrap-about-new .about-hero .about-hero-content {
  position: relative;
  z-index: 1;
}
.wrap-about-new .about-hero .about-hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-hero .about-hero-title {
    font-size: 56px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-about-new .about-hero .about-hero-title {
    font-size: 64px;
  }
}
.wrap-about-new .about-hero .about-hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-hero .about-hero-subtitle {
    font-size: 18px;
  }
}
.wrap-about-new .about-hero .about-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.wrap-about-new .about-hero .about-hero-scroll .scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wrap-about-new .about-hero .about-hero-scroll .scroll-indicator .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #e80c8e, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes orbPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes orbRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.wrap-about-new .about-story {
  padding: 80px 0;
  background: linear-gradient(180deg, #01143C 0%, #0d1d40 100%);
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story {
    padding: 120px 0;
  }
}
.wrap-about-new .about-story .story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story .story-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}
.wrap-about-new .about-story .story-content .story-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story .story-content .story-title {
    font-size: 36px;
  }
}
.wrap-about-new .about-story .story-content .story-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.wrap-about-new .about-story .story-content .story-text:last-of-type {
  margin-bottom: 0;
}
.wrap-about-new .about-story .story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story .story-stats {
    gap: 24px;
  }
}
.wrap-about-new .about-story .story-stats .stat-card {
  position: relative;
  padding: 32px 20px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story .story-stats .stat-card {
    padding: 40px 24px;
  }
}
.wrap-about-new .about-story .story-stats .stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(232, 12, 142, 0.2), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.wrap-about-new .about-story .story-stats .stat-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.wrap-about-new .about-story .story-stats .stat-card:hover::before {
  opacity: 1;
}
.wrap-about-new .about-story .story-stats .stat-card:hover .stat-number {
  text-shadow: 0 0 40px rgba(232, 12, 142, 0.5);
}
.wrap-about-new .about-story .story-stats .stat-card .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #e80c8e 0%, rgb(245.6803278689, 74.8196721311, 175.7827868852) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  transition: text-shadow 0.4s ease;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story .story-stats .stat-card .stat-number {
    font-size: 52px;
    margin-bottom: 16px;
  }
}
.wrap-about-new .about-story .story-stats .stat-card .stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-story .story-stats .stat-card .stat-label {
    font-size: 12px;
  }
}
.wrap-about-new .about-services {
  padding: 80px 0;
  background: #0d1d40;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-services {
    padding: 120px 0;
  }
}
.wrap-about-new .about-services .services-header {
  text-align: center;
  margin-bottom: 60px;
}
.wrap-about-new .about-services .services-header .services-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-services .services-header .services-title {
    font-size: 40px;
  }
}
.wrap-about-new .about-services .services-header .services-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.wrap-about-new .about-services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 576px) {
  .wrap-about-new .about-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .wrap-about-new .about-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wrap-about-new .about-services .service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
}
.wrap-about-new .about-services .service-card:hover {
  border-color: rgba(232, 12, 142, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.wrap-about-new .about-services .service-card:hover .service-icon {
  background: rgba(232, 12, 142, 0.2);
}
.wrap-about-new .about-services .service-card:hover .service-icon svg {
  stroke: #e80c8e;
}
.wrap-about-new .about-services .service-card.featured {
  border-color: rgba(232, 12, 142, 0.3);
  background: linear-gradient(135deg, rgba(232, 12, 142, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.wrap-about-new .about-services .service-card .service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e80c8e;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}
.wrap-about-new .about-services .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.wrap-about-new .about-services .service-card .service-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.7);
  transition: stroke 0.3s ease;
}
.wrap-about-new .about-services .service-card .service-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wrap-about-new .about-services .service-card .service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.wrap-about-new .about-services .service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wrap-about-new .about-services .service-card .service-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.wrap-about-new .about-services .service-card .service-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #e80c8e;
  border-radius: 50%;
}
.wrap-about-new .about-process {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d1d40 0%, #01143C 100%);
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-process {
    padding: 120px 0;
  }
}
.wrap-about-new .about-process .process-header {
  text-align: center;
  margin-bottom: 60px;
}
.wrap-about-new .about-process .process-header .process-title {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-process .process-header .process-title {
    font-size: 40px;
  }
}
.wrap-about-new .about-process .process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-process .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-process .process-timeline::before {
    content: "";
    position: absolute;
    top: 29px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 2px;
    background: rgba(232, 12, 142, 0.4);
    z-index: 0;
  }
}
.wrap-about-new .about-process .process-step {
  text-align: center;
  position: relative;
}
.wrap-about-new .about-process .process-step .step-number {
  width: 60px;
  height: 60px;
  background: #0a1a3a;
  border: 2px solid #e80c8e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #e80c8e;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.wrap-about-new .about-process .process-step .step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.wrap-about-new .about-process .process-step .step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.wrap-about-new .about-values {
  padding: 80px 0;
  background: #01143C;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-values {
    padding: 120px 0;
  }
}
.wrap-about-new .about-values .values-header {
  text-align: center;
  margin-bottom: 60px;
}
.wrap-about-new .about-values .values-header .values-title {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-values .values-header .values-title {
    font-size: 40px;
  }
}
.wrap-about-new .about-values .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 576px) {
  .wrap-about-new .about-values .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .wrap-about-new .about-values .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wrap-about-new .about-values .value-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.wrap-about-new .about-values .value-card:hover {
  border-color: rgba(232, 12, 142, 0.3);
  transform: translateY(-4px);
}
.wrap-about-new .about-values .value-card:hover .value-icon svg {
  stroke: #e80c8e;
}
.wrap-about-new .about-values .value-card .value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}
.wrap-about-new .about-values .value-card .value-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.6);
  transition: stroke 0.3s ease;
}
.wrap-about-new .about-values .value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.wrap-about-new .about-values .value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.wrap-about-new .about-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, #01143C 0%, #0d1d40 100%);
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-cta {
    padding: 120px 0;
  }
}
.wrap-about-new .about-cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.wrap-about-new .about-cta .cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (min-width: 767px) {
  .wrap-about-new .about-cta .cta-title {
    font-size: 40px;
  }
}
.wrap-about-new .about-cta .cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.wrap-about-new .about-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e80c8e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wrap-about-new .about-cta .cta-button svg {
  transition: transform 0.3s ease;
}
.wrap-about-new .about-cta .cta-button:hover {
  background: rgb(243.1721311475, 26.3278688525, 154.4631147541);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 12, 142, 0.4);
}
.wrap-about-new .about-cta .cta-button:hover svg {
  transform: translateX(5px);
}

/* ------------------------------------------------------------------
    WORK PAGE
------------------------------------------------------------------ */
.wrap-work {
  display: flex;
  align-items: center;
  height: 100vh;
  font-family: Orkney;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: background-image 0.5s ease-in-out;
  -moz-transition: background-image 0.5s ease-in-out;
  -o-transition: background-image 0.5s ease-in-out;
  transition: background-image 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 462px;
}
.wrap-work .background-work {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}
.wrap-work .background-work .img-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  width: 100%;
  height: auto;
}
@media screen and (min-height: 75vw) {
  .wrap-work .background-work .img-background {
    height: 100%;
    width: auto;
  }
}
.wrap-work .background-work .img-previous {
  z-index: -2;
}
.wrap-work .content {
  width: 100%;
  z-index: 1;
  opacity: 0;
}
.wrap-work .content .carousel {
  position: relative;
}
.wrap-work .content .carousel .item {
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 72px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #000000;
  /* -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -o-transition: 0.2s linear all;
  transition: 0.3s linear all; */
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
  supported by Chrome, Edge, Opera and Firefox */
  opacity: 0;
  font-size: 55px;
}
@media screen and (min-width: 350px) {
  .wrap-work .content .carousel .item {
    font-size: 60px;
  }
}
@media screen and (min-width: 576px) {
  .wrap-work .content .carousel .item {
    font-size: 70px;
    opacity: 1;
  }
}
@media screen and (min-width: 767px) and (min-height: 350px) {
  .wrap-work .content .carousel .item {
    font-size: 90px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work .content .carousel .item {
    font-size: 120px;
  }
}
@keyframes active {
  0% {
    color: #000000;
    opacity: 0;
  }
  100% {
    color: #ffffff;
    opacity: 1;
  }
}
@media screen and (min-width: 576px) {
  @keyframes active {
    0% {
      color: #000000;
    }
    100% {
      color: #ffffff;
    }
  }
}
.wrap-work .content .carousel .is-active {
  animation: active 0.4s 1 forwards;
}
@keyframes non-active {
  0% {
    color: #ffffff;
    opacity: 1;
  }
  100% {
    color: #000000;
    opacity: 0;
  }
}
@media screen and (min-width: 576px) {
  @keyframes non-active {
    0% {
      color: #ffffff;
    }
    100% {
      color: #000000;
    }
  }
}
.wrap-work .content .carousel :not(.is-active) {
  animation: non-active 0.4s 1;
}
.wrap-work .content .carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  z-index: -2;
}
@media screen and (min-width: 576px) {
  .wrap-work .content .carousel .arrow {
    display: none;
  }
}
.wrap-work .content .carousel .arrow-left {
  left: 10px;
}
.wrap-work .content .carousel .arrow-right {
  right: 10px;
}
.wrap-work .content .carousel .small {
  font-size: 35px;
}
@media screen and (min-width: 350px) {
  .wrap-work .content .carousel .small {
    font-size: 50px;
  }
}
@media screen and (min-width: 576px) {
  .wrap-work .content .carousel .small {
    font-size: 60px;
  }
}
@media screen and (min-width: 767px) and (min-height: 350px) {
  .wrap-work .content .carousel .small {
    font-size: 75px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work .content .carousel .small {
    font-size: 100px;
  }
}
.wrap-work .content .carousel {
  /* .is-active {
      color: #ffffff !important;
  } */
}
.wrap-work .content .work-message {
  text-align: center;
  color: #ad9ec5;
  font-size: 18px;
  margin: 20px 0 35px 0;
  font-style: italic;
  text-shadow: 0 0 5px black;
}
@media screen and (min-width: 576px) {
  .wrap-work .content .work-message {
    font-size: 25px;
  }
}
.wrap-work .content .work-count-outer {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #7b7b8a;
  font-weight: 700;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 350px) {
  .wrap-work .content .work-count-outer {
    flex-direction: row;
  }
}
@media screen and (min-width: 576px) and (min-height: 350px) {
  .wrap-work .content .work-count-outer {
    font-size: 20px;
  }
}
.wrap-work .content .work-count-outer .count-indicator {
  margin-right: 7px;
  margin-bottom: 7px;
}
@media screen and (min-width: 350px) {
  .wrap-work .content .work-count-outer .count-indicator {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 576px) {
  .wrap-work .content .work-count-outer .count-indicator {
    margin-right: 25px;
  }
}
.wrap-work .content .work-count-outer .count-indicator .count-current {
  color: #2525f5;
}
.wrap-work .content .work-count-outer .line-indicator {
  width: 214px;
  height: 6px;
  background-color: #7b7b8a;
  position: relative;
}
@media screen and (min-width: 576px) {
  .wrap-work .content .work-count-outer .line-indicator {
    width: 358px;
    height: 10px;
  }
}
.wrap-work .content .work-count-outer .line-indicator .line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
}
@media screen and (min-width: 576px) {
  .wrap-work .content .work-count-outer .line-indicator .line-fill {
    height: 10px;
  }
}
.wrap-work .content .work-count-outer .line-indicator .line-fill {
  background-color: #2525f5;
  -webkit-transition: 0.5 ease-in width;
  -moz-transition: 0.5 ease-in width;
  -o-transition: 0.5 ease-in width;
  transition: 0.5 ease-in width;
}
.wrap-work .arc {
  position: absolute;
  right: 0;
  max-width: 800px;
  width: 80%;
  display: none;
  opacity: 0;
  /*  z-index: -1; */
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.75));
}
@media screen and (min-width: 576px) and (min-height: 576px) {
  .wrap-work .arc {
    display: block;
  }
}

/* ------------------------------------------------------------------
    CONTACT PAGE
------------------------------------------------------------------ */
.wrap-contact {
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center center;
  background-size: auto, cover;
  background-image: url("/images/bg_contact_bottom.png"), url("/images/bg_contact_mobile.png");
}
@media screen and (min-width: 767px) {
  .wrap-contact {
    background-position: center bottom, center center;
    background-size: auto, cover;
    background-image: url("/images/bg_contact_bottom.png"), url("/images/bg_contact.jpg");
  }
}
.wrap-contact {
  padding-bottom: 350px;
  overflow-x: hidden;
}
.wrap-contact .main .title-outer {
  padding-bottom: 58px;
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .title-outer {
    padding-bottom: 132px;
    max-width: 100px;
  }
}
.wrap-contact .main .divider {
  height: 1px;
  max-width: 201px;
  background-color: #2525f5;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .wrap-contact .main .divider {
    max-width: 100%;
  }
}
.wrap-contact .main .form-contact-outer {
  margin: 0 auto;
  padding: 181px 0 140px 0px;
  max-width: 777px;
  display: none;
  position: relative;
}
.wrap-contact .main .form-contact-outer .message-sent {
  font-weight: bold;
  text-align: center;
  color: #ad9ec5;
  position: absolute;
  top: 131px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  display: none;
}
.wrap-contact .main .form-contact-outer .message-sent .success {
  color: #ad9ec5;
}
.wrap-contact .main .form-contact-outer .message-sent .error {
  color: red;
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .form-contact-outer {
    display: block;
  }
}
.wrap-contact .main .form-contact-outer .form-contact {
  line-height: 45px;
  font-size: 30px;
}
.wrap-contact .main .form-contact-outer .form-contact .line {
  display: flex;
  align-items: baseline;
}
.wrap-contact .main .form-contact-outer .form-contact .line .input-contact {
  font-size: 22px !important;
  flex-grow: 100;
  outline: none;
  border: none;
  color: #e80c8e;
  border-bottom: 1px solid #565e74;
  background: transparent;
  font-family: Orkney;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
  -webkit-text-fill-color: #e80c8e;
}
.wrap-contact .main .form-contact-outer .form-contact .line .input-contact:focus {
  border-color: #2525f5 !important;
}
@keyframes blinkingBorder {
  0% {
    border-color: #565e74;
  }
  50% {
    border-color: red;
  }
  100% {
    border-color: #565e74;
  }
}
.wrap-contact .main .form-contact-outer .form-contact .line .invalid:placeholder-shown {
  animation: 1s blinkingBorder infinite;
}
.wrap-contact .main .form-contact-outer .form-contact .line .editable {
  text-indent: 351px;
  border-bottom: 0;
  overflow: hidden;
  line-height: 39px;
  background-image: linear-gradient(transparent, transparent 38px, #565e74 0px) !important;
  background-size: 100% 39px !important;
  clip-path: polygon(346px 45px, 346px 0, 100% 0, 100% 100%, 0 100%, 0 45px);
  min-height: 142px;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.wrap-contact .main .form-contact-outer .form-contact .line .editable:focus {
  background-image: linear-gradient(transparent, transparent 38px, #2525f5 0px) !important;
}
.wrap-contact .main .form-contact-outer .form-contact .line .input-contact[disabled],
.wrap-contact .main .form-contact-outer .form-contact .line .editable[disabled] {
  pointer-events: none;
  opacity: 0.7;
}
.wrap-contact .main .form-contact-outer .form-contact .btn-contact-outer {
  display: flex;
  justify-content: center;
}
.wrap-contact .main .form-contact-outer .form-contact .btn-contact-outer .btn-contact {
  margin: 80px auto 0 auto;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.wrap-contact .main .form-contact-outer .form-contact .btn-contact-outer .btn-contact:disabled {
  pointer-events: none;
  opacity: 0.7;
}
.wrap-contact .main .section-info {
  /* flex-wrap: wrap; */
  /* flex-direction: column; */
}
.wrap-contact .main .section-info .row1 {
  margin-left: 0;
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .section-info .row1 {
    margin-left: -130px;
  }
}
.wrap-contact .main .section-info .section-row {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .wrap-contact .main .section-info .section-row {
    gap: 65px;
  }
}
.wrap-contact .main .section-info .section-row .map-info-outer {
  max-width: 890px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-53%);
  min-width: 708px;
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .section-info .section-row .map-info-outer {
    position: relative;
    transform: translateX(0%);
    min-width: 0;
    left: 0;
  }
}
.wrap-contact .main .section-info .section-row .map-info-outer .img-map {
  width: 100%;
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator {
  position: absolute;
  top: 38%;
  left: 50%;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 12, 142, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(232, 12, 142, 0);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(232, 12, 142, 0);
  }
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator .map-marker {
  width: 39px;
  height: 39px;
  background-color: rgba(232, 12, 142, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1s infinite;
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator .map-marker .circle-inner {
  width: 54%;
  height: 54%;
  background-color: #e80c8e;
  border-radius: 50%;
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator .caption-location {
  width: 240px;
  height: 92px;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translate(-50%, -100%);
  color: #10182b;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: 0.8s ease-out all;
  -moz-transition: 0.8s ease-out all;
  -o-transition: 0.8s ease-out all;
  transition: 0.8s ease-out all;
  opacity: 0;
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator .caption-location.aos-animate {
  top: -30px;
  opacity: 1;
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator .caption-location:hover {
  opacity: 0.7;
}
.wrap-contact .main .section-info .section-row .map-info-outer .location-indicator .caption-location::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: #ffffff;
}
.wrap-contact .main .section-info .section-row .block-office-info {
  font-size: 20px;
  margin-top: 558px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.wrap-contact .main .section-info .section-row .block-office-info p {
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .wrap-contact .main .section-info .section-row .block-office-info {
    font-size: 30px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .section-info .section-row .block-office-info {
    margin-top: 0;
    font-size: 25px;
    text-align: left;
  }
}
.wrap-contact .main .section-info .section-row .block-office-info .heading2 {
  margin-bottom: 40px;
}
.wrap-contact .main .section-info .section-row .block-office-info .block-social-media {
  padding: 35px 22px;
  border-top: 1px solid #e80c8e;
  border-bottom: 1px solid #e80c8e;
  display: flex;
  justify-content: space-between;
  margin: 85px 0;
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .section-info .section-row .block-office-info .block-social-media {
    padding: 35px 0;
  }
}
@media screen and (min-width: 992px) {
  .wrap-contact .main .section-info .section-row .block-office-info .block-social-media {
    padding: 35px 22px;
  }
}
.wrap-contact .main .section-info .section-row .block-office-info .block-social-media .link-social {
  display: block;
  color: #ffffff;
  position: relative;
}
.wrap-contact .main .section-info .section-row .block-office-info .block-social-media {
  /* [data-aos="slide-left"] {
      margin-right: -30%;
      &.aos-animate {
          margin-right: 0%;
      }
  } */
}
.wrap-contact .main .section-info .section-row .block-headquarters-info .location-info {
  line-height: 40px;
  margin-bottom: 115px;
}
@media screen and (min-width: 767px) {
  .wrap-contact .main .section-info .section-row .block-headquarters-info .location-info {
    line-height: 50px;
    margin-bottom: 0;
  }
}
.wrap-contact .main .section-info .section-row .block-legal-info {
  color: #c9cbd2;
  max-width: 520px;
}
.wrap-contact .main .section-info .section-row .block-legal-info .heading4 {
  margin-bottom: 27px;
}
.wrap-contact .main .section-info .section-row .block-legal-info .item-info {
  margin-bottom: 20px;
  line-height: 27px;
}

/* ------------------------------------------------------------------
    WORK PAGE - NEW DESIGN
------------------------------------------------------------------ */
.wrap-work-new {
  background: #01143C;
  min-height: 100vh;
  font-family: Orkney;
}
.wrap-work-new .work-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero {
    min-height: 70vh;
    padding: 180px 20px 80px;
  }
}
.wrap-work-new .work-hero .work-hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero .work-hero-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work-new .work-hero .work-hero-wrapper {
    gap: 80px;
  }
}
.wrap-work-new .work-hero .work-hero-content {
  max-width: 500px;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero .work-hero-content {
    text-align: left;
  }
}
.wrap-work-new .work-hero .hero-grid-graphic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero .hero-grid-graphic {
    width: 280px;
    height: 280px;
    gap: 10px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work-new .work-hero .hero-grid-graphic {
    width: 320px;
    height: 320px;
    gap: 12px;
  }
}
.wrap-work-new .work-hero .hero-grid-graphic .grid-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero .hero-grid-graphic .grid-cell {
    border-radius: 14px;
  }
}
.wrap-work-new .work-hero .hero-grid-graphic .grid-cell.active {
  background: rgba(232, 12, 142, 0.08);
  border-color: rgba(232, 12, 142, 0.2);
  animation: gridPulse 4s ease-in-out infinite;
}
.wrap-work-new .work-hero .hero-grid-graphic .grid-cell.active:nth-child(4) {
  animation-delay: 0s;
}
.wrap-work-new .work-hero .hero-grid-graphic .grid-cell.active:nth-child(6) {
  animation-delay: 1.3s;
}
.wrap-work-new .work-hero .hero-grid-graphic .grid-cell.active:nth-child(9) {
  animation-delay: 2.6s;
}
@keyframes gridPulse {
  0%, 100% {
    background: rgba(232, 12, 142, 0.08);
    border-color: rgba(232, 12, 142, 0.2);
    box-shadow: none;
  }
  50% {
    background: rgba(232, 12, 142, 0.15);
    border-color: rgba(232, 12, 142, 0.4);
    box-shadow: 0 0 30px rgba(232, 12, 142, 0.2), inset 0 0 20px rgba(232, 12, 142, 0.1);
  }
}
.wrap-work-new .work-hero .work-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .wrap-work-new .work-hero .work-hero-title {
    font-size: 42px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero .work-hero-title {
    font-size: 56px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work-new .work-hero .work-hero-title {
    font-size: 64px;
  }
}
.wrap-work-new .work-hero .work-hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-hero .work-hero-subtitle {
    font-size: 18px;
  }
}
.wrap-work-new .work-hero .work-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.wrap-work-new .work-hero .work-hero-scroll .scroll-indicator {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.wrap-work-new .work-hero .work-hero-scroll .scroll-indicator .scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #e80c8e;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    top: -30px;
  }
  100% {
    top: 60px;
  }
}
.wrap-work-new .work-projects {
  padding: 40px 20px 80px;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-projects {
    padding: 60px 40px 120px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work-new .work-projects {
    padding: 80px 60px 140px;
  }
}
.wrap-work-new .projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-work-new .projects-grid {
    gap: 50px;
  }
}
.wrap-work-new .project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wrap-work-new .project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 12, 142, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.wrap-work-new .project-card:hover .project-image img {
  transform: scale(1.1);
}
.wrap-work-new .project-card:hover .project-overlay {
  opacity: 0.7;
}
.wrap-work-new .project-card:hover .project-number {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1.1);
}
.wrap-work-new .project-card:hover .project-title {
  color: #e80c8e;
}
.wrap-work-new .project-card .project-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-image {
    height: 300px;
  }
}
.wrap-work-new .project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.wrap-work-new .project-card .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(1, 20, 60, 0.95) 100%);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.wrap-work-new .project-card .project-content {
  padding: 30px;
  position: relative;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-content {
    padding: 35px;
  }
}
.wrap-work-new .project-card .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.wrap-work-new .project-card .project-tags span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e80c8e;
  background: rgba(232, 12, 142, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-tags span {
    font-size: 11px;
  }
}
.wrap-work-new .project-card .project-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-title {
    font-size: 28px;
  }
}
.wrap-work-new .project-card .project-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-description {
    font-size: 15px;
  }
}
.wrap-work-new .project-card .project-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wrap-work-new .project-card .project-stats .stat {
  display: flex;
  flex-direction: column;
}
.wrap-work-new .project-card .project-stats .stat .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-stats .stat .stat-number {
    font-size: 32px;
  }
}
.wrap-work-new .project-card .project-stats .stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
.wrap-work-new .project-card .project-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  font-weight: 700;
  color: #fff;
  opacity: 0.03;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 0;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card .project-number {
    font-size: 200px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-work-new .project-card.project-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .wrap-work-new .project-card.project-featured .project-image {
    height: 100%;
    min-height: 400px;
  }
  .wrap-work-new .project-card.project-featured .project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
  }
  .wrap-work-new .project-card.project-featured .project-title {
    font-size: 36px;
  }
  .wrap-work-new .project-card.project-featured .project-description {
    font-size: 16px;
  }
  .wrap-work-new .project-card.project-featured .project-number {
    font-size: 280px;
  }
}
.wrap-work-new .work-cta {
  padding: 80px 20px 120px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 12, 142, 0.05) 100%);
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-cta {
    padding: 100px 20px 160px;
  }
}
.wrap-work-new .work-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.wrap-work-new .work-cta .cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-cta .cta-title {
    font-size: 40px;
  }
}
.wrap-work-new .work-cta .cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 35px;
}
@media screen and (min-width: 767px) {
  .wrap-work-new .work-cta .cta-text {
    font-size: 18px;
  }
}
.wrap-work-new .work-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e80c8e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wrap-work-new .work-cta .cta-button:hover {
  background: rgb(243.1721311475, 26.3278688525, 154.4631147541);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 12, 142, 0.3);
}
.wrap-work-new .work-cta .cta-button:hover svg {
  transform: translateX(5px);
}
.wrap-work-new .work-cta .cta-button svg {
  transition: transform 0.3s ease;
}

/* ------------------------------------------------------------------
    JOBS PAGE
------------------------------------------------------------------ */
.wrap-jobs {
  overflow: hidden;
  background-repeat: no-repeat, no-repeat;
  background-image: url("/images/bg_glow.png"), url("/images/helmet.png");
  background-position: center -300px, right bottom;
  background-color: #151D31;
  min-height: 100vh;
}
.wrap-jobs .bg-animation {
  position: absolute;
  width: 100%;
  overflow: hidden;
  min-height: 400px;
  margin-top: -41px;
}
@keyframes play {
  0% {
    transform: translateX(-9%);
  }
  100% {
    transform: translateX(-70%);
  }
}
@keyframes play-reverse {
  0% {
    transform: translateX(9%);
  }
  100% {
    transform: translateX(70%);
  }
}
.wrap-jobs .bg-animation .slider-autoplay-infinite {
  display: flex;
  position: absolute;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  zoom: 50%;
}
@media screen and (min-width: 767px) {
  .wrap-jobs .bg-animation .slider-autoplay-infinite {
    zoom: 100%;
  }
}
.wrap-jobs .bg-animation .slider-autoplay-infinite .item {
  font-family: "Portico - Outline";
  margin-right: 78px;
  font-size: 200px;
  font-weight: 400;
  letter-spacing: -30px;
  color: #3e3b56;
}
.wrap-jobs .bg-animation #autoplay1 {
  top: 0;
  left: 0;
  animation: play 65s linear infinite;
}
.wrap-jobs .bg-animation #autoplay2 {
  top: 200px;
  right: 0;
  animation: play-reverse 65s linear infinite;
}
.wrap-jobs .title-outer {
  margin-bottom: 175px;
}
@media screen and (min-width: 767px) {
  .wrap-jobs .title-outer {
    margin-bottom: 321px;
  }
}
.wrap-jobs .description {
  font-size: 20px;
  max-width: 561px;
  line-height: 35px;
}
.wrap-jobs .description .underline {
  position: relative;
  z-index: 2;
}
.wrap-jobs .description .underline:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #2525f5;
  transform: translateY(-50%);
  height: 8px;
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .wrap-jobs .description {
    font-size: 25px;
    line-height: 40px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-jobs .description {
    font-size: 30px;
    line-height: 45px;
  }
}
.wrap-jobs .block-list-jobs {
  padding-top: 156px;
  padding-bottom: 450px;
  position: relative;
  background-repeat: no-repeat;
  background-position: right top;
}
.wrap-jobs .block-list-jobs .item-job {
  height: 194px;
  display: block;
  width: 100%;
  border-top: 1px solid #495679;
  border-bottom: 1px solid #495679;
}
.wrap-jobs .block-list-jobs .item-job:hover {
  background-color: #070e20;
}
.wrap-jobs .block-list-jobs .item-job .item-job-inner {
  height: 100%;
  font-size: 45px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 576px) {
  .wrap-jobs .block-list-jobs .item-job .item-job-inner {
    font-size: 55px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-jobs .block-list-jobs .item-job .item-job-inner {
    font-size: 70px;
  }
}

/* ------------------------------------------------------------------
    SINGLE JOB PAGE
------------------------------------------------------------------ */
.wrap-job {
  overflow: hidden;
  background-repeat: no-repeat, no-repeat;
  background-image: url("/images/bg_glow.png"), url("/images/helmet.png");
  background-position: center -300px, right bottom;
  background-color: #151D31;
  min-height: 100vh;
  padding-bottom: 300px;
}
.wrap-job .main .title-outer {
  margin-bottom: 150px;
}
.wrap-job .main .container-job .section-job {
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .wrap-job .main .container-job .section-job {
    width: 50%;
  }
}
.wrap-job .main .container-job .section-job .title-job {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 43px;
}
.wrap-job .main .container-job .section-job .list-job-outer .list-item-job {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  line-height: 25px;
  max-width: 580px;
}
.wrap-job .main .container-job .section-job .list-job-outer .list-item-job:before {
  content: "";
  width: 17px;
  height: 17px;
  box-shadow: -2px 2px 9px rgba(37, 37, 245, 0.94);
  background-color: #2525f5;
  left: 0;
  top: 3px;
  position: absolute;
  border-radius: 50%;
}
.wrap-job .block-contact-email {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  background-color: #2525f5;
  display: block;
  line-height: 1.5;
  align-items: center;
  padding: 32px;
  max-width: 1579px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .wrap-job .block-contact-email {
    display: flex;
    font-size: 30px;
    text-align: left;
    padding: 46px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-job .block-contact-email .link-email-outer {
    display: flex;
    font-size: 30px;
    text-align: left;
    margin-left: 25px;
  }
}
.wrap-job .block-contact-email .link-email-outer .link-email {
  text-decoration: underline;
}

/* ------------------------------------------------------------------
    404 PAGE
------------------------------------------------------------------ */
.wrap-not-found {
  overflow: hidden;
  background-repeat: no-repeat, no-repeat;
  background-image: url("/images/bg_glow.png");
  background-position: center -300px;
  background-color: #151D31;
  min-height: 100vh;
  padding-bottom: 300px;
}

/* ------------------------------------------------------------------
    STATIC PAGES (EU Projekt, Legal, etc.)
------------------------------------------------------------------ */
.wrap-static-page {
  background: #01143C;
  min-height: 100vh;
}
.wrap-static-page .static-hero {
  position: relative;
  padding: 220px 0 80px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .static-hero {
    padding: 300px 0 120px;
  }
}
.wrap-static-page .static-hero .static-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 12, 142, 0.15) 0%, transparent 60%);
  z-index: 0;
}
.wrap-static-page .static-hero .static-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.wrap-static-page .static-hero .static-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 12, 142, 0.15);
  border: 1px solid rgba(232, 12, 142, 0.3);
  color: #e80c8e;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: Orkney;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.wrap-static-page .static-hero .static-hero-badge svg {
  width: 16px;
  height: 16px;
}
.wrap-static-page .static-hero .static-hero-title {
  font-family: Orkney;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .static-hero .static-hero-title {
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-static-page .static-hero .static-hero-title {
    font-size: 48px;
  }
}
.wrap-static-page .static-content-wrapper {
  padding: 80px 0 30px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .static-content-wrapper {
    padding: 100px 0 30px;
  }
}
.wrap-static-page .static-content {
  max-width: 900px;
  margin: 0 auto;
}
.wrap-static-page .project-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .project-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.wrap-static-page .project-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.wrap-static-page .project-info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 12, 142, 0.2);
  transform: translateY(-4px);
}
.wrap-static-page .project-info-card .info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 12, 142, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.wrap-static-page .project-info-card .info-card-icon svg {
  color: #e80c8e;
}
.wrap-static-page .project-info-card .info-card-label {
  font-family: Orkney;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.wrap-static-page .project-info-card .info-card-value {
  font-family: Orkney;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.wrap-static-page .static-text-content {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-size: 16px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .static-text-content {
    font-size: 17px;
  }
}
.wrap-static-page .static-text-content p {
  margin-bottom: 24px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .static-text-content p {
    margin-bottom: 28px;
  }
}
.wrap-static-page .static-text-content p:last-child {
  margin-bottom: 0;
}
.wrap-static-page .static-text-content p strong {
  color: #e80c8e;
  font-weight: 600;
  font-family: Orkney;
}
.wrap-static-page .static-text-content a {
  color: #e80c8e;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.wrap-static-page .static-text-content a:hover {
  opacity: 0.8;
}
.wrap-static-page .static-text-content .content-section {
  margin-bottom: 40px;
}
.wrap-static-page .static-text-content .content-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.wrap-static-page .static-text-content .content-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e80c8e, transparent);
  border-radius: 2px;
}
.wrap-static-page .static-text-content .content-section p {
  font-size: 16px;
  margin-bottom: 16px;
}
.wrap-static-page .static-text-content .content-section p:last-child {
  margin-bottom: 0;
}
.wrap-static-page .static-text-content .content-section p strong {
  color: #e80c8e;
  font-weight: 600;
}
.wrap-static-page .standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wrap-static-page .standard-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}
.wrap-static-page .standard-card .standard-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e80c8e, #6366f1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.wrap-static-page .standard-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.wrap-static-page .financial-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  margin: 50px 0;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .financial-section {
    padding: 40px;
  }
}
.wrap-static-page .financial-section h2 {
  font-family: Orkney;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.wrap-static-page .financial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .financial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wrap-static-page .financial-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.wrap-static-page .financial-item.highlight {
  background: rgba(232, 12, 142, 0.1);
  border-color: rgba(232, 12, 142, 0.3);
}
.wrap-static-page .financial-item.highlight .financial-value {
  color: #e80c8e;
}
.wrap-static-page .financial-item .financial-label {
  display: block;
  font-family: Orkney;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.wrap-static-page .financial-item .financial-value {
  font-family: Orkney;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.wrap-static-page .eu-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}
@media screen and (min-width: 767px) {
  .wrap-static-page .eu-disclaimer {
    margin-top: 70px;
  }
}
@media screen and (min-width: 767px) {
  .wrap-static-page .eu-disclaimer {
    flex-direction: row;
    text-align: left;
    padding: 30px 40px;
  }
}
.wrap-static-page .eu-disclaimer .eu-logo {
  flex-shrink: 0;
}
.wrap-static-page .eu-disclaimer .eu-logo img {
  max-width: 200px;
  height: auto;
}
.wrap-static-page .eu-disclaimer .eu-text {
  font-family: Orkney;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.wrap-static-page .eu-disclaimer .eu-text p {
  margin: 0 0 8px;
}
.wrap-static-page .eu-disclaimer .eu-text p:last-child {
  margin-bottom: 0;
}
.wrap-static-page .eu-disclaimer .eu-text p strong {
  color: #fff;
}
.wrap-static-page .static-contact {
  text-align: center;
  padding: 30px;
  background: rgba(232, 12, 142, 0.05);
  border: 1px solid rgba(232, 12, 142, 0.15);
  border-radius: 16px;
  font-family: Orkney;
}
.wrap-static-page .static-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 8px;
  font-size: 15px;
}
.wrap-static-page .static-contact p strong {
  color: #fff;
}
.wrap-static-page .static-contact .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e80c8e;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
  transition: all 0.3s ease;
}
.wrap-static-page .static-contact .contact-link:hover {
  color: #fff;
}

.wrap-legal .static-hero {
  padding: 180px 0 60px;
}
@media screen and (min-width: 767px) {
  .wrap-legal .static-hero {
    padding: 220px 0 80px;
  }
}
.wrap-legal .legal-updated {
  font-family: Orkney;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}
.wrap-legal .legal-content {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (min-width: 767px) {
  .wrap-legal .legal-content {
    font-size: 16px;
  }
}
.wrap-legal .legal-section {
  margin-bottom: 40px;
}
@media screen and (min-width: 767px) {
  .wrap-legal .legal-section {
    margin-bottom: 50px;
  }
}
.wrap-legal .legal-section h2 {
  font-family: Orkney;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
  .wrap-legal .legal-section h2 {
    font-size: 24px;
  }
}
.wrap-legal .legal-section h3 {
  font-family: Orkney;
  font-size: 17px;
  font-weight: 600;
  color: #e80c8e;
  margin: 28px 0 14px;
}
@media screen and (min-width: 767px) {
  .wrap-legal .legal-section h3 {
    font-size: 18px;
  }
}
.wrap-legal .legal-section p {
  margin-bottom: 16px;
}
.wrap-legal .legal-section p:last-child {
  margin-bottom: 0;
}
.wrap-legal .legal-section p strong {
  color: #fff;
  font-weight: 600;
}
.wrap-legal .legal-section ul, .wrap-legal .legal-section ol {
  margin: 16px 0;
  padding-left: 24px;
}
.wrap-legal .legal-section ul li, .wrap-legal .legal-section ol li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.wrap-legal .legal-section ul li strong, .wrap-legal .legal-section ol li strong {
  color: #e80c8e;
}
.wrap-legal .legal-section a {
  color: #e80c8e;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.wrap-legal .legal-section a:hover {
  color: #fff;
}
.wrap-legal .legal-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.wrap-legal .legal-info-box p {
  margin: 0;
  font-size: 15px;
}
.wrap-legal .legal-info-box p a {
  color: #e80c8e;
}
.wrap-legal .cookie-table {
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.wrap-legal .cookie-table .cookie-row {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
@media screen and (min-width: 767px) {
  .wrap-legal .cookie-table .cookie-row {
    grid-template-columns: 120px 1fr 120px;
  }
}
.wrap-legal .cookie-table .cookie-row:last-child {
  border-bottom: none;
}
.wrap-legal .cookie-table .cookie-row.cookie-header {
  background: rgba(255, 255, 255, 0.03);
  font-family: Orkney;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wrap-legal .cookie-table .cookie-row span {
  color: rgba(255, 255, 255, 0.75);
}
.wrap-legal .cookie-table .cookie-row span strong {
  color: #e80c8e;
  font-weight: 600;
}

.wrap-eu {
  max-width: 1024px;
  margin: 0 auto;
  line-height: 1.5;
}
.wrap-eu .title-outer {
  margin-bottom: 1.5rem;
}
.wrap-eu .description p {
  padding-bottom: 1rem;
}
.wrap-eu .description .underline {
  text-decoration: underline;
}

/* ------------------------------------------------------------------
    HOMEPAGE SECTIONS - About, Services, Blog
------------------------------------------------------------------ */
.section-label {
  display: inline-block;
  font-family: Orkney;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e80c8e;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 2px;
  background: #e80c8e;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .section-label {
    font-size: 14px;
    letter-spacing: 4px;
  }
}

.highlight {
  color: #e80c8e;
  position: relative;
}
.highlight:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(232, 12, 142, 0.3);
  z-index: -1;
}

/* ABOUT SECTION - Creative Split Design */
.section-about-home {
  background: linear-gradient(180deg, #01143C 0%, #0a1f4d 50%, #01143C 100%);
  padding: 100px 5%;
  font-family: Orkney;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .section-about-home {
    padding: 140px 5%;
  }
}
.section-about-home .about-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.section-about-home .about-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.section-about-home .about-orbs .orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 12, 142, 0.6) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orb-float 15s ease-in-out infinite;
}
.section-about-home .about-orbs .orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 37, 245, 0.5) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: orb-float 18s ease-in-out infinite reverse;
}
.section-about-home .about-orbs .orb.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 12, 142, 0.4) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation: orb-float 12s ease-in-out infinite 2s;
}
@keyframes orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
.section-about-home .about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-about-home .about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .section-about-home .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media screen and (min-width: 767px) {
  .section-about-home .about-statement {
    padding-right: 20px;
  }
}
.section-about-home .about-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (min-width: 576px) {
  .section-about-home .about-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 767px) {
  .section-about-home .about-title {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .section-about-home .about-title {
    font-size: 52px;
  }
}
.section-about-home .about-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 35px;
}
@media screen and (min-width: 767px) {
  .section-about-home .about-desc {
    font-size: 18px;
  }
}
.section-about-home .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.section-about-home .btn-explore svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.section-about-home .btn-explore:hover {
  background: #e80c8e;
  border-color: #e80c8e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 12, 142, 0.3);
}
.section-about-home .btn-explore:hover svg {
  transform: translateX(5px);
}
.section-about-home .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
@media screen and (min-width: 767px) {
  .section-about-home .about-stats {
    gap: 50px 40px;
  }
}
.section-about-home .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.section-about-home .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e80c8e, rgba(232, 12, 142, 0.3));
  border-radius: 2px;
}
.section-about-home .stat-item .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  padding-top: 16px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 767px) {
  .section-about-home .stat-item .stat-number {
    font-size: 56px;
  }
}
@media screen and (min-width: 992px) {
  .section-about-home .stat-item .stat-number {
    font-size: 64px;
  }
}
.section-about-home .stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .section-about-home .stat-item .stat-label {
    font-size: 15px;
  }
}

/* SERVICES SECTION - Interactive */
.section-services-home {
  background: #01143C;
  padding: 80px 5%;
  font-family: Orkney;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .section-services-home {
    padding: 120px 5%;
  }
}
.section-services-home .services-container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-services-home .services-header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .section-services-home .services-header {
    margin-bottom: 60px;
  }
}
.section-services-home .services-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .section-services-home .services-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 767px) {
  .section-services-home .services-title {
    font-size: 48px;
  }
}
.section-services-home .services-mobile {
  display: block;
  margin-bottom: 40px;
}
@media screen and (min-width: 767px) {
  .section-services-home .services-mobile {
    display: none;
  }
}
.section-services-home .service-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin: 0 -5%;
  padding-left: 5%;
  padding-right: 5%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.section-services-home .service-pills::-webkit-scrollbar {
  display: none;
}
.section-services-home .service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-family: Orkney;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.section-services-home .service-pill svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.section-services-home .service-pill .pill-new {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #e80c8e;
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 2px;
}
.section-services-home .service-pill.active {
  background: linear-gradient(135deg, rgba(232, 12, 142, 0.2) 0%, rgba(37, 37, 245, 0.2) 100%);
  border-color: rgba(232, 12, 142, 0.5);
  color: #fff;
}
.section-services-home .service-pill.active svg {
  opacity: 1;
  stroke: #e80c8e;
}
.section-services-home .service-pill:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.section-services-home .service-card-mobile {
  display: none;
  background: linear-gradient(135deg, rgba(232, 12, 142, 0.08) 0%, rgba(37, 37, 245, 0.08) 100%);
  border: 1px solid rgba(232, 12, 142, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  animation: fadeInCard 0.3s ease;
}
.section-services-home .service-card-mobile.active {
  display: block;
}
.section-services-home .service-card-mobile h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.section-services-home .service-card-mobile p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.section-services-home .service-card-mobile .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.section-services-home .service-card-mobile .card-tags span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-services-home .services-showcase {
  display: none;
  margin-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .section-services-home .services-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
}
.section-services-home .services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-services-home .service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-services-home .service-item:hover, .section-services-home .service-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 12, 142, 0.3);
}
.section-services-home .service-item:hover .service-num, .section-services-home .service-item.active .service-num {
  color: #e80c8e;
}
.section-services-home .service-item.active {
  background: linear-gradient(90deg, rgba(232, 12, 142, 0.1) 0%, rgba(37, 37, 245, 0.1) 100%);
  border-color: rgba(232, 12, 142, 0.4);
}
.section-services-home .service-item.active .service-num {
  background: #e80c8e;
  color: #fff;
}
.section-services-home .service-item .service-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.section-services-home .service-item .service-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.section-services-home .service-item .service-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}
.section-services-home .service-item .service-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.3;
}
.section-services-home .service-item .service-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(90deg, #e80c8e, #2525f5);
  padding: 5px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}
.section-services-home .service-detail {
  position: relative;
  min-height: 450px;
}
.section-services-home .detail-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
@media screen and (min-width: 767px) {
  .section-services-home .detail-card {
    padding: 40px;
  }
}
.section-services-home .detail-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.section-services-home .detail-card .detail-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.section-services-home .detail-card .detail-content .detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.section-services-home .detail-card .detail-content .detail-tags span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.section-services-home .detail-card .detail-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 767px) {
  .section-services-home .detail-card .detail-content p {
    font-size: 15px;
  }
}
.section-services-home .ai-brain {
  position: relative;
  width: 180px;
  height: 180px;
}
.section-services-home .ai-brain .brain-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(232, 12, 142, 0.6);
  border-radius: 50%;
  animation: brain-pulse 2s ease-in-out infinite;
}
.section-services-home .ai-brain .brain-node:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}
.section-services-home .ai-brain .brain-node:nth-child(2) {
  top: 15%;
  left: 60%;
  animation-delay: 0.3s;
}
.section-services-home .ai-brain .brain-node:nth-child(3) {
  top: 50%;
  left: 20%;
  animation-delay: 0.6s;
}
.section-services-home .ai-brain .brain-node:nth-child(4) {
  top: 45%;
  left: 75%;
  animation-delay: 0.9s;
}
.section-services-home .ai-brain .brain-node:nth-child(5) {
  top: 75%;
  left: 50%;
  animation-delay: 1.2s;
}
.section-services-home .ai-brain .brain-node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 12, 142, 0.4), transparent);
  transform-origin: left center;
}
.section-services-home .ai-brain .brain-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e80c8e, #2525f5);
  border-radius: 50%;
  animation: core-glow 2s ease-in-out infinite;
}
@keyframes brain-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}
@keyframes core-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(232, 12, 142, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(232, 12, 142, 0.8), 0 0 60px rgba(37, 37, 245, 0.4);
  }
}
.section-services-home .code-window {
  width: 200px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.section-services-home .code-window .code-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.section-services-home .code-window .code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.section-services-home .code-window .code-dots span:nth-child(1) {
  background: #ff5f56;
}
.section-services-home .code-window .code-dots span:nth-child(2) {
  background: #ffbd2e;
}
.section-services-home .code-window .code-dots span:nth-child(3) {
  background: #27ca40;
}
.section-services-home .code-window .code-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-services-home .code-window .code-line {
  height: 8px;
  background: linear-gradient(90deg, rgba(232, 12, 142, 0.4), rgba(37, 37, 245, 0.3));
  border-radius: 4px;
  animation: code-typing 2s ease-in-out infinite;
}
.section-services-home .code-window .code-line.short {
  width: 60%;
}
.section-services-home .code-window .code-line.medium {
  width: 80%;
}
.section-services-home .code-window .code-line:nth-child(2) {
  animation-delay: 0.2s;
}
.section-services-home .code-window .code-line:nth-child(3) {
  animation-delay: 0.4s;
}
.section-services-home .code-window .code-line:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes code-typing {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.section-services-home .phone-mockup {
  width: 120px;
  height: 200px;
  background: #1a1a2e;
  border-radius: 24px;
  padding: 8px;
  border: 3px solid rgba(255, 255, 255, 0.1);
}
.section-services-home .phone-mockup .phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d1a;
  border-radius: 18px;
  overflow: hidden;
  padding: 12px;
}
.section-services-home .phone-mockup .app-header {
  height: 20px;
  background: linear-gradient(90deg, #e80c8e, #2525f5);
  border-radius: 6px;
  margin-bottom: 12px;
}
.section-services-home .phone-mockup .app-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-services-home .phone-mockup .app-card {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: card-load 1.5s ease-in-out infinite;
}
.section-services-home .phone-mockup .app-card:nth-child(2) {
  animation-delay: 0.2s;
}
@keyframes card-load {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}
.section-services-home .design-shapes {
  position: relative;
  width: 180px;
  height: 180px;
}
.section-services-home .design-shapes .shape {
  position: absolute;
  animation: shape-float 3s ease-in-out infinite;
}
.section-services-home .design-shapes .shape.circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e80c8e, transparent);
  border-radius: 50%;
  top: 20%;
  left: 20%;
}
.section-services-home .design-shapes .shape.square {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2525f5, transparent);
  border-radius: 12px;
  top: 50%;
  right: 20%;
  animation-delay: 0.5s;
}
.section-services-home .design-shapes .shape.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(232, 12, 142, 0.5);
  bottom: 20%;
  left: 40%;
  animation-delay: 1s;
}
@keyframes shape-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}
.section-services-home .gear-system {
  position: relative;
  width: 150px;
  height: 150px;
}
.section-services-home .gear-system .gear {
  position: absolute;
  border: 4px solid rgba(232, 12, 142, 0.6);
  border-radius: 50%;
}
.section-services-home .gear-system .gear::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(232, 12, 142, 0.3);
  border-radius: 50%;
}
.section-services-home .gear-system .gear.large {
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  animation: gear-rotate 4s linear infinite;
}
.section-services-home .gear-system .gear.large::before {
  width: 30px;
  height: 30px;
}
.section-services-home .gear-system .gear.small {
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  animation: gear-rotate 3s linear infinite reverse;
}
.section-services-home .gear-system .gear.small::before {
  width: 18px;
  height: 18px;
}
@keyframes gear-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-services-home .services-cta {
  text-align: center;
}

.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: #2525f5;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 767px) {
  .btn-services {
    font-size: 18px;
    padding: 20px 40px;
  }
}
.btn-services svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.btn-services:hover {
  background: #e80c8e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 12, 142, 0.4);
}
.btn-services:hover svg {
  transform: translateX(5px);
}

/* FEATURED PROJECTS SECTION */
.section-projects-home {
  background: linear-gradient(180deg, #0d1d40 0%, #01143C 100%);
  padding: 80px 5%;
  font-family: Orkney;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .section-projects-home {
    padding: 120px 5%;
  }
}
.section-projects-home .projects-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-projects-home .projects-header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .section-projects-home .projects-header {
    margin-bottom: 70px;
  }
}
.section-projects-home .projects-header .projects-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 767px) {
  .section-projects-home .projects-header .projects-title {
    font-size: 48px;
  }
}
.section-projects-home .projects-header .projects-title .highlight {
  background: linear-gradient(135deg, #e80c8e 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-projects-home .projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-projects-home .projects-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 767px) {
  .section-projects-home .projects-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-projects-home .project-card-home {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}
.section-projects-home .project-card-home:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 12, 142, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.section-projects-home .project-card-home:hover .project-image-home img {
  transform: scale(1.08);
}
.section-projects-home .project-card-home:hover .project-overlay-home {
  opacity: 0.4;
}
.section-projects-home .project-card-home.featured {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 767px) {
  .section-projects-home .project-card-home.featured {
    grid-template-columns: 1.2fr 1fr;
  }
}
.section-projects-home .project-card-home.featured .project-image-home {
  height: 300px;
}
@media screen and (min-width: 767px) {
  .section-projects-home .project-card-home.featured .project-image-home {
    height: 100%;
    min-height: 400px;
  }
}
.section-projects-home .project-card-home.featured .project-content-home {
  padding: 30px;
}
@media screen and (min-width: 767px) {
  .section-projects-home .project-card-home.featured .project-content-home {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.section-projects-home .project-card-home.featured .project-title-home {
  font-size: 28px;
}
@media screen and (min-width: 767px) {
  .section-projects-home .project-card-home.featured .project-title-home {
    font-size: 36px;
  }
}
.section-projects-home .project-card-home.featured .project-desc-home {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.section-projects-home .project-card-home .project-image-home {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.section-projects-home .project-card-home .project-image-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.section-projects-home .project-card-home .project-image-home .project-overlay-home {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 12, 142, 0.2) 0%, rgba(1, 20, 60, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.section-projects-home .project-card-home .project-content-home {
  padding: 25px;
}
.section-projects-home .project-card-home .project-tags-home {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.section-projects-home .project-card-home .project-tags-home span {
  font-size: 11px;
  padding: 5px 12px;
  background: rgba(232, 12, 142, 0.15);
  color: #e80c8e;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-projects-home .project-card-home .project-title-home {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.section-projects-home .project-card-home .project-desc-home {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.section-projects-home .project-card-home .project-stats-home {
  display: flex;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 25px;
}
.section-projects-home .project-card-home .project-stats-home .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-projects-home .project-card-home .project-stats-home .stat .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #e80c8e;
}
.section-projects-home .project-card-home .project-stats-home .stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-projects-home .project-card-home .project-number-home {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
@media screen and (min-width: 767px) {
  .section-projects-home .project-card-home .project-number-home {
    font-size: 64px;
  }
}
.section-projects-home .projects-cta {
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 767px) {
  .section-projects-home .projects-cta {
    margin-top: 70px;
  }
}

/* BLOG SECTION - Grid with Thumbnails */
.section-blog-home {
  background: linear-gradient(180deg, #01143C 0%, #0d1d40 100%);
  padding: 80px 5%;
  font-family: Orkney;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 767px) {
  .section-blog-home {
    padding: 120px 5%;
  }
}
.section-blog-home .blog-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-blog-home .blog-header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-header {
    margin-bottom: 70px;
  }
}
.section-blog-home .blog-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .section-blog-home .blog-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-title {
    font-size: 48px;
  }
}
.section-blog-home .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media screen and (min-width: 576px) {
  .section-blog-home .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .section-blog-home .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.section-blog-home .blog-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-blog-home .blog-card:hover {
  border-color: rgba(232, 12, 142, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.section-blog-home .blog-card:hover .blog-thumbnail img {
  transform: scale(1.1);
}
.section-blog-home .blog-card:hover .blog-thumbnail-overlay {
  opacity: 0.6;
}
.section-blog-home .blog-card:hover .blog-card-title {
  color: #e80c8e;
}
.section-blog-home .blog-card .blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.section-blog-home .blog-card .blog-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-card .blog-thumbnail {
    height: 220px;
  }
}
.section-blog-home .blog-card .blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-blog-home .blog-card .blog-thumbnail .blog-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(1, 20, 60, 0.8) 100%);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.section-blog-home .blog-card .blog-card-content {
  padding: 25px;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-card .blog-card-content {
    padding: 30px;
  }
}
.section-blog-home .blog-card .blog-category {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e80c8e;
  background: rgba(232, 12, 142, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-card .blog-category {
    font-size: 11px;
  }
}
.section-blog-home .blog-card .blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-card .blog-card-title {
    font-size: 19px;
  }
}
.section-blog-home .blog-card .blog-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-card .blog-excerpt {
    font-size: 14px;
  }
}
.section-blog-home .blog-card .blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.section-blog-home .blog-cta {
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 767px) {
  .section-blog-home .blog-cta {
    margin-top: 70px;
  }
}
.section-blog-home .blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* BLOG LISTING PAGE */
.wrap-blog {
  background: #01143C;
  min-height: 100vh;
}
.wrap-blog .blog-header-section {
  padding: 140px 20px 60px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-header-section {
    padding: 180px 20px 80px;
  }
}
.wrap-blog .blog-header-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.wrap-blog .blog-header-section .blog-page-title {
  font-family: Orkney;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-header-section .blog-page-title {
    font-size: 56px;
  }
}
.wrap-blog .blog-header-section .blog-page-title .highlight {
  color: #e80c8e;
}
.wrap-blog .blog-header-section .blog-page-subtitle {
  font-family: Orkney;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-header-section .blog-page-subtitle {
    font-size: 18px;
  }
}
.wrap-blog .blog-list-section {
  padding: 0 20px 80px;
}
.wrap-blog .blog-list-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.wrap-blog .blog-featured {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}
.wrap-blog .blog-featured:hover {
  border-color: rgba(232, 12, 142, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.wrap-blog .blog-featured:hover .blog-featured-image img {
  transform: scale(1.03);
}
.wrap-blog .blog-featured:hover .blog-featured-cta {
  color: #e80c8e;
}
.wrap-blog .blog-featured:hover .blog-featured-cta svg {
  transform: translateX(5px);
}
.wrap-blog .blog-featured .blog-featured-link {
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-featured .blog-featured-link {
    grid-template-columns: 1.2fr 1fr;
  }
}
.wrap-blog .blog-featured .blog-featured-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-featured .blog-featured-image {
    height: 400px;
  }
}
.wrap-blog .blog-featured .blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.wrap-blog .blog-featured .blog-featured-image .blog-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(1, 20, 60, 0.3) 0%, transparent 100%);
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-featured .blog-featured-image .blog-featured-overlay {
    background: linear-gradient(to right, transparent 0%, rgba(1, 20, 60, 0.8) 100%);
  }
}
.wrap-blog .blog-featured .blog-featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-featured .blog-featured-content {
    padding: 40px;
  }
}
.wrap-blog .blog-featured .blog-featured-label {
  font-family: Orkney;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e80c8e;
  margin-bottom: 12px;
}
.wrap-blog .blog-featured .blog-featured-category {
  display: inline-block;
  background: rgba(232, 12, 142, 0.15);
  color: #e80c8e;
  font-family: Orkney;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
.wrap-blog .blog-featured .blog-featured-title {
  font-family: Orkney;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-featured .blog-featured-title {
    font-size: 32px;
  }
}
.wrap-blog .blog-featured .blog-featured-excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-featured .blog-featured-excerpt {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }
}
.wrap-blog .blog-featured .blog-featured-meta {
  display: flex;
  gap: 15px;
  font-family: Orkney;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}
.wrap-blog .blog-featured .blog-featured-meta .blog-featured-read::before {
  content: "•";
  margin-right: 15px;
}
.wrap-blog .blog-featured .blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Orkney;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}
.wrap-blog .blog-featured .blog-featured-cta svg {
  transition: transform 0.3s ease;
}
.wrap-blog .blog-more-section .blog-more-title {
  font-family: Orkney;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wrap-blog .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 767px) {
  .wrap-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .wrap-blog .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wrap-blog .blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.wrap-blog .blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 12, 142, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.wrap-blog .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.wrap-blog .blog-card:hover .blog-card-cta {
  color: #e80c8e;
}
.wrap-blog .blog-card:hover .blog-card-cta svg {
  transform: translateX(5px);
}
.wrap-blog .blog-card .blog-card-link {
  text-decoration: none;
  display: block;
}
.wrap-blog .blog-card .blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.wrap-blog .blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wrap-blog .blog-card .blog-card-image .blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(1, 20, 60, 0.8) 100%);
}
.wrap-blog .blog-card .blog-card-image .blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(232, 12, 142, 0.9);
  color: #fff;
  font-family: Orkney;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
}
.wrap-blog .blog-card .blog-card-content {
  padding: 25px;
}
.wrap-blog .blog-card .blog-card-meta {
  display: flex;
  gap: 15px;
  font-family: Orkney;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.wrap-blog .blog-card .blog-card-meta .blog-card-read::before {
  content: "•";
  margin-right: 15px;
}
.wrap-blog .blog-card .blog-card-title {
  font-family: Orkney;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wrap-blog .blog-card .blog-card-excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wrap-blog .blog-card .blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Orkney;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.wrap-blog .blog-card .blog-card-cta svg {
  transition: transform 0.3s ease;
}
.wrap-blog .blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.wrap-blog .blog-empty p {
  font-family: Orkney;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

/* SINGLE BLOG POST */
.wrap-blog-post {
  background: #01143C;
  min-height: 100vh;
}
.wrap-blog-post .blog-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 40px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-hero {
    min-height: 55vh;
    padding: 120px 0 60px;
  }
}
.wrap-blog-post .blog-hero .blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #01143C 0%, rgba(1, 20, 60, 0.8) 50%, rgba(1, 20, 60, 0.4) 100%);
  z-index: 1;
}
.wrap-blog-post .blog-hero .blog-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.wrap-blog-post .blog-hero .blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap-blog-post .blog-hero .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  font-family: Orkney;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.wrap-blog-post .blog-hero .blog-meta .blog-category {
  background: rgba(232, 12, 142, 0.2);
  color: #e80c8e;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}
.wrap-blog-post .blog-hero .blog-meta .blog-date, .wrap-blog-post .blog-hero .blog-meta .blog-read-time {
  display: flex;
  align-items: center;
}
.wrap-blog-post .blog-hero .blog-meta .blog-read-time::before {
  content: "•";
  margin-right: 15px;
}
.wrap-blog-post .blog-hero .blog-title {
  font-family: Orkney;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-hero .blog-title {
    font-size: 48px;
  }
}
@media screen and (min-width: 992px) {
  .wrap-blog-post .blog-hero .blog-title {
    font-size: 56px;
  }
}
.wrap-blog-post .blog-hero .blog-author {
  font-family: Orkney;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.wrap-blog-post .blog-hero .blog-author span {
  color: #e80c8e;
}
.wrap-blog-post .blog-content-wrapper {
  background: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-content-wrapper {
    padding: 80px 20px;
  }
}
.wrap-blog-post .blog-content {
  max-width: 750px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.wrap-blog-post .blog-content h2 {
  font-family: Orkney;
  font-size: 28px;
  font-weight: 700;
  color: #01143C;
  margin: 50px 0 20px;
  line-height: 1.3;
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-content h2 {
    font-size: 32px;
  }
}
.wrap-blog-post .blog-content h3 {
  font-family: Orkney;
  font-size: 22px;
  font-weight: 700;
  color: #01143C;
  margin: 40px 0 15px;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-content h3 {
    font-size: 24px;
  }
}
.wrap-blog-post .blog-content p {
  margin-bottom: 25px;
}
.wrap-blog-post .blog-content a {
  color: #e80c8e;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.wrap-blog-post .blog-content a:hover {
  color: rgb(183.5081967213, 9.4918032787, 112.3196721311);
}
.wrap-blog-post .blog-content ul, .wrap-blog-post .blog-content ol {
  margin: 25px 0;
  padding-left: 25px;
}
.wrap-blog-post .blog-content ul li, .wrap-blog-post .blog-content ol li {
  margin-bottom: 10px;
}
.wrap-blog-post .blog-content strong {
  font-weight: 600;
  color: #01143C;
}
.wrap-blog-post .blog-content .blog-text {
  margin-bottom: 30px;
}
.wrap-blog-post .blog-content .blog-image {
  margin: 40px 0;
  text-align: center;
}
.wrap-blog-post .blog-content .blog-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.wrap-blog-post .blog-content .blog-image figcaption {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}
.wrap-blog-post .blog-content .blog-quote {
  margin: 40px 0;
  padding: 30px 30px 30px 40px;
  background: #f8f9fa;
  border-left: 4px solid #e80c8e;
  border-radius: 0 8px 8px 0;
}
.wrap-blog-post .blog-content .blog-quote p {
  font-size: 20px;
  font-style: italic;
  color: #01143C;
  margin-bottom: 15px;
  line-height: 1.6;
}
.wrap-blog-post .blog-content .blog-quote cite {
  font-size: 14px;
  color: #e80c8e;
  font-style: normal;
  font-weight: 600;
}
.wrap-blog-post .blog-content .blog-code {
  margin: 30px 0;
  padding: 25px;
  background: #1e1e1e;
  border-radius: 8px;
  overflow-x: auto;
}
.wrap-blog-post .blog-content .blog-code code {
  font-family: "Fira Code", "Monaco", "Consolas", monospace;
  font-size: 14px;
  color: #e6e6e6;
  line-height: 1.6;
}
.wrap-blog-post .blog-cta-section {
  background: linear-gradient(135deg, rgba(232, 12, 142, 0.1) 0%, rgba(37, 37, 245, 0.1) 100%);
  padding: 60px 20px;
  border-top: 1px solid rgba(232, 12, 142, 0.2);
  border-bottom: 1px solid rgba(232, 12, 142, 0.2);
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-cta-section {
    padding: 80px 20px;
  }
}
.wrap-blog-post .blog-cta-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.wrap-blog-post .blog-cta-section .blog-cta {
  text-align: center;
}
.wrap-blog-post .blog-cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.wrap-blog-post .blog-cta-section .cta-text {
  font-family: Orkney;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (min-width: 767px) {
  .wrap-blog-post .blog-cta-section .cta-text {
    font-size: 24px;
  }
}
.wrap-blog-post .blog-cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e80c8e;
  color: #fff;
  font-family: Orkney;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.wrap-blog-post .blog-cta-section .cta-button:hover {
  background: rgb(243.1721311475, 26.3278688525, 154.4631147541);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 12, 142, 0.3);
}
.wrap-blog-post .blog-cta-section .cta-button:hover svg {
  transform: translateX(5px);
}
.wrap-blog-post .blog-cta-section .cta-button svg {
  transition: transform 0.3s ease;
}
.wrap-blog-post .blog-footer {
  background: #01143C;
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wrap-blog-post .blog-footer .container {
  max-width: 750px;
  margin: 0 auto;
}
.wrap-blog-post .blog-footer .blog-share {
  text-align: center;
  margin-bottom: 40px;
}
.wrap-blog-post .blog-footer .blog-share .share-label {
  display: block;
  font-family: Orkney;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.wrap-blog-post .blog-footer .blog-share .share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.wrap-blog-post .blog-footer .blog-share .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}
.wrap-blog-post .blog-footer .blog-share .share-btn:hover {
  transform: translateY(-3px);
}
.wrap-blog-post .blog-footer .blog-share .share-btn.twitter:hover {
  background: #1DA1F2;
}
.wrap-blog-post .blog-footer .blog-share .share-btn.linkedin:hover {
  background: #0077B5;
}
.wrap-blog-post .blog-footer .blog-share .share-btn.facebook:hover {
  background: #4267B2;
}
.wrap-blog-post .blog-footer .blog-back {
  text-align: center;
}
.wrap-blog-post .blog-footer .blog-back .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Orkney;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.wrap-blog-post .blog-footer .blog-back .btn-back:hover {
  color: #fff;
  border-color: #e80c8e;
  background: rgba(232, 12, 142, 0.1);
}
.wrap-blog-post .blog-footer .blog-back .btn-back svg {
  transition: transform 0.3s ease;
}
.wrap-blog-post .blog-footer .blog-back .btn-back:hover svg {
  transform: translateX(-3px);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #010d26 0%, #020818 100%);
  padding: 70px 5% 30px;
  font-family: Orkney;
  color: #fff;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 12, 142, 0.3), transparent);
}
@media screen and (min-width: 767px) {
  .site-footer {
    padding: 80px 5% 35px;
  }
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (min-width: 576px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 767px) {
  .site-footer .footer-main {
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
}
@media screen and (min-width: 576px) {
  .site-footer .footer-brand {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 767px) {
  .site-footer .footer-brand {
    grid-column: auto;
  }
}
.site-footer .footer-brand .footer-logo {
  display: block;
  margin-bottom: 18px;
  text-decoration: none;
}
.site-footer .footer-brand .footer-logo .footer-logo-svg {
  height: 36px;
  width: auto;
}
@media screen and (min-width: 767px) {
  .site-footer .footer-brand .footer-logo .footer-logo-svg {
    height: 42px;
  }
}
.site-footer .footer-brand .footer-logo:hover .footer-logo-svg path[fill="#fff"] {
  fill: #e80c8e;
  transition: fill 0.3s ease;
}
.site-footer .footer-brand .footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}
.site-footer .footer-brand .footer-social {
  display: flex;
  gap: 10px;
}
.site-footer .footer-brand .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.site-footer .footer-brand .footer-social a svg {
  width: 17px;
  height: 17px;
}
.site-footer .footer-brand .footer-social a:hover {
  background: #e80c8e;
  border-color: #e80c8e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 12, 142, 0.3);
}
.site-footer .footer-nav h4, .site-footer .footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-footer .footer-nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  width: fit-content;
}
.site-footer .footer-nav a:hover {
  color: #e80c8e;
}
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-contact .footer-email {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-footer .footer-contact .footer-email:hover {
  color: #e80c8e;
}
.site-footer .footer-contact .footer-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 4px;
}
.site-footer .footer-contact .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e80c8e;
  text-decoration: none;
  margin-top: 12px;
  padding: 10px 20px;
  background: rgba(232, 12, 142, 0.1);
  border: 1px solid rgba(232, 12, 142, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}
.site-footer .footer-contact .footer-cta svg {
  transition: transform 0.3s ease;
}
.site-footer .footer-contact .footer-cta:hover {
  background: #e80c8e;
  border-color: #e80c8e;
  color: #fff;
}
.site-footer .footer-contact .footer-cta:hover svg {
  transform: translateX(4px);
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
@media screen and (min-width: 767px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.site-footer .footer-bottom .footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.site-footer .footer-bottom .footer-legal {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-bottom .footer-legal {
    justify-content: center;
  }
}
.site-footer .footer-bottom .footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .footer-legal a:hover {
  color: #e80c8e;
}

.wrap-contact-new {
  background: linear-gradient(180deg, #01143C 0%, #020B1F 100%);
  min-height: 100vh;
  font-family: Orkney, sans-serif;
  color: #fff;
}
.wrap-contact-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .container {
    padding: 0 40px;
  }
}
.wrap-contact-new .gradient-text {
  background: linear-gradient(135deg, #e80c8e, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wrap-contact-new .contact-hero {
  padding: 140px 0 60px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .contact-hero {
    padding: 180px 0 80px;
  }
}
.wrap-contact-new .contact-hero .contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.wrap-contact-new .contact-hero .contact-hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.wrap-contact-new .contact-hero .contact-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .contact-hero .contact-hero-subtitle {
    font-size: 20px;
  }
}
.wrap-contact-new .contact-main {
  padding: 40px 0 80px;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .contact-main {
    padding: 60px 0 100px;
  }
}
.wrap-contact-new .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .wrap-contact-new .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
  }
}
.wrap-contact-new .contact-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .contact-form-wrapper {
    padding: 50px;
  }
}
.wrap-contact-new .contact-form-wrapper .form-header {
  margin-bottom: 30px;
}
.wrap-contact-new .contact-form-wrapper .form-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .contact-form-wrapper .form-header h2 {
    font-size: 32px;
  }
}
.wrap-contact-new .contact-form-wrapper .form-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}
.wrap-contact-new .contact-form-wrapper .message-sent {
  margin-bottom: 20px;
  display: none;
}
.wrap-contact-new .contact-form-wrapper .message-sent .success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
}
.wrap-contact-new .contact-form-wrapper .message-sent .error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
}
.wrap-contact-new .contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.wrap-contact-new .contact-form-new .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media screen and (min-width: 576px) {
  .wrap-contact-new .contact-form-new .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.wrap-contact-new .contact-form-new .form-group {
  display: flex;
  flex-direction: column;
}
.wrap-contact-new .contact-form-new .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.wrap-contact-new .contact-form-new .form-group input,
.wrap-contact-new .contact-form-new .form-group select,
.wrap-contact-new .contact-form-new .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  color: #fff;
  font-family: Orkney, sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.wrap-contact-new .contact-form-new .form-group input::placeholder,
.wrap-contact-new .contact-form-new .form-group select::placeholder,
.wrap-contact-new .contact-form-new .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.wrap-contact-new .contact-form-new .form-group input:focus,
.wrap-contact-new .contact-form-new .form-group select:focus,
.wrap-contact-new .contact-form-new .form-group textarea:focus {
  outline: none;
  border-color: #e80c8e;
  background: rgba(232, 12, 142, 0.05);
}
.wrap-contact-new .contact-form-new .form-group input.invalid,
.wrap-contact-new .contact-form-new .form-group select.invalid,
.wrap-contact-new .contact-form-new .form-group textarea.invalid {
  border-color: #ef4444;
  animation: shake 0.5s ease-in-out;
}
.wrap-contact-new .contact-form-new .form-group input:disabled,
.wrap-contact-new .contact-form-new .form-group select:disabled,
.wrap-contact-new .contact-form-new .form-group textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wrap-contact-new .contact-form-new .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.wrap-contact-new .contact-form-new .form-group select option {
  background: #01143C;
  color: #fff;
}
.wrap-contact-new .contact-form-new .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.wrap-contact-new .contact-form-new .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e80c8e, rgb(183.5081967213, 9.4918032787, 112.3196721311));
  border: none;
  border-radius: 12px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Orkney, sans-serif;
  margin-top: 8px;
  align-self: flex-start;
}
.wrap-contact-new .contact-form-new .btn-submit svg {
  transition: transform 0.3s ease;
}
.wrap-contact-new .contact-form-new .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 12, 142, 0.3);
}
.wrap-contact-new .contact-form-new .btn-submit:hover svg {
  transform: translateX(3px);
}
.wrap-contact-new .contact-form-new .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.wrap-contact-new .contact-form-new .btn-submit.loading {
  pointer-events: none;
}
.wrap-contact-new .contact-form-new .btn-submit.loading span {
  opacity: 0.7;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-5px);
  }
  40%, 80% {
    transform: translateX(5px);
  }
}
.wrap-contact-new .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wrap-contact-new .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrap-contact-new .contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.wrap-contact-new .contact-card:hover {
  border-color: rgba(232, 12, 142, 0.3);
  background: rgba(232, 12, 142, 0.03);
}
.wrap-contact-new .contact-card .card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 12, 142, 0.1);
  border-radius: 12px;
  color: #e80c8e;
}
.wrap-contact-new .contact-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.wrap-contact-new .contact-card .card-content a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.wrap-contact-new .contact-card .card-content a:hover {
  color: #e80c8e;
}
.wrap-contact-new .contact-card .card-content .label {
  display: inline-block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.wrap-contact-new .contact-social {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.wrap-contact-new .contact-social h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wrap-contact-new .contact-social .social-links {
  display: flex;
  gap: 12px;
}
.wrap-contact-new .contact-social .social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.wrap-contact-new .contact-social .social-links a:hover {
  background: #e80c8e;
  border-color: #e80c8e;
  color: #fff;
  transform: translateY(-3px);
}
.wrap-contact-new .contact-legal {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.wrap-contact-new .contact-legal h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wrap-contact-new .contact-legal .legal-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.wrap-contact-new .contact-legal .legal-content p strong {
  color: rgba(255, 255, 255, 0.7);
}
.wrap-contact-new .contact-map {
  padding: 0 20px 80px;
}
@media screen and (min-width: 767px) {
  .wrap-contact-new .contact-map {
    padding: 0 40px 100px;
  }
}
.wrap-contact-new .contact-map .map-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.wrap-contact-new .contact-map .map-wrapper iframe {
  display: block;
  filter: grayscale(100%) invert(92%) contrast(90%);
}
.wrap-contact-new .contact-map .map-wrapper .map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
@media screen and (max-width: 576px) {
  .wrap-contact-new .contact-map .map-wrapper .map-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
.wrap-contact-new .contact-map .map-wrapper .map-card {
  background: rgba(1, 20, 60, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  max-width: 280px;
}
@media screen and (max-width: 576px) {
  .wrap-contact-new .contact-map .map-wrapper .map-card {
    max-width: 100%;
  }
}
.wrap-contact-new .contact-map .map-wrapper .map-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.wrap-contact-new .contact-map .map-wrapper .map-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.wrap-contact-new .contact-map .map-wrapper .map-card .btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(232, 12, 142, 0.1);
  border: 1px solid rgba(232, 12, 142, 0.3);
  border-radius: 10px;
  color: #e80c8e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.wrap-contact-new .contact-map .map-wrapper .map-card .btn-directions:hover {
  background: #e80c8e;
  color: #fff;
}

.wrap-careers-new {
  background: linear-gradient(180deg, #01143C 0%, #020B1F 100%);
  min-height: 100vh;
  font-family: Orkney, sans-serif;
  color: #fff;
}
.wrap-careers-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .container {
    padding: 0 40px;
  }
}
.wrap-careers-new .gradient-text {
  background: linear-gradient(135deg, #e80c8e, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wrap-careers-new .careers-hero {
  padding: 140px 0 60px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .careers-hero {
    padding: 180px 0 80px;
  }
}
.wrap-careers-new .careers-hero .careers-hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.wrap-careers-new .careers-hero .careers-hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.wrap-careers-new .careers-hero .careers-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .careers-hero .careers-hero-subtitle {
    font-size: 20px;
  }
}
.wrap-careers-new .careers-why {
  padding: 40px 0 80px;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .careers-why {
    padding: 60px 0 100px;
  }
}
.wrap-careers-new .careers-why .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  .wrap-careers-new .careers-why .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .wrap-careers-new .careers-why .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wrap-careers-new .careers-why .why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.wrap-careers-new .careers-why .why-card:hover {
  border-color: rgba(232, 12, 142, 0.3);
  background: rgba(232, 12, 142, 0.03);
  transform: translateY(-5px);
}
.wrap-careers-new .careers-why .why-card .why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 12, 142, 0.1);
  border-radius: 16px;
  margin: 0 auto 20px;
  color: #e80c8e;
}
.wrap-careers-new .careers-why .why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wrap-careers-new .careers-why .why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.wrap-careers-new .careers-positions {
  padding: 60px 0 80px;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .careers-positions {
    padding: 80px 0 100px;
  }
}
.wrap-careers-new .careers-positions .positions-header {
  text-align: center;
  margin-bottom: 50px;
}
.wrap-careers-new .careers-positions .positions-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.wrap-careers-new .careers-positions .positions-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.wrap-careers-new .careers-positions .positions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.wrap-careers-new .careers-positions .position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.wrap-careers-new .careers-positions .position-card:hover {
  border-color: rgba(232, 12, 142, 0.4);
  background: rgba(232, 12, 142, 0.05);
  transform: translateX(8px);
}
.wrap-careers-new .careers-positions .position-card:hover .position-arrow {
  color: #e80c8e;
  transform: translateX(5px);
}
.wrap-careers-new .careers-positions .position-card .position-info {
  flex: 1;
}
.wrap-careers-new .careers-positions .position-card .position-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .careers-positions .position-card .position-title {
    font-size: 22px;
  }
}
.wrap-careers-new .careers-positions .position-card .position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wrap-careers-new .careers-positions .position-card .position-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.wrap-careers-new .careers-positions .position-card .position-meta .meta-item svg {
  color: rgba(255, 255, 255, 0.4);
}
.wrap-careers-new .careers-positions .position-card .position-arrow {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.wrap-careers-new .careers-positions .positions-empty {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.wrap-careers-new .careers-positions .positions-empty .empty-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.3);
}
.wrap-careers-new .careers-positions .positions-empty h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wrap-careers-new .careers-positions .positions-empty p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}
.wrap-careers-new .careers-positions .positions-empty .btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #e80c8e, #c00a75);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.wrap-careers-new .careers-positions .positions-empty .btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 12, 142, 0.3);
}
.wrap-careers-new .careers-cta {
  padding: 60px 0 100px;
}
@media screen and (min-width: 767px) {
  .wrap-careers-new .careers-cta {
    padding: 80px 0 120px;
  }
}
.wrap-careers-new .careers-cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}
.wrap-careers-new .careers-cta .cta-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}
.wrap-careers-new .careers-cta .cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}
.wrap-careers-new .careers-cta .cta-content .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #e80c8e, #c00a75);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.wrap-careers-new .careers-cta .cta-content .cta-button svg {
  transition: transform 0.3s ease;
}
.wrap-careers-new .careers-cta .cta-content .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 12, 142, 0.3);
}
.wrap-careers-new .careers-cta .cta-content .cta-button:hover svg {
  transform: translateX(4px);
}

.wrap-single-job {
  background: linear-gradient(180deg, #01143C 0%, #020B1F 100%);
  min-height: 100vh;
  font-family: Orkney, sans-serif;
  color: #fff;
}
.wrap-single-job .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .wrap-single-job .container {
    padding: 0 40px;
  }
}
.wrap-single-job .job-hero {
  padding: 160px 0 50px;
}
@media screen and (min-width: 767px) {
  .wrap-single-job .job-hero {
    padding: 180px 0 60px;
  }
}
.wrap-single-job .job-hero .job-hero-content {
  max-width: 700px;
}
.wrap-single-job .job-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}
.wrap-single-job .job-hero .back-link:hover {
  color: #e80c8e;
}
.wrap-single-job .job-hero .job-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.wrap-single-job .job-hero .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.wrap-single-job .job-hero .job-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.wrap-single-job .job-hero .job-meta .meta-item svg {
  color: #e80c8e;
}
.wrap-single-job .job-content {
  padding: 40px 0 100px;
}
@media screen and (min-width: 767px) {
  .wrap-single-job .job-content {
    padding: 60px 0 120px;
  }
}
.wrap-single-job .job-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .wrap-single-job .job-grid {
    grid-template-columns: 1fr 360px;
    gap: 60px;
  }
}
.wrap-single-job .job-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wrap-single-job .job-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wrap-single-job .job-section h2 svg {
  color: #e80c8e;
}
.wrap-single-job .job-section .job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wrap-single-job .job-section .job-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.wrap-single-job .job-section .job-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #e80c8e;
  border-radius: 50%;
}
.wrap-single-job .job-section .job-list li:last-child {
  margin-bottom: 0;
}
.wrap-single-job .job-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 992px) {
  .wrap-single-job .job-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}
.wrap-single-job .apply-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
}
.wrap-single-job .apply-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wrap-single-job .apply-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.wrap-single-job .apply-card .btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #e80c8e, #c00a75);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.wrap-single-job .apply-card .btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 12, 142, 0.3);
}
.wrap-single-job .apply-card .apply-email {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.wrap-single-job .apply-card .apply-email a {
  display: block;
  margin-top: 4px;
  color: #e80c8e;
  text-decoration: none;
}
.wrap-single-job .apply-card .apply-email a:hover {
  text-decoration: underline;
}
.wrap-single-job .share-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}
.wrap-single-job .share-card h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.wrap-single-job .share-card .share-buttons {
  display: flex;
  gap: 12px;
}
.wrap-single-job .share-card .share-buttons .share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.wrap-single-job .share-card .share-buttons .share-btn:hover {
  background: #e80c8e;
  border-color: #e80c8e;
  color: #fff;
  transform: translateY(-3px);
}
