*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* {
    -webkit-tap-highlight-color: transparent;
}
body { font-family: 'Poppins', sans-serif; background: #00071c; overflow-x: clip; max-width: 100vw; }
@media (max-width: 880px) {
  .techno-hero,
  .techno-hero-container,
  .techno-hero-right,
  .ts-section,
  .ts-container,
  .ts-honeycomb-scale,
  .wcu-section,
  .wcu-inner,
  .ict-section,
  .ict-container,
  .ict-right,
  .dom-section,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.nav-logo {
  position: relative;
  z-index: 1;
}
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background: transparent;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-nav.nav-hidden {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}
.hero-nav.nav-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 200;
  background: #0d0d0d;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.sticky-nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.nav-capsule {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  border-radius: 50px;
  height: 60px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav-item a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  height: 60px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .nav-item:not(.active) a:hover {
    color: #1a56db;
  }
}
.nav-item.active a {
  color: #1a56db;
}
.active-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #1a56db;
  flex-shrink: 0;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 300;
  padding: 0;
  margin-left: auto;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-nav .hamburger-btn span {
  background: #ffffff;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #111111;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.mobile-menu-overlay.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 260;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.mobile-nav-links .nav-item a {
  font-size: 20px;
  padding: 14px 24px;
  height: auto;
  justify-content: center;
}
@media (max-width: 991px) {
  .nav-capsule {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .nav-container {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .nav-logo-img {
    height: 56px;
  }
  .about-bg .about-overlay { background: rgba(0, 0, 0, 0.25); }
  .page-contact .about-bg { background-image: url('/assets/images/contact_mobile.webp'); background-size: cover; background-position: center center; }
  .page-techno-services .about-bg { background-image: url('/assets/images/techno/services_mobile.webp'); background-size: cover; }
  .page-techno-rd .about-bg { background-image: url('/assets/images/techno/r_d_mobile.webp'); background-size: cover; }
  .page-techno-careers .about-bg { background-image: url('/assets/images/techno/careers_mobile.webp'); background-size: cover; }
}
.site-footer {
  position: relative;
  background: #111417;
  overflow: hidden;
  padding: 90px 0 0;
}
.footer-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.footer-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.06) 0%, transparent 70%);
  right: -180px;
  top: -200px;
}
.footer-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.04) 0%, transparent 70%);
  left: 100px;
  bottom: 80px;
}
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.footer-newsletter-row {
  margin-bottom: 80px;
}
.footer-newsletter {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 7px 7px 7px 32px;
  transition: border-color 0.3s ease;
}
.footer-newsletter:focus-within {
  border-color: rgba(26,86,219,0.5);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}
.newsletter-input::placeholder {
  color: #555555;
}
.newsletter-btn {
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .newsletter-btn:hover {
    background: #1446b8;
    transform: translateY(-1px);
  }
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.4fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  margin-bottom: 22px;
  text-align: center;
}
.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.footer-brand-desc {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 300px;
  text-align: justify;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #aaaaaa;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .social-icon:hover {
    background: #1a56db;
    color: #ffffff;
    border-color: #1a56db;
  }
}
.footer-col-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #1a56db;
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a56db;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover {
    color: #1a56db;
    gap: 12px;
  }
  .footer-links a:hover::before {
    opacity: 1;
  }
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  color: #1a56db;
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px;
}
.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-link {
  color: #666666;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-link:hover {
    color: #1a56db;
  }
}
.contact-info-text {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.75;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-link:hover .contact-info-text {
    color: #1a56db;
  }
}
.footer-bottom {
  text-align: center;
  padding: 28px 0 36px;
}
.footer-divider {
  display: none;
}
.footer-copyright {
  color: #444444;
  font-size: 13px;
}
.footer-brand-name {
  color: #1a56db;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .site-footer { padding-top: 50px; }
  .footer-container { padding: 0 20px; }
  .footer-columns { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-logo-img { margin: 0 auto; }
  .footer-brand-desc { max-width: 100%; font-size: 13px; }
  .footer-col-heading { font-size: 14px; margin-bottom: 18px; }
  .footer-newsletter-row { margin-bottom: 36px; }
  .footer-newsletter { flex-direction: column; padding: 16px; border-radius: 16px; gap: 12px; }
  .newsletter-input { font-size: 13px; }
  .newsletter-btn { width: 100%; text-align: center; padding: 14px; }
  .footer-socials { gap: 8px; flex-wrap: wrap; }
  .footer-links a { font-size: 13px; }
  .contact-link { font-size: 13px; }
  .contact-info-text { font-size: 13px; }
  .footer-copyright { font-size: 12px; text-align:center; }
  .footer-brand-name{display:block;}
}
@media (max-width: 480px) {
  .footer-container { padding: 0 16px; }
  .social-icon { width: 36px; height: 36px; }
}
.techno-hero {
  position: relative;
  min-height: 100vh;
  background: #00071c;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.techno-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 60px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 90px);
}
.techno-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 0 8px #3b82f6;
}
.eyebrow-sep {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 3.6vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-headline-blue {
  color: #3b82f6;
}
.hero-subtext {
  font-size: 15px;
  color: rgba(200,215,255,0.7);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  text-align: justify;
}
.hero-services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .hero-service-item:hover {
    opacity: 0.85;
  }
}
.hero-service-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  height: auto;
  background: rgba(96, 165, 250, 0.25);
}
.hero-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 26px;
  margin-bottom: 4px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hero-service-icon:hover {
    background: rgba(59,130,246,0.2);
    box-shadow: 0 0 18px rgba(59,130,246,0.3);
    transform: scale(1.1);
  }
}
.hero-service-icon--purple { color: #a78bfa; border-color: rgba(167,139,250,0.25); background: rgba(167,139,250,0.1); }
.hero-service-icon--green  { color: #34d399; border-color: rgba(52,211,153,0.25);  background: rgba(52,211,153,0.1);  }
.hero-service-icon--orange { color: #fbbf24; border-color: rgba(251,191,36,0.25);  background: rgba(251,191,36,0.1);  }
.hero-service-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.3;
}
.hero-service-sub {
  font-size: 11px;
  color: rgba(180,200,255,0.55);
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.hero-cta-btn--primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #1a56db;
  color: #ffffff;
  border: 2px solid #1a56db;
  transition: color 0.35s ease, transform 0.2s ease, border-color 0.35s ease;
}
.hero-cta-btn--primary::before,
.hero-cta-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.hero-cta-btn--primary::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.hero-cta-btn--primary::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .hero-cta-btn--primary:hover {
    color: #1a56db;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .hero-cta-btn--primary:hover::before,
  .hero-cta-btn--primary:hover::after {
    transform: translateX(0);
  }
}
.hero-cta-btn--outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.25);
  transition: color 0.35s ease, transform 0.2s ease, border-color 0.35s ease;
}
.hero-cta-btn--outline::before,
.hero-cta-btn--outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.hero-cta-btn--outline::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.hero-cta-btn--outline::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .hero-cta-btn--outline:hover {
    color: #3b82f6;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .hero-cta-btn--outline:hover::before,
  .hero-cta-btn--outline:hover::after {
    transform: translateX(0);
  }
}
.techno-hero-right {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-student-img {
  position: absolute;
  top: 60px;
  left: 45%;
  transform: translateX(-50%);
  width: 115%;
  max-width: 780px;
  height: auto;
  object-fit: contain;
  object-position: top center;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #00071c 6%,
    #00071c 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #00071c 6%,
    #00071c 88%,
    transparent 100%
  );
}
.hero-placement-banner {
  width: 100%;
  margin-top: 22px;
  padding: 10px 0;
}
.hero-placement-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-placement-line {
  flex: 1;
  min-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6 40%, #3b82f6 60%, transparent);
  opacity: 0.5;
}
.hero-placement-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.hero-placement-icon svg {
  width: 28px;
  height: 28px;
}
.hero-placement-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (min-width: 881px) {
  .techno-hero-left .hero-placement-banner {
    display: none;
  }
  .techno-hero-right .hero-placement-banner {
    display: block;
  }
}
@media (max-width: 880px) {
  .techno-hero-right .hero-placement-banner {
    display: none;
  }
  .techno-hero-left .hero-placement-banner {
    display: block;
  }
}
.hero-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-orbit-center {
  position: absolute;
  top: 32%;
  left: 58%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-center-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.3);
  animation: orbitPulse 3s ease-out infinite;
}
.orbit-center-ring-1 {
  inset: -18px;
  animation-delay: 0s;
}
.orbit-center-ring-2 {
  inset: -36px;
  border-color: rgba(59,130,246,0.15);
  animation-delay: 1.5s;
}
@keyframes orbitPulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.15); }
}
.orbit-center-body {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,30,90,0.95) 0%, rgba(5,15,50,0.98) 100%);
  border: 2px solid rgba(59,130,246,0.6);
  box-shadow:
    0 0 0 6px rgba(59,130,246,0.08),
    0 0 40px rgba(59,130,246,0.25),
    inset 0 0 30px rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.orbit-center-accent {
  color: #3b82f6;
}
.orbit-bubble {
  position: absolute;
  z-index: 4;
  animation: bubbleFloat 4s ease-in-out infinite;
  touch-action: manipulation;
}
.orbit-bubble:nth-child(3)  { animation-delay: 0s; }
.orbit-bubble:nth-child(4)  { animation-delay: 0.6s; }
.orbit-bubble:nth-child(5)  { animation-delay: 1.2s; }
.orbit-bubble:nth-child(6)  { animation-delay: 1.8s; }
.orbit-bubble:nth-child(7)  { animation-delay: 2.4s; }
.orbit-bubble:nth-child(8)  { animation-delay: 3.0s; }
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-7px); }
}
.orbit-bubble-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(8,20,60,0.85);
  border: 1.5px solid rgba(59,130,246,0.4);
  box-shadow:
    0 0 20px rgba(59,130,246,0.15),
    inset 0 0 16px rgba(59,130,246,0.06);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .orbit-bubble-inner:hover {
    border-color: rgba(59,130,246,0.85);
    box-shadow: 0 0 30px rgba(59,130,246,0.35);
    transform: scale(2);
  }
}
.orbit-bubble-inner img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}
@media (max-width: 1100px) {
  .techno-hero-container {
    padding: 60px 40px 80px;
    gap: 20px;
  }
  .hero-headline { font-size: clamp(28px, 3.2vw, 44px); }
  .orbit-bubble-inner { width: 76px; height: 76px; }
}
@media (max-width: 850px) {
  .techno-hero-container {
    grid-template-columns: 1fr;
    padding: 20px 30px 40px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .techno-hero-left {
    align-items: center;
    display: contents; 
  }
  .hero-eyebrow {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .hero-headline {
    order: 3;
    width: 100%;
  }
  .hero-subtext {
    order: 4;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .techno-hero-right {
    order: 1;
    height: 360px;
    width: 100%;
  }
  .hero-services-row {
    order: 5;
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .hero-service-item:not(:first-child)::before {
    display: none;
  }
  .hero-service-item:nth-child(2)::before,
  .hero-service-item:nth-child(4)::before {
    display: block;
    left: 0;
    top: 15%;
    bottom: 15%;
    transform: translateX(-50%);
  }
  .techno-hero-left .hero-placement-banner {
    order: 6;
    width: 100%;
  }
  .hero-cta-row {
    order: 7;
    justify-content: center;
    width: 100%;
  }
  .hero-student-img { width: 70%; }
  .orbit-bubble { user-select: none; -webkit-tap-highlight-color: transparent; cursor: default; }
  .orbit-bubble-inner,
  .orbit-bubble-inner * {
    pointer-events: none !important;
  }
  .orbit-bubble-inner,
  .orbit-bubble-inner:hover,
  .orbit-bubble-inner:focus,
  .orbit-bubble-inner:active,
  .orbit-bubble-inner:focus-within {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow:
      0 0 20px rgba(59, 130, 246, 0.15),
      inset 0 0 16px rgba(59, 130, 246, 0.06) !important;
  }
  .orbit-bubble-inner img {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: none !important;
  }
  .orbit-bubble {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  .orbit-bubble[style*="top:41%"] {
    left: 78% !important;
  }
  .orbit-center-body { width: 120px; height: 120px; font-size: 11px; }
  .hero-orbit-center { width: 120px; height: 120px; }
  .hero-placement-text {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  .hero-placement-icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .techno-hero-container { padding: 16px 20px 40px; }
  .hero-headline { font-size: 26px; letter-spacing: -0.5px; }
  .hero-subtext { font-size: 13px; }
  .hero-services-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-service-icon { width: 50px; height: 50px; font-size: 22px; }
  .hero-service-label { font-size: 9px; }
  .hero-service-sub { font-size: 10px; }
  .hero-cta-btn { font-size: 11px; padding: 12px 16px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .techno-hero-right { height: 300px; }
  .hero-student-img { width: 85%; }
  .orbit-bubble-inner { width: 68px; height: 68px; }
  .orbit-bubble-inner img { width: 120px; height: 120px; }
  .orbit-bubble[style*="top:41%"] {
    left: 75% !important;
  }
}
.ts-section {
  background: #f5f7ff;
  padding: 100px 0;
}
.ts-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.ts-left {
  flex: 0 0 320px;
}
.ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #c7d6f7;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1a56db;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.ts-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.ts-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 52px;
  color: #0d1321;
  line-height: 1.05;
  margin-bottom: 20px;
}
.ts-heading-blue { color: #1a56db; }
.ts-heading-rule {
  width: 40px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 24px;
}
.ts-desc {
  font-size: 14.5px;
  color: #5a6377;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 28px;
  text-align: justify;
}
.ts-divider {
  width: 100%;
  height: 1px;
  background: rgba(26,86,219,0.12);
  margin-bottom: 28px;
}
.ts-quote {
  border-left: 3px solid #1a56db;
  padding-left: 16px;
}
.ts-quote p {
  font-size: 14.5px;
  font-weight: 700;
  color: #0d1321;
  line-height: 1.6;
  text-align: justify;
}
.ts-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ts-honeycomb-scale {
  width: 680px;
  max-width: 100%;
  overflow: visible;
}
.ts-honeycomb {
  position: relative;
  display: flex;
  gap: 60px;
  transform: scale(0.84);
  transform-origin: top left;
}
.ts-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 230px;
}
.ts-col-side {
  margin-top: 145px;
}
.ts-hex {
  position: relative;
  width: 230px;
  height: 250px;
  clip-path: polygon(50% 0%, 100% 23%, 100% 77%, 50% 100%, 0% 77%, 0% 23%);
  -webkit-clip-path: polygon(50% 0%, 100% 23%, 100% 77%, 50% 100%, 0% 77%, 0% 23%);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 40, 90, 0.09);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}
.ts-hex.ts-in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .ts-hex:hover {
    box-shadow: 0 20px 44px rgba(20, 40, 90, 0.16);
    animation: tsHeartbeat 0.7s ease-in-out;
  }
}
@keyframes tsHeartbeat {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.09); }
  40%  { transform: scale(1); }
  60%  { transform: scale(1.09); }
  80%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.ts-hex-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ts-hex-outline polyline {
  fill: none;
  stroke: #1a56db;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ts-hex-inner {
  position: absolute;
  inset: 0;
}
.ts-hex-front,
.ts-hex-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 26px;
  transition: opacity 0.35s ease;
}
.ts-hex-back {
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .ts-hex:hover .ts-hex-front { opacity: 0; }
  .ts-hex:hover .ts-hex-back  { opacity: 1; }
}
.ts-hex-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eaf0fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ts-hex-icon svg {
  width: 26px;
  height: 26px;
}
.ts-hex-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #0d1321;
  margin: 0;
  line-height: 1.3;
}
.ts-hex-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  text-align: center;
}
.ts-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a56db;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}
.ts-honeycomb.ts-dots-in-view .ts-dot {
  opacity: 1;
}
.ts-slider-arrows {
  display: none;
}
@media (max-width: 1300px) {
  .ts-honeycomb-scale { width: 560px; }
  .ts-honeycomb { transform: scale(0.69); }
}
@media (max-width: 991px) {
  .ts-container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }
  .ts-left {
    flex: 0 0 auto;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }
  .ts-heading-rule, .ts-divider { margin-left: auto; margin-right: auto; }
  .ts-quote { border-left: none; border-top: 3px solid #1a56db; padding-left: 0; padding-top: 14px; }
  .ts-desc { max-width: 100%; }
  .ts-honeycomb-scale { width: auto; }
  .ts-honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    transform: none;
  }
  .ts-col { margin-top: 0 !important; gap: 26px; }
  .ts-dot { display: none; }
}
@media (max-width: 767px) {
  .ts-section { padding: 70px 0; }
  .ts-container { padding: 0 24px; }
  .ts-heading { font-size: 38px; }
  .ts-honeycomb {
    overflow: hidden;
    width: 100%;
    position: relative;
    transform: none !important;
    gap: 0;
    height: 320px;
  }
  #tsMobileTrack {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
  }
  .ts-col {
    display: contents;
  }
  .ts-hex {
    min-width: 100%;
    flex-shrink: 0;
    height: 320px !important;
    margin-top: 0 !important;
    position: relative;
    left: 0 !important;
    transform: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1 !important;
  }
  .ts-hex .ts-hex-inner {
    position: relative !important;
    width: 280px;
    height: 305px;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    background: transparent !important;
    box-shadow: none !important;
    inset: unset !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ts-hex .ts-hex-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 23%, 100% 77%, 50% 100%, 0% 77%, 0% 23%);
    -webkit-clip-path: polygon(50% 0%, 100% 23%, 100% 77%, 50% 100%, 0% 77%, 0% 23%);
    box-shadow: 0 14px 34px rgba(20,40,90,0.09);
    z-index: 0;
  }
  .ts-hex .ts-hex-inner::after {
    display: none;
  }
  .ts-hex .ts-hex-front,
  .ts-hex .ts-hex-back {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: auto;
  }
  .ts-hex.ts-hex-logo .ts-hex-inner.ts-hex-logo-inner {
    position: relative;
    z-index: 4;
  }
  .ts-hex.ts-hex-logo .ts-hex-inner::before {
    z-index: -1 !important;
  }
  .ts-hex.ts-hex-logo .ts-pulse-ring {
    z-index: 1;
  }
  .ts-hex.ts-hex-logo .ts-hex-inner::before {
    background: linear-gradient(180deg, #f4f8ff, #ffffff) !important;
  }
  .ts-hex .ts-hex-inner .ts-hex-outline {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }
  .ts-hex > .ts-hex-outline {
    display: none;
  }
  .ts-hex.ts-flipped .ts-hex-front { opacity: 0; }
  .ts-hex.ts-flipped .ts-hex-back  { opacity: 1; }
  .ts-hex.ts-show-front .ts-hex-front { opacity: 1; }
  .ts-hex.ts-show-front .ts-hex-back  { opacity: 0; }
  .ts-hex .ts-hex-title {
    font-size: 17px;
    letter-spacing: 0.4px;
    line-height: 1.35;
    text-align: center;
  }
  .ts-hex .ts-hex-desc {
    font-size: 13.5px;
    line-height: 1.7;
    text-align: justify;
  }
  .ts-hex .ts-hex-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }
  .ts-hex .ts-hex-icon svg {
    width: 30px;
    height: 30px;
  }
  .ts-hex.ts-hex-logo > .ts-pulse-ring {
    display: none;
  }
  .ts-hex.ts-hex-logo .ts-hex-inner::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    border: 1.5px solid rgba(26, 86, 219, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    animation: tsPulse 3.2s ease-out infinite;
  }
  .ts-hex.ts-hex-logo.ts-pulse-tap .ts-hex-inner {
    animation: tsMobilePulse 0.6s ease-out;
  }
  @keyframes tsMobilePulse {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.08); }
    60%  { transform: scale(0.97); }
    100% { transform: scale(1); }
  }
  .ts-dot { display: none; }
  .ts-right {
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ts-honeycomb-scale {
    width: 100% !important;
    overflow: visible;
  }
  .ts-slider-arrows {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
    position: relative;
    z-index: 10;
    padding-bottom: 10px;
  }
  .ts-arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #1a56db;
    background: #ffffff;
    color: #1a56db;
    font-size: 22px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
    box-shadow: 0 6px 18px rgba(26,86,219,0.2);
    flex-shrink: 0;
  }
  .ts-arrow-btn:active {
    background: #1a56db;
    color: #fff;
  }
  .ts-honeycomb,
  #tsMobileTrack,
  .ts-hex,
  .ts-hex-inner,
  .ts-hex-front,
  .ts-hex-back,
  .ts-hex-logo,
  .ts-arrow-btn {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
  }
  .ts-hex.ts-tapped .ts-hex-inner {
    animation: tsMobileHeartbeat 0.6s ease-in-out;
  }
  @keyframes tsMobileHeartbeat {
    0%   { transform: scale(1); }
    20%  { transform: scale(1.06); }
    40%  { transform: scale(1); }
    60%  { transform: scale(1.06); }
    80%  { transform: scale(1); }
    100% { transform: scale(1); }
  }
}
@media (max-width: 480px) {
  .ts-section { padding: 50px 0; }
  .ts-container { padding: 0 20px; }
  .ts-heading { font-size: 36px; }
  .ts-desc { font-size: 13px; }
  .ts-hex { width: 190px; min-width: 100%; height: 210px; }
  .ts-hex-title { font-size: 15px; }
  .ts-hex-desc  { font-size: 12.5px; }
}
.ts-hex,
.ts-honeycomb-scale,
.ts-right {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.ts-hex-logo {
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
  opacity: 1 !important;
  transform: none !important;
}
.ts-hex-outline-logo polyline {
  stroke: #c7d6f7;
}
.ts-hex-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ts-logo-img {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
}
.ts-logo-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #0d1321;
  letter-spacing: 0.5px;
}
.ts-logo-sub {
  font-size: 9.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #8892a0;
  margin-top: 6px;
  line-height: 1.4;
}
.ts-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  border: 1px solid rgba(26, 86, 219, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: tsPulse 3.2s ease-out infinite;
}
.ts-pulse-ring-2 {
  animation-delay: 1.1s;
}
@keyframes tsPulse {
  0%   { transform: translate(-50%, -50%) scale(0.7); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}
.wcu-section {
  background: #111417;
  overflow: hidden;
  position: relative;
}
.wcu-inner {
  display: flex;
  align-items: stretch;
  min-height: 520px;
}
.wcu-image-col {
  flex: 0 0 50%;
  position: relative;
  z-index: 1;
}
.sds-grid-reveal {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
  aspect-ratio: 1;
}
.sds-grid-reveal .reveal-tile-cover {
  inset: -1px;
}
.wcu-grid-reveal {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  background-image: url('/assets/images/techno/whychooseus.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.reveal-tile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reveal-tile-cover {
  position: absolute;
  inset: -1px;
  background: #ffffff;
  transform-origin: right center;
  transform: scaleX(1);
  will-change: transform;
}
.reveal-tile,
.reveal-tile-cover {
  touch-action: pan-y;
  pointer-events: none;
}
.wcu-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.wcu-top {
  flex: 1;
  padding: 52px 60px 32px 60px;
  background: transparent;
}
.wcu-card {
  overflow: hidden;
  background: #1e2128;
  padding: 44px 52px 52px 52px;
  margin-left: -200px;
  box-shadow: -12px 0 50px rgba(0,0,0,0.55);
  position: relative;
  z-index: 3;
}
.wcu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}
.wcu-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.wcu-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 48px);
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0;
}
.wcu-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.wcu-feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wcu-feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wcu-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,86,219,0.15);
  border: 1px solid rgba(26,86,219,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wcu-feature-icon svg {
  width: 18px;
  height: 18px;
}
.wcu-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.4;
  margin: 0;
}
.wcu-feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}
@media (max-width: 1200px) {
  .wcu-card { margin-left: -140px; padding: 36px 40px; }
  .wcu-top  { padding: 44px 40px 28px; }
}
@media (max-width: 991px) {
  .wcu-card { margin-left: -80px; }
  .wcu-features { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 767px) {
  .wcu-inner        { flex-direction: column; }
  .wcu-image-col    { flex: 0 0 auto; height: 240px; width: 100%; }
  .wcu-image-col,
  .wcu-grid-reveal {
    touch-action: pan-y;
    pointer-events: none;
  }
  .wcu-card         { margin-left: 0; padding: 28px 20px; }
  .wcu-top          { padding: 32px 20px 16px; }
  .wcu-heading      { font-size: 26px; }
  .wcu-features     { grid-template-columns: 1fr; gap: 20px; }
  .wcu-feature-title { font-size: 11.5px; }
  .wcu-feature-desc  { font-size: 12.5px; }
}
@media (max-width: 480px) {
  .wcu-image-col { height: 200px; }
  .wcu-heading   { font-size: 22px; }
  .wcu-card      { padding: 22px 16px; }
  .wcu-top       { padding: 24px 16px 12px; }
}
.ict-section {
  background: #ffffff;
  padding: 100px 0;
}
.ict-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.ict-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ict-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  width: fit-content;
}
.ict-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.ict-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #0d0d1a;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.ict-heading-blue {
  color: #1a56db;
}
.ict-subtext {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  max-width: 440px;
}
.ict-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ict-feature-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 80px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ict-feature-pill:hover {
    border-color: #1a56db;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.1);
  }
}
.ict-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a56db;
  font-size: 15px;
  flex-shrink: 0;
}
.ict-feature-label {
  font-size: 11px;
  font-weight: 600;
  color: #111111;
  text-align: center;
  line-height: 1.4;
}
.ict-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ict-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.ict-btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #1a56db;
  color: #ffffff;
  border: 2px solid #1a56db;
  transition: color 0.35s ease, transform 0.2s ease, border-color 0.35s ease;
}
.ict-btn-primary::before,
.ict-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.ict-btn-primary::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.ict-btn-primary::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .ict-btn-primary:hover {
    color: #1a56db;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .ict-btn-primary:hover::before,
  .ict-btn-primary:hover::after {
    transform: translateX(0);
  }
}
.ict-btn-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  color: #1a56db;
  border: 2px solid #1a56db;
  transition: color 0.35s ease, transform 0.2s ease, border-color 0.35s ease;
}
.ict-btn-outline::before,
.ict-btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a56db;
  z-index: -1;
  transition: transform 0.35s ease;
}
.ict-btn-outline::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.ict-btn-outline::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .ict-btn-outline:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .ict-btn-outline:hover::before,
  .ict-btn-outline:hover::after {
    transform: translateX(0);
  }
}
.ict-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}
.ict-img-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.ict-student-img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 650px;
  object-fit: contain;
  flex-shrink: 0;
  z-index: 2;
}
.ict-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.1);
  border: 1px solid rgba(26, 86, 219, 0.1);
  z-index: 3;
  animation: ict-float 3s ease-in-out infinite;
  white-space: nowrap;
}
.ict-card--tl {
  top: 8%;
  left: 0;
  animation-delay: 0s;
}
.ict-card--tr {
  top: 12%;
  right: 0;
  animation-delay: 0.75s;
}
.ict-card--ml {
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}
.ict-card--mr {
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  animation-delay: 2.25s;
}
@keyframes ict-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.ict-card--ml {
  animation: ict-float-mid-l 3s ease-in-out 1.5s infinite;
}
.ict-card--mr {
  animation: ict-float-mid-r 3s ease-in-out 2.25s infinite;
}
@keyframes ict-float-mid-l {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}
@keyframes ict-float-mid-r {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}
.ict-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  font-size: 15px;
  flex-shrink: 0;
}
.ict-card-icon--blue {
  background: #eef2ff;
  color: #1a56db;
}
.ict-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
}
@media (max-width: 1100px) {
  .ict-container {
    padding: 0 40px;
    gap: 20px;
  }
  .ict-heading {
    font-size: 34px;
  }
}
@media (max-width: 880px) {
  .ict-container {
    grid-template-columns: 1fr;
    padding: 0 40px;
    text-align: center;
  }
  .ict-left {
    align-items: center;
  }
  .ict-subtext {
    max-width: 100%;
  }
  .ict-features-row {
    justify-content: center;
  }
  .ict-cta-row {
    justify-content: center;
  }
  .ict-right {
    height: 400px;
  }
  .ict-student-img {
    max-width: 660px;
  }
}
@media (max-width: 600px) {
  .ict-section {
    padding: 60px 0;
  }
  .ict-container {
    padding: 0 20px;
    gap: 24px;
  }
  .ict-heading {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
  .ict-subtext {
    font-size: 13px;
  }
  .ict-btn {
    padding: 13px 18px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  .ict-cta-row {
    flex-direction: column;
  }
  .ict-features-row {
    gap: 8px;
  }
  .ict-feature-pill {
    padding: 10px 12px;
    min-width: 70px;
  }
  .ict-feature-label {
    font-size: 10px;
  }
  .ict-right {
    height: 320px !important;
    overflow: visible !important;
    touch-action: pan-y !important;
    pointer-events: none !important;
  }
  .ict-student-img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .ict-card {
    padding: 6px 10px;
    gap: 6px;
    border-radius: 10px;
  }
  .ict-card-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .ict-card-title {
    font-size: 10px;
  }
  .ict-card--tl { top: 4%; left: 4px; }
  .ict-card--tr { top: 6%; right: 4px; }
  .ict-card--ml { top: 55%; left: 4px; }
  .ict-card--mr { top: 55%; right: 4px; }
}
@media (max-width: 880px) {
  .ict-section {
    overflow: visible !important;
    height: auto !important;
    min-height: unset !important;
  }
  .ict-container {
    overflow: visible !important;
    height: auto !important;
    min-height: unset !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 20px !important;
  }
  .ict-left {
    overflow: visible !important;
    height: auto !important;
  }
  .ict-right {
    overflow: visible !important;
    height: auto !important;
    min-height: unset !important;
    position: relative !important;
    touch-action: pan-y !important;
    pointer-events: none !important;
  }
  .ict-img-wrapper,
  .ict-student-img,
  .ict-card {
    touch-action: pan-y !important;
    pointer-events: none !important;
    -webkit-overflow-scrolling: auto !important;
  }
}
.dom-section {
  background: #ffffff;
  padding: 100px 0 0;
  overflow: visible;
  position: relative;
}
.dom-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,86,219,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.dom-header {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 70px;
  text-align: center;
}
.dom-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 20px;
}
.dom-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.dom-header-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #0d0d1a;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.dom-heading-blue {
  color: #1a56db;
}
.dom-header-sub {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.dom-split {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: start;
}
.dom-left {
  position: sticky;
  top: 85px;
  height: fit-content;
}
.dom-nav-track {
  position: relative;
  padding-left: 24px;
}
.dom-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 52px;
  background: #1a56db;
  border-radius: 2px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.3s ease;
  box-shadow: 0 0 8px rgba(26, 86, 219, 0.4);
}
.dom-nav-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
  border-radius: 2px;
}
.dom-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dom-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}
.dom-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  transition: all 0.35s ease;
  background: transparent;
}
.dom-nav-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #9ca3af;
  transition: all 0.35s ease;
  line-height: 1.3;
}
.dom-nav-item--active .dom-nav-dot {
  border-color: #1a56db;
  background: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.18);
}
.dom-nav-item--active .dom-nav-label {
  color: #1a56db;
  font-weight: 700;
  font-size: 14.5px;
}
@media (hover: hover) and (pointer: fine) {
  .dom-nav-item:not(.dom-nav-item--active):hover .dom-nav-label {
    color: #374151;
  }
  .dom-nav-item:not(.dom-nav-item--active):hover .dom-nav-dot {
    border-color: #6b7280;
  }
}
.dom-right {
  position: relative;
  padding: 0 0 100px 60px;
}
.dom-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 80vh;
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}
.dom-panel:last-child {
  border-bottom: none;
}
.dom-panel:nth-child(odd) .dom-panel-img-wrap {
  order: 1;
}
.dom-panel:nth-child(odd) .dom-panel-body {
  order: 2;
}
.dom-panel:nth-child(even) .dom-panel-img-wrap {
  order: 2;
}
.dom-panel:nth-child(even) .dom-panel-body {
  order: 1;
}
.dom-panel-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dom-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dom-panel-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 219, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.dom-panel-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dom-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eef2ff;
  color: #1a56db;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: fit-content;
}
.dom-panel-tag i {
  font-size: 11px;
}
.dom-panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0d0d1a;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0;
}
.dom-panel-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
.dom-panel-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 0;
}
.dom-panel-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.dom-panel-points li i {
  color: #1a56db;
  font-size: 13px;
  flex-shrink: 0;
}
.dom-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}
.dom-tag {
  background: #f0f4ff;
  border: 1px solid #c7d2fe;
  color: #1a56db;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .dom-tag:hover {
    background: #1a56db;
    border-color: #1a56db;
    color: #ffffff;
  }
}
.dom-mobile-section {
  display: none;
}
@media (max-width: 1100px) {
  .dom-split {
    grid-template-columns: 220px 1fr;
    padding: 0 40px;
    gap: 0;
  }
  .dom-header {
    padding: 0 40px 50px;
  }
  .dom-header-heading {
    font-size: 40px;
  }
  .dom-right {
    padding-left: 40px;
  }
  .dom-panel-title {
    font-size: 28px;
  }
}
@media (max-width: 880px) {
  .dom-split {
    display: none;
  }
  .dom-header {
    padding: 0 24px 40px;
  }
  .dom-header-heading {
    font-size: 30px;
    letter-spacing: -0.8px;
  }
  .dom-mobile-section {
    display: block;
    padding: 0 24px 60px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .dom-accordion-item {
    border-bottom: 1px solid #e5e7eb;
  }
  .dom-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 12px;
  }
  .dom-accordion-trigger-label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
  }
  .dom-accordion-trigger i {
    color: #1a56db;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .dom-accordion-item.open .dom-accordion-trigger i {
    transform: rotate(45deg);
  }
  .dom-accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dom-accordion-item.open .dom-accordion-body {
    max-height: 900px;
  }
  .dom-accordion-inner {
    padding-bottom: 28px;
  }
  .dom-accordion-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 18px;
    object-fit: cover;
    max-height: 220px;
    background: #eef2ff;
  }
  .dom-accordion-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #eef2ff;
    color: #1a56db;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .dom-accordion-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
  }
  .dom-accordion-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .dom-accordion-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    font-weight: 500;
  }
  .dom-accordion-points li i {
    color: #1a56db;
    font-size: 12px;
    flex-shrink: 0;
  }
  .dom-accordion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
  }
}
.about-bg {
    position: relative;
    height: 75vh;
    min-height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('/assets/images/about_bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    transition: background-position 0.2s ease-out;
}
.about-bg .about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.about-bg .about-content {
    position: relative;
    z-index: 2;
}
.about-bg h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
}
.about-bg .about-breadcrumbs {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
}
.about-bg .about-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}
.about-bg .about-breadcrumbs .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a56db;
    margin: 0 10px;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
}
.about-bg .about-breadcrumbs .active-page {
    color: #ffffff;
}
.page-contact .about-bg { background-image: url('/assets/images/contact_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
.page-techno-services .about-bg { background-image: url('/assets/images/techno/services_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
.page-techno-rd .about-bg { background-image: url('/assets/images/techno/r_d_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
.page-techno-careers .about-bg { background-image: url('/assets/images/techno/careers_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
.contact-section {
  background: #f5f7ff;
  padding: 80px 0 0;
}
.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left-header {
  margin-bottom: 36px;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #ffffff;
  margin-bottom: 18px;
}
.badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.contact-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-title-blue {
  color: #1a56db;
}
.contact-intro-text {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.75;
  max-width: 480px;
}
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.contact-form-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.contact-form-rule {
  width: 32px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-field {
  position: relative;
  display: flex;
  align-items: center;
}
.cf-full {
  width: 100%;
}
.cf-input {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #111111;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}
.cf-input::placeholder {
  color: #9ca3af;
}
.cf-input:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
  background: #ffffff;
}
.cf-required::placeholder {
  color: #9ca3af;
}
.cf-star {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.cf-star-textarea {
  top: 16px;
  transform: none;
}
.cf-select {
  cursor: pointer;
  color: #9ca3af;
}
.cf-select:valid,
.cf-select option:not([disabled]) {
  color: #111111;
}
.cf-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.cf-chevron {
  pointer-events: none;
}
.cf-textarea {
  height: 200px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.65;
}
.cf-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cf-submit-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.2s ease;
  white-space: nowrap;
}
.cf-submit-btn::before,
.cf-submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.cf-submit-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.cf-submit-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .cf-submit-btn:hover {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .cf-submit-btn:hover::before,
  .cf-submit-btn:hover::after {
    transform: translateX(0);
  }
}
.cf-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-privacy-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid #1a56db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cf-privacy-text {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
}
.cf-error-msg {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #ef4444;
  font-weight: 500;
  padding: 0 4px;
  margin-top: 6px;
  animation: errorFadeIn 0.25s ease;
}
.cf-error-placeholder::placeholder {
  color: #ef4444;
  font-weight: 500;
  font-size: 13px;
}
@keyframes errorFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 20px;
}
.trust-badge {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}
.trust-badge:last-child {
  border-right: none;
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #eef2ff;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}
.trust-sub {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 20px;
}
.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}
.ci-card:last-child {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
  .ci-card:hover {
    background: #f9fafb;
  }
}
.ci-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-text {
  flex: 1;
}
.ci-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}
.ci-value {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.55;
}
.ci-arrow {
  color: #1a56db;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
}
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  height: 240px;
  pointer-events: auto;
}
.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}
.contact-bottom-bar {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 28px 80px;
}
.contact-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cbb-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 220px;
}
.cbb-headset-icon {
  width: 56px;
  height: 56px;
  background: #1a56db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cbb-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 3px;
}
.cbb-sub {
  font-size: 13px;
  color: #6b7280;
}
.cbb-divider {
  width: 1px;
  height: 48px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.cbb-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
}
.cbb-phone-number {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}
.cbb-phone-hours {
  font-size: 12px;
  color: #6b7280;
}
.cbb-chat-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1a56db;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a56db;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.35s ease, transform 0.2s ease, border-color 0.35s ease;
  flex-shrink: 0;
}
.cbb-chat-btn::before,
.cbb-chat-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a56db;
  z-index: -1;
  transition: transform 0.35s ease;
}
.cbb-chat-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.cbb-chat-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .cbb-chat-btn:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .cbb-chat-btn:hover::before,
  .cbb-chat-btn:hover::after {
    transform: translateX(0);
  }
}
@media (max-width: 1100px) {
  .contact-wrapper {
    gap: 40px;
    padding: 0 40px 60px;
  }
  .contact-bottom-bar {
    padding: 28px 40px;
  }
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-trust-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0 0;
  }
  .contact-wrapper {
    padding: 0 24px 50px;
    gap: 36px;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .contact-trust-row {
    grid-template-columns: 1fr;
  }
  .trust-badge {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 16px;
    padding: 16px 20px;
    text-align: left;
  }
  .trust-badge:last-child {
    border-bottom: none;
  }
  .trust-icon {
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
    flex-shrink: 0;
  }
  .trust-label {
    grid-column: 2;
    text-align: left;
  }
  .trust-sub {
    grid-column: 2;
    text-align: left;
  }
  .cf-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cf-submit-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-bottom-bar {
    padding: 28px 24px;
  }
  .contact-bottom-inner {
    gap: 24px;
  }
  .cbb-divider {
    display: none;
  }
  .cbb-left,
  .cbb-phone {
    width: 100%;
    flex: none;
  }
  .cbb-chat-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-map-wrapper {
    height: 200px;
  }
}
.fcw-wrapper {
  position: fixed;
  bottom: calc(32px + var(--fcw-overlap, 0px));
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.fcw-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.fcw-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease,
              box-shadow 0.3s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .fcw-btn:hover {
    transform: translateY(0) scale(1.12) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
}
.fcw-whatsapp { background: #25d366; }
.fcw-call     { background: #1a56db; }
.fcw-message  { background: #0ea5e9; }
.fcw-tooltip {
  position: absolute;
  right: 62px;
  background: #111111;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.fcw-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111111;
}
@media (hover: hover) and (pointer: fine) {
  .fcw-btn:hover .fcw-tooltip {
    opacity: 1;
  }
}
.fcw-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1a56db;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.45);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .fcw-toggle:hover {
    background: #1446b8;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.55);
  }
}
.fcw-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fcw-icon-chat {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fcw-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(26, 86, 219, 0.4);
  animation: fcw-pulse 2s ease-out infinite;
}
@keyframes fcw-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fcw-open .fcw-actions {
  pointer-events: auto;
}
.fcw-open .fcw-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fcw-open .fcw-whatsapp { transition-delay: 0.05s; }
.fcw-open .fcw-call     { transition-delay: 0.1s;  }
.fcw-open .fcw-message  { transition-delay: 0.15s; }
.fcw-open .fcw-icon-chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
.fcw-open .fcw-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.fcw-open .fcw-toggle {
  background: #ef4444;
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.4);
}
.fcw-open .fcw-toggle::before {
  border-color: rgba(239, 68, 68, 0.4);
}
@media (max-width: 767px) {
  .fcw-wrapper {
    bottom: calc(20px + var(--fcw-overlap, 0px));
    right: 20px;
  }
  .fcw-toggle {
    width: 52px;
    height: 52px;
  }
  .fcw-btn {
    width: 46px;
    height: 46px;
  }
  .fcw-tooltip {
    display: none;
  }
}
.car-intro-section {
  background: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}
.car-intro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 0 80px;       
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: center;
  min-height: 420px;
}
.car-intro-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  overflow: hidden;
}
.car-intro-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 380px;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.car-intro-left {
  flex: 1;
}
.car-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #ffffff;
  margin-bottom: 18px;
  width: fit-content;
}
.car-intro-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a66c2;
  flex-shrink: 0;
}
.car-intro-subheading {
  font-size: 36px;
  font-weight: 700;
  color: #1a56db;
  margin: 0 0 8px;
  line-height: 1.2;
}
.car-intro-blue {
  color: #0a66c2;
}
.car-intro-rule {
  width: 60px;
  height: 4px;
  background: #0a66c2;
  border-radius: 2px;
  margin: 16px 0;
}
.car-intro-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  max-width: 460px;
  margin: 0;
  text-align: justify;
}
.car-intro-right {
  flex: 0 0 400px;
}
.car-intro-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.car-listings-section {
  padding: 60px 20px 100px;
  background: #fff;
}
.car-listings-container {
  max-width: 1100px;
  margin: 0 auto;
}
.car-timeline {
  position: relative;
  padding: 0;
}
.car-timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e2e8f0;
  border-radius: 2px;
}
.car-timeline-item {
  position: relative;
  padding-left: 76px;
  margin-bottom: 48px;
}
.car-timeline-item:last-child {
  margin-bottom: 0;
}
.car-timeline-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0a66c2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px #e2e8f0;
}
.car-node-num {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.car-job-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(20, 40, 120, 0.07);
  overflow: visible;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .car-job-card:hover {
    box-shadow: 0 10px 40px rgba(20, 40, 120, 0.13);
    transform: translateY(-3px);
  }
}
.car-job-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
  border-radius: 18px;
  overflow: visible;
}
.car-job-body {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.car-job-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.car-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.car-tag--fire {
  background: #fef2f2;
  color: #dc2626;
}
.car-tag--fire svg {
  width: 13px;
  height: 13px;
}
.car-tag--outline {
  background: transparent;
  color: #475569;
  border: 1.5px solid #cbd5e1;
}
.car-job-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a56db;
  margin: 0 0 4px;
}
.car-job-level {
  font-size: 14px;
  font-weight: 500;
  color: #0a66c2;
  margin: 0 0 12px;
}
.car-job-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 16px;
  max-width: 520px;
  text-align: justify;
}
.car-skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.car-skill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 6px;
}
.car-skill svg {
  width: 13px;
  height: 13px;
  color: #0a66c2;
  flex-shrink: 0;
}
.car-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.car-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #64748b;
}
.car-meta-item svg {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  flex-shrink: 0;
}
.car-job-img-wrap {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ffffff;
  overflow: visible;
}
.car-job-img {
  width: 408px;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  position: relative;
  margin-left: -100px;
}
@media (max-width: 900px) {
  .car-intro-container {
    grid-template-columns: 1fr;
    padding: 0 24px 40px;
    min-height: auto;
  }
  .car-intro-right {
    width: 100%;
    justify-content: center;
  }
  .car-intro-img {
    width: 100%;
    min-height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
  }
  .car-intro-desc {
    max-width: 100%;
  }
  .car-intro-subheading {
    font-size: 28px;
  }
  .car-job-card-inner {
    grid-template-columns: 1fr;
  }
  .car-job-img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 20px;
    overflow: hidden;
  }
  .car-job-img {
    width: 80%;
    max-width: 280px;
    height: auto;
    margin-left: 0;
    object-fit: contain;
  }
  .car-job-body {
    padding: 24px;
  }
  .car-timeline-item {
    padding-left: 66px;
  }
  .car-timeline-node {
    width: 50px;
    height: 50px;
  }
  .car-node-num {
    font-size: 14px;
  }
  .car-timeline-line {
    left: 23px;
  }
  .car-job-title {
    font-size: 19px;
  }
}
@media (max-width: 500px) {
  .car-intro-section {
    padding: 50px 16px;
  }
  .car-intro-subheading {
    font-size: 24px;
  }
  .car-listings-section {
    padding: 40px 16px 80px;
  }
  .car-timeline-item {
    padding-left: 58px;
  }
  .car-timeline-node {
    width: 44px;
    height: 44px;
  }
  .car-node-num {
    font-size: 13px;
  }
  .car-timeline-line {
    left: 20px;
  }
  .car-job-body {
    padding: 20px 16px;
  }
  .car-job-title {
    font-size: 18px;
  }
  .car-skills-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .car-job-meta {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .about-bg h1 {
    font-size: 2.8rem;
  }
  .about-bg {
    background-size: cover;
    background-position: center center;
    min-height: 320px;
  }
  .about-bg .about-overlay { background: rgba(0, 0, 0, 0.25); }
  .page-contact .about-bg { background-image: url('/assets/images/contact_mobile.webp'); background-size: cover; }
  .page-techno-services .about-bg { background-image: url('/assets/images/techno/services_mobile.webp'); background-size: cover; }
  .page-techno-rd .about-bg { background-image: url('/assets/images/techno/r_d_mobile.webp'); background-size: cover; }
  .page-techno-careers .about-bg { background-image: url('/assets/images/techno/careers_mobile.webp'); background-size: cover; }
}
.rnd-intro-section {
  background: #ffffff;
  padding: 90px 0 0;
  overflow: hidden;
}
.rnd-intro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: flex-start;
  min-height: auto;
}
.rnd-intro-left {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}
.rnd-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #ffffff;
  margin-bottom: 28px;
  width: fit-content;
}
.rnd-intro-badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #1a56db;
  border-radius: 50%;
  flex-shrink: 0;
}
.rnd-intro-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 3.8vw, 60px);
  font-weight: 800;
  color: #0d0d1a;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.rnd-heading-blue {
  color: #1a56db;
}
.rnd-intro-rule {
  width: 52px;
  height: 4px;
  background: #1a56db;
  border-radius: 2px;
  margin: 20px 0 24px;
}
.rnd-intro-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  max-width: 460px;
  margin: 0;
  text-align: justify;
}
.rnd-intro-desc--gap {
  margin-top: 16px;
}
.rnd-cta-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 36px;
  width: fit-content;
  transition: color 0.35s ease, transform 0.2s ease;
}
.rnd-cta-btn::before,
.rnd-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.rnd-cta-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.rnd-cta-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .rnd-cta-btn:hover {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .rnd-cta-btn:hover::before,
  .rnd-cta-btn:hover::after {
    transform: translateX(0);
  }
}
.rnd-intro-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  overflow: hidden;
}
.rnd-intro-img {
  width: 100%;
  height: auto;
  min-height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-top: 0;
  margin-left: -60px;
}
.rnd-features-section {
  background: #ffffff;
  padding: 0 0 70px;
}
.rnd-features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rnd-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 16px rgba(20, 40, 100, 0.06);
  border: 1px solid #eef0f7;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .rnd-feature-card:hover {
    box-shadow: 0 8px 32px rgba(26, 86, 219, 0.12);
    transform: translateY(-4px);
  }
}
.rnd-feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #eef2ff;
  border: 1px solid #d0d9f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.rnd-feature-body {
  display: flex;
  flex-direction: column;
}
.rnd-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d0d1a;
  margin: 0 0 10px;
  line-height: 1.3;
}
.rnd-feature-rule {
  width: 36px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 14px;
}
.rnd-feature-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}
@media (max-width: 1200px) {
  .rnd-intro-container {
    padding: 0 0 0 60px;
  }
  .rnd-features-container {
    padding: 0 40px;
    gap: 18px;
  }
}
@media (max-width: 991px) {
  .rnd-features-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}
@media (max-width: 880px) {
  .rnd-intro-section {
    padding: 60px 0 0;
  }
  .rnd-intro-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    min-height: auto;
  }
  .rnd-intro-left {
    padding-bottom: 0;
    align-items: flex-start;
  }
  .rnd-intro-right {
    justify-content: center;
    margin-top: 32px;
  }
  .rnd-intro-img {
    min-height: 300px;
    object-position: center center;
  }
  .rnd-intro-heading {
    font-size: 36px;
  }
  .rnd-intro-desc {
    max-width: 100%;
  }
  .rnd-features-section {
    padding: 50px 0 60px;
  }
  .rnd-features-container {
    padding: 0 24px;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .rnd-features-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .rnd-intro-heading {
    font-size: 30px;
    letter-spacing: -0.8px;
  }
  .rnd-feature-card {
    padding: 24px 20px;
  }
  .rnd-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
.rd-section {
  background: #f8faff;
  padding: 90px 0 80px;
}
.rd-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}
.rd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1a56db;
  background: #ffffff;
  margin-bottom: 14px;
  width: fit-content;
}
.rd-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #1a56db;
  border-radius: 50%;
  flex-shrink: 0;
}
.rd-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #0d0d1a;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.rd-content-blue { color: #1a56db; }
.rd-main-sub {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 18px;
  text-align: center;
}
.rd-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.rd-title-rule span {
  display: inline-block;
  height: 3px;
  border-radius: 2px;
  background: #1a56db;
}
.rd-title-rule span:first-child { width: 40px; }
.rd-title-rule span:last-child  { width: 14px; opacity: 0.4; }
.rd-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}
.rd-sidebar {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5eaf5;
  box-shadow: 0 4px 24px rgba(20,40,100,0.06);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.rd-domain-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.rd-domain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
}
.rd-domain-item:not(:last-child) {
  border-bottom: 1px solid #f0f3fb;
}
@media (hover: hover) and (pointer: fine) {
  .rd-domain-item:hover {
    background: #f0f5ff;
  }
}
.rd-domain-item.rd-active {
  background: #1a56db;
  border-left-color: #1446b8;
}
.rd-domain-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef2ff;
  border: 1px solid #d0d9f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a56db;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.rd-domain-item.rd-active .rd-domain-icon {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}
.rd-domain-label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1a56db;
  transition: color 0.2s ease;
}
.rd-domain-item.rd-active .rd-domain-label {
  color: #ffffff;
}
.rd-domain-arrow {
  font-size: 18px;
  color: #b0bdd4;
  line-height: 1;
  transition: color 0.2s ease;
}
.rd-domain-item.rd-active .rd-domain-arrow {
  color: rgba(255,255,255,0.7);
}
.rd-panel-wrap {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5eaf5;
  box-shadow: 0 4px 24px rgba(20,40,100,0.06);
  overflow: hidden;
  min-height: 480px;
}
.rd-panel {
  position: relative;
}
.rd-content {
  display: none;
}
.rd-content--active {
  display: block;
}
.rd-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
.rd-content-left {
  padding: 40px 36px 40px 40px;
  display: flex;
  flex-direction: column;
  border-right: none;
}
.rd-content-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  background: #f8faff;
  margin-bottom: 20px;
  width: fit-content;
}
.rd-content-badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #1a56db;
  border-radius: 50%;
  flex-shrink: 0;
}
.rd-content-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  color: #0d0d1a;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin: 0;
}
.rd-content-badge,
.rd-content-title,
.rd-content-desc,
.rd-content-key-label,
.rd-key-item,
.rd-highlight-bar {
  opacity: 0;
}
.rd-content-rule {
  width: 40px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin: 14px 0 18px;
}
.rd-content-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.78;
  margin: 0 0 22px;
  text-align: justify;
}
.rd-content-key-label {
  font-size: 13px;
  font-weight: 700;
  color: #0d0d1a;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}
.rd-key-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
}
.rd-key-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #f5f8ff;
  border: 1px solid #e0e8f8;
  border-radius: 8px;
  padding: 9px 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .rd-key-item:hover {
    background: #eef2ff;
    border-color: #c7d6f7;
  }
}
.rd-key-item svg { flex-shrink: 0; }
.rd-highlight-bar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0f5ff;
  border: 1px solid #d0dffa;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: auto;
}
.rd-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dbe8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rd-highlight-bar p {
  font-size: 13px;
  color: #1a56db;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}
.rd-content-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 24px;
  overflow: hidden;
}
.rd-domain-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 1200px) {
  .rd-body { grid-template-columns: 280px 1fr; padding: 0 40px; gap: 20px; }
  .rd-content-inner { grid-template-columns: 1fr; }
  .rd-content-right { border-top: 1px solid #f0f3fb; min-height: 260px; }
  .rd-content-left { border-right: none; }
}
@media (max-width: 880px) {
  .rd-body { grid-template-columns: 1fr; padding: 0 24px; }
  .rd-sidebar { position: static; }
  .rd-domain-list { display: grid; grid-template-columns: repeat(2, 1fr); padding: 0; }
  .rd-domain-item { padding: 12px 14px; gap: 10px; }
  .rd-domain-label { font-size: 12.5px; }
  .rd-domain-arrow { display: none; }
  .rd-content-left { padding: 28px 24px; }
  .rd-key-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .rd-section { padding: 60px 0 50px; }
  .rd-domain-list { grid-template-columns: 1fr; }
  .rd-domain-item { padding: 13px 16px; }
  .rd-domain-icon { width: 34px; height: 34px; }
  .rd-body { padding: 0 16px; gap: 16px; }
  .rd-content-title { font-size: 24px; }
  .rd-content-left { padding: 24px 18px; }
  .rd-highlight-bar { flex-direction: column; gap: 10px; }
}
.lec-section {
  background: #020c24;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}
.lec-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(26, 86, 219, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.lec-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}
.lec-header {
  text-align: center;
  margin-bottom: 30px;
}
.lec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #3b82f6;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #3b82f6;
  width: fit-content;
  margin-bottom: 10px;
}
.lec-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.lec-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 12px;
}
.lec-heading-blue {
  color: #3b82f6;
}
.lec-subtext {
  font-size: 15px;
  color: rgba(180, 200, 255, 0.55);
  line-height: 1.75;
}
.lec-cards-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lec-arrow {
  position: absolute;
  top: 98px; 
  font-size: 28px;
  font-weight: 900;
  color: #3b82f6;
  z-index: 20;
  line-height: 1;
  letter-spacing: -6px;
  text-shadow: 0 0 14px rgba(59, 130, 246, 0.6);
  pointer-events: none;
}
.lec-arrow-1 { left: calc(25% - 14px); }
.lec-arrow-2 { left: calc(50% - 14px); }
.lec-arrow-3 { left: calc(75% - 14px); }
.lec-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lec-card:hover {
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
  }
}
.lec-step-badge {
  position: absolute;
  top: -1px;
  left: 16px;
  background: #3b82f6;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  letter-spacing: 0.3px;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.6);
}
.lec-card-dark {
  background: linear-gradient(175deg, #060f2e 0%, #0b1640 60%, #091535 100%);
  padding: 36px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 160px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
  margin-bottom: -18px;
  z-index: 2;
}
.lec-card-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
    linear-gradient(270deg, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.lec-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}
.lec-icon-wrap svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.7));
}
.lec-icon-glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 12px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  z-index: 1;
}
.lec-card-white {
  background: #ffffff;
  padding: 20px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.lec-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #3b82f6;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.35;
}
.lec-card-desc {
  font-size: 13px;
  color: #555e75;
  line-height: 1.7;
  margin: 0 0 12px;
  text-align: justify;
}
.lec-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.lec-card-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #2d3748;
  font-weight: 400;
  line-height: 1.4;
}
.lec-li-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3b82f6;
  stroke: #3b82f6;
}
.lec-bottom-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #091535;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  margin-top: 24px;
  padding: 18px 40px;
  gap: 0;
}
.lec-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid rgba(59, 130, 246, 0.12);
}
.lec-feat:first-child { padding-left: 0; }
.lec-feat:last-child  { border-right: none; }
.lec-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
}
.lec-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: #3b82f6;
}
.lec-feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 3px;
}
.lec-feat-sub {
  font-size: 11px;
  color: rgba(160, 185, 255, 0.5);
  line-height: 1.45;
}
@media (max-width: 1200px) {
  .lec-container { padding: 0 30px; }
  .lec-bottom-bar { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 26px 30px; }
  .lec-feat { border-right: none; padding: 0; }
}
@media (max-width: 991px) {
  .lec-section { padding: 70px 0 0; }
  .lec-cards-wrapper { grid-template-columns: repeat(2, 1fr); }
  .lec-arrow { display: none; }
  .lec-bottom-bar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .lec-container { padding: 0 20px; }
  .lec-heading { font-size: 30px; letter-spacing: -0.5px; }
  .lec-subtext { font-size: 13px; text-align: justify; }
  .lec-cards-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .lec-bottom-bar { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 16px; }
}
@media (max-width: 480px) {
  .lec-heading { font-size: 24px; }
  .lec-bottom-bar { grid-template-columns: 1fr; }
}
.sds-section {
  background: #f8fafc;
  padding: 100px 5%;
}
.sds-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}
.sds-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.sds-sidebar::-webkit-scrollbar {
  width: 5px;
}
.sds-sidebar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.sds-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #374151;
  width: fit-content;
  margin-bottom: 10px;
}
.sds-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #1a56db;
  border-radius: 50%;
  flex-shrink: 0;
}
.sds-sidebar-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.28;
  color: #0f172a;
  margin-bottom: 20px;
  hyphens: none;
}
.sds-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sds-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sds-nav-item:hover {
    background: #eef2ff;
  }
}
.sds-nav-item.active {
  background: #eef4ff;
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}
.sds-nav-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #eef1f6;
  transition: all 0.3s ease;
}
.sds-nav-icon svg {
  width: 18px;
  height: 18px;
}
.sds-nav-item.active .sds-nav-icon {
  background: #2563eb;
  color: #fff;
}
.sds-nav-num {
  display: none;
}
.sds-nav-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.3;
  color: #0f172a;
}
.sds-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 36px;
}
.sds-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 640px;
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
}
.sds-panel:last-child {
  border-bottom: none;
}
.sds-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #2563eb;
  background: #eaf1ff;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.sds-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 18px;
}
.sds-heading-blue {
  color: #2563eb;
  display: inline-block;
}
.sds-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #475569;
  text-align: justify;
  margin-bottom: 26px;
  max-width: 520px;
}
.sds-highlights {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sds-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #1e293b;
}
.sds-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sds-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #2563eb;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.2s ease;
}
.sds-btn::before,
.sds-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.sds-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.sds-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .sds-btn:hover {
    color: #2563eb;
    transform: translateY(-2px);
  }
  .sds-btn:hover::before,
  .sds-btn:hover::after {
    transform: translateX(0);
  }
}
.sds-panel-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sds-panel-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 24px;
}
.sds-blob {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0) 70%);
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .sds-container {
    grid-template-columns: 1fr;
  }
  .sds-sidebar {
    position: relative;
    top: 0;
  }
  .sds-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sds-panel-image {
    order: -1;
  }
}
@media (max-width: 600px) {
  .sds-sidebar-heading { font-size: 22px; }
  .sds-heading { font-size: 28px; }
}
.programs-section{
  padding:80px 24px;
  background:#f4f6fb;
  font-family:'Inter','Segoe UI',sans-serif;
}
.programs-container{
  max-width:1360px;
  margin:0 auto;
}
.programs-header{
  text-align:center;
  margin-bottom:36px;
}
.programs-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#ffffff;
  border:1px solid #d0d9f5;
  border-radius:50px;
  padding:6px 18px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1.5px;
  color:#374151;
  margin-bottom:14px;
  width:fit-content;
}
.programs-eyebrow-dot{
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1a56db;
  flex-shrink:0;
}
.programs-title{
  font-size:42px;
  font-weight:800;
  color:#111827;
  margin:0 0 14px;
}
.programs-title span{
  color:#3b3ff0;
}
.programs-title .word {
  display: inline-block;
  white-space: nowrap;
}
.programs-subtitle{
  max-width:640px;
  margin:0 auto;
  color:#6b7280;
  font-size:16px;
  line-height:1.6;
}
.programs-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-bottom:32px;
}
.program-tab{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border-radius:40px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  color:#374151;
  transition:all .25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .program-tab:hover{
    border-color:#c7ccfa;
  }
}
.program-tab .tab-icon{
  width:20px;
  height:20px;
  display:flex;
  color:#4338ea;
}
.program-tab .tab-icon svg{width:100%;height:100%;}
.program-tab .tab-label{
  font-size:13.5px;
  font-weight:600;
  text-align:left;
  line-height:1.3;
}
.program-tab.active{
  background:linear-gradient(135deg,#4338ea,#3b3ff0);
  border-color:transparent;
  color:#fff;
}
.program-tab.active .tab-icon{color:#fff;}
.programs-slider{
  position:relative;
  overflow:visible;
}
.slider-track{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  min-height:480px;
  background:#fff;
  box-shadow:0 20px 50px rgba(17,24,39,.08);
}
.slide{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .45s ease, transform .45s ease, visibility .45s;
}
.slide.active{
  position:relative;
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  min-height:480px;
}
.slide-content{
  padding:56px 60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.slide-content.hidden{display:none;}
.slide-eyebrow{
  color:#4338ea;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:1px;
  position:relative;
  padding-bottom:12px;
  margin-bottom:6px;
}
.slide-eyebrow::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:34px;
  height:3px;
  background:#4338ea;
  border-radius:2px;
}
.slide-title{
  font-size:34px;
  font-weight:800;
  color:#111827;
  margin:6px 0 16px;
}
.slide-desc{
  color:#6b7280;
  font-size:15.5px;
  line-height:1.7;
  max-width:460px;
  text-align: justify;
  margin-bottom:28px;
}
.slide-stats{
  display:flex;
  gap:28px;
  margin-bottom:30px;
}
.stat{
  display:flex;
  align-items:center;
  gap:10px;
}
.stat-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#eef0fe;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}
.stat strong{
  display:block;
  font-size:14.5px;
  color:#111827;
  font-weight:700;
}
.stat small{
  color:#9ca3af;
  font-size:12.5px;
}
.slide-actions{
  display:flex;
  align-items:center;
  gap:26px;
}
.btn-explore{
  position:relative;
  overflow:hidden;
  z-index:1;
  background:#4338ea;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:14.5px;
  text-decoration:none;
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:color .35s ease, transform .2s ease;
}
.btn-explore::before,
.btn-explore::after{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background:#fff;
  z-index:-1;
  transition:transform .35s ease;
}
.btn-explore::before{
  clip-path:polygon(0% 0%,55% 0%,45% 100%,0% 100%);
  transform:translateX(-100%);
}
.btn-explore::after{
  clip-path:polygon(55% 0%,100% 0%,100% 100%,45% 100%);
  transform:translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .btn-explore:hover{color:#4338ea;transform:translateY(-2px);}
  .btn-explore:hover::before,
  .btn-explore:hover::after{transform:translateX(0);}
}
.btn-watch{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#111827;
  font-weight:600;
  font-size:14.5px;
  text-decoration:none;
}
.play-circle{
  width:32px;
  height:32px;
  border-radius:50%;
  border:1.5px solid #4338ea;
  color:#4338ea;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
}
.btn-view-details{
  position:relative;
  overflow:hidden;
  z-index:1;
  background:transparent;
  color:#4338ea;
  border:2px solid #4338ea;
  padding:12px 24px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:color .35s ease, transform .2s ease;
}
.btn-view-details::before,
.btn-view-details::after{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background:#4338ea;
  z-index:-1;
  transition:transform .35s ease;
}
.btn-view-details::before{
  clip-path:polygon(0% 0%,55% 0%,45% 100%,0% 100%);
  transform:translateX(-100%);
}
.btn-view-details::after{
  clip-path:polygon(55% 0%,100% 0%,100% 100%,45% 100%);
  transform:translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .btn-view-details:hover{
    color:#fff;
    transform:translateY(-2px);
  }
  .btn-view-details:hover::before,
  .btn-view-details:hover::after{
    transform:translateX(0);
  }
}
.slide-syllabus{
  padding:40px 48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow-y:auto;
}
.slide-syllabus.hidden{display:none;}
.syllabus-topics-label{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  font-weight:700;
  color:#4338ea;
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid #e5e7eb;
}
.syllabus-topics-label svg{
  flex-shrink:0;
  color:#4338ea;
}
.syllabus-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.syllabus-item{
  background:#f8f9ff;
  border-radius:8px;
  padding:11px 16px 11px 40px;
  font-size:13.5px;
  color:#374151;
  border-left:none;
  position:relative;
}
.syllabus-item::before{
  content:'';
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  border-radius:50%;
  background:#4338ea;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size:11px;
  background-repeat:no-repeat;
  background-position:center;
  flex-shrink:0;
}
.syl-icon{display:none;}
.syllabus-contact-note{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:12.5px;
  color:#6b7280;
  line-height:1.55;
  margin:16px 0 0;
}
.syllabus-contact-note svg{
  flex-shrink:0;
  margin-top:1px;
  color:#4338ea;
}
.syllabus-actions{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}
.btn-back{
  position:relative;
  overflow:hidden;
  z-index:1;
  background:#f3f4f6;
  color:#374151;
  border:none;
  padding:10px 20px;
  border-radius:8px;
  font-weight:600;
  font-size:13.5px;
  cursor:pointer;
  transition:color .35s ease, transform .2s ease;
}
.btn-back::before,
.btn-back::after{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background:#374151;
  z-index:-1;
  transition:transform .35s ease;
}
.btn-back::before{
  clip-path:polygon(0% 0%,55% 0%,45% 100%,0% 100%);
  transform:translateX(-100%);
}
.btn-back::after{
  clip-path:polygon(55% 0%,100% 0%,100% 100%,45% 100%);
  transform:translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .btn-back:hover{color:#fff;transform:translateY(-1px);}
  .btn-back:hover::before,
  .btn-back:hover::after{transform:translateX(0);}
}
.btn-enquiry{
  background:#4338ea;
  color:#fff;
  padding:10px 24px;
  border-radius:8px;
  font-weight:600;
  font-size:13.5px;
  text-decoration:none;
  border:0;
  cursor:pointer;
  transition:background .2s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-enquiry:hover{background:#3730d6;}
}
.btn-enquiry-outline{
  position:relative;
  overflow:hidden;
  z-index:1;
  background:transparent !important;
  color:#4338ea !important;
  border:1.5px solid #4338ea !important;
}
.btn-enquiry-outline::before,
.btn-enquiry-outline::after{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background:#4338ea;
  z-index:-1;
  transition:transform .35s ease;
}
.btn-enquiry-outline::before{
  clip-path:polygon(0% 0%,55% 0%,45% 100%,0% 100%);
  transform:translateX(-100%);
}
.btn-enquiry-outline::after{
  clip-path:polygon(55% 0%,100% 0%,100% 100%,45% 100%);
  transform:translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .btn-enquiry-outline:hover{
    background:#4338ea !important;
    color:#fff !important;
    transform:translateY(-1px);
  }
  .btn-enquiry-outline:hover::before,
  .btn-enquiry-outline:hover::after{transform:translateX(0);}
}
.syllabus-info{display:none;}
.slide-media{
  position:relative;
  overflow:hidden;
  min-height:100%;
  display:flex;
  align-items:stretch;
}
.slide-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  flex:1;
}
.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 6px 16px rgba(17,24,39,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#374151;
  z-index:5;
  transition:background .2s ease,color .2s ease;
}
.slider-arrow svg{width:20px;height:20px;}
@media (hover: hover) and (pointer: fine) {
  .slider-arrow:hover{background:#4338ea;color:#fff;}
}
.slider-arrow.prev{left:-22px;}
.slider-arrow.next{right:-22px;}
.slider-dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
  transition:all .25s ease;
}
.dot.active{
  width:22px;
  border-radius:6px;
  background:#4338ea;
}
.programs-features{
  margin-top:24px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(17,24,39,.06);
  padding:32px 20px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
}
.feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:0 20px;
  border-right:1px solid #eceef3;
}
.feature-item:last-child{border-right:none;}
.feature-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#eef0fe;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}
.feature-item strong{
  display:block;
  font-size:14.5px;
  color:#111827;
  margin-bottom:2px;
}
.feature-item p{
  font-size:12.5px;
  color:#9ca3af;
  margin:0;
  line-height:1.4;
}
@media (max-width:1024px){
  .slide{grid-template-columns:1fr;}
  .slide-media{min-height:280px;order:-1;}
  .programs-features{grid-template-columns:repeat(2,1fr);row-gap:24px;}
  .feature-item{border-right:none;}
  .slide-syllabus{padding:36px 30px;}
  .syllabus-grid{grid-template-columns:1fr;}
}
@media (max-width:640px){
  .programs-section{padding:80px 36px;}
  .programs-title{font-size:30px;}
  .slide-content{padding:36px 26px;}
  .slide-stats{flex-wrap:wrap;gap:18px;}
  .programs-features{grid-template-columns:1fr;}
  .slider-arrow{top:150px;transform:none;}
  .slider-arrow.prev{left:-22px;}
  .slider-arrow.next{right:-22px;}
  .lec-subtext,.lec-card-desc,.programs-subtitle{text-align:justify;}
  .slide-syllabus{padding:28px 20px;}
  .syllabus-grid{grid-template-columns:1fr;}
  .syllabus-actions{flex-direction:column;}
  .btn-back,.btn-enquiry{width:100%;justify-content:center;text-align:center;}
}
.slide-eyebrow--more{
  color:#1a3db5;
  font-weight:700;
  font-size:13px;
  letter-spacing:1.2px;
  display:block;
  padding-bottom:0;
  margin-bottom:4px;
}
.slide-eyebrow--more::after{display:none;}
.slide-eyebrow-rule{
  width:40px;
  height:3px;
  background:#1a3db5;
  border-radius:2px;
  margin-bottom:12px;
}
.slide-title--more{
  font-size:30px;
  font-weight:800;
  color:#0d0d1a;
  line-height:1.15;
  margin:0 0 10px;
}
.slide-title-blue{color:#1a56db;}
.slide-content--more{padding:36px 52px;}
.slide-content--more .slide-desc{margin-bottom:16px;font-size:14px;}
.more-info-boxes{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}
.more-info-box{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:#f5f7ff;
  border:1px solid #e0e7ff;
  border-radius:12px;
  padding:10px 16px;
}
.more-info-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#e8eeff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:#1a56db;
}
.more-info-box p{
  font-size:14px;
  color:#374151;
  line-height:1.6;
  margin:0;
}
.more-info-link{
  color:#1a56db;
  font-weight:700;
  text-decoration:none;
}
@media (hover: hover) and (pointer: fine) {
  .more-info-link:hover{text-decoration:underline;}
}
.btn-explore--phone{display:inline-flex;align-items:center;gap:10px;}
.btn-enquire-outline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:#1a56db;
  border:2px solid #1a56db;
  padding:12px 24px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
  transition:all .3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn-enquire-outline:hover{background:#1a56db;color:#fff;}
}
@media (max-width:640px){
  .slide-content--more{padding:30px 20px;}
  .slide-title--more{font-size:26px;}
  .more-info-boxes{gap:10px;}
}
.pcp-section {
  background: #ffffff;
  padding: 100px 0 80px;
}
.pcp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.pcp-programs-strip {
  padding: 32px 0;
}
.pcp-programs-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a56db;
}
.pcp-programs-rule {
  display: inline-block;
  width: 50px;
  height: 1.5px;
  background: #1a56db;
  border-radius: 2px;
  opacity: 0.4;
}
.pcp-header {
  text-align: center;
  margin-bottom: 48px;
}
.pcp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #374151;
  margin: 0 auto 16px;
  width: fit-content;
}
.pcp-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.pcp-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #111827;
  margin: 0 0 14px;
  line-height: 1.2;
}
.pcp-title span {
  color: #1a56db;
}
.pcp-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
}
.pcp-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.pcp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  border-radius: 16px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .pcp-tab:hover {
    border-color: #c7d2fe;
    background: #f8f9ff;
  }
}
.pcp-tab.active {
  border-color: #1a56db;
  background: #f0f4ff;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.12);
}
.pcp-tab-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.pcp-tab-icon svg {
  width: 100%;
  height: 100%;
}
.pcp-tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.pcp-tab:nth-child(6) .pcp-tab-img {
  transform: scale(1.5);
}
.pcp-tab-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}
.pcp-tab-sub {
  display: block;
  font-size: 11px;
  color: #6b7280;
  margin-top: 3px;
}
.pcp-tab.active .pcp-tab-title {
  color: #1a56db;
}
.pcp-panels {
  position: relative;
}
.pcp-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f8faff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  animation: pcpFadeIn 0.35s ease;
}
.pcp-panel.active {
  display: grid;
}
@keyframes pcpFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pcp-panel-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.pcp-panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  line-height: 1.2;
}
.pcp-panel-emoji {
  font-size: 28px;
  flex-shrink: 0;
}
.pcp-panel-desc {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}
.pcp-panel-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.pcp-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
  font-weight: 500;
}
.pcp-check {
  color: #1a56db;
  font-weight: 700;
  flex-shrink: 0;
}
.pcp-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pcp-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #1a56db;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: 0;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.2s ease;
}
.pcp-btn::before,
.pcp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.pcp-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.pcp-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .pcp-btn:hover {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .pcp-btn:hover::before,
  .pcp-btn:hover::after {
    transform: translateX(0);
  }
}
.pcp-panel-note {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}
.pcp-panel-image {
  display: flex;
  align-items: stretch;
}
.pcp-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pcp-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcp-img-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .pcp-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pcp-section { padding: 60px 0; }
  .pcp-container { padding: 0 20px; }
  .pcp-tabs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pcp-tab { padding: 12px 8px; }
  .pcp-tab-title { font-size: 12px; }
  .pcp-panel.active { grid-template-columns: 1fr; }
  .pcp-panel-image { order: -1; min-height: 200px; }
  .pcp-img-placeholder { min-height: 200px; }
  .pcp-panel-body { padding: 28px 20px; }
  .pcp-panel-title { font-size: 22px; }
  .pcp-panel-points { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pcp-tabs { grid-template-columns: repeat(2, 1fr); }
  .pcp-tab-icon { width: 40px; height: 40px; }
}
.cta-dark-section {
  background: #ffffff;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}
.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #1a56db;
  border-radius: 30px;
}
.cta-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}
.cta-action-right {
  display: flex;
  align-items: center;
}
.cta-brush-link {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cta-brush-link:hover {
    opacity: 0.85;
    transform: scale(1.05);
  }
}
.cta-arrow {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cta-brush-link:hover .cta-arrow {
    transform: translate(5px, -5px);
  }
}
@media (max-width: 991px) {
  .cta-container {
    padding: 0 40px;
    gap: 30px;
  }
  .cta-main-title {
    font-size: 42px;
  }
  .cta-brush-link {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .cta-dark-section {
    padding: 40px 24px;
  }
  .cta-container {
    padding: 50px 30px;
    border-radius: 20px;
  }
  .cta-main-title {
    font-size: 26px;
    text-align: center;
  }
  .cta-brush-link {
    font-size: 32px;
    text-align: center;
  }
}
#bttControl {
  position: fixed;
  right: 60px;
  bottom: calc(120px + var(--fcw-overlap, 0px));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0.4s ease-out, bottom 0.35s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
#bttControl:focus-visible {
  outline: 2px solid #0b5fa5;
  outline-offset: 6px;
  border-radius: 4px;
}
#bttControl.btt-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  #bttControl.btt-visible:hover {
    transform: translateY(0) translateX(-4px);
  }
  #bttControl.btt-visible:hover .btt-text {
    color: #083b73;
  }
}
#bttControl.btt-fcw-open {
  bottom: calc(300px + var(--fcw-overlap, 0px));
}
.btt-text {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #0b5fa5;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transition: color 0.25s ease;
  line-height: 1.2;
  user-select: none;
}
.btt-line-wrap {
  width: 4px;
  height: 0;
  border-radius: 2px;
  background: #0b5fa5;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.btt-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #083b73;
  border-radius: inherit;
  transform-origin: top center;
  transform: scaleY(0);
  will-change: transform;
}
@media (max-width: 1024px) {
  #bttControl { right: 24px; bottom: calc(100px + var(--fcw-overlap, 0px)); gap: 1px; }
  #bttControl.btt-fcw-open { bottom: calc(280px + var(--fcw-overlap, 0px)); }
  .btt-text { font-size: 12px; letter-spacing: 2.5px; }
}
@media (max-width: 767px) {
  #bttControl { right: 20px; bottom: calc(88px + var(--fcw-overlap, 0px)); gap: 1px; }
  #bttControl.btt-fcw-open { bottom: calc(250px + var(--fcw-overlap, 0px)); }
  .btt-text { font-size: 10px; letter-spacing: 2px; }
}
.site-preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0b5fa5 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 999999 !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.25,1,0.5,1), visibility 0.4s ease;
  perspective: 1000px;
}
.site-preloader-overlay.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.loader-wrapper-master {
  position: relative;
  width: 165px;
  height: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.loader-wrapper {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: global-spin 5s infinite linear;
}
.site-preloader-overlay .circle {
  position: absolute;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.9) !important;
  transform-style: preserve-3d;
  box-sizing: border-box;
}
.loader-wrapper .circle {
  width: 100%;
  height: 100%;
}
.r-z { transform: rotateY(0deg); }
.r-y { transform: rotateY(90deg); }
.r-x { transform: rotateX(90deg); }
.r-4-outer,
.r-5-outer { width: 130px; height: 130px; }
.r-4-outer { animation: spin-outer-horizontal 3.8s infinite linear; }
.r-5-outer { animation: spin-outer-vertical 2.7s infinite linear; }
.r-6-outer,
.r-7-outer { width: 165px; height: 165px; }
.r-6-outer { animation: rotate-flat-clockwise 4s infinite linear; }
.r-7-outer { animation: rotate-flat-counter 3.2s infinite linear; }
.site-preloader-overlay .logo {
  position: absolute;
  width: 65px;
  height: auto;
  user-select: none;
  transform: translateZ(2px);
  filter: brightness(0) invert(1) !important;
}
@keyframes global-spin {
  0% { transform: rotateX(45deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(45deg) rotateY(360deg) rotateZ(360deg); }
}
@keyframes spin-outer-horizontal {
  0% { transform: rotateX(15deg) rotateY(40deg); }
  100% { transform: rotateX(15deg) rotateY(400deg); }
}
@keyframes spin-outer-vertical {
  0% { transform: rotateY(-30deg) rotateX(85deg); }
  100% { transform: rotateY(-30deg) rotateX(445deg); }
}
@keyframes rotate-flat-clockwise {
  0% { transform: rotateX(45deg) rotateZ(0deg); }
  100% { transform: rotateX(45deg) rotateZ(360deg); }
}
@keyframes rotate-flat-counter {
  0% { transform: rotateY(45deg) rotateZ(360deg); }
  100% { transform: rotateY(45deg) rotateZ(0deg); }
}
.ipo-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}
.ipo-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a56db;
  margin-bottom: 14px;
}
.ipo-label-rule {
  display: inline-block;
  width: 50px;
  height: 1.5px;
  background: #1a56db;
  border-radius: 2px;
  opacity: 0.4;
}
.ipo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a56db;
  background: #eef4ff;
  border: 1px solid #c7d9fb;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.ipo-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.ipo-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 12px;
}
.ipo-title-blue {
  color: #1a56db;
}
.ipo-subtitle {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: justify;
}
.ipo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.ipo-card {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ipo-card:hover {
    box-shadow: 0 16px 48px rgba(26, 86, 219, 0.10);
    transform: translateY(-4px);
  }
}
.ipo-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.ipo-icon-ring {
  display: none;
}
.ipo-icon-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}
.ipo-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.4;
}
.ipo-card-rule {
  width: 32px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 10px;
}
.ipo-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  text-align: justify;
}
@media (max-width: 1024px) {
  .ipo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ipo-cards {
    grid-template-columns: 1fr;
  }
  .ipo-section {
    padding: 56px 0 24px;
  }
}
.ipi-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0 64px;
  border-bottom: 1px solid #e8edf5;
  margin-bottom: 64px;
}
.ipi-hero-left {
  padding-left: 50px;
}
.ipi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a56db;
  background: #eef4ff;
  border: 1px solid #c7d9fb;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.ipi-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.ipi-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 18px;
}
.ipi-title-blue {
  color: #1a56db;
}
.ipi-title-rule {
  width: 48px;
  height: 4px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 28px;
}
.ipi-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 18px;
  text-align: justify;
}
.ipi-desc:last-child { margin-bottom: 0; }
.ipi-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ipi-img-circle-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
}
.ipi-img-orbit-ring {
  display: none;
}
.ipi-img-circle {
  width: 100%;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  line-height: 0;
}
.ipi-main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.ipi-badge {
  display: none;
}
.ipi-badge--grad {
  top: 6%;
  right: -4%;
}
.ipi-badge--code {
  top: 50%;
  left: -8%;
  transform: translateY(-50%);
}
.ipi-badge--chart {
  bottom: 8%;
  right: -4%;
}
.ipi-dot {
  display: none;
}
.ipi-dot--tl { top: 14%; left: 14%; }
.ipi-dot--bl { bottom: 14%; left: 22%; }
@media (max-width: 900px) {
  .ipi-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 48px;
  }
  .ipi-hero-left { padding-left: 0; }
  .ipi-img-circle-wrap {
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  .ipi-img-circle-wrap {
    max-width: 240px;
  }
  .ipi-badge { width: 48px; height: 48px; border-radius: 12px; }
  .ipi-badge svg { width: 20px; height: 20px; }
}
.wcu2-section {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 50px 0;
  overflow: hidden;
}
.wcu2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.wcu2-header {
  text-align: center;
  margin-bottom: 36px;
}
.wcu2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111827;
  margin-bottom: 12px;
  width: fit-content;
}
.wcu2-rule {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #1a56db;
  border-radius: 2px;
}
.wcu2-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 14px;
}
.wcu2-heading-blue {
  color: #1a56db;
}
.wcu2-subtext {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
  text-align: justify;
}
.wcu2-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wcu2-card {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 20px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .wcu2-card:hover {
    box-shadow: 0 12px 40px rgba(26, 86, 219, 0.13);
    transform: translateY(-5px);
    border-color: #c7d6f7;
  }
}
.wcu2-card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.wcu2-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(26, 86, 219, 0.25);
  animation: wcu2Spin 12s linear infinite;
}
@keyframes wcu2Spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.wcu2-card-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.wcu2-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 8px;
}
.wcu2-card-rule {
  width: 28px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.wcu2-card-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}
@media (max-width: 1024px) {
  .wcu2-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .wcu2-section { padding: 60px 0 70px; }
  .wcu2-container { padding: 0 20px; }
  .wcu2-cards { grid-template-columns: 1fr; gap: 16px; }
  .wcu2-card { padding: 28px 20px; }
  .wcu2-heading { font-size: 26px; letter-spacing: -0.5px; }
  .wcu2-subtext { font-size: 14px; }
  .wcu2-card-title { font-size: 15px; }
  .wcu2-card-desc { font-size: 13px; }
}
.pti-section {
  background: #f5f7ff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.pti-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(26,86,219,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.pti-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.pti-header {
  text-align: center;
  margin-bottom: 52px;
}
.pti-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #374151;
  margin-bottom: 20px;
  width: fit-content;
}
.pti-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.pti-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  word-wrap: normal;
  white-space-collapse: collapse;
}
.pti-heading .char {
  display: inline !important;
  white-space: normal;
}
.pti-heading .word {
  display: inline-block;
  white-space: nowrap;
}
.pti-heading-blue {
  color: #1a56db;
}
.pti-heading-rule {
  display: none;
}
.pti-heading-rule span {
  display: inline-block;
  width: 60px;
  height: 1.5px;
  background: #1a56db;
  border-radius: 2px;
  opacity: 0.4;
}
.pti-rule-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #1a56db !important;
  opacity: 1 !important;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #1a56db;
}
.pti-card {
  display: grid;
  grid-template-columns: 100px 1fr 360px;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(26, 86, 219, 0.07);
  border: 1px solid #e8eef8;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pti-card:hover {
    box-shadow: 0 10px 40px rgba(26, 86, 219, 0.13);
    transform: translateY(-3px);
  }
}
.pti-card:last-child {
  margin-bottom: 0;
}
.pti-card--reverse {
  grid-template-columns: 360px 100px 1fr;
}
.pti-card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pti-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.pti-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pti-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.35;
  text-decoration: none;
}
.pti-card-desc {
  font-size: 14.5px;
  color: #555e75;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}
.pti-card-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pti-card-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 1024px) {
  .pti-card {
    grid-template-columns: 80px 1fr 280px;
    padding: 32px;
    gap: 24px;
  }
  .pti-card--reverse {
    grid-template-columns: 280px 80px 1fr;
  }
}
@media (max-width: 768px) {
  .pti-section { padding: 60px 0; }
  .pti-container { padding: 0 20px; }
  .pti-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .pti-card--reverse {
    grid-template-columns: 1fr;
  }
  .pti-card-icon {
    margin: 0 auto;
  }
  .pti-card-image {
    order: -1;
  }
  .pti-card--reverse .pti-card-image {
    order: -1;
  }
  .pti-card:not(.pti-card--reverse) .pti-card-icon { order: 1; }
  .pti-card:not(.pti-card--reverse) .pti-card-body  { order: 2; }
  .pti-card:not(.pti-card--reverse) .pti-card-image { order: 3; }
  .pti-card--reverse .pti-card-icon  { order: 1; }
  .pti-card--reverse .pti-card-body  { order: 2; }
  .pti-card--reverse .pti-card-image { order: 3; }
  .pti-card-desc {
    text-align: justify;
  }
  .pti-card-image img {
    max-width: 260px;
  }
}
@media (max-width: 480px) {
  .pti-heading { font-size: 26px; }
  .pti-card { padding: 22px 16px; }
  .pti-card-title { font-size: 16px; }
  .pti-card-desc { font-size: 13.5px; }
}
.aps-section {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.aps-container {
  max-width: 100%;
}
.aps-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 80px;
  gap: 40px;
}
.aps-eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.aps-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.aps-hero-left {
  grid-column: 1;
  grid-row: 2;
}
.aps-image-column {
  grid-column: 2;
  grid-row: 1 / 3;
}
.aps-hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d9f5;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #1a56db;
  width: fit-content;
}
.aps-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: #0d0d1a;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -1px;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.aps-title .word {
  display: inline-block;
  white-space: nowrap;
}
.aps-title span {
  color: #1a56db;
}
.aps-subtitle {
  font-size: 13px;
  color: #555e75;
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}
.aps-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.aps-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .aps-stat:hover {
    box-shadow: 0 6px 24px rgba(26,86,219,0.1);
    transform: translateY(-2px);
  }
}
.aps-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2ff;
  border: 1px solid #d0d9f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aps-stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d0d1a;
  line-height: 1;
}
.aps-stat-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 3px;
  font-weight: 500;
}
.aps-image-column {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 20px;
}
.aps-simple-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.aps-bg-dots {
  position: absolute;
  top: 10px;
  left: 0;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.6;
  z-index: 1;
}
.aps-bg-gradient-shape {
  position: absolute;
  right: -10px;
  top: 40px;
  bottom: 40px;
  width: 180px;
  height: auto;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  clip-path: polygon(68% 0%, 100% 0%, 100% 100%, 68% 100%, 12% 48%);
  z-index: 1;
  border-radius: 12px;
  filter: drop-shadow(0 0 1px rgba(30,64,175,0.3));
}
.aps-image-wrapper {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 0 8px white);
  border-radius: 16px;
  overflow: hidden;
}
.aps-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  clip-path: polygon(18% 0%, 93% 0%, 74% 48%, 93% 100%, 18% 100%, 0% 48%);
}
.aps-hexagon-badge {
  position: absolute;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.badge-lightbulb {
  top: 12%;
  left: 4%;
  background: linear-gradient(135deg, #0250c5 0%, #1a73e8 100%);
  color: #ffffff;
}
.badge-gear {
  top: 44%;
  right: 4%;
  background-color: #ffffff;
  color: #1e40af;
}
.badge-microchip {
  bottom: 10%;
  right: 14%;
  background: linear-gradient(135deg, #0250c5 0%, #1a73e8 100%);
  color: #ffffff;
}
.aps-who-strip {
  background: #f4f6fb;
  padding: 48px 80px;
}
.aps-who-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a56db;
  margin-bottom: 32px;
}
.aps-who-rule {
  display: inline-block;
  width: 50px;
  height: 1.5px;
  background: #1a56db;
  border-radius: 2px;
  opacity: 0.4;
}
.aps-who-rule--light {
  background: rgba(255,255,255,0.4);
}
.aps-who-cards {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}
.aps-who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .aps-who-card:hover {
    border-color: #1a56db;
    box-shadow: 0 6px 20px rgba(26,86,219,0.1);
    transform: translateY(-3px);
  }
}
.aps-who-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aps-who-card-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d0d1a;
  line-height: 1.3;
}
.aps-who-card-text span {
  display: block;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 2px;
}
.aps-domains-section {
  background: #020c24;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}
.aps-domains-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.aps-domains-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.aps-domains-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3b82f6;
  margin-bottom: 16px;
}
.aps-domains-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}
.aps-domains-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.aps-domain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .aps-domain-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-4px);
  }
}
.aps-domain-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.aps-domain-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.35;
}
.aps-domain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.aps-domain-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(200,215,255,0.7);
  font-weight: 400;
}
.aps-domain-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--aps-d-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.aps-domain-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--aps-d-bar);
  opacity: 0.7;
  border-radius: 0 0 16px 16px;
}
.aps-lower {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.aps-sub-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}
.aps-sub-heading--light {
  color: #ffffff;
}
.aps-support-box {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 36px;
}
.aps-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.aps-support-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #374151;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.aps-support-item:nth-last-child(-n+4) {
  border-bottom: none;
}
.aps-support-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a56db;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.aps-why-box {
  background: #020c24;
  border-radius: 20px;
  padding: 32px 36px;
}
.aps-why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.aps-why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(220,230,255,0.88);
  font-weight: 500;
  transition: background 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .aps-why-item:hover {
    background: rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.38);
  }
}
.aps-why-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(59,130,246,0.18);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aps-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #1a56db 0%, #1446b8 100%);
  border-radius: 20px;
  padding: 44px 52px;
}
.aps-cta-text { flex: 1; min-width: 0; }
.aps-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.aps-cta-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}
.aps-cta-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #1a56db;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  will-change: transform;
  border: 0;
  cursor: pointer;
  transition: color 0.35s ease;
}
.aps-cta-btn::before,
.aps-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #1a56db;
  z-index: -1;
  transition: transform 0.35s ease;
}
.aps-cta-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.aps-cta-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .aps-cta-btn:hover {
    color: #ffffff;
    transform: none;
    outline: 2px solid #ffffff;
    outline-offset: -2px;
  }
  .aps-cta-btn:hover::before,
  .aps-cta-btn:hover::after {
    transform: translateX(0);
  }
}
@media (max-width: 1400px) {
  .aps-image-column {
    margin-right: -40px;
  }
}
@media (max-width: 1200px) {
  .aps-hero { padding: 70px 40px 50px; gap: 40px; }
  .aps-who-strip { padding: 40px; }
  .aps-domains-section { padding: 60px 40px; }
  .aps-domains-grid { grid-template-columns: repeat(3, 1fr); }
  .aps-lower { padding: 60px 40px; }
  .aps-support-grid { grid-template-columns: repeat(3, 1fr); }
  .aps-why-list { grid-template-columns: repeat(2, 1fr); }
  .aps-who-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 880px) {
  .aps-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 50px 24px 40px;
  }
  .aps-eyebrow { grid-column: auto; grid-row: auto; order: 1; text-align: center; justify-content: center; }
  .aps-hero-left { grid-column: auto; grid-row: auto; order: 3; }
  .aps-image-column {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    margin-right: -24px;
    margin-left: -24px;
  }
  .aps-hexagon-badge { width: 52px; height: 52px; font-size: 20px; }
  .badge-lightbulb { left: 5%; }
  .badge-gear { right: 5%; }
  .badge-microchip { right: 10%; }
  .aps-who-strip { padding: 36px 24px; }
  .aps-who-cards { grid-template-columns: repeat(4, 1fr); }
  .aps-domains-section { padding: 50px 24px; }
  .aps-domains-grid { grid-template-columns: repeat(2, 1fr); }
  .aps-lower { padding: 40px 24px; }
  .aps-support-grid { grid-template-columns: repeat(2, 1fr); }
  .aps-cta-banner { flex-direction: column; padding: 32px 24px; text-align: center; }
  .aps-cta-sub { text-align: justify; }
  .aps-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .aps-image-column {
    margin-right: -16px;
    margin-left: -16px;
  }
  .aps-hexagon-badge { width: 44px; height: 44px; font-size: 18px; }
  .aps-stats-row { grid-template-columns: 1fr 1fr; }
  .aps-who-cards { grid-template-columns: repeat(2, 1fr); }
  .aps-domains-grid { grid-template-columns: 1fr; }
  .aps-support-grid { grid-template-columns: 1fr 1fr; }
  .aps-why-list { grid-template-columns: 1fr; }
  .aps-support-item:nth-last-child(-n+4) { border-bottom: 1px solid #f0f0f0; }
  .aps-support-item:last-child { border-bottom: none; }
  .aps-who-strip { padding: 32px 16px; }
  .aps-domains-section { padding: 40px 16px; }
  .aps-lower { padding: 32px 16px; }
  .aps-hero { padding: 40px 16px 32px; }
}
.car-info-section {
  background: #f8fafc;
  padding: 48px 20px;
}
.car-info-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 32px 36px 32px 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.car-info-accent {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  background: #0a66c2;
  border-radius: 2px;
}
.car-info-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1a2b4a;
  margin: 0 0 12px;
}
.car-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eef4fb;
  color: #0a66c2;
  flex-shrink: 0;
}
.car-info-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}
.car-info-email {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .car-info-email:hover {
    color: #1a56db;
    text-decoration: underline;
  }
}
@media (max-width: 600px) {
  .car-info-section { padding: 32px 16px; }
  .car-info-container { padding: 24px 20px 24px 28px; }
  .car-info-heading { font-size: 16px; }
  .car-info-desc { font-size: 14px; text-align: justify; }
}
@media (hover: none) and (pointer: coarse) {
  .nav-item a.nav-link-tapped { color: #1a56db; }
  .hero-cta-btn--primary.hero-primary-tapped { color: #1a56db; border-color: transparent; transform: translateY(-2px); }
  .hero-cta-btn--primary.hero-primary-tapped::before,
  .hero-cta-btn--primary.hero-primary-tapped::after { transform: translateX(0); }
  .hero-cta-btn--outline.hero-outline-tapped { color: #3b82f6; border-color: transparent; transform: translateY(-2px); }
  .hero-cta-btn--outline.hero-outline-tapped::before,
  .hero-cta-btn--outline.hero-outline-tapped::after { transform: translateX(0); }
  .cta-brush-link.cta-brush-link-tapped { opacity: 0.85; transform: scale(1.05); }
  .cta-brush-link.cta-brush-link-tapped .cta-arrow { transform: translate(5px, -5px); }
  .social-icon.social-icon-tapped { background: #1a56db; color: #ffffff; border-color: #1a56db; }
  .footer-links a.footer-link-tapped { color: #1a56db; gap: 12px; }
  .footer-links a.footer-link-tapped::before { opacity: 1; }
  .contact-link.contact-link-tapped { color: #1a56db; }
  .contact-link.contact-link-tapped .contact-info-text { color: #1a56db; }
  .fcw-btn.fcw-btn-tapped { transform: translateY(0) scale(1.12) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
  .fcw-btn.fcw-btn-tapped .fcw-tooltip { opacity: 1; }
  #bttControl.btt-tapped { transform: translateY(0) translateX(-4px); }
  #bttControl.btt-tapped .btt-text { color: #083b73; }
  .cf-submit-btn.cf-submit-btn-tapped { color: #1a56db; transform: translateY(-2px); }
  .cf-submit-btn.cf-submit-btn-tapped::before,
  .cf-submit-btn.cf-submit-btn-tapped::after { transform: translateX(0); }
  .newsletter-btn.newsletter-btn-tapped { background: #1446b8; transform: translateY(-1px); }
  .cbb-chat-btn.cbb-chat-btn-tapped { color: #ffffff; border-color: transparent; transition: color 0.3s ease, border-color 0.3s ease; }
  .cbb-chat-btn.cbb-chat-btn-tapped::before,
  .cbb-chat-btn.cbb-chat-btn-tapped::after { transform: translateX(0); transition: transform 0.35s ease; }
  .rnd-cta-btn.rnd-cta-btn-tapped { color: #1a56db; transform: translateY(-2px); }
  .rnd-cta-btn.rnd-cta-btn-tapped::before,
  .rnd-cta-btn.rnd-cta-btn-tapped::after { transform: translateX(0); }
  .sds-btn.sds-btn-tapped { color: #2563eb; transform: translateY(-2px); }
  .sds-btn.sds-btn-tapped::before,
  .sds-btn.sds-btn-tapped::after { transform: translateX(0); }
  .ict-btn-primary.ict-primary-tapped { color: #1a56db; border-color: transparent; transform: translateY(-2px); }
  .ict-btn-primary.ict-primary-tapped::before,
  .ict-btn-primary.ict-primary-tapped::after { transform: translateX(0); }
  .ict-btn-outline.ict-outline-tapped { color: #ffffff; border-color: transparent; transform: translateY(-2px); }
  .ict-btn-outline.ict-outline-tapped::before,
  .ict-btn-outline.ict-outline-tapped::after { transform: translateX(0); }
  .aps-cta-btn.aps-cta-btn-tapped { color: #ffffff; transform: translateY(-2px); }
  .aps-cta-btn.aps-cta-btn-tapped::before,
  .aps-cta-btn.aps-cta-btn-tapped::after { transform: translateX(0); }
  .pcp-btn.pcp-btn-tapped { color: #1a56db; transform: translateY(-2px); }
  .pcp-btn.pcp-btn-tapped::before,
  .pcp-btn.pcp-btn-tapped::after { transform: translateX(0); }
  .btn-explore.btn-explore-tapped { color: #4338ea; transform: translateY(-2px); }
  .btn-explore.btn-explore-tapped::before,
  .btn-explore.btn-explore-tapped::after { transform: translateX(0); }
  .btn-view-details.btn-view-details-tapped { color: #fff; transform: translateY(-2px); }
  .btn-view-details.btn-view-details-tapped::before,
  .btn-view-details.btn-view-details-tapped::after { transform: translateX(0); }
  .btn-enquire-outline.btn-enquire-tapped { background: #1a56db; color: #fff; }
}
.car-job-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 36px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 0 0 18px 18px;
  flex-wrap: wrap;
}
.car-job-apply-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #475569;
}
.car-job-apply-note svg { color: #0a66c2; flex-shrink: 0; }
.car-job-apply-link {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .car-job-apply-link:hover { color: #1a56db; text-decoration: underline; }
}
.car-job-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0a66c2;
  background: none;
  border: 1.5px solid #0a66c2;
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .car-job-info-btn:hover { background: #0a66c2; color: #ffffff; }
}
.car-info-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.car-info-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.car-info-popup {
  background: #ffffff;
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow:
    0 32px 80px rgba(10, 30, 90, 0.22),
    0 8px 24px rgba(10, 30, 90, 0.10);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
  opacity: 0;
  overflow: hidden;
}
.car-info-popup-overlay.open .car-info-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.car-info-popup-topbar {
  background: linear-gradient(135deg, #0a66c2 0%, #1a56db 60%, #3b82f6 100%);
  padding: 28px 32px 24px;
  position: relative;
  overflow: hidden;
}
.car-info-popup-topbar::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.car-info-popup-topbar::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.car-info-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .car-info-popup-close:hover {
    background: rgba(255,255,255,0.32);
  }
}
.car-info-popup-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.car-info-popup-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.car-info-popup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}
.car-info-popup-subtitle {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  margin: 3px 0 0;
  font-weight: 400;
}
.car-info-popup-body {
  padding: 28px 32px 32px;
}
.car-info-popup-text {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 24px;
  text-align: justify;
}
.car-info-popup-text a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .car-info-popup-text a:hover {
    text-decoration: underline;
  }
}
.car-info-popup-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8faff;
  border: 1px solid #e0e9f8;
  border-radius: 14px;
}
.car-info-popup-footer-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eef4fb;
  border: 1px solid #d0e2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0a66c2;
}
.car-info-popup-footer-text {
  flex: 1;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}
.car-info-popup-footer-text strong {
  display: block;
  font-weight: 700;
  color: #0d0d1a;
  margin-bottom: 1px;
}
.car-info-popup-footer-link {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}
@media (hover: hover) and (pointer: fine) {
  .car-info-popup-footer-link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 500px) {
  .car-info-popup-topbar { padding: 22px 20px 20px; }
  .car-info-popup-body { padding: 22px 20px 24px; }
  .car-info-popup-title { font-size: 16px; }
  .car-info-popup-text { font-size: 13.5px; }
}
@media (max-width: 900px) {
  .car-job-footer {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
  }
  .car-job-footer > svg {
    display: none;
  }
  .car-job-apply-note {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    line-height: 1.6;
    width: 100%;
    text-align: center;
  }
  .car-job-apply-note::before {
    content: '✉';
    color: #0a66c2;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1.6;
  }
  .car-job-apply-link {
    display: inline;
    word-break: break-all;
    font-weight: 600;
  }
  .car-job-info-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .car-job-footer {
    padding: 12px 16px;
    gap: 8px;
  }
  .car-job-apply-note {
    font-size: 12.5px;
  }
}
.contact-section .contact-badge,
.contact-section .contact-form-card,
.contact-section .trust-badge,
.contact-section .ci-card,
.contact-section .contact-map-wrapper,
.contact-section .contact-bottom-bar,
.contact-section .contact-intro-text {
  visibility: hidden;
}
.ts-heading,
.wcu-heading,
.ict-heading,
.dom-header-heading,
.dom-panel-title,
.contact-main-title,
.car-intro-subheading,
.rnd-intro-heading,
.rd-main-title,
.lec-heading,
.sds-sidebar-heading,
.ipi-title,
.programs-title,
.ipo-title,
.pti-heading,
.wcu2-heading,
.pcp-title,
.aps-title {
  word-break: keep-all;
  overflow-wrap: normal;
}
.ts-heading .char,
.wcu-heading .char,
.ict-heading .char,
.dom-header-heading .char,
.dom-panel-title .char,
.contact-main-title .char,
.car-intro-subheading .char,
.rnd-intro-heading .char,
.rd-main-title .char,
.lec-heading .char,
.ipi-title .char,
.programs-title .char,
.ipo-title .char,
.pti-heading .char,
.wcu2-heading .char,
.pcp-title .char,
.aps-title .char {
  display: inline !important;
  white-space: normal !important;
}
.ts-heading .word,
.wcu-heading .word,
.ict-heading .word,
.dom-header-heading .word,
.dom-panel-title .word,
.contact-main-title .word,
.car-intro-subheading .word,
.rnd-intro-heading .word,
.rd-main-title .word,
.lec-heading .word,
.sds-sidebar-heading .word,
.ipi-title .word,
.programs-title .word,
.ipo-title .word,
.pti-heading .word,
.wcu2-heading .word,
.pcp-title .word,
.aps-title .word {
  display: inline !important;
  white-space: nowrap !important;
}
@media (max-width: 480px) {
  .aps-section,
  .aps-container,
  .aps-hero,
  .aps-lower,
  .aps-who-strip,
  .aps-domains-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  .aps-hero {
    padding: 40px 16px 32px;
  }
  .aps-title {
    font-size: clamp(24px, 7vw, 32px);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .aps-subtitle {
    font-size: 13.5px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .aps-image-column {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
  }
  .aps-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .aps-stat {
    padding: 12px 12px;
    gap: 10px;
  }
  .aps-stat-num {
    font-size: 18px;
  }
  .aps-stat-label {
    font-size: 11px;
  }
  .aps-who-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .aps-who-strip {
    padding: 32px 16px;
  }
  .aps-domains-section {
    padding: 40px 16px;
  }
  .aps-domains-grid {
    grid-template-columns: 1fr;
  }
  .aps-lower {
    padding: 32px 16px;
  }
  .aps-support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .aps-why-list {
    grid-template-columns: 1fr;
  }
  .aps-cta-banner {
    padding: 28px 20px;
    flex-direction: column;
    text-align: center;
  }
  .aps-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 412px) {
  html, body {
    overflow-x: hidden;
  }
  .aps-section,
  .aps-container,
  .aps-hero,
  .aps-lower,
  .aps-who-strip,
  .aps-domains-section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .aps-hero {
    padding: 32px 14px 24px;
    gap: 20px;
  }
  .aps-image-column {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 20px;
    overflow: hidden;
  }
  .badge-gear {
    right: 18% !important;
  }
  .badge-microchip {
    right: 16% !important;
  }
  .aps-title {
    font-size: clamp(22px, 6.5vw, 28px);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .aps-subtitle {
    font-size: 13px;
  }
  .aps-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .aps-stat {
    padding: 10px;
    gap: 8px;
  }
  .aps-stat-num {
    font-size: 17px;
  }
  .aps-stat-label {
    font-size: 10.5px;
  }
}
.eq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.eq-modal-overlay.eq-modal-open {
  opacity: 1;
  visibility: visible;
}
.eq-modal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 44px;
  max-width: 820px;
  width: 92vw;
  max-height: 95vh;
  overflow-y: visible;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s ease;
}
.eq-modal-overlay.eq-modal-open .eq-modal-card {
  transform: scale(1) translateY(0);
}
.eq-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2;
}
.eq-modal-close:hover { color: #111; }
.eq-modal-header { margin-bottom: 16px; }
.eq-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.eq-modal-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6b7280;
}
.eq-modal-form-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.eq-modal-form-rule {
  width: 32px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 20px;
}
.eq-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eq-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.eq-modal-field {
  position: relative;
  display: flex;
  align-items: center;
}
.eq-modal-full { width: 100%; }
.eq-modal-input {
  width: 100%;
  height: 50px;
  padding: 0 44px 0 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #111;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}
.eq-modal-input::placeholder { color: #9ca3af; }
.eq-modal-input:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
  background: #fff;
}
.eq-modal-star {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.eq-modal-star-textarea { top: 16px; transform: none; }
.eq-modal-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.eq-modal-textarea {
  height: 100px;
  padding: 14px 18px;
  resize: none;
  line-height: 1.65;
}
.eq-modal-submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.eq-modal-submit-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a56db;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.2s ease;
  white-space: nowrap;
}
.eq-modal-submit-btn:disabled { opacity: 0.6; cursor: default; }
.eq-modal-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eq-modal-privacy-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-modal-privacy-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}
.eq-modal-note {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 6px;
  border-left: 3px solid #1a56db;
}
@media (max-width: 640px) {
  .eq-modal-card {
    width: 92vw;
    padding: 24px;
    border-radius: 16px;
  }
  .eq-modal-row { grid-template-columns: 1fr; }
  .eq-modal-title { font-size: 16px; }
  .eq-modal-textarea { height: 120px; }
  .eq-modal-submit-btn { padding: 12px 24px; font-size: 11px; }
}
html.eq-modal-lock,
html.eq-modal-lock body {
  overflow: hidden;
  touch-action: none;
}
