:root {
  --primary-color: #003AC5;
  --heding-color:#1D54DD;
  --secondary-color: #34a853;
  --accent-color-1: #fbbc04;
  --accent-color-2: #ea4335;
  --text-primary: #333;
  --text-secondary: #1E1E1E;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Courier New", monospace;
  --font-size-hero: clamp(40px, 8vw, 64px);
  --font-size-large: clamp(20px, 2.5vw, 24px);
  --font-size-medium: clamp(16px, 2vw, 19px);
  --font-size-base: clamp(14px, 1.5vw, 16px);
  --font-size-small: clamp(12px, 1.2vw, 14px);
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
  --spacing-1xl: 50px;
  --spacing-2xl: 60px;
  --spacing-3xl: 100px;
  --breakpoint-tablet: 768px;
  --breakpoint-mobile: 480px;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background-light);
  color: var(--text-primary);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-container {
  height: 100vh;
  background: url(images/herobg.svg) center top no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-container .container {
  height: 100%;
}

.navbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  padding: 0 var(--spacing-md);
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  font-family: var(--font-heading);
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  z-index: 9999;
}
.logo:hover {
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger:hover .hamburger-line {
  background: #000;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--text-primary);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--text-primary);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: var(--spacing-xs);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-1xl);
}
.nav-links a {
  text-decoration: none;
  color: #0A1630;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 14px);
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 5px;
}
.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-3xl) 10px;
  width: 100%;
  flex: 1;
  height: 100%;
}

.hero-interactive {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100px;
  margin-bottom: var(--spacing-lg);
  cursor: pointer;
}
.hero-interactive .hero-loader-text {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: scale(1) translateY(0px);
  filter: blur(0px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-interactive .hero-loader-text img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-interactive .hero-loader-text .desktop {
  display: block;
}
.hero-interactive .hero-loader-text .mob {
  display: none;
}
.hero-interactive:hover .hero-loader-text {
  opacity: 0;
  filter: blur(3px);
}
.hero-interactive:hover .hero-loader-text svg {
  transform: scale(0);
}
.hero-interactive:hover .hero-clear-text {
  opacity: 1;
}
.hero-interactive .hero-clear-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-interactive .hero-clear-text .desktop {
  display: block;
}
.hero-interactive .hero-clear-text .mob {
  display: none;
}
.hero-interactive .hero-clear-text .hero-title {
  font-size: var(--font-size-hero);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
  background: linear-gradient(0deg, #ffffff 0%, #ffffff 25%, #0047FF 25%, #0047FF 50%, #ffffff 50%, #ffffff 75%, #0047FF 75%, #0047FF 100%);
  background-size: 100% 13px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slidePatternVertical 9s linear infinite;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  color: var(--primary-color);
  overflow: hidden;
  font-family: var(--font-heading);
}
.hero-title.loaded {
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease-in-out infinite;
  font-family: var(--font-heading);
  text-shadow: none;
}

.char {
  display: inline-block;
  opacity: 0;
}

.loading-char {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(66, 133, 244, 0.8);
  animation: flicker 0.1s infinite;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-family: var(--font-body);
  color: #1E1E1E;
  max-width: 750px;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes slidePattern {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 16px 0px;
  }
}
@keyframes slidePatternVertical {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 0px 16px;
  }
}
.about-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 460px;
  height: auto;
}
.about-section::before {
  content: "";
  position: absolute;
  background: url(images/animation-bg.gif) center no-repeat;
  height: 400px;
  width: 100%;
  bottom: 0;
  background-size: cover;
}

@keyframes waveFlow {
  0%, 100% {
    transform: translateX(0) translateY(0) scaleX(1);
  }
  25% {
    transform: translateX(2%) translateY(-8px) scaleX(1.02);
  }
  50% {
    transform: translateX(0) translateY(-15px) scaleX(1.05);
  }
  75% {
    transform: translateX(-2%) translateY(-8px) scaleX(1.02);
  }
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary-color);
}
.about-title .title-line {
  display: block;
}

.about-description .about-heading {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}
.about-description .about-paragraph {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 14px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}
.about-description .about-tagline {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2vw, 18px);
  color: #1D54DD;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.services-section {
  height: auto;
  background: #003AC5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 200px 0;
}

.services-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--spacing-xl);
}

.services-description {
  font-family: var(--font-body);
  font-size: clamp(13px, 2vw, 14px);
  color: var(--white);
  line-height: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
}

.service-details-section {
  background-color: #000;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.service-details-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.service-detail-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background-color: #000;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  align-items: flex-end;
  padding-bottom: 180px;
}
.service-detail-item.active {
  opacity: 1;
}
.service-detail-item:nth-child(1) {
  background: url(images/serbg-1.png) center no-repeat;
  background-size: cover;
}
.service-detail-item:nth-child(2) {
  background: url(images/serbg-2.png) center no-repeat;
  background-size: cover;
}
.service-detail-item:nth-child(3) {
  background: url(images/serbg-3.png) center no-repeat;
  background-size: cover;
}
.service-detail-item:nth-child(4) {
  background: url(images/serbg-4.png) center no-repeat;
  background-size: cover;
}

.service-detail-content {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  text-align: left;
  margin: 0 auto;
  padding: 0 10px;
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.service-detail-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(14px, 5vw, 16px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.service-detail-sub {
  font-family: var(--font-heading);
  font-size: clamp(13px, 5vw, 14px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-md);
  line-height: 1.1;
}

.service-detail-list {
  font-family: var(--font-heading);
  font-size: clamp(13px, 5vw, 14px);
  font-weight: 600;
  color: var(--white);
  margin-top: 5px;
  line-height: 1.1;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail-list li {
  list-style: disc;
}

.service-detail-description {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.5vw, 14px);
  color: #fff;
  line-height: 1.6;
  max-width: 500px;
}

.service-nav-thumbs {
  position: fixed;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
  padding: 0 10px;
  max-width: 1200px;
  width: 100%;
}

.service-thumb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: all var(--transition-fast);
  position: relative;
  padding: 0 var(--spacing-sm);
}
.service-thumb::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transition: background var(--transition-fast);
}
.service-thumb.active .thumb-number {
  color: var(--color-primary);
}
.service-thumb.active .thumb-label {
  color: var(--white);
}
.service-thumb.active::before {
  background: var(--white);
  height: 1px;
}
.service-thumb.active::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
}

.thumb-number {
  font-family: var(--font-heading);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.thumb-label {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-align: left;
  position: relative;
  z-index: 2;
}

.why-section {
  min-height: auto;
  height: auto;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--spacing-3xl) 0;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .why-container {
    overflow: hidden;
    padding: 0;
  }
}

.why-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 70px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .why-grid {
    display: flex;
    scroll-behavior: smooth;
    gap: 0;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}

.why-carousel-indicators {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
}
@media (max-width: 768px) {
  .why-carousel-indicators {
    display: flex;
  }
}

.why-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.why-indicator.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.why-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.why-card {
  padding: 0;
  transition: all var(--transition-fast);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(0) translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .why-card {
    flex: 0 0 100%;
    width: 100%;
    opacity: 1;
    transform: none;
    transition: transform 0.3s ease;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
  }
}
.why-card.animate-in {
  opacity: 1;
}
.why-card.animate-in:nth-child(1) {
  transform: translateX(-20px) translateY(-30px);
  transition-delay: 0.1s;
}
@media (max-width: 768px) {
  .why-card.animate-in:nth-child(1) {
    transform: none;
  }
}
.why-card.animate-in:nth-child(2) {
  transform: translateX(0) translateY(-30px);
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .why-card.animate-in:nth-child(2) {
    transform: none;
  }
}
.why-card.animate-in:nth-child(3) {
  transform: translateX(20px) translateY(-30px);
  transition-delay: 0.3s;
}
@media (max-width: 768px) {
  .why-card.animate-in:nth-child(3) {
    transform: none;
  }
}

.why-icon-container {
  width: 100%;
  height: 280px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-icon {
  width: 100%;
  height: 100%;
}
.why-icon svg {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
}

.atomic-icon svg {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.atomic-icon svg .orbit {
  opacity: 1;
  stroke: #1D54DD;
}
.atomic-icon svg .orbit-boundary {
  opacity: 1;
  stroke: #1D54DD;
}
.atomic-icon svg .orbit-inner-1,
.atomic-icon svg .orbit-inner-2,
.atomic-icon svg .orbit-inner-3,
.atomic-icon svg .orbit-inner-4,
.atomic-icon svg .orbit-inner-5,
.atomic-icon svg .orbit-inner-6 {
  opacity: 1;
  stroke: #1D54DD;
}
.atomic-icon svg .orbit-mid-1,
.atomic-icon svg .orbit-mid-2,
.atomic-icon svg .orbit-mid-3,
.atomic-icon svg .orbit-mid-4,
.atomic-icon svg .orbit-mid-5,
.atomic-icon svg .orbit-mid-6 {
  opacity: 1;
  stroke: rgba(255, 255, 255, 0.5);
}
.atomic-icon svg .nucleus {
  opacity: 1;
  stroke: #1D54DD;
}

.atomic-card:hover .atomic-icon svg {
  transform: rotate(130deg);
}
.atomic-card:hover .atomic-icon svg .orbit-1, .atomic-card:hover .atomic-icon svg .orbit-2 {
  stroke: rgba(255, 255, 255, 0.6);
}

.sphere-icon svg .sphere-outline {
  opacity: 1;
  stroke: #1D54DD;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sphere-icon svg .meridian-main-1,
.sphere-icon svg .meridian-main-2 {
  opacity: 1;
  stroke: #1D54DD;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sphere-icon svg .meridian-center {
  opacity: 1;
  stroke: #1D54DD;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sphere-icon svg .meridian-hover-1,
.sphere-icon svg .meridian-hover-2,
.sphere-icon svg .meridian-hover-3,
.sphere-icon svg .meridian-hover-4,
.sphere-icon svg .meridian-hover-5,
.sphere-icon svg .meridian-hover-6 {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-card:hover .sphere-icon svg .meridian-hover-1 {
  opacity: 1;
  transition-delay: 0s;
}
.sphere-card:hover .sphere-icon svg .meridian-hover-4 {
  opacity: 1;
  transition-delay: 0.1s;
}
.sphere-card:hover .sphere-icon svg .meridian-hover-6 {
  opacity: 1;
  transition-delay: 0.2s;
}

.multi-domain-icon svg circle {
  transform-origin: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.multi-domain-icon svg .circle-4, .multi-domain-icon svg .circle-5 {
  stroke: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translate(0, 0);
}
.multi-domain-icon svg .circle-1, .multi-domain-icon svg .circle-2, .multi-domain-icon svg .circle-3 {
  opacity: 1;
  stroke: rgba(66, 133, 244, 0.7);
}

.multi-domain:hover .circle-4 {
  stroke: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0s;
}
.multi-domain:hover .circle-5 {
  stroke: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.1s;
}

.why-card-content {
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 600;
  color: #6EA7F9;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.why-card-description {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.5vw, 14px);
  color: #F4F6F8;
  line-height: 1.6;
}

.team-wrapper {
  position: relative;
  height: 200vh;
}

.team-section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/team-posilenz-bg.png") center/cover no-repeat;
}

.team-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: var(--spacing-2xl) 10px;
}

.team-content {
  max-width: 700px;
}

.team-label {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.team-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  font-family: var(--font-heading);
}

.team-description {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--white);
  line-height: 1.6;
  max-width: 500px;
  padding-top: var(--spacing-md);
}

.join-section {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 100px;
  left: 0;
  right: 0;
  background: #F8F8F9;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.join-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.join-content {
  display: contents;
}

.join-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 600;
  color: #0A1630;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.join-description {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.join-description p {
  font-size: clamp(13px, 1.5vw, 14px);
  color: #1E1E1E;
  line-height: 1.6;
}
.join-description .job-title-name {
  font-size: clamp(18px, 1.5vw, 20px);
  color: #1D54DD;
  font-weight: 500;
  line-height: 1.6;
}
.join-description .join-cta-text {
  font-weight: 600;
  color: var(--color-text);
}

.job-listings {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding-top: 40px;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #E4E4E4;
  text-decoration: none;
  color: #1D54DD;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 600;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
}
.job-item:hover {
  padding-left: var(--spacing-md);
  border-bottom: 1px solid #1D54DD;
}
.job-item:hover .job-arrow {
  transform: translateX(8px);
  color: #1D54DD;
}

.job-arrow {
  color: #000000;
  transition: transform var(--transition-fast);
  font-weight: 300;
}

.insights-section {
  min-height: auto;
  height: auto;
  background: var(--white);
  padding: var(--spacing-3xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
}

.insights-title {
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 700;
  color: #0A1630;
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.insights-tab-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.insights-tab-head .insights-tabs {
  display: flex;
  gap: var(--spacing-md);
}
.insights-tab-head .insights-tab {
  padding: var(--spacing-sm) var(--spacing-xl);
  background: transparent;
  border: 1px solid #E9E3E3;
  border-radius: 50px;
  color: #000;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.insights-tab-head .insights-tab.active {
  background: #000;
  color: var(--white);
  border-color: #000;
}
.insights-tab-head .insights-tab:hover {
  background: #000;
  color: var(--white);
  border-color: #000;
}

.insights-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.insights-grid {
  display: flex;
  gap: var(--spacing-xl);
  scroll-behavior: smooth;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.insight-card {
  background: #F8F8F9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  width: calc((100vw - 48px - 72px) / 3.5);
  flex-shrink: 0;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.insight-card.card-img-1::before {
  background-image: url("images/news-1.png");
}
.insight-card.card-img-2::before {
  background-image: url("images/news-2.png");
}
.insight-card.card-img-3::before {
  background-image: url("images/news-3.png");
}
.insight-card.card-img-4::before {
  background-image: url("images/news-4.png");
}
.insight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1;
}
.insight-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.insight-card:hover::before, .insight-card:hover::after {
  opacity: 1;
}
.insight-card:hover .insight-content .insight-category {
  color: var(--white);
}
.insight-card:hover .insight-content .insight-title-text {
  color: var(--white);
}
.insight-card:hover .insight-footer {
  border-top: 1px solid var(--white);
}
.insight-card:hover .insight-footer .insight-date-number {
  color: var(--white);
}
.insight-card:hover .insight-footer .insight-date-text {
  color: var(--white);
}
.insight-card > * {
  position: relative;
  z-index: 2;
}

.insight-content {
  flex: 1;
}

.insight-category {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #5A5C5F;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.insight-title-text {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  color: #5A5C5F;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.insight-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid #DCDEE0;
}

.insight-date-number {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #1D54DD;
  font-family: var(--font-heading);
}

.insight-date-text {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #0A1630;
}

.insights-nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-md);
}

.insights-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #E9E3E3;
  background: transparent;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.insights-nav-btn:hover {
  background: #1D54DD;
  border-color: #1D54DD;
  transform: scale(1.05);
}
.insights-nav-btn:hover svg {
  color: #fff;
}
.insights-nav-btn svg {
  width: 20px;
  height: 20px;
}

.contact-section {
  height: auto;
  background: var(--primary-color);
  padding: var(--spacing-3xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
  padding: 0 10px;
}

.contact-title {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: var(--spacing-md) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}
.form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-textarea {
  resize: vertical;
  min-height: 50px;
}

.form-submit {
  padding: 14px 32px;
  background: #ffffff;
  color: #0047FF;
  border: none;
  border-radius: 50px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  align-self: flex-start;
  margin-top: var(--spacing-md);
}
.form-submit:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-section {
  background: #0a1628;
  padding: var(--spacing-3xl) 10px var(--spacing-xl);
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: var(--spacing-1xl);
  padding-bottom: 45px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.footer-logo-text {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.footer-location {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-location-title {
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 400;
  color: #C4C4C4;
  margin: 0;
}

.footer-location-info {
  font-size: clamp(12px, 1.2vw, 12px);
  color: #6EA7F9;
  margin: 0;
  text-decoration: none;
}

.footer-location-text {
  font-size: clamp(12px, 1.2vw, 12px);
  color: #73758C;
  margin: 0;
  line-height: 22px;
}

.footer-bottom {
  align-items: center;
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: var(--spacing-1xl);
  padding-top: 15px;
}

.footer-social {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-social-link {
  color: #6EA7F9;
  transition: color var(--transition-fast);
}
.footer-social-link:hover {
  color: #ffffff;
}
.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  font-size: clamp(12px, 1.2vw, 14px);
}

.footer-legal-link {
  color: #626262;
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: clamp(12px, 1.2vw, 14px);
}
.footer-legal-link:hover {
  color: #ffffff;
}

.footer-copyright {
  color: #626262;
  font-size: clamp(12px, 1.2vw, 14px);
}

@media (max-width: 1000px) {
  .services-section {
    padding: 80px 0 80px 0;
  }
  .services-container {
    padding: 0 var(--spacing-md);
  }
  html {
    overflow-x: hidden;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-loader-text .desktop {
    display: none !important;
  }
  .hero-loader-text .mob {
    display: block !important;
  }
  .hero-clear-text .desktop {
    display: none !important;
  }
  .hero-clear-text .mob {
    display: block !important;
  }
  .footer-locations {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
  }
  .service-details-section {
    padding: 0 !important;
  }
  .navbar {
    padding: 0 var(--spacing-sm);
    position: relative;
  }
  .navbar-container {
    padding: var(--spacing-sm) 0;
  }
  .hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    background: none;
    border-radius: 50%;
    padding: 12px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  .hamburger:hover {
    background: none;
    transform: scale(1.1);
  }
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--text-primary);
  }
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--text-primary);
  }
  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    padding: 0;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
  .nav-links.active {
    top: 0;
    z-index: 999;
    background: #fff;
  }
  .nav-links li {
    width: auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
  }
  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links a {
    display: block;
    padding: var(--spacing-lg) var(--spacing-xl);
    color: var(--text-primary);
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .nav-links a:hover {
    color: var(--primary-color);
    background: rgba(0, 71, 255, 0.05);
    transform: scale(1.05);
  }
  .nav-links a.active {
    color: var(--primary-color);
    background: rgba(0, 71, 255, 0.1);
  }
  body.menu-open .nav-links {
    background: rgba(255, 255, 255, 0.99) !important;
  }
  .hero-content {
    padding: var(--spacing-3xl) 10px var(--spacing-2xl);
  }
  .hero-interactive .hero-clear-text .hero-title {
    line-height: 1.2;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: left;
  }
  .about-container {
    padding: 0 var(--spacing-md);
  }
  .about-section {
    height: auto;
    min-height: 100vh;
    padding: var(--spacing-3xl) 0;
  }
  .about-section::before {
    position: relative;
  }
  .about-container {
    padding-top: 60px;
  }
  .services-intro {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  .why-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .insights-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  .insights-container {
    padding: 0 var(--spacing-md);
  }
  .insight-card {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    min-height: 250px;
    padding: var(--spacing-md);
  }
  .insights-tabs {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  .insights-tab {
    padding: 10px 20px;
  }
  .insights-nav-btn {
    width: 40px;
    height: 40px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
  }
  .contact-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  .join-section {
    position: relative;
    bottom: 0;
  }
  .contact-title {
    text-align: center;
  }
  .form-submit {
    width: 100%;
    text-align: center;
  }
  .footer-section {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .why-card.animate-in:nth-child(1) {
    transform: none;
  }
  .why-card.animate-in:nth-child(2) {
    transform: none;
  }
  .why-card.animate-in:nth-child(3) {
    transform: none;
  }
  .team-title .none {
    display: none;
  }
  .join-title .none {
    display: none;
  }
  .services-title .none {
    display: none;
  }
}
@media (max-width: 480px) {
  .join-section {
    padding: 50px 0;
  }
  .nav-links {
    gap: var(--spacing-sm);
  }
  .about-section {
    padding: var(--spacing-2xl) 0;
  }
  .service-detail-content {
    margin-left: 0;
    padding: 0 var(--spacing-md);
  }
  .why-container {
    padding: 0 0;
  }
  .service-details-section {
    position: relative;
  }
  .service-nav-thumbs {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    transition: transform 0.3s ease-out;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-title {
    margin-bottom: var(--spacing-xl);
  }
  .why-icon-container {
    height: 200px;
  }
  .why-icon {
    width: 120px;
    height: 120px;
  }
  .why-card-content {
    padding: var(--spacing-md);
  }
  .team-section {
    padding: 0;
    min-height: auto;
    height: auto;
  }
  .team-wrapper {
    height: auto;
  }
  .join-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md);
  }
  .join-description {
    gap: var(--spacing-sm);
  }
  .job-listings {
    grid-column: 1;
  }
  .job-item {
    padding: var(--spacing-md) 0;
  }
  .insights-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
  }
  .insights-container {
    padding: 0;
  }
  .insight-card {
    width: calc(100vw - 32px);
    min-height: 250px;
    padding: var(--spacing-md);
  }
  .insights-tabs {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  .insights-tab {
    padding: 10px 20px;
  }
  .insights-nav-btn {
    width: 40px;
    height: 40px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
  }
  .contact-title .none {
    display: none;
  }
  .contact-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  .contact-title {
    text-align: center;
  }
  .form-submit {
    width: 100%;
    text-align: center;
  }
  .footer-section {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}/*# sourceMappingURL=style.css.map */