@charset "utf-8";
/* Minimal, reusable card/page styles */
:root{
  --bg:#0f1d3d;          /* deep navy used elsewhere on your site */
  --ink:#111827;         /* near-black text */
  --muted:#4b5563;       /* muted text */
  --brand:#1a6cff;       /* button color */
  --card:#ffffff;
  --ring:#e7e9ee;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color:var(--ink);
  line-height:1.6;
  background:#fff;
}

/* Containers & sections */
.container{ max-width:1100px; margin:0 auto; padding:0 20px; }
.section{ padding:64px 0; }
h1,h2,h3{ margin:0 0 12px; line-height:1.2; }
h1{ font-size:40px; }
h2{ font-size:28px; text-align:center; margin-bottom:20px; }
h3{ font-size:20px; }

/* Hero */
.hero{ position:relative; color:#fff; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; }
.hero-bg img{
  width:100%; height:100%; object-fit:cover; filter:brightness(0.55);
}
.hero::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.1));
}
.hero-wrap{
  position:relative; z-index:2; padding:88px 20px 120px;
  max-width:1100px; margin:0 auto;
}
.lead{ font-size:18px; opacity:.95; max-width:760px; margin:6px 0 18px; }

/* Button */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:12px; text-decoration:none;
  color:#fff; background:var(--brand); font-weight:700;
  box-shadow: 0 6px 18px rgba(26,108,255,.28);
}
.btn:hover{ transform:translateY(-1px); }

/* Card */
.card{
  background:var(--card);
  border:1px solid var(--ring);
  border-radius:16px;
  padding:22px 20px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  max-width:900px; margin:0 auto;
}
.card .muted{ color:var(--muted); }

/* Footer */
.site-footer{ padding:28px 0; background:#f7f9fc; text-align:center; color:#334155; }

/* Responsive */
@media (max-width:900px){
  h1{ font-size:34px; }
}

/* --- Elevate the card + subtle 3D edge --- */
.card{
  /* 3D-looking border using a gradient stroke */
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(180deg, #eef2ff 0%, #e7e9ee 45%, #dfe4ea 100%) border-box;

  /* Deeper, softer shadows */
  box-shadow:
    0 14px 34px rgba(15, 29, 61, .14),
    0 4px 10px rgba(15, 29, 61, .08);

  transform: translateZ(0);         /* kick in GPU for smooth hover */
  transition: box-shadow .25s ease, transform .25s ease;
}

/* Gentle lift on hover (desktop) */
@media (hover:hover){
  .card:hover{
    transform: translateY(-3px);
    box-shadow:
      0 22px 50px rgba(15, 29, 61, .18),
      0 6px 14px rgba(15, 29, 61, .10);
  }
}

/* Make the section title stand out */
.section h2{
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .2px;
  text-align: center;
  margin-bottom: 26px;
  position: relative;
}

/* Accent underline under the H2 */
.section h2::after{
  content:"";
  display:block;
  width: 120px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a6cff, #00c2ff);
  opacity: .95;
}

/* Strengthen the card title too */
.card h3{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .2px;
}

/* Optional: center the bottom button inside the card */
.card p:last-child{
  margin-top: 14px;
  text-align: center;
}
/* Jazzed-up section title with brown-yellow gradient */
.section h2 {
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #5b3a29, #d4af37, #3b2416);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Matching underline glow */
.section h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b3a29, #d4af37, #3b2416);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: no-preference) {
  /* Shimmering gradient on title */
  .section h2 {
    background-size: 200% 100%;
    animation: titleShimmer 6s linear infinite;
  }
  @keyframes titleShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }

  /* Underline slide-in + glow */
  .section h2::after {
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn .8s ease .2s forwards, underlineGlow 3s ease-in-out infinite .8s;
  }
  @keyframes underlineIn {
    to { transform: scaleX(1); }
  }
  @keyframes underlineGlow {
    0%,100% { box-shadow: 0 0 6px rgba(212,175,55,.45); }
    50%     { box-shadow: 0 0 12px rgba(212,175,55,.75); }
  }
}

