:root {
  --primary: #0066cc;
  --primary-hover: #0052a3;

  --secondary: #e2e8f0;
  --secondary-hover: #cbd5e1;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #9ca3af;
  --border: rgba(226, 232, 240, 0.8);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);

  --bg-light: #f8fafc;
  --white: #ffffff;

  --radius: 10px;

  --font: system-ui, -apple-system, BlinkMacSystemFont,
           "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
a { text-decoration: none; color: inherit; }
/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  line-height: 1.6;
  background: var(--white);
}


.hero {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(0,102,204,0.18), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(59,130,246,0.18), transparent 50%),
    linear-gradient(180deg, #0b1220 0%, #111827 100%);
}

/* DARK IMAGE OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(8,12,20,0.75);

  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(circle at 50% 60%, rgba(0,102,204,0.22), transparent 55%),
    radial-gradient(circle at 30% 40%, rgba(59,130,246,0.18), transparent 60%);

  pointer-events: none;
}

/* KEEP CONTENT ABOVE OVERLAY */
.hero .container {
  position: relative;
  z-index: 2;
}

/* TEXT COLOURS */
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-top:20px;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero .sub-hd{
    display:block;
    margin-top:10px;

    font-size:0.65em;   /* 65% of the h1 size */
    font-weight:600;

    color:rgba(255,255,255,0.92);

    letter-spacing:0.02em;
}
.hero h1{
    opacity:0;
    transform:translateY(50px);
    animation:heroTitleIn 1s ease-out 0.4s forwards;
}

.hero .sub-hd{
    opacity:0;
    transform:translateY(35px);
    animation:heroTitleIn 1s ease-out 0.8s forwards;
}

@keyframes heroTitleIn{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero-lcp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 700px;
  margin: 16px auto 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 14px;
  border-radius: 999px;

  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;

  background: linear-gradient(135deg, #0f172a, #1e293b); /* Deep slate */
  color: #e2e8f0;

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 12px rgba(0, 153, 255, 0.25),   /* Outer glow */
    inset 0 0 6px rgba(255,255,255,0.08); /* Inner sheen */

  backdrop-filter: blur(6px);
}

/* PRICE BOX */
.hero-price {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius);

  background: rgba(255,255,255,0.12);
  color: #ffffff;

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  margin-bottom: 28px;
  margin-top: 28px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-main);
}

.btn-tertiary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;

  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.25s ease;

  /* Base glow (very subtle) */
  box-shadow:
    0 0 6px rgba(0,102,204,0.25),
    0 0 12px rgba(0,102,204,0.15);

  /* Always pulse */
  animation: btnPulse 1.8s ease-in-out infinite;
}

@keyframes btnPulse {
  0% {
    box-shadow:
      0 0 4px rgba(0,102,204,0.20),
      0 0 10px rgba(0,102,204,0.10);
  }
  50% {
    box-shadow:
      0 0 10px rgba(0,102,204,0.45),
      0 0 20px rgba(0,102,204,0.25);
  }
  100% {
    box-shadow:
      0 0 4px rgba(0,102,204,0.20),
      0 0 10px rgba(0,102,204,0.10);
  }
}



@media (max-width: 768px) {

  .hero {
    padding: 50px 0;
  }

  .container {
    padding: 0 10px;
  }
