@import "tailwindcss";

:root {
  --ciera-blue: #1ea0d6;
  --ciera-blue-dark: #0e7aab;
  --ciera-blue-darker: #0a5a80;
  --ciera-blue-deep: #062f44;
  --ciera-ink: #0b1620;
  --ciera-white: #ffffff;
  --ciera-soft: #eaf6fc;
  --ciera-line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  padding: 0;
  background: var(--ciera-white);
  color: var(--ciera-ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
}

.ciera-root {
  min-height: 100vh;
  width: 100%;
  background: var(--ciera-white);
}

/* ============ TOP BAR ============ */
.topbar {
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep) 0%,
    var(--ciera-blue-darker) 60%,
    var(--ciera-blue-dark) 100%
  );
  color: var(--ciera-white);
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 60;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 8px
  );
  pointer-events: none;
}

.topbar-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  position: relative;
  z-index: 1;
}

.topbar-name span {
  color: #9fdcf5;
  font-weight: 500;
  margin: 0 4px;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ciera-white);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.topbar-phone:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.topbar-phone-icon {
  font-size: 13px;
  filter: drop-shadow(0 0 6px rgba(159, 220, 245, 0.6));
}

/* ============ NAVBAR ============ */
.navbar {
  background: var(--ciera-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 90, 128, 0.08);
  transition: box-shadow 0.25s ease, padding 0.25s ease,
    background 0.25s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 24px -12px rgba(10, 90, 128, 0.25);
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.nl {
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  width: auto;
  transition: transform 0.25s ease;
}

.nl:hover .nav-logo {
  transform: scale(1.03);
}

.nls {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nls li a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ciera-ink);
  letter-spacing: 0.04em;
  position: relative;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nls li a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--ciera-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nls li a:hover {
  color: var(--ciera-blue-dark);
}

.nls li a:hover::after {
  transform: scaleX(1);
}

.nls li a.ncta {
  background: var(--ciera-blue);
  color: var(--ciera-white);
  margin-left: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 18px -8px rgba(30, 160, 214, 0.7);
  transition: background 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nls li a.ncta::after {
  display: none;
}

.nls li a.ncta:hover {
  background: var(--ciera-blue-dark);
  color: var(--ciera-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -10px rgba(14, 122, 171, 0.8);
}

/* ----- Mobile toggle ----- */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(10, 90, 128, 0.18);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ciera-blue-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============ VIDEO BANNER ============ */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.35; /* blend with your theme */
}

.video-banner {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 520px;
  width: 100%;
  overflow: hidden;
  background: var(--ciera-blue-deep);
  color: var(--ciera-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 25% 30%,
      rgba(30, 160, 214, 0.55),
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(10, 90, 128, 0.7),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      #06283d 0%,
      #0a4a6e 45%,
      #0e7aab 80%,
      #1ea0d6 100%
    );
  overflow: hidden;
}

.video-bg {
  z-index: 1;
  opacity: 0.35; /* keep overlay effect */
}

.banner-grid,
.banner-glow {
  z-index: 1;
}

.banner-content {
  z-index: 2;
}



@keyframes zoomVideo {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.08); }
}

.banner-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  animation: gridShift 24s linear infinite;
}

@keyframes gridShift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60px, 60px, 0);
  }
}

.banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.banner-glow-1 {
  width: 380px;
  height: 380px;
  background: #1ea0d6;
  top: -80px;
  left: -60px;
}

.banner-glow-2 {
  width: 460px;
  height: 460px;
  background: #58c6ec;
  bottom: -120px;
  right: -100px;
  animation-delay: -6s;
}

.banner-glow-3 {
  width: 280px;
  height: 280px;
  background: #ffffff;
  opacity: 0.18;
  top: 40%;
  left: 50%;
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, -30px);
  }
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 0 28px;
  text-align: center;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #9fdcf5;
  margin: 0 0 18px;
  font-weight: 600;
}

.banner-title {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.banner-title span {
  background: linear-gradient(90deg, #ffffff 0%, #9fdcf5 60%, #58c6ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-sub {
  margin: 22px auto 0;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.banner-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease, color 0.2s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--ciera-white);
  color: var(--ciera-blue-deep);
  box-shadow: 0 12px 30px -10px rgba(255, 255, 255, 0.45);
}

.btn-secondary {
  background: var(--ciera-white);
  color: red;
  box-shadow: 0 12px 30px -10px rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(255, 255, 255, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--ciera-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--ciera-white);
  transform: translateY(-2px);
}

.banner-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--ciera-white);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -20px;
  }
  100% {
    top: 60px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .topbar {
    padding: 8px 16px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .topbar-name {
    font-size: 11.5px;
  }

  .navbar {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nls {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .nls.open {
    max-height: 600px;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(10, 90, 128, 0.08);
  }

  .nls li {
    width: 100%;
  }

  .nls li a {
    display: block;
    padding: 14px 12px;
    width: 100%;
    border-radius: 8px;
  }

  .nls li a::after {
    display: none;
  }

  .nls li a.ncta {
    margin: 8px 0 0;
    text-align: center;
  }

  .video-banner {
    height: auto;
    padding: 80px 0 100px;
    min-height: 480px;
  }

  .banner-actions .btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  
}



/* ============ HERO (BELOW BANNER) ============ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 28px;
  background: var(--ciera-white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.12),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
}

.hl {
  position: relative;
  z-index: 2;
  animation: heroFade 0.9s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.htag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--ciera-soft);
  color: var(--ciera-blue-dark);
  border: 1px solid rgba(30, 160, 214, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.htag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.22);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.22);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(30, 160, 214, 0.05);
  }
}

.hh {
  margin: 22px 0 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ciera-ink);
}

.hh span {
  background: linear-gradient(
    90deg,
    var(--ciera-blue-dark),
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hd {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #4a5b69;
  max-width: 560px;
}

.hb {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bp,
.bo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.bp {
  background: var(--ciera-blue);
  color: var(--ciera-white);
  box-shadow: 0 12px 26px -10px rgba(30, 160, 214, 0.6);
}

.bp:hover {
  background: var(--ciera-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(14, 122, 171, 0.7);
}

.bp svg {
  transition: transform 0.2s ease;
}

.bp:hover svg {
  transform: translateX(3px);
}

.bo {
  background: transparent;
  color: var(--ciera-blue-dark);
  border-color: rgba(14, 122, 171, 0.3);
}

.bo:hover {
  background: var(--ciera-soft);
  border-color: var(--ciera-blue);
  color: var(--ciera-blue-deep);
  transform: translateY(-2px);
}

.hst {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 26px;
  background: linear-gradient(
    180deg,
    rgba(234, 246, 252, 0.6),
    rgba(234, 246, 252, 0.2)
  );
  border: 1px solid rgba(30, 160, 214, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.hst-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 90px;
}

.hst-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(14, 122, 171, 0.25),
    transparent
  );
}

.sn {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a7c8a;
}

/* ----- Hero right (image) ----- */
.hr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFade 1.1s ease 0.15s both;
}

.fbg {
  position: absolute;
  inset: -10px -10px -10px 30px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-dark) 0%,
    var(--ciera-blue) 60%,
    #58c6ec 100%
  );
  border-radius: 22px;
  transform: rotate(-2deg);
  opacity: 0.85;
  z-index: 0;
  box-shadow: 0 30px 60px -20px rgba(14, 122, 171, 0.45);
}

.fbg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  border-radius: 22px;
  opacity: 0.7;
}

.hr-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(6, 47, 68, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transform: translate(-12px, 0);
  transition: transform 0.5s ease;
}

.hr-image-wrap:hover {
  transform: translate(-12px, -6px);
}

.hr-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.hr-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  z-index: 2;
  background: var(--ciera-white);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px -14px rgba(6, 47, 68, 0.35),
    0 0 0 1px rgba(30, 160, 214, 0.12);
  border: 1px solid rgba(30, 160, 214, 0.15);
}

.hr-badge-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-deep),
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hr-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ciera-ink);
  line-height: 1.4;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .topbar {
    padding: 8px 16px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .topbar-name {
    font-size: 11.5px;
  }

  .navbar {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nls {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .nls.open {
    max-height: 600px;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(10, 90, 128, 0.08);
  }

  .nls li {
    width: 100%;
  }

  .nls li a {
    display: block;
    padding: 14px 12px;
    width: 100%;
    border-radius: 8px;
  }

  .nls li a::after {
    display: none;
  }

  .nls li a.ncta {
    margin: 8px 0 0;
    text-align: center;
  }

  .video-banner {
    height: auto;
    padding: 80px 0 100px;
    min-height: 480px;
  }

  .banner-actions .btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 70px 20px;
  }

  .hr {
    order: -1;
  }

  .hr-image {
    height: 360px;
  }

  .hr-image-wrap {
    transform: translate(0, 0);
  }

  .fbg {
    inset: -8px;
    transform: rotate(-1.5deg);
  }

  .hr-badge {
    left: 12px;
    bottom: -18px;
    padding: 14px 18px;
  }

  .hr-badge-num {
    font-size: 30px;
  }

  .hst {
    flex-wrap: wrap;
    padding: 14px 18px;
    gap: 14px;
  }

  .hst-divider {
    display: none;
  }
}


/* ============ VISION / MISSION / PURPOSE ============ */
.vmp-sec {
  position: relative;
  padding: 120px 28px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-deep) 0%,
    #07344b 45%,
    var(--ciera-blue-darker) 100%
  );
  color: var(--ciera-white);
  overflow: hidden;
  text-align: center;
}

.vmp-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  pointer-events: none;
}

.vmp-sec::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.25),
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.vmp-sec .stg {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 220, 245, 0.25);
  color: #9fdcf5;
  margin-bottom: 22px;
}

.vmp-sec .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fdcf5;
  box-shadow: 0 0 0 4px rgba(159, 220, 245, 0.18);
}

.vmp-sec .d1 {
  position: relative;
  z-index: 1;
  margin: 0 auto 64px;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.vmp-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.vmp-card {
  position: relative;
  padding: 38px 32px 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(159, 220, 245, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, border-color 0.35s ease,
    background 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.vmp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ciera-blue),
    #58c6ec,
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vmp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 220, 245, 0.45);
  background: linear-gradient(
    180deg,
    rgba(30, 160, 214, 0.12) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.55);
}

.vmp-card:hover::before {
  transform: scaleX(1);
}

.vmp-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue) 0%,
    #58c6ec 100%
  );
  color: var(--ciera-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 14px 30px -10px rgba(30, 160, 214, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.vmp-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vmp-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ciera-white);
  position: relative;
  display: inline-block;
}

.vmp-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--ciera-blue), #58c6ec);
  border-radius: 2px;
}

.vmp-card p {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
  .vmp-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 880px) {
  .vmp-sec {
    padding: 80px 20px;
  }

  .vmp-sec .d1 {
    margin-bottom: 44px;
  }

  .vmp-card {
    padding: 32px 24px;
  }
}


/* ============ DIVISIONS ============ */
.div-sec {
  position: relative;
  padding: 120px 28px;
  background: var(--ciera-white);
  text-align: center;
  overflow: hidden;
}

.div-sec::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.14),
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.div-sec::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.1),
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
}

.div-sec::before,
.div-sec::after {
  animation: floatBg 12s ease-in-out infinite;
}

@keyframes floatBg {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.div-sec .stg {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ciera-soft);
  border: 1px solid rgba(30, 160, 214, 0.25);
  color: var(--ciera-blue-dark) !important;
  margin-bottom: 22px;
}

.div-sec .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.18);
}

.div-sec .d1 {
  position: relative;
  z-index: 1;
  margin: 0 auto 64px;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ciera-ink);
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue-dark) 60%,
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.div-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.dcard {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.18);
  border-radius: 20px;
  transition: transform 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.dcard.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(234, 246, 252, 0) 0%,
    rgba(234, 246, 252, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.dcard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-dark),
    var(--ciera-blue),
    #58c6ec
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dcard:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(30, 160, 214, 0.6);
  box-shadow:
    0 30px 60px -20px rgba(14, 122, 171, 0.35),
    0 0 0 1px rgba(30, 160, 214, 0.2),
    0 0 30px rgba(30, 160, 214, 0.15);
}

.dcard:hover::before {
  opacity: 1;
}

.dcard:hover::after {
  transform: scaleX(1);
}

.dcard-num {
  position: relative;
  z-index: 1;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-dark),
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 22px;
  font-feature-settings: "tnum";
}

.dcard-num::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--ciera-blue), #58c6ec);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.dcard:hover .dcard-num::after {
  width: 56px;
}

.dcard h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--ciera-ink);
  line-height: 1.3;
}

.dcard p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5a6b78;
}

@media (max-width: 1024px) {
  .div-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}

@media (max-width: 880px) {
  .div-sec {
    padding: 80px 20px;
  }

  .div-sec .d1 {
    margin-bottom: 44px;
  }

  .div-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .dcard {
    min-height: 0;
    padding: 30px 24px;
  }

  .dcard-num {
    font-size: 38px;
    margin-bottom: 18px;
  }
}


/* ============ CAPABILITIES ============ */
.cap-sec {
  position: relative;
  padding: 130px 28px 140px;
  background: linear-gradient(
    180deg,
    var(--ciera-white) 0%,
    var(--ciera-soft) 100%
  );
  overflow: hidden;
}

.cap-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(30, 160, 214, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(30, 160, 214, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.45),
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.45),
    transparent 70%
  );
  pointer-events: none;
}

.cap-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.cap-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.cap-head-left {
  max-width: 640px;
}

.cap-sec .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.25);
  color: var(--ciera-blue-dark);
  margin-bottom: 22px;
  box-shadow: 0 6px 22px -10px rgba(14, 122, 171, 0.3);
}

.cap-sec .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.2);
}

.cap-sec h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue-dark) 60%,
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cap-sub {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #4f6373;
  max-width: 560px;
}

.cap-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.2);
  box-shadow: 0 12px 30px -16px rgba(14, 122, 171, 0.3);
  white-space: nowrap;
}

.cap-meta-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-dark),
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.cap-meta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4f6373;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 20px 28px;
  border-radius: 22px;
  text-align: center;
  
  isolation: isolate;
  overflow: hidden;

  /* BACKGROUND */
  background: 
    radial-gradient(circle at 50% 0%, rgba(30, 160, 214, 0.18), transparent 65%),
    var(--ciera-white);

  /* GRADIENT BORDER */
  border: 1.5px solid transparent;
  background-clip: padding-box;
  
  /* BORDER GRADIENT EFFECT */
  box-shadow:
    0 0 0 1.5px rgba(0,0,0,0),
    0 30px 60px -22px rgba(14, 122, 171, 0.4);

  /* FAKE GRADIENT BORDER USING MASK-LIKE TRICK */
  background-image:
    linear-gradient(var(--ciera-white), var(--ciera-white)),
    linear-gradient(
      135deg,
      var(--ciera-blue),
      var(--ciera-blue-dark) 50%,
      #58c6ec
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;


}

.cap-card:hover {
    transform: translateY(-10px);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}


/* NUMBER */
.cap-num {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ciera-blue-dark); /* applied hover color */
  font-feature-settings: "tnum";
}

/* ICON BOX */
.cap-icon {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 18px;

  /* hover styles applied */
  background: linear-gradient(
    180deg,
    var(--ciera-blue) 0%,
    var(--ciera-blue-dark) 100%
  );
  border: 1px solid var(--ciera-blue-dark);

  transform: translateY(-4px) rotate(-4deg) scale(1.05);

  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.4s ease, border-color 0.4s ease;
}

/* ICON GLOW */
.cap-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.25),
    transparent 70%
  );
  opacity: 1; /* always visible */
}

/* SVG */
.cap-icon svg {
  width: 62px;
  height: 62px;

  stroke: #fff; /* hover state */
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;

  transform: scale(1.1) rotate(6deg);
  transition: stroke 0.4s ease, transform 0.5s ease;
}

/* LABEL */
.cap-label {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.35;

  color: var(--ciera-blue-dark); /* hover applied */
}

/* TAG */
.cap-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--ciera-blue); /* hover applied */
  margin-top: -4px;
}

.cap-tag::before {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 1180px) {
  .cap-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .cap-sec {
    padding: 100px 24px;
  }
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cap-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }
}

@media (max-width: 720px) {
  .cap-sec {
    padding: 80px 20px;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cap-card {
    padding: 26px 16px 22px;
    gap: 14px;
    border-radius: 18px;
  }
  .cap-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }
  .cap-icon svg {
    width: 36px;
    height: 36px;

  }
  .cap-label {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* ============ AEROSPACE 14 MACHINES ============ */
.as-sec {
  position: relative;
  padding: 130px 28px 140px;
  background: radial-gradient(
      ellipse at top,
      #0a4361 0%,
      var(--ciera-blue-deep) 55%,
      #03182a 100%
    );
  color: #e8f4fb;
  overflow: hidden;
}

.as-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(30, 160, 214, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(30, 160, 214, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.8),
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.8),
    transparent 75%
  );
  pointer-events: none;
}

.as-sec::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.18),
    transparent 60%
  );
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}

.as-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.as-head {
  text-align: center;
  margin-bottom: 70px;
}

.as-head .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(30, 160, 214, 0.1);
  border: 1px solid rgba(30, 160, 214, 0.4);
  color: #7cd3f5;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.as-head .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cd3f5;
  box-shadow: 0 0 0 4px rgba(124, 211, 245, 0.18),
    0 0 16px rgba(124, 211, 245, 0.6);
}

.as-head h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #b9def0 65%,
    #7cd3f5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.as-head h2 .as-head-num {
  display: inline-block;
  position: relative;
  background: linear-gradient(
    135deg,
    #58c6ec 0%,
    var(--ciera-blue) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.as-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(232, 244, 251, 0.7);
}

.as-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.as-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(124, 211, 245, 0.15);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(10px);
  transition: transform 0.45s ease, border-color 0.4s ease,
    box-shadow 0.45s ease;
}

.as-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(124, 211, 245, 0.5),
    transparent 40%,
    rgba(30, 160, 214, 0.5) 100%
  );
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 2;
}

.as-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(124, 211, 245, 0.15);
}

.as-card:hover::before {
  opacity: 1;
}

.as-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0e2f44 0%,
    #062f44 50%,
    #041826 100%
  );
}

.as-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(30, 160, 214, 0.4),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(88, 198, 236, 0.25),
      transparent 50%
    );
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.as-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(124, 211, 245, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(124, 211, 245, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.9),
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.9),
    transparent 80%
  );
}

.as-card:hover .as-visual::before {
  opacity: 1;
  transform: scale(1.15);
}

.as-icon-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.as-icon-wrap svg {
  width: 86px;
  height: 86px;
  stroke: #b9def0;
  fill: none;
  stroke-width: 1.4;
  filter: drop-shadow(0 4px 16px rgba(30, 160, 214, 0.45));
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    stroke 0.4s ease;
}

.as-card:hover .as-icon-wrap svg {
  stroke: #7cd3f5;
  transform: scale(1.1) rotate(-4deg);
}

.as-num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(232, 244, 251, 0.55);
  font-feature-settings: "tnum";
}

.as-num span {
  color: #7cd3f5;
}

.as-cert {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(7, 27, 41, 0.7);
  border: 1px solid rgba(124, 211, 245, 0.3);
  color: #b9def0;
  backdrop-filter: blur(8px);
}

.as-cert::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

.as-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.as-body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.35;
  color: #ffffff;
}

.as-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(232, 244, 251, 0.65);
  flex: 1;
}

.as-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  background: rgba(30, 160, 214, 0.12);
  border: 1px solid rgba(30, 160, 214, 0.3);
  color: #7cd3f5;
}

.as-tag::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.cap-img {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}

.cap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

/* overlay gradient (premium look) */
.cap-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 45, 0.6),
    transparent
  );
}

@media (max-width: 1200px) {
  .as-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .as-sec {
    padding: 100px 20px;
  }
  .as-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .as-icon-wrap svg {
    width: 64px;
    height: 64px;
  }
  .as-body {
    padding: 20px 18px 22px;
  }
}

@media (max-width: 540px) {
  .as-grid {
    grid-template-columns: 1fr;
  }
  .as-head {
    margin-bottom: 48px;
  }
}




/* ============ AEROSPACE PRODUCTS ============ */
.ps-sec {
  position: relative;
  padding: 130px 28px 140px;
  background: linear-gradient(
    180deg,
    #f5fbff 0%,
    var(--ciera-soft) 100%
  );
  overflow: hidden;
}

.ps-sec::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.18),
    transparent 65%
  );
  filter: blur(60px);
  pointer-events: none;
}

.ps-sec::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(14, 122, 171, 0.14),
    transparent 65%
  );
  filter: blur(50px);
  pointer-events: none;
}

.ps-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.ps-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.ps-head .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.25);
  color: var(--ciera-blue-dark);
  margin-bottom: 22px;
  box-shadow: 0 6px 22px -10px rgba(14, 122, 171, 0.3);
}

.ps-head .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.2);
}

.ps-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue-dark) 60%,
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ps-head-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ciera-blue-dark);
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.3);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px -16px rgba(14, 122, 171, 0.35);
}

.ps-head-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.ps-head-link:hover {
  background: linear-gradient(
    135deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(14, 122, 171, 0.6);
}

.ps-head-link:hover svg {
  transform: translateX(4px);
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  background: var(--ciera-white);
  border: 1px solid rgba(20, 60, 90, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s ease, border-color 0.4s ease,
    box-shadow 0.5s ease;
}

.pc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue) 0%,
    transparent 40%,
    var(--ciera-blue-dark) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 4;
}

.pc:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 36px 70px -28px rgba(14, 122, 171, 0.4);
}

.pc:hover::before {
  opacity: 1;
}

.pc-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-deep) 0%,
    #0a4361 50%,
    var(--ciera-blue-dark) 100%
  );
}

.pc-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 25%,
      rgba(124, 211, 245, 0.4),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(30, 160, 214, 0.5),
      transparent 55%
    );
  opacity: 0.85;
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.pc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 26px 26px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.9),
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.9),
    transparent 80%
  );
}

.pc:hover .pc-visual::before {
  opacity: 1;
  transform: scale(1.12);
}

.pc-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
}

.pc-art svg {
  width: 56%;
  height: 56%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pc:hover .pc-art svg {
  transform: scale(1.06) rotate(-3deg);
}

.pc-index {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  font-feature-settings: "tnum";
}

.pc-index span {
  color: #b9def0;
}

.pcb {
  position: relative;
  z-index: 1;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pct {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--ciera-soft);
  border: 1px solid rgba(30, 160, 214, 0.22);
  color: var(--ciera-blue-dark);
}

.pct::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ciera-blue);
}

.pcb h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ciera-ink);
}

.pcb p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #4f6373;
  flex: 1;
}

.pc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 60, 90, 0.08);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6b78;
}

.pc-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.pc-meta-arrow {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ciera-soft);
  color: var(--ciera-blue-dark);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pc-meta-arrow svg {
  width: 14px;
  height: 14px;
}

.pc:hover .pc-meta-arrow {
  background: linear-gradient(
    135deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  color: #fff;
  transform: translateX(4px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .ps-sec {
    padding: 100px 24px;
  }
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }
}

@media (max-width: 720px) {
  .ps-sec {
    padding: 80px 20px;
  }
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pcb {
    padding: 24px 22px 26px;
  }
  .pcb h3 {
    font-size: 20px;
  }
}




/* ============ CONTRACTS (GOCO / AMC / O&M) ============ */
.ct-sec {
  position: relative;
  padding: 130px 28px 140px;
  background: linear-gradient(
      180deg,
      var(--ciera-soft) 0%,
      #ffffff 60%,
      var(--ciera-soft) 100%
    );
  overflow: hidden;
}

.ct-sec::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.14),
    transparent 65%
  );
  filter: blur(60px);
  transform: translateX(-50%);
  pointer-events: none;
}

.ct-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(30, 160, 214, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(30, 160, 214, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35),
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35),
    transparent 75%
  );
  pointer-events: none;
}

.ct-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.ct-head {
  text-align: center;
  margin-bottom: 70px;
}

.ct-head .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.25);
  color: var(--ciera-blue-dark);
  margin-bottom: 22px;
  box-shadow: 0 6px 22px -10px rgba(14, 122, 171, 0.3);
}

.ct-head .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.2);
}

.ct-head h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue-dark) 60%,
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-sub {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #4f6373;
}

.ct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.sc {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: var(--ciera-white);
  border: 1px solid rgba(20, 60, 90, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s ease, border-color 0.4s ease,
    box-shadow 0.5s ease;
}

.sc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue) 0%,
    transparent 45%,
    var(--ciera-blue-dark) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 4;
}

.sc:hover {
  transform: translateY(-12px);
  border-color: transparent;
  box-shadow: 0 36px 70px -28px rgba(14, 122, 171, 0.42);
}

.sc:hover::before {
  opacity: 1;
}

.sc-head {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-deep) 0%,
    #0a4361 50%,
    var(--ciera-blue-dark) 100%
  );
  overflow: hidden;

  /* NEW */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.sc-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 15% 25%,
      rgba(124, 211, 245, 0.4),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(30, 160, 214, 0.45),
      transparent 55%
    );
  opacity: 0.85;
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.sc-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 22px 22px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.85),
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.85),
    transparent 80%
  );
}

.sc:hover .sc-head::before {
  opacity: 1;
  transform: scale(1.1);
}

.sc-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(124, 211, 245, 0.35);
  color: #b9def0;
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}

.sc-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7cd3f5;
  box-shadow: 0 0 8px rgba(124, 211, 245, 0.7);
}

.sc h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #ffffff;
}

.si {
  position: relative; /* ❌ remove absolute */
  bottom: auto;
  right: auto;

  z-index: 3;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    var(--ciera-blue) 0%,
    var(--ciera-blue-dark) 100%
  );

  border: 4px solid var(--ciera-white);
  box-shadow: 0 16px 32px -12px rgba(14, 122, 171, 0.55);

  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sc:hover .si {
  transform: rotate(-8deg) scale(1.06);
}

.si svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-body {
  position: relative;
  z-index: 1;
  padding: 44px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.sc-body > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #4f6373;
}

.sf {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px dashed rgba(20, 60, 90, 0.16);
}

.sf li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ciera-ink);
  line-height: 1.5;
}

.sf li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    var(--ciera-soft),
    rgba(234, 246, 252, 0.4)
  );
  border: 1px solid rgba(30, 160, 214, 0.3);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7aab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.sc:hover .sf li::before {
  background: linear-gradient(
    135deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  border-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ciera-blue-dark);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.sc-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.sc-cta:hover {
  gap: 14px;
  color: var(--ciera-blue);
}

.sc-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .ct-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .ct-sec {
    padding: 100px 20px;
  }
  .ct-grid {
    grid-template-columns: 1fr;
  }
  .ct-head {
    margin-bottom: 48px;
  }
  .sc-head {
    padding: 30px 26px 80px;
  }
  .sc-body {
    padding: 40px 26px 28px;
  }
  .si {
    right: 26px;
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }
  .si svg {
    width: 32px;
    height: 32px;
  }
}



/* ============ PROCESS / WORKFLOW (Design → Delivery) ============ */
.prs {
  position: relative;
  padding: 130px 28px 150px;
  background: radial-gradient(
      ellipse at 20% 0%,
      rgba(30, 160, 214, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 100%,
      rgba(14, 122, 171, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, #051f2e 0%, #062f44 50%, #04182a 100%);
  color: #ffffff;
  overflow: hidden;
}

.prs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(124, 211, 245, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(124, 211, 245, 0.04) 1px,
      transparent 1px
    );
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.55),
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.55),
    transparent 80%
  );
  pointer-events: none;
}

.prs-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.prh {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
}

.prh .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(124, 211, 245, 0.3);
  color: #b9def0;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.prh .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cd3f5;
  box-shadow: 0 0 10px rgba(124, 211, 245, 0.8);
  animation: prsBlink 1.8s ease-in-out infinite;
}

@keyframes prsBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.prh h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #cfeaf8 60%,
    #7cd3f5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prh > p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(207, 234, 248, 0.75);
}

.prst {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.prst::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 211, 245, 0.6) 12%,
    rgba(30, 160, 214, 0.9) 50%,
    rgba(124, 211, 245, 0.6) 88%,
    transparent
  );
  filter: blur(0.4px);
  box-shadow: 0 0 18px rgba(30, 160, 214, 0.45);
  z-index: 0;
}

.prst::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 6px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.85) 1.2px,
    transparent 1.6px
  );
  background-size: 14px 6px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.55;
  animation: prsFlow 6s linear infinite;
  z-index: 0;
}

@keyframes prsFlow {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 140px center;
  }
}

.pst {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  transition: transform 0.5s ease;
}

.pst:hover {
  transform: translateY(-6px);
}

.pci2 {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 30% 30%,
    #0e7aab,
    #062f44 80%
  );
  border: 1.5px solid rgba(124, 211, 245, 0.5);
  box-shadow: 0 0 0 8px rgba(5, 31, 46, 0.85),
    0 0 30px -4px rgba(30, 160, 214, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  margin-bottom: 26px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
}

.pci2::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(124, 211, 245, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.pst:hover .pci2 {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(5, 31, 46, 0.85),
    0 0 50px -2px rgba(30, 160, 214, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pst:hover .pci2::before {
  opacity: 1;
  transform: rotate(45deg);
}

.pci2 span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffffff, #7cd3f5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pst h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

.pst h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--ciera-blue),
    rgba(124, 211, 245, 0.4)
  );
  transition: width 0.4s ease;
}

.pst:hover h4::after {
  width: 56px;
}

.pst p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(207, 234, 248, 0.72);
  max-width: 220px;
}

@media (max-width: 1100px) {
  .prst {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 28px;
  }
  .prst::before,
  .prst::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .prs {
    padding: 100px 20px 110px;
  }
  .prh {
    margin-bottom: 60px;
  }
  .prst {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .pci2 {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }
  .pci2 span {
    font-size: 20px;
  }
  .pst p {
    max-width: 320px;
  }
}



/* ============ CERTIFICATIONS ============ */
.cs {
  position: relative;
  padding: 130px 28px 140px;
  background: linear-gradient(
      180deg,
      #ffffff 0%,
      var(--ciera-soft) 100%
    );
  overflow: hidden;
}

.cs::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 540px;
  height: 540px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.18),
    transparent 65%
  );
  filter: blur(50px);
  pointer-events: none;
}

.cs::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(
    circle,
    rgba(14, 122, 171, 0.15),
    transparent 65%
  );
  filter: blur(60px);
  pointer-events: none;
}

.cs-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.cl {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.ct2 {
  display: flex;
  flex-direction: column;
}

.ct2 .stg {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.25);
  color: var(--ciera-blue-dark);
  margin-bottom: 22px;
  box-shadow: 0 6px 22px -10px rgba(14, 122, 171, 0.3);
}

.ct2 .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.2);
}

.ct2 h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue-dark) 60%,
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct2 > p {
  margin: 0 0 36px;
  font-size: 15px;
  line-height: 1.8;
  color: #4f6373;
  max-width: 640px;
}

.cli {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: auto;
}

.cit {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px 22px 20px;
  background: var(--ciera-white);
  border: 1px solid rgba(20, 60, 90, 0.08);
  border-radius: 18px;
  transition: transform 0.4s ease, border-color 0.4s ease,
    box-shadow 0.4s ease;
  overflow: hidden;
}

.cit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(
    180deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.cit:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 160, 214, 0.25);
  box-shadow: 0 24px 40px -22px rgba(14, 122, 171, 0.35);
}

.cit:hover::before {
  transform: scaleY(1);
}

.cbg {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(30, 160, 214, 0.12),
    rgba(14, 122, 171, 0.08)
  );
  border: 1px solid rgba(30, 160, 214, 0.18);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.cit:hover .cbg {
  background: linear-gradient(
    135deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  border-color: transparent;
}

.cbg svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ciera-blue-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}

.cit:hover .cbg svg {
  stroke: #ffffff;
}

.cit h5 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ciera-ink);
}

.cit > div:last-child p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #5a6f7e;
}

.cv {
  position: relative;
  display: flex;
  align-items: stretch;
}

.cc.dk {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 36px;
  border-radius: 28px;
  background: radial-gradient(
      ellipse at top right,
      rgba(30, 160, 214, 0.4),
      transparent 55%
    ),
    linear-gradient(
      160deg,
      var(--ciera-blue-deep) 0%,
      #0a4361 60%,
      var(--ciera-blue-dark) 100%
    );
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(14, 122, 171, 0.55);
}

.cc.dk::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 28px 28px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.7),
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.7),
    transparent 80%
  );
}

.cc.dk::after {
  content: "AS9100D · NADCAP · ISO 9001";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(185, 222, 240, 0.7);
  white-space: nowrap;
}

.bn {
  position: relative;
  z-index: 1;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #cfeaf8 50%,
    #7cd3f5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(124, 211, 245, 0.2);
}

.bu {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(207, 234, 248, 0.85);
}

.bu::before,
.bu::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(124, 211, 245, 0.4);
  vertical-align: middle;
  margin: 0 12px;
}

@media (max-width: 1100px) {
  .cl {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cli {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .cs {
    padding: 100px 20px 110px;
  }
  .cli {
    grid-template-columns: 1fr;
  }
  .cc.dk {
    padding: 50px 26px;
  }
}

/* ============ CONTACT (REVAMPED) ============ */
.cos {
  position: relative;
  padding: 130px 28px 140px;
  background: radial-gradient(
      ellipse at 80% 10%,
      rgba(30, 160, 214, 0.22),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(14, 122, 171, 0.2),
      transparent 55%
    ),
    linear-gradient(180deg, #04182a 0%, #062f44 50%, #051f2e 100%);
  color: #ffffff;
  overflow: hidden;
}

.cos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(124, 211, 245, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(124, 211, 245, 0.04) 1px,
      transparent 1px
    );
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.55),
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.55),
    transparent 80%
  );
  pointer-events: none;
}

.cos-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.cos-inner .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width:auto;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(124, 211, 245, 0.3);
  color: #b9def0;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.coi .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cd3f5;
  box-shadow: 0 0 8px rgba(124, 211, 245, 0.7);
}

.cos-inner h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #cfeaf8 60%,
    #7cd3f5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cos-inner > p {
  margin: 0 0 36px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(207, 234, 248, 0.78);
  max-width: 480px;
}

.cod {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cde {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 211, 245, 0.12);
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, border-color 0.35s ease,
    transform 0.35s ease;
}

.cde:hover {
  background: rgba(30, 160, 214, 0.08);
  border-color: rgba(124, 211, 245, 0.35);
  transform: translateX(4px);
}

.cdi {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    rgba(30, 160, 214, 0.25),
    rgba(14, 122, 171, 0.15)
  );
  border: 1px solid rgba(124, 211, 245, 0.3);
}

.cdi svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #7cd3f5;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cdt {
  flex: 1;
  min-width: 0;
}

.cdt h5 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9def0;
}

.cdt p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.cdt p a {
  color: #7cd3f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cdt p a:hover {
  color: #ffffff;
}

.cf {
  position: relative;
  padding: 38px 36px 36px;
  border-radius: 28px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(124, 211, 245, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cf::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 211, 245, 0.7),
    transparent
  );
}

.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fg2 label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b9def0;
}

.fg2 input,
.fg2 select,
.fg2 textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(5, 31, 46, 0.55);
  border: 1px solid rgba(124, 211, 245, 0.18);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
}

.fg2 input::placeholder,
.fg2 textarea::placeholder {
  color: rgba(207, 234, 248, 0.4);
}

.fg2 input:focus,
.fg2 select:focus,
.fg2 textarea:focus {
  border-color: var(--ciera-blue);
  background: rgba(5, 31, 46, 0.85);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.18);
}

.fg2 select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237cd3f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.fg2 select option,
.fg2 select optgroup {
  background: #051f2e;
  color: #ffffff;
}

.fg2 textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.sb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--ciera-blue) 0%,
    var(--ciera-blue-dark) 100%
  );
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 18px 32px -12px rgba(14, 122, 171, 0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.sb svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.sb:hover {
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 22px 38px -12px rgba(30, 160, 214, 0.7);
}

.sb:hover svg {
  transform: translateX(4px);
}


/* ============================= */
/* IMPROVED RESPONSIVE CONTACT */
/* ============================= */

/* -------- LARGE TABLET (1024px ↓) -------- */
@media (max-width: 1024px) {
  .col {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cos-inner > p {
    max-width: 100%;
  }

  .cod {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* -------- TABLET (768px ↓) -------- */
@media (max-width: 768px) {
  .cos {
    padding: 90px 22px;
  }

  .cos-inner h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .cos-inner > p {
    font-size: 14px;
  }

  .cod {
    grid-template-columns: 1fr;
  }

  .cde {
    padding: 16px;
  }

  .cdi {
    width: 38px;
    height: 38px;
  }

  .cf {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .fr {
    grid-template-columns: 1fr;
  }
}

/* -------- MOBILE (480px ↓) -------- */
@media (max-width: 480px) {
  .cos {
    padding: 70px 16px;
  }

  .cos-inner h2 {
    font-size: 26px;
  }

  .cos-inner .stg {
    font-size: 10px;
    padding: 6px 12px;
  }

  .cde {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cdi {
    width: 34px;
    height: 34px;
  }

  .cdt h5 {
    font-size: 11px;
  }

  .cdt p {
    font-size: 13px;
  }

  .fg2 input,
  .fg2 select,
  .fg2 textarea {
    font-size: 13px;
    padding: 12px 14px;
  }

  .sb {
    width: 100%;
    font-size: 12px;
    padding: 14px;
  }
}


@media (max-width: 1100px) {
  .col {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 700px) {
  .cos {
    padding: 100px 20px;
  }
  .cf {
    padding: 30px 22px 28px;
  }
  .fr {
    grid-template-columns: 1fr;
  }
}






/* ============ CLIENTS ============ */
.clients-sec {
  position: relative;
  padding: 90px 24px 90px;
  background: linear-gradient(
      180deg,
      var(--ciera-soft) 0%,
      #ffffff 60%,
      var(--ciera-soft) 100%
    );
  overflow: hidden;
}

.clients-sec::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.12),
    transparent 65%
  );
  filter: blur(70px);
  transform: translateX(-50%);
  pointer-events: none;
}

.clients-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(30, 160, 214, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(30, 160, 214, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35),
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35),
    transparent 75%
  );
  pointer-events: none;
}

.clients-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.clients-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.clients-intro .stg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ciera-white);
  border: 1px solid rgba(30, 160, 214, 0.25);
  color: var(--ciera-blue-dark);
  margin-bottom: 22px;
  box-shadow: 0 6px 22px -10px rgba(14, 122, 171, 0.3);
}

.clients-intro .stg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ciera-blue);
  box-shadow: 0 0 0 4px rgba(30, 160, 214, 0.2);
}

.clients-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(
    90deg,
    var(--ciera-blue-deep),
    var(--ciera-blue-dark) 60%,
    var(--ciera-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clients-intro > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #4f6373;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 22px;
  background: var(--ciera-white);
  border: 1px solid rgba(20, 60, 90, 0.08);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s ease, border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--logo) center/70% no-repeat;
  opacity: 0.06;
  transition: all 0.6s ease;
  pointer-events: none;
}

.client-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(30, 160, 214, 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 28px 50px -28px rgba(14, 122, 171, 0.4);
}

.client-card:hover::before,
.client-card:hover::after {
  opacity: 1;
}

/* .client-mono {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    var(--ciera-blue-deep) 0%,
    #0a4361 55%,
    var(--ciera-blue-dark) 100%
  );
  margin-bottom: 22px;
  box-shadow: 0 16px 28px -14px rgba(14, 122, 171, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
} */

.client-mono::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(124, 211, 245, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(30, 160, 214, 0.45),
      transparent 55%
    );
}

.client-mono::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
  background-size: 16px 16px;
}


.client-mono {
  width: 90px;
  height: 70px;
  background: transparent;
  box-shadow: none;
  margin-bottom: 14px;
}

.client-mono img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.4s ease;
}

.client-card:hover .client-mono {
  transform: scale(1.06) rotate(-3deg);
}

.client-mono span {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff, #cfeaf8 60%, #7cd3f5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-card h5 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--ciera-ink);
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
}

.client-tags span {
  font-family: "Space Mono", "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--ciera-soft);
  color: var(--ciera-blue-dark);
  border: 1px solid rgba(30, 160, 214, 0.18);
  transition: background 0.3s ease, color 0.3s ease;
}

.client-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.client-card:hover::before {
  opacity: 0.1;
  transform: scale(1.1);
}

.client-mono img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.client-card:hover .client-tags span {
  background: linear-gradient(
    135deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  color: #ffffff;
  border-color: transparent;
}

.clients-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 56px;
  padding: 26px 30px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(30, 160, 214, 0.08),
    rgba(14, 122, 171, 0.04)
  );
  border: 1px solid rgba(30, 160, 214, 0.18);
}

.clients-note svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--ciera-blue-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.clients-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #4f6373;
}

.clients-note p strong {
  color: var(--ciera-blue-deep);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .clients-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .clients-sec {
    padding: 100px 20px 110px;
  }
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .clients-note {
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px;
  }
}

/* small footer addition for sub-heading inside Products column */
.footer-col h5.mt {
  margin-top: 24px;
}

/* footer tagline (revamped bottom row) */
.footer-bottom .ft-tag {
  font-size: 12.5px;
  color: rgba(207, 234, 248, 0.75);
  letter-spacing: 0.04em;
}

.footer-bottom .ft-tag span {
  color: var(--ciera-blue);
  font-weight: 700;
}



/* ============ FOOTER ============ */
.footer {
  background: var(--ciera-blue-deep);
  color: var(--ciera-white);
  padding: 70px 28px 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at top, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 20%, transparent 80%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 44px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  margin-bottom: 22px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 22px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #ffffffcc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.footer-social a:hover {
  background: var(--ciera-blue);
  border-color: var(--ciera-blue);
  color: var(--ciera-white);
  transform: translateY(-2px);
}

.footer-col h5 {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fdcf5;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--ciera-white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--ciera-white);
}



/* ============================= */
/* RESPONSIVE FOOTER */
/* ============================= */

/* ---------- TABLET (1024px ↓) ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer {
    padding: 60px 24px 24px;
  }
}

/* ---------- MOBILE (768px ↓) ---------- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col h5 {
    margin-bottom: 14px;
  }

  .footer-col ul {
    gap: 10px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 18px;
  }

  .footer-brand p {
    margin: 0 auto 18px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-bottom .ft-tag {
    font-size: 12px;
  }
}

/* ---------- SMALL MOBILE (480px ↓) ---------- */
@media (max-width: 480px) {
  .footer {
    padding: 50px 18px 20px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-social svg {
    width: 14px;
    height: 14px;
  }
}


.form-success {
  display: none;
  margin-top: 10px;
  color: #4ade80;
  font-size: 13px;
}

.col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 50px;
}

.cod {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}






#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;

  background: linear-gradient(
    135deg,
    var(--ciera-blue),
    var(--ciera-blue-dark)
  );
  color: #fff;
  font-size: 20px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 28px -10px rgba(14, 122, 171, 0.6);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;

  z-index: 999;
}

/* show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
#scrollTopBtn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 32px -12px rgba(14, 122, 171, 0.7);
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal video {
  width: 100%;
  border-radius: 12px;
}

/* close button */
.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* button icon style */
.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}








