:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.12);
  --text:#f6f7ff;
  --muted:#b9c6ea;
  --gold:#d6b36a;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 700px at 10% 10%, rgba(214,179,106,.14), transparent 55%),
    radial-gradient(900px 700px at 85% 15%, rgba(99,102,241,.12), transparent 55%),
    linear-gradient(180deg, #070b14, var(--bg));
  overflow-x:hidden;
}

.container{max-width:1160px;margin:0 auto;padding:0 16px}
.small{font-size:13px}
.muted{color:var(--muted)}

/* Rich Animations */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes fadeInLeft{
  from{opacity:0;transform:translateX(-40px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes fadeInRight{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes scaleIn{
  from{opacity:0;transform:scale(.85)}
  to{opacity:1;transform:scale(1)}
}
@keyframes slideDown{
  from{opacity:0;transform:translateY(-20px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.7;transform:scale(1.05)}
}
@keyframes drift{
  0%,100%{transform: translate(0,0)}
  50%{transform: translate(45px, -25px)}
}
@keyframes glow{
  0%,100%{box-shadow:0 0 10px rgba(214,179,106,.3)}
  50%{box-shadow:0 0 30px rgba(214,179,106,.6)}
}
@keyframes shimmer{
  from{background-position:-1000px 0}
  to{background-position:1000px 0}
}
@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
@keyframes rotateIn{
  from{opacity:0;transform:rotate(-5deg) scale(.9)}
  to{opacity:1;transform:rotate(0) scale(1)}
}
@keyframes slideInUp{
  from{opacity:0;transform:translateY(60px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes cardHover{
  0%{transform:translateY(0)}
  100%{transform:translateY(-12px)}
}

.reveal{animation: slideInUp .9s cubic-bezier(.34,1.56,.64,1) forwards; opacity:0}
.reveal.d1{animation-delay:.15s}
.reveal.d2{animation-delay:.25s}
.reveal.d3{animation-delay:.35s}
.reveal.d4{animation-delay:.45s}
.reveal.d5{animation-delay:.55s}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(7,11,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  animation: slideDown .6s ease;
}
.nav{min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:14px}

.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit;transition:all .3s cubic-bezier(.34,1.56,.64,1)}
.brand:hover{transform:scale(1.05) translateY(-2px)}
.logo{
  width:88px;height:88px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(214,179,106,.12), rgba(255,255,255,.06));
  box-shadow: 0 10px 30px rgba(214,179,106,.18);
  transition:all .25s cubic-bezier(.34,1.56,.64,1);
  overflow:hidden;
}
.logo img{width:100%;height:100%;object-fit:contain;padding:6px}
.logo:hover{box-shadow:0 12px 40px rgba(214,179,106,.25);transform:scale(1.08)}
.brandText strong{font-weight:900;font-size:18px;color:var(--text)}
.sub{display:block;color:var(--muted);font-size:11px;margin-top:2px;letter-spacing:.05em}

.links{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.links a{color:var(--muted);text-decoration:none;font-size:14px;transition:color .2s}
.links a:hover{color:var(--text)}
.pill{
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(214,179,106,.35);
  background:rgba(214,179,106,.10);
  color:var(--text);
  transition: all .2s;
}
.pill:hover{background:rgba(214,179,106,.20);transform:translateY(-2px)}
.menu{
  display:none;
  font-size:22px;
  padding:10px 12px;border-radius:12px;
  border:1px solid var(--line);
  background:transparent;color:var(--text);
}

.hero{padding:64px 0 22px;animation: fadeInUp 1s ease}
.heroGrid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:start}
.kicker{color:var(--gold);letter-spacing:.14em;text-transform:uppercase;font-size:12px;animation: fadeInLeft .8s ease .2s forwards; opacity:0}
h1{font-family:"Playfair Display", serif;font-size:44px;line-height:1.05;margin:14px 0 10px;animation: fadeInUp .8s ease .3s forwards; opacity:0}
.lead{color:var(--muted);max-width:62ch;animation: fadeInUp .8s ease .4s forwards; opacity:0}

.cta{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 10px;animation: fadeInUp .8s ease .5s forwards; opacity:0}
.btn{
  border:0;cursor:pointer;
  padding:12px 14px;border-radius:14px;
  font-weight:900;
  background:linear-gradient(135deg, rgba(214,179,106,.95), rgba(255,255,255,.15));
  color:#101827;
  box-shadow: 0 14px 35px rgba(214,179,106,.15);
  text-decoration:none;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(45deg, transparent, rgba(255,255,255,.2), transparent);
  opacity:0;
  animation:shimmer 3s infinite;
  animation-play-state:paused;
}
.btn:hover::before{animation-play-state:running}
.btn:hover{
  transform: translateY(-5px) scale(1.04);
  filter:brightness(1.12);
  box-shadow: 0 25px 60px rgba(214,179,106,.25), 0 0 30px rgba(214,179,106,.15);
}
.btn:active{transform:translateY(-2px) scale(1.01)}
.btn.ghost{
  background:transparent;color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn.ghost:hover{background:rgba(214,179,106,.15);border-color:rgba(214,179,106,.50)}
.btn.soft{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(214,179,106,.25);
  color:var(--text);
}
.btn.full{width:100%}
.btn.small{padding:10px 12px;border-radius:12px;font-size:13px}

.heroFrame{display:grid;gap:12px;animation: fadeInRight 1s ease .6s forwards; opacity:0}
.heroImg{
  height:360px;border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(120deg, rgba(214,179,106,.10), rgba(255,255,255,.03)),
    url("https://images.pexels.com/photos/461035/pexels-photo-461035.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
  box-shadow: var(--shadow);
  position:relative;overflow:hidden;
}
.heroImg:after{
  content:"";
  position:absolute;inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 45%);
  animation: drift 8s ease-in-out infinite;
}

.glass{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  animation: scaleIn .8s ease .7s forwards; opacity:0
}
.glassTitle{font-weight:900;margin-bottom:8px}
.ticks{margin:0;padding-left:18px;color:var(--muted)}
.ticks li{margin:6px 0}

.section{padding:48px 0;border-top:1px solid var(--line)}
.section.alt{background:rgba(255,255,255,.02)}
.head{animation: fadeInUp .8s ease forwards}
.head h2{margin:0;font-family:"Playfair Display", serif;font-size:30px}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
.grid6{display:grid;grid-template-columns:repeat(6,1fr);gap:12px;margin-top:14px}
.priceGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  animation: slideInUp .8s ease-out forwards;
  opacity:0;
  transition:all .3s cubic-bezier(.34,1.56,.64,1);
}
.card.d1{animation-delay:.1s}
.card.d2{animation-delay:.2s}
.card.d3{animation-delay:.3s}
.card.d4{animation-delay:.4s}
.card.d5{animation-delay:.5s}
.card.d6{animation-delay:.6s}
.card:hover{
  border-color:rgba(214,179,106,.35);
  box-shadow:0 20px 50px rgba(214,179,106,.2), 0 0 30px rgba(214,179,106,.1);
  transform:translateY(-8px);
  filter:brightness(1.05);
}

.hoverLift{
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position:relative;
}
.hoverLift:hover{
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(214,179,106,.45);
  box-shadow:0 30px 60px rgba(214,179,106,.25), 0 0 40px rgba(214,179,106,.15);
  filter:brightness(1.1);
}
.hoverLift::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:linear-gradient(45deg, transparent 30%, rgba(214,179,106,.1) 50%, transparent 70%);
  opacity:0;
  animation:shimmer 3s infinite;
  animation-play-state:paused;
}
.hoverLift:hover::before{
  animation-play-state:running;
}

.miniRow{display:flex;justify-content:space-between;gap:10px;align-items:center;margin-top:12px;flex-wrap:wrap}
.tag{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(214,179,106,.25);
  background:rgba(214,179,106,.06);
  color:var(--muted);
  font-size:12px;
}

.pTop{display:flex;justify-content:space-between;gap:10px;align-items:baseline}
.pName{font-weight:900}
.pPrice{font-weight:900;color:var(--gold);font-size:20px}

/* Before/After Slider */
.sliderContainer{
  position:relative;
  width:100%;
  max-width:600px;
  margin:20px auto;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
}
.sliderImg{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
}
.sliderBefore{position:relative;width:100%;overflow:hidden}
.sliderAfter{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}
.sliderHandle{
  position:absolute;
  top:0;left:50%;width:4px;height:100%;
  background:var(--gold);
  cursor:ew-resize;
  transform:translateX(-50%);
  z-index:10;
  box-shadow: 0 0 20px rgba(214,179,106,.5);
}
.sliderLabel{
  position:absolute;
  bottom:10px;right:10px;
  padding:8px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.4);
  color:var(--text);
  font-size:12px;
  font-weight:900;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.gItem{margin:0; overflow:hidden; border-radius:20px; border:1px solid var(--line); background:rgba(255,255,255,.03); animation: scaleIn .8s ease forwards; opacity:0}
.gItem.d1{animation-delay:.1s}
.gItem.d2{animation-delay:.2s}
.gItem.d3{animation-delay:.3s}
.gItem.d4{animation-delay:.4s}
.gItem.d5{animation-delay:.5s}
.gItem.d6{animation-delay:.6s}

.gItem img{width:100%;height:220px;object-fit:cover;display:block;transition: all .4s cubic-bezier(.34,1.56,.64,1);filter:brightness(.95)}
.gItem:hover img{transform:scale(1.12) rotate(1deg);filter:brightness(1.1);animation:rotateIn .5s ease}
.gItem figcaption{
  padding:10px 12px;color:var(--muted);font-size:13px;
  background:rgba(0,0,0,.3);
  transition:all .3s;
  font-weight:600;
  letter-spacing:.05em;
}
.gItem:hover figcaption{
  background:linear-gradient(135deg, rgba(214,179,106,.25), rgba(214,179,106,.15));
  color:var(--gold);
  transform:translateY(-2px);
}

.founderGrid{display:grid;grid-template-columns:1.05fr .95fr;gap:12px;margin-top:14px}
.founderTop{display:flex;gap:14px;align-items:center;margin-bottom:10px}
.kicker2{color:var(--gold);letter-spacing:.14em;text-transform:uppercase;font-size:12px}
.founderName{margin:6px 0 0;font-family:"Playfair Display", serif}

.founderPhoto{
  width:100px;height:100px;border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(214,179,106,.14), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow:hidden;
  object-fit:cover;
}
.founderBadges{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}
.badgeCard{
  padding:12px;border-radius:18px;
  border:1px solid rgba(214,179,106,.25);
  background:rgba(214,179,106,.06);
  transition: all .2s;
}
.badgeCard:hover{background:rgba(214,179,106,.12);transform:translateY(-2px)}
.bNum{font-weight:900}
.bLbl{color:var(--muted);font-size:12px;margin-top:2px}

.timeline2{display:grid;gap:12px;margin-top:12px}
.tRow{display:grid;grid-template-columns:14px 1fr;gap:10px;align-items:flex-start;animation: fadeInLeft .8s ease forwards; opacity:0}
.tRow.d1{animation-delay:.1s}
.tRow.d2{animation-delay:.2s}
.tRow.d3{animation-delay:.3s}

.tDot{
  width:10px;height:10px;border-radius:999px;margin-top:6px;
  background:rgba(214,179,106,.95);
  box-shadow: 0 0 0 6px rgba(214,179,106,.12);
  animation: pulse 2s ease infinite;
}
.tTitle{font-weight:900}

.processSteps{display:grid;gap:12px;margin-top:14px}
.pStep{
  display:grid;grid-template-columns:50px 1fr;gap:14px;
  padding:14px;border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  animation: fadeInUp .8s ease forwards; opacity:0;
}
.pStep.d1{animation-delay:.1s}
.pStep.d2{animation-delay:.2s}
.pStep.d3{animation-delay:.3s}
.pStep.d4{animation-delay:.4s}
.pStep.d5{animation-delay:.5s}

.stepNum{
  width:50px;height:50px;border-radius:16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(214,179,106,.15), rgba(99,102,241,.15));
  font-weight:900;font-size:18px;color:var(--gold);
}
.stepTitle{font-weight:900}

.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
.review{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  animation: slideInUp .8s ease-out forwards;
  opacity:0;
  transition:all .4s cubic-bezier(.34,1.56,.64,1);
  position:relative;
  overflow:hidden;
}
.review.d1{animation-delay:.1s}
.review.d2{animation-delay:.2s}
.review.d3{animation-delay:.3s}

.review::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(214,179,106,.1), transparent);
  opacity:0;
  transition:opacity .3s;
}
.review:hover::before{opacity:1}

.review:hover{
  border-color:rgba(214,179,106,.3);
  box-shadow:0 20px 50px rgba(214,179,106,.2), 0 0 25px rgba(214,179,106,.1);
  transform:translateY(-8px) scale(1.02);
  filter:brightness(1.08);
}

.stars{display:flex;gap:4px;margin-bottom:8px}
.star{color:var(--gold)}
.reviewText{color:var(--muted);font-size:13px;margin:8px 0}
.reviewer{color:var(--text);font-weight:900;font-size:12px}

.faq{display:grid;gap:10px;margin-top:14px}
details{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  animation: slideInUp .8s ease-out forwards;
  opacity:0;
  transition:all .3s;
  cursor:pointer;
}
details.d1{animation-delay:.1s}
details.d2{animation-delay:.2s}
details.d3{animation-delay:.3s}

details:hover{
  border-color:rgba(214,179,106,.3);
  box-shadow:0 15px 40px rgba(214,179,106,.15);
  transform:translateY(-4px);
}

details summary{
  cursor:pointer;
  font-weight:900;
  transition:all .3s;
  user-select:none;
  padding:4px 0;
  border-radius:6px;
  padding:8px 12px;
  margin:-8px -12px;
}
details summary:hover{
  color:var(--gold);
  background:rgba(214,179,106,.08);
  transform:translateX(4px);
}
details p{
  margin:10px 0 0;
  color:var(--muted);
  animation:fadeInUp .4s ease forwards;
}

.mapBox{
  height:220px;border-radius:18px;border:1px dashed var(--line);
  display:grid;place-items:center;color:var(--muted);
  background:rgba(0,0,0,.12);
  animation: scaleIn .8s ease forwards; opacity:0;
}

.footer{padding:24px 0;border-top:1px solid var(--line);animation: fadeInUp .8s ease}
.footerLinks{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:10px}
.footerLinks a{color:var(--muted);text-decoration:none;font-size:14px;transition:color .2s}
.footerLinks a:hover{color:var(--gold)}
.foot{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

.fab{
  position:fixed;right:16px;z-index:60;
  padding:14px 16px;border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;font-weight:900;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  animation:slideInUp .6s ease-out forwards;
}
.fab:hover{
  transform:scale(1.12) translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
  filter:brightness(1.15);
}
.fab.wa{
  bottom:18px;
  background:linear-gradient(135deg, rgba(37,211,102,.18), rgba(37,211,102,.08));
  color:var(--text);
  border:1px solid rgba(37,211,102,.25);
  animation-delay:.3s;
}
.fab.wa:hover{
  background:linear-gradient(135deg, rgba(37,211,102,.25), rgba(37,211,102,.15));
  box-shadow: 0 25px 60px rgba(37,211,102,.2);
}
.fab.call{
  bottom:66px;
  background:linear-gradient(135deg, rgba(99,102,241,.18), rgba(99,102,241,.08));
  color:var(--text);
  border:1px solid rgba(99,102,241,.25);
  animation-delay:.2s;
}
.fab.call:hover{
  background:linear-gradient(135deg, rgba(99,102,241,.25), rgba(99,102,241,.15));
  box-shadow: 0 25px 60px rgba(99,102,241,.2);
}
.fab.pulse{animation:pulse 2s ease infinite}

.liveRow{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:12px 0 0;animation: fadeInUp .8s ease .6s forwards; opacity:0}
.liveDot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(34,197,94,.9);
  box-shadow: 0 0 0 6px rgba(34,197,94,.10);
  animation: pulse 2s ease infinite;
}
.sep{color:rgba(255,255,255,.25)}

/* Lightbox Modal */
#lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.lightbox-inner {
  position: relative;
  z-index: 9999;
}

/* Buttons ko hamesha upar rakho */
#lightboxPrev,
#lightboxNext,
#lightboxClose {
  position: absolute;
  z-index: 10000;
  pointer-events: auto;
}

/* Agar neeche koi overlay div hai to uspar click disable karo */
.lightboxOverlay,
.lightbox-bottom,
.lightbox-footer {
  pointer-events: none;
}

.lightbox{
  display:none;
  position:fixed;inset:0;
  background:rgba(0,0,0,.85);
  z-index:100;
  animation: fadeInUp .3s ease;
}
.lightbox.active{display:flex;align-items:center;justify-content:center}
.lightboxContent{
  position:relative;
  max-width:90%;max-height:90vh;
  background:rgba(11,18,32,.95);
  border:1px solid rgba(214,179,106,.2);
  border-radius:24px;
  overflow:hidden;
  animation:scaleIn .3s ease;
}
.lightboxImg{
  width:100%;height:100%;
  max-height:75vh;
  object-fit:contain;
}
.lightboxClose{
  position:absolute;top:16px;right:16px;
  width:40px;height:40px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.5);
  color:var(--text);
  border-radius:12px;
  cursor:pointer;
  font-size:24px;
  display:grid;place-items:center;
  transition:all .2s;
  z-index:10;
}
.lightboxClose:hover{background:rgba(214,179,106,.2);border-color:var(--gold)}
.lightboxNav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;
  background:rgba(0,0,0,.5);
  border:1px solid var(--line);
  color:var(--text);
  border-radius:12px;
  cursor:pointer;
  display:grid;place-items:center;
  transition:all .2s;
  font-size:20px;
}
.lightboxNav:hover{background:rgba(214,179,106,.2);border-color:var(--gold)}
.lightboxPrev{left:16px}
.lightboxNext{right:16px}
.lightboxCounter{
  position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  padding:8px 12px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(214,179,106,.3);
  border-radius:12px;
  color:var(--muted);
  font-size:12px;
}
.gItemClickable{cursor:pointer}
.gItemClickable:hover{filter:brightness(1.2)}

@media (max-width: 980px){
  h1{font-size:36px}
  .heroGrid{grid-template-columns:1fr}
  .grid3,.grid6,.priceGrid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .founderGrid{grid-template-columns:1fr}
  .founderBadges{grid-template-columns:1fr}
  .reviews{grid-template-columns:1fr}
}
@media (max-width: 980px){
  .logo{width:52px;height:52px}
  .brandText strong{font-size:16px}
}
@media (max-width: 640px){
  .menu{display:block;transition:all .2s}
  .menu:hover{border-color:rgba(214,179,106,.4);background:rgba(214,179,106,.08)}
  .links{display:none}
  .links.mobile{
    display:flex;position:absolute;right:16px;top:72px;
    flex-direction:column;gap:10px;
    background:rgba(12,18,34,.96);
    border:1px solid var(--line);
    border-radius:18px;padding:12px;min-width:190px;
    animation: slideDown .3s cubic-bezier(.34,1.56,.64,1);
    box-shadow:0 20px 50px rgba(0,0,0,.3);
  }
  .gallery{grid-template-columns:1fr}
  .grid6{grid-template-columns:repeat(2,1fr)}
  h1{font-size:32px;line-height:1.2}
  .fab{padding:12px 12px;font-size:12px}
}
@media (max-width: 480px){
  .logo{width:48px;height:48px}
  .brandText strong{font-size:14px}
  .nav{min-height:60px}
  h1{font-size:28px}
  .grid3{grid-template-columns:1fr}
}
@media (max-width: 980px){
  .logo{width:72px;height:72px}
}
@media (max-width: 480px){
  .logo{width:56px;height:56px}
}

/* --- Styling the Overall Container and Text --- */
.typing-area {
  /* Use a font that feels professional, like a serif or clean sans-serif */
  font-family: 'Georgia', serif; 
  line-height: 1.5;
  padding: 10px;
}

.static-line {
  font-size: 2.5em; /* Large size for emphasis */
  font-weight: bold;
  color: #333; /* Dark color */
  margin-bottom: 5px; /* Space between the lines */
}

.dynamic-line {
  font-size: 1.8em; /* Slightly smaller than the main line */
  font-weight: normal;
  color: #a38b69; /* A professional accent color */
  min-height: 1.8em; /* Ensures the line doesn't jump up when empty */
}

/* --- The Blinking Cursor Effect --- */
.cursor {
  display: inline-block;
  margin-left: 3px;
  width: 2px;
  height: 1em; /* Matches the text height */
  background-color: #333; /* Dark color for the cursor */
  animation: blink 0.7s infinite step-end;
}

/* Define the blinking animation */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
