:root {
  --navy: #1a2744;
  --red: #c0392b;
  --red-dark: #9b2d20;
  --muted: #6b7a9a;
  --border: rgba(26, 39, 68, 0.12);
  --white: #ffffff;
}
.cim-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cim-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 50%,
      rgba(192, 57, 43, 0.18) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}

.cim-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 56px;
}

.cim-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
}

.cim-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.cim-breadcrumb a:hover {
  color: #fff;
}

.cim-breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.cim-hero h1 {
  font-family: "Mukta", sans-serif;
  font-size: clamp(36px, 48px, 60px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
}

.cim-hero-sub {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

.cim-red-bar {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 18px;
}
