.elementor-4962 .elementor-element.elementor-element-408ad62{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b14cbf2 */:root {
  --bg: #0b1220;
  --card: #0f172a;
  --muted: #9ca3af;
  --text: #e5e7eb;
  --accent: #38bdf8;
  --accent-strong: #2563eb;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #f9e6ef;
  color: var(--text);
}

.page-shell {
  max-width: 1100px;
  padding: 64px 24px 96px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.eyebrow {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  background: #dc2626; /* red patti */
  color: #fef2f2;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.media {
  margin: 32px 0 40px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.image-card {
  margin: 0;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-swap .swap-wrap {
  position: relative;
  width: 100%;
  height: 220px;
}

.image-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.image-swap img.base {
  opacity: 1;
}

.image-swap img.hover {
  opacity: 0;
}

.image-swap:hover img.base {
  opacity: 0;
}

.image-swap:hover img.hover {
  opacity: 1;
}

.image-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 15px;
  border-top: 1px solid var(--border);
}

.image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

.cta {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  border: none;
  color: #f8fafc;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.cta-btn.ghost {
  background: #f472b6;
  border-color: rgba(244, 114, 182, 0.6);
  color: #0b1220;
  box-shadow: 0 12px 30px rgba(244, 114, 182, 0.35);
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

.status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.story {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7;
  overflow: hidden;
  transition: max-height 0.65s ease;
}

.story-toggle-btn {
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(244, 114, 182, 0.6);
  background: #f472b6;
  color: #0b1220;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(244, 114, 182, 0.35);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.story-toggle-btn:hover {
  transform: translateY(-1px);
}

.story-toggle-btn:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .image-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 48px 18px 72px;
  }

  .image-card img {
    height: 180px;
  }
}/* End custom CSS */