* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.on-light .navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.header.scrolled.on-light .navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.header.scrolled .nav-container {
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.header.scrolled .logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  line-height: 1.5;
}

.header.on-light .nav-link {
  color: rgba(15, 23, 42, 0.75);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.header.on-light .nav-link:hover,
.header.on-light .nav-link.active {
  color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header.scrolled .nav-link {
  padding: 0.4rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.btn-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 2rem;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(1, 110, 239, 0.3);
  white-space: nowrap;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-login:hover::before {
  transform: translateX(100%);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header.on-light .nav-toggle:hover {
  background: rgba(15, 23, 42, 0.05);
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

.header.on-light .nav-toggle span {
  background: rgba(15, 23, 42, 0.85);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a0e27 0%, #141a32 40%, #1d2741 70%, #0a0e27 100%);
  z-index: -1;
}

.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(1, 110, 239, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 110, 239, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary-blue-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #016EEF, #016cefe5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-large {
  height: 52px;
  padding: 0 2rem;
  font-size: 16px;
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-primary);
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(1, 110, 239, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.45);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.geometric-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 50%;
  border: 2px solid rgba(1, 110, 239, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(1, 110, 239, 0.3),
    inset 0 0 40px rgba(1, 110, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Rings - FIXED CENTERING WITH ROTATION */
.circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 110, 239, 0.3);
  box-shadow: 0 0 15px rgba(1, 110, 239, 0.1);
}

.ring-1 {
  width: 240px;
  height: 240px;
  border-style: dashed;
  border-width: 2px;
  animation: ringRotate1 20s linear infinite;
}

.ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(255, 255, 255, 0.15);
  border-width: 1.5px;
  animation: ringRotate2 30s linear infinite;
}

.ring-3 {
  width: 360px;
  height: 360px;
  border-style: dashed;
  border-width: 1.5px;
  border-color: rgba(1, 110, 239, 0.2);
  animation: ringRotate3 40s linear infinite;
}

/* Ring Rotation Animations - KEEPING TRANSLATE */
@keyframes ringRotate1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ringRotate2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes ringRotate3 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.center-icon {
  position: relative;
  z-index: 11;
  color: var(--primary-blue-light);
  animation: floatIcon 3s ease-in-out infinite;
}

.center-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(1, 110, 239, 0.4));
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Feature Cards */
.feature-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1.5px solid rgba(1, 110, 239, 0.3);
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(1, 110, 239, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  max-width: 250px;
  z-index: 100;
}

.feature-card:hover {
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(1, 110, 239, 0.4);
  border-color: rgba(1, 110, 239, 0.5);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 110, 239, 0.3), rgba(0, 212, 255, 0.2));
  border-radius: 16px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(1, 110, 239, 0.4);
}

.card-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.card-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.card-1 {
  top: 10%;
  right: -10%;
  animation: cardFloat1 3s ease-in-out infinite;
}

.card-2 {
  top: 40%;
  left: -20%;
  animation: cardFloat2 3.5s ease-in-out infinite;
}

.card-3 {
  bottom: 5%;
  right: -10%;
  animation: cardFloat3 4s ease-in-out infinite;
}

@keyframes cardFloat1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloat2 {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

@keyframes cardFloat3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.services-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, #e8f1fd 0%, #f0f7fe 20%, #f8fbff 40%, #ffffff 60%, #f8fbff 80%, #f0f7fe 100%);
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #0a0e27 0%, rgba(10, 14, 39, 0.95) 10%, rgba(10, 14, 39, 0.85) 20%, rgba(10, 14, 39, 0.7) 30%, rgba(10, 14, 39, 0.5) 40%, rgba(10, 14, 39, 0.3) 50%, rgba(10, 14, 39, 0.15) 60%, rgba(232, 241, 253, 0.3) 75%, rgba(232, 241, 253, 0.1) 85%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.75rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.25);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto 3.5rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafcfe 100%);
  padding: 2.5rem 2rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(1, 110, 239, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(1, 110, 239, 0.3);
}

.service-number {
  position: absolute;
  top: -18px;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid #ffffff;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.75rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.icon-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
}

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
}


.about-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
  overflow: hidden;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1e293b;
  font-weight: 500;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.about-intro strong,
.about-description strong {
  color: #016EEF;
  font-weight: 700;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(1, 110, 239, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(1, 110, 239, 0.35);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-section {
  background: #f8fafc;
  border-radius: 32px;
  padding: 5rem;
  border: 1px solid rgba(1, 110, 239, 0.05);
  margin-bottom: 6rem;
}

.sub-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  position: relative;
}

.sub-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border-radius: 4px;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1e293b;
  font-weight: 600;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #016EEF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.why-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.why-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
}

.due-diligence-section {
  margin-bottom: 6rem;
}

.sub-heading-center {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  position: relative;
}

.sub-heading-center::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border-radius: 4px;
}

.dd-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dd-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.dd-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(1, 110, 239, 0.1);
  border-color: rgba(1, 110, 239, 0.2);
}

.dd-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 110, 239, 0.1);
  border-radius: 12px;
  color: #016EEF;
  flex-shrink: 0;
}

.dd-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

.mission-section {
  background: linear-gradient(135deg, #0a0e27 0%, #1d2741 100%);
  padding: 5rem 4rem;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(10, 14, 39, 0.4);
  border: 1px solid rgba(1, 110, 239, 0.3);
}

.mission-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mission-text {
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.mission-text:last-child {
  margin-bottom: 0;
  font-size: 1.15rem;
  opacity: 0.8;
}

.mission-text strong {
  color: #ffffff;
  font-weight: 700;
}

.reviews-section {
  min-height: 100vh;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a0e27 0%, #141a32 40%, #1d2741 70%, #0a0e27 100%);
  z-index: -1;
}

.reviews-background .animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(1, 110, 239, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 110, 239, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 10%, rgba(248, 251, 255, 0.7) 20%, rgba(220, 235, 250, 0.5) 30%, rgba(180, 210, 240, 0.3) 40%, rgba(120, 160, 210, 0.2) 50%, rgba(60, 100, 170, 0.1) 60%, rgba(20, 40, 100, 0.05) 75%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.reviews-section .section-title {
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto 3.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #016EEF 0%, #0180ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(1, 110, 239, 0.3);
}

.quote-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border-radius: 16px;
  color: #ffffff;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.3);
}

.review-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #334155;
  font-weight: 500;
  margin-bottom: 2rem;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.author-company {
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
}

.review-source span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

.contact-section {
  padding: 6rem 0 8rem;
  position: relative;
  background: linear-gradient(180deg, #e8f1fd 0%, #f0f7fe 20%, #f8fbff 40%, #ffffff 60%, #f8fbff 80%, #f0f7fe 100%);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #0a0e27 0%, rgba(10, 14, 39, 0.9) 10%, rgba(232, 241, 253, 0.8) 50%, rgba(232, 241, 253, 0.1) 100%);
  z-index: 0;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.contact-form-container {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(1, 110, 239, 0.05);
  max-width: 700px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: #016EEF;
  box-shadow: 0 0 0 4px rgba(1, 110, 239, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(1, 110, 239, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(1, 110, 239, 0.35);
}

.quick-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.quick-contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid rgba(1, 110, 239, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(1, 110, 239, 0.15);
  border-color: #016EEF;
  color: #016EEF;
  background: #f8fbff;
}

.detailed-contact-link {
  text-align: center;
  margin-top: 2.5rem;
}

.detailed-contact-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 2rem;
  background: transparent;
  color: #016EEF;
  border: 2px solid #016EEF;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.detailed-contact-link a:hover {
  background: #016EEF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 110, 239, 0.25);
}

.detailed-contact-link a svg {
  transition: transform 0.3s ease;
}

.detailed-contact-link a:hover svg {
  transform: translateX(4px);
}

body.menu-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(1, 110, 239, 0.6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

::selection {
  background: var(--primary-blue);
  color: var(--white);
}

*:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .header.on-light .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(15, 23, 42, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1rem;
    margin: 0.25rem 0;
    border-radius: 8px;
  }
}


/* Improve section description readability */
.section-description {
  font-size: 1.0625rem;
  /* Slightly smaller */
  line-height: 1.8;
  /* More breathing room */
  color: #475569;
  /* Slightly darker for better readability */
  max-width: 950px;
  /* Limit width */
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  /* Medium weight */
}

.service-description strong {
  color: #016EEF;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-description {
    font-size: 1rem;
    line-height: 1.7;
  }
}




/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(1, 110, 239, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(1, 110, 239, 0.15);
  border-color: rgba(1, 110, 239, 0.3);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 0.9375rem;
  }
}