
:root{
  --bg:#f7f8fb;
  --panel:#ffffff;
  --muted:#f1f5f9;
  --text:#0f172a;
  --sub:#475569;
  --brand:#0ea5e9; /* sky */
  --accent:#f59e0b; /* amber */
  --ok:#10b981;
  --danger:#ef4444;
  --border:rgba(2,6,23,.08);
  --radius:18px;
  --shadow:0 10px 30px rgba(2,6,23,.10);
  --maxw:1200px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item div {
  text-align: left;
  display: block;
}

.contact-item div b {
  display: inline;
  font-weight: 600;
}
/* Dark theme variables */
html[data-theme="dark"]{
  --bg:#0b1020;
  --panel:#0e162b;
  --muted:#121a31;
  --text:#e5e7eb;
  --sub:#93a1b3;
  --brand:#22d3ee; /* cyan */
  --accent:#f59e0b;
  --ok:#10b981;
  --danger:#ef4444;
  --border:rgba(255,255,255,.10);
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--text);font:16px/1.6 system-ui,-apple-system,Segoe UI,Inter,Roboto,Ubuntu,Arial,sans-serif}
a {
  position: relative;
  color: var(--brand);
  text-decoration: none;
}

a::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* text ke neeche line */
  width: 0;
  height: 2px; /* line ki motai */
  background-color: var(--brand);
  transition: width 0.3s ease-in-out;
}

a:hover::after {
  width: 100%;
}

.container{max-width:var(--maxw);margin-inline:auto;padding:0 20px}
img{max-width:100%;display:block;border-radius:14px}
ul{padding-left:18px}
.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;border:1px solid var(--border);background:var(--panel);color:var(--text);cursor:pointer;text-decoration:none;box-shadow:var(--shadow)}
.btn.primary{background:linear-gradient(90deg,var(--brand),#22c1e6);color:#001018;border:none}
.btn.ghost{background:transparent;border:1px solid var(--border)}
.pill{display:inline-block;font-size:12px;background:var(--muted);padding:6px 10px;border-radius:999px;border:1px solid var(--border);color:var(--sub)}
.card{background:var(--panel);border:1px solid var(--border);border-radius:var(--radius);padding:16px;box-shadow:var(--shadow)}
.card.hover{transition:transform .25s ease, box-shadow .25s ease}
.card.hover:hover{transform:translateY(-4px);box-shadow:0 20px 40px var(--shadow)}
.grid{display:grid;gap:16px}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:980px){.grid.cols-4{grid-template-columns:1fr 1fr}}
@media (max-width:780px){.grid.cols-3{grid-template-columns:1fr 1fr}}
@media (max-width:540px){.grid.cols-2,.grid.cols-3{grid-template-columns:1fr}}

/* Header */
header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.7);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
html[data-theme="dark"] header{background:rgba(10,14,25,.65)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:79px;height:50px;display:grid;place-items:center;background:radial-gradient(circle at 30% 30%,#32e0ff,transparent 60%),linear-gradient(135deg,#0ea5e9,#06b6d4);border-radius:12px;box-shadow:var(--shadow)}
.brand h1{font-size:20px;margin:0}
nav ul{display:flex;gap:18px;list-style:none;margin:0;padding:0}
nav a{padding:8px 10px;border-radius:10px;color:var(--text);text-decoration:none}
nav a:hover{background:var(--muted)}
.theme-toggle{display:inline-flex;gap:8px;align-items:center;border:1px solid var(--border);background:var(--panel);color:var(--text);padding:8px 12px;border-radius:10px;cursor:pointer}
.menu-toggle{display:none;background:transparent;border:1px solid var(--border);color:var(--text);padding:8px 12px;border-radius:10px}
@media (max-width:980px){
  nav ul{display:none;position:absolute;right:20px;top:64px;background:var(--panel);border:1px solid var(--border);border-radius:14px;padding:12px;flex-direction:column;min-width:240px}
  nav ul.show{display:flex}
  .menu-toggle{display:inline-flex}
}

/* Hero */
.hero {
  padding: 64px 0 36px;
  background:
    radial-gradient(1200px 400px at 20% -10%, rgba(14,165,233,.25), transparent 60%),
    radial-gradient(1200px 400px at 80% -10%, rgba(245,158,11,.18), transparent 60%);
  overflow: hidden;
  position: relative;
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(1200px 400px at 20% -10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(1200px 400px at 80% -10%, rgba(245,158,11,.12), transparent 60%);
}

.hero h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 14px 0;
  animation: fadeDown 1s ease forwards;
  opacity: 0;
}

.hero p.lead {
  color: var(--sub);
  font-size: 18px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.stat:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  border-color: var(--brand);
}

.stat b {
  font-size: 22px;
  display: block;
  color: var(--brand);
}

/* Button hover effects */
.btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn.primary:hover {
  background: #0ea5e9;
  box-shadow: 0 6px 18px rgba(14,165,233,0.4);
  transform: translateY(-3px);
}

.btn.ghost {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn.ghost:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(14,165,233,0.4);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

section {
  padding: 42px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-title h3 {
  margin: 0;
  font-size: 28px;
}

.card {
  background: var(--panel, #fff);
  border-radius: 12px;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  height: 300px;   /* 🔥 Pehle 220px tha, ab bada kiya */
  object-fit: cover;
  border-radius: 10px;
}

/* FAQ */
.faq-item{border:1px solid var(--border);border-radius:14px;margin-bottom:10px;overflow:hidden}
.faq-q{background:var(--muted);padding:14px;cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.faq-a{display:none;padding:14px;background:var(--panel);color:var(--sub)}

/* Forms */
form{display:grid;gap:10px}
input,textarea,select{background:var(--panel);border:1px solid var(--border);border-radius:12px;padding:12px;color:var(--text)}

/* Footer */
footer{background:var(--muted);border-top:1px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:16px}
.social{display:flex;gap:15px}
.copy{border-top:1px solid var(--border);margin-top:20px;padding:14px 0;color:var(--sub);font-size:14px}
@media (max-width:980px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.footer-grid{grid-template-columns:1fr}}

.float-wa{position:fixed;right:18px;bottom:18px;background:#25D366;color:white;padding:12px 14px;border-radius:999px;box-shadow:var(--shadow);font-weight:700}

/* Reveal animations */
.reveal{opacity:0;transform:translateY(14px);transition:all .6s ease}
.reveal.visible{opacity:1;transform:none}



.theme-toggle {
  --size: 46px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  transform: scale(1.08);
  border-color: var(--brand);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.theme-toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  color: var(--text);
  transition: opacity .4s ease, transform .4s ease;
}

/* Default Light (show Sun) */
.theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

/* When Dark mode active */
html[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

html[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
/* Header */
header {
  position: sticky;
  top: 12px; /* thoda gap upar se taaki float feel aaye */
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 50px;   /* <-- round pill shape */
  margin: 0 auto;
  max-width: 1200px;     /* center mei clean look */
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  padding: 0 20px;
  transition: all .3s ease;
}

html[data-theme="dark"] header {
  background: rgba(15, 20, 35, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Nav container */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Brand */
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo {
  width: 70px;
  height: 50px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #32e0ff, transparent 100%),
              linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 100px;
  box-shadow: var(--shadow);
}

.brand h1 {
  font-size: 16px;
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

/* Nav links */
nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  padding: 10px 14px;
  border-radius: 30px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

nav a:hover {
  background: var(--muted);
  color: var(--brand);
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.theme-toggle:hover {
  background: var(--muted);
  transform: scale(1.08);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 980px) {
  nav ul {
    display: none;
    position: absolute;
    right: 20px;
    top: 80px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    min-width: 240px;
    box-shadow: var(--shadow);
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: inline-flex;
  }
}



/* ================================
   ⭐ Google Rating Banner Section
   ================================ */

.rating-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(135deg, #fff, #f6f9ff);
  box-shadow: 0 6px 24px rgba(17,17,17,.06);
}

[data-theme="dark"] .rating-banner {
  background: linear-gradient(135deg, #181a1f, #101217);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}

.rating-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gmark {
  height: 34px;
  width: auto;
  margin-bottom: 4px;
}

.rating-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rating-big {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: #212121; /* brand primary text */
}

[data-theme="dark"] .rating-big {
  color: #fff;
}

.rating-outof {
  font-size: 16px;
  opacity: .75;
}

.stars {
  font-size: 22px;
  letter-spacing: 2px;
}

.stars span {
  color: #FFC107; /* Gold stars */
}

.stars .half {
  position: relative;
}

.stars .half::after {
  /* Subtle half-fill to suggest 4.9 */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  height: 100%;
  background: #fff;
  mix-blend-mode: screen;
  opacity: .35;
}

[data-theme="dark"] .stars .half::after {
  background: #000;
}

.rating-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Right-side decorative banner (replace with image if needed) */
.rating-banner-img {
  width: clamp(240px, 34vw, 380px);
  height: 180px;
  border-radius: 12px;
  background: url("../Images/google-rating-banner.jpg.png") no-repeat center/cover;
  outline: 1px solid rgba(0, 0, 0, 0.09);
}

[data-theme="dark"] .rating-banner-img {
  outline: 1px solid rgba(255,255,255,.06);
}
/* Tablet */
@media (max-width: 992px) {
  .rating-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .rating-cta {
    justify-content: flex-start;
  }
  .rating-banner-img {
    width: 100%;
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .rating-banner {
    padding: 16px;
    gap: 14px;
  }
  .rating-big {
    font-size: 36px;
  }
  .stars {
    font-size: 18px;
  }
  .rating-cta {
    width: 100%;
    flex-direction: column;
  }
  .rating-banner-img {
    height: 160px;
  }
}

/* ================================
   🌟 Modern Highlights Section
   ================================ */
.highlights{
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: radial-gradient(80% 120% at 50% -10%, rgba(0,166,153,.08), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.02), transparent 40%),
              var(--section-bg, transparent);
}

/* Floating blobs (decor) */
.highlights .blob{
  position:absolute; filter: blur(24px); opacity:.25; pointer-events:none;
  animation: float 12s ease-in-out infinite;
}
.highlights .blob-1{
  width: 320px; height: 320px; top:-60px; left:-40px;
  background: radial-gradient(circle at 30% 30%, rgba(0,166,153,.35), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(33,33,33,.18), transparent 60%);
}
.highlights .blob-2{
  width: 300px; height: 300px; bottom:-80px; right:-40px;
  background: radial-gradient(circle at 60% 40%, rgba(0,166,153,.30), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(0,0,0,.12), transparent 60%);
  animation-delay: -4s;
}
@keyframes float{
  0%,100% { transform: translateY(0) }
  50%     { transform: translateY(10px) }
}

/* Cards grid */
.hl-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  margin-top: 18px;
}

.hl-card{
  position:relative;
  border-radius:16px;
  padding:18px 16px;
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(17,17,17,.06);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
[data-theme="dark"] .hl-card{
  background: rgba(20,22,27,.55);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hl-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(17,17,17,.10);
  border-color: rgba(0,166,153,.25);
}

.hl-icon{
  width:44px; height:44px;
  border-radius:12px;
  display:grid; place-items:center;
  color:#00A699; background: rgba(0,166,153,.10);
  margin-bottom:10px;
}

.hl-card h4{
  margin: 4px 0 6px;
  font-size: 18px; line-height: 1.2; color:#212121;
}
[data-theme="dark"] .hl-card h4{ color:#fff; }
.hl-card .note{ margin:0; }

/* Trust strip */
.trust-strip{
  display:flex; gap:12px; flex-wrap:wrap;
  margin: 22px 0 8px;
}
.trust-item{
  display:flex; flex-direction:column; align-items:flex-start;
  padding:12px 14px; border-radius:12px;
  background: rgba(255,255,255,.65);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,.06);
  min-width: 140px;
}
[data-theme="dark"] .trust-item{
  background: rgba(20,22,27,.55);
  border-color: rgba(255,255,255,.06);
}
.trust-item strong{
  font-size: clamp(18px, 2.8vw, 22px);
  color:#212121;
}
[data-theme="dark"] .trust-item strong{ color:#fff; }
.trust-item span{ font-size: 12px; opacity:.8 }

/* CTA bar */
.hl-cta{
  margin-top: 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  padding:16px; border-radius:14px;
  background: linear-gradient(135deg, rgba(0,166,153,.10), rgba(0,166,153,.04));
  border:1px solid rgba(0,166,153,.18);
}

/* Responsive */
@media (max-width: 1024px){
  .hl-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .hl-grid{ grid-template-columns: 1fr; }
  .hl-card{ padding:16px 14px; }
  .trust-item{ flex:1 1 46%; min-width: 46%; }
  .hl-cta{ align-items:flex-start; }
}
/* Reviews: Glassmorphism + Hover Lift */
.grid.cols-3 .card{
  position: relative;
  border-radius: 16px;
  padding: 18px;
  /* glass base */
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /* soft border + inner highlight */
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 22px rgba(17,17,17,0.08);
  /* smooth motion */
  transform: translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease;
}

/* Dark theme glass */
[data-theme="dark"] .grid.cols-3 .card{
  background: rgba(20,22,27,0.45);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

/* Hover: halka sa upar + crisper glass + accent edge */
.grid.cols-3 .card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,166,153,0.28); /* brand accent */
  box-shadow: 0 12px 34px rgba(17,17,17,0.14);
}
[data-theme="dark"] .grid.cols-3 .card:hover{
  background: rgba(25,28,35,0.62);
  border-color: rgba(0,166,153,0.38);
  box-shadow: 0 16px 38px rgba(0,0,0,0.6);
}

/* Optional: soft sheen on hover (subtle) */
.grid.cols-3 .card::after{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 60%);
  opacity:.0; pointer-events:none;
  transition: opacity .28s ease;
}
.grid.cols-3 .card:hover::after{ opacity:.6; }

/* Stars & text polish (optional) */
.grid.cols-3 .card > div:first-child{
  font-size: 18px; color: #FFC107; margin-bottom: 8px;
}
.grid.cols-3 .card .note{
  margin:0; font-size:14px; line-height:1.55;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .grid.cols-3 .card{
    transition: none;
  }
  .grid.cols-3 .card:hover{
    transform: none;
  }
}
/* Review cards styling */
.grid.cols-3 .card {
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.6); /* transparent white */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

/* Dark mode adjust */
[data-theme="dark"] .grid.cols-3 .card {
  background: rgba(20, 22, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Hover Animation */
.grid.cols-3 .card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.12);
  border-color: rgba(0, 166, 153, 0.25); /* brand accent */
}

[data-theme="dark"] .grid.cols-3 .card:hover {
  background: rgba(25, 28, 35, 0.7);
  border-color: rgba(0, 166, 153, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

/* Stars & text polish */
.grid.cols-3 .card div {
  font-size: 18px;
  color: #FFC107;
  margin-bottom: 8px;
}
.grid.cols-3 .card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
/* ================================
   Reviews: Glass + Blur + One-time Bounce Hover
   ================================ */

.grid.cols-3 .card {
  position: relative;
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.55);   /* glass effect */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(17,17,17,0.08);
  transform: translateY(0);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform, box-shadow;
}

[data-theme="dark"] .grid.cols-3 .card {
  background: rgba(20,22,27,0.48);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Hover effect: ek baar bounce */
.grid.cols-3 .card:hover {
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,166,153,0.28);
  box-shadow: 0 14px 36px rgba(17,17,17,0.14);
  animation: review-bounce 0.5s cubic-bezier(.2,.8,.3,1) forwards;
}

[data-theme="dark"] .grid.cols-3 .card:hover {
  background: rgba(25,28,35,0.62);
  border-color: rgba(0,166,153,0.38);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

/* Bounce keyframes (one-time only) */
@keyframes review-bounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-12px); }
  65%  { transform: translateY(-0px); }
  85%  { transform: translateY(-0px); }
  100% { transform: translateY(-0px); } /* final lifted state */
}


.grid img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border-radius: 10px;
}

.grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 70px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 25px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.grid.cols-3 img.zoomable {
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
}

/* Hover par shake */
.grid.cols-3 img.zoomable:hover {
  animation: shakeHover 0.4s ease;
}

@keyframes shakeHover {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-4px); }
  50%  { transform: translateX(4px); }
  75%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}


.field {
  display: flex;
  align-items: center;   /* ✅ Icon aur select vertically center ho jayenge */
  gap: 10px;             /* ✅ Icon aur select ke beech space */
  padding: 33px;
  border: 1px solid #000000;
  border-radius: 6px;
}

.field i {
  font-size: 20px;
  color: orange;
}

.field select {
  flex: 1;               /* ✅ Select box poora width le */
  padding: 6px;
  font-size: 14px;
  border: none;
  outline: none;
  background: transparent;
}



