/* Component Wrapper - Scopes variables */
.ch-wrapper {
  /* Local Variables */
  --ch-navy: #1e3a8a;
  --ch-blue: #3b82f6;
  --ch-bg: #ffffff;
  --ch-text-main: #0f172a;
  --ch-text-muted: #64748b;
  --ch-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  font-family: var(--ch-font);
  background-color: var(--ch-bg);
  color: var(--ch-text-main);
  width: 100%;
  overflow-x: hidden;
}

/* Reset for this component */
.ch-wrapper * { 
  box-sizing: border-box; 
}

/* ===== HERO LAYOUT ===== */
.ch-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CENTER CONTENT ===== */
.ch-content {
  max-width: 640px;
  text-align: center;
  z-index: 5;
  padding: 0 20px;
}

.ch-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ch-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Updated Button Styles */
.ch-btn {
  background: var(--ch-navy);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.ch-btn:hover {
  transform: scale(1.05);
  background-color: #172554;
}

/* ===== ICON CLOUD CONTAINER ===== */
.ch-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== ICON STYLE ===== */
.ch-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;

  /* Subtle border + shadow */
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow:
    0 6px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);

  animation: ch-float 8s ease-in-out infinite;
}

/* FLOATING ANIMATION */
@keyframes ch-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===== LEFT SIDE POSITIONS ===== */
.ch-l-1 { left: 6%;  top: 15%; animation-delay: 0s; }
.ch-l-2 { left: 10%; top: 32%; animation-delay: 1s; }
.ch-l-3 { left: 4%;  top: 50%; animation-delay: 2s; }
.ch-l-4 { left: 12%; top: 68%; animation-delay: 3s; }
.ch-l-5 { left: 8%;  top: 82%; animation-delay: 4s; }
/* New Icons Left */
.ch-l-6 { left: 15%; top: 8%;  animation-delay: 0.5s; }
.ch-l-7 { left: 2%;  top: 35%; animation-delay: 2.5s; }
.ch-l-8 { left: 16%; top: 55%; animation-delay: 1.5s; }

/* ===== RIGHT SIDE POSITIONS ===== */
.ch-r-1 { right: 6%;  top: 18%; animation-delay: 0s; }
.ch-r-2 { right: 10%; top: 36%; animation-delay: 1s; }
.ch-r-3 { right: 5%;  top: 54%; animation-delay: 2s; }
.ch-r-4 { right: 12%; top: 70%; animation-delay: 3s; }
.ch-r-5 { right: 8%;  top: 84%; animation-delay: 4s; }
/* New Icons Right */
.ch-r-6 { right: 15%; top: 10%; animation-delay: 0.5s; }
.ch-r-7 { right: 2%;  top: 42%; animation-delay: 2.5s; }
.ch-r-8 { right: 16%; top: 60%; animation-delay: 1.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ch-icon { display: none; }
  .ch-content h1 { font-size: 2.2rem; }
}