/* ============ PHONEBANK DESIGN SYSTEM ============ */
:root {
  --ink: #1d1d1f;
  --text: #494949;
  --accent: #0a2540;
  --surface: #f5f5f7;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 700;
     letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
     letter-spacing: -0.02em; color: var(--ink); }
h3 { font-size: 1.25rem; color: var(--ink); }
.lead { font-size: 1.25rem; color: var(--text); max-width: 620px; }

section { padding: 110px 0; }
section.alt { background: var(--surface); }

.btn { display: inline-block; padding: 14px 30px; border-radius: 980px;
       font-size: 1rem; font-weight: 600; text-decoration: none;
       transition: opacity .2s; }
.btn:hover { opacity: .85; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-ghost { background: transparent; color: var(--accent);
             border: 1px solid #d2d2d7; }

.card { background: var(--white); border-radius: var(--radius-lg);
        padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }

.nav { position: fixed; top: 0; width: 100%; z-index: 100;
       background: rgba(255,255,255,.8); backdrop-filter: blur(20px);
       border-bottom: 1px solid rgba(0,0,0,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between;
             height: 60px; }
.nav a { color: var(--ink); text-decoration: none; font-size: .95rem; }

footer { padding: 48px 0; border-top: 1px solid #eee;
         text-align: center; font-size: .9rem; }/* Smooth lift effect for all cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Fade-in animation when the shop grid loads */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

#shop-grid .card {
  animation: fadeUp 0.5s ease-out forwards;
}/* Card Hover & Load Animation */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#shop-grid .card {
  animation: fadeUp 0.5s ease-out forwards;
}/* =========================================
   ANIMATED SUCCESS CHECKMARK IMAGE
   ========================================= */
.success-animation {
  display: flex;
  justify-content: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke: #0a7d33;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #0a7d33;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: #0a7d33;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
  100% { box-shadow: inset 0px 0px 0px 50px #0a7d33; stroke: #fff; }
}/* Card styling for small, neat appearance */
.card {
  width: 100%;
  max-width: 300px; /* Card ki width fix kar di */
  margin: 0 auto;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px; /* Height chhoti kar di */
  object-fit: cover;
  border-radius: 8px;
}/* Card styling for consistent, premium grading boxes */
.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* Light shadow for depth */
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.01); /* Subtle hover effect */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.4rem;
  color: var(--ink); /* Make sure --ink is defined as your dark text color */
}

.card p {
  line-height: 1.6;
  color: #444;
}