:root{
  --bg:#f7f8fa;
  --card:#ffffff;
  --muted:#6c757d;
  --accent:#0f5132;
}
body{
  font-family: 'Inter', system-ui;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding-bottom: 60px;
}

/* Navbar */
.navbar-custom{
  background: var(--card);
  box-shadow: 0 1px 4px rgba(15,23,42,0.04);
}


.search-input{
  max-width: 1045px;
border-radius: 30px;

}

.btn-orange{
  background-color: #ff7a00;   /* orange */
  border-color: #ff7a00;
  color: white;
  font-weight: 600;
  padding: 8px 26px;           /* increased button width */
  min-width: 130px;            /* force wider button */
margin-left: 33px;
border-radius: 30px;
}

.btn-orange:hover{
  background-color: #e86c00;
  border-color: #e86c00;
}

/* Layout */
.main-wrap{ padding: 32px 48px; }

/* Certificate */
.certificate-frame{
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(38,57,77,0.04);
  position: relative;
}
.certificate-img{ width:100%; display:block; }
.watermark{
  position:absolute; inset:0;
  display:flex; justify-content:center; align-items:center;
  font-size:24px; font-weight:700; opacity:0.12;
  transform:rotate(-20deg); color:#6c757d; letter-spacing:4px;
}

/* Info card */
.info-card{
  background: var(--card);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.04);
}
.info-row{
  display:flex; justify-content:space-between; padding:10px 0;
  border-bottom:1px dashed #eee;
}
.meta-label{ color:var(--muted); font-size:13px; font-weight:600; }
.meta-value{ font-size:15px; font-weight:700; }

/* Verified Badge */
.verified-badge{
  display:flex; gap:10px; align-items:center;
  background: rgba(45,212,191,0.07);
  padding:10px 14px; border-radius:32px;
  font-weight:700; color:var(--accent);
}
.tick{
  width:46px; height:46px; border-radius:50%;
  background:#e9fff5; display:flex; justify-content:center; align-items:center;
  animation:pulse 1.6s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(46,204,113,0.18); }
  70%{ box-shadow:0 0 0 12px rgba(46,204,113,0); }
  100%{ box-shadow:0 0 0 0 rgba(46,204,113,0); }
}

#companyLogo {
  height: 55px;   /* change as needed */
  width: 200px;    /* keeps correct aspect ratio */
}


.qr-wrap{ display:flex; gap:12px; }

.muted-note{ color:var(--muted); font-size:13px; margin-left:6px;}

.muted-note{ color:var(--muted); font-size:13px; margin-left:6px;}

@media(max-width:991px){
  .main-wrap{ padding:18px; }
  .search-input{ min-width:200px; }
}
@media(max-width:767px){
  .watermark{ font-size:18px; transform:rotate(-15deg); }
}
@media (max-width: 576px) {
  #companyLogo {
    height: 32px;
  }
}

