/* Borbila Delayed Popup — Clean Corporate Royal Blue */

:root{
  --rb:#1d4ed8;
  --rb-dark:#0a2ea8;
  --ink:#1f2937;
  --card:#ffffff;
}

.borbila-dpop{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
  align-items:center;
  justify-content:center;
  font-family:"Hind Siliguri", system-ui, -apple-system;
}
.borbila-dpop.is-open{display:flex;}

.borbila-dpop__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(10px);
}

/* Desktop fixed */
.borbila-dpop__dialog{
  position:relative;
  width:460px;
  height:360px;
  background:var(--card);
  border-radius:20px;
  box-shadow:0 30px 90px rgba(0,0,0,.4);
  display:flex;
  flex-direction:column;
  overflow:visible;
  animation:fadeIn .25s ease-out forwards;
}

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

/* Mobile fixed */
@media(max-width:480px){
  .borbila-dpop__dialog{width:330px;height:340px;}
}

/* Badge */
.borbila-dpop__badge{
  position:absolute;
  top:-30px;
  left:50%;
  transform:translateX(-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.borbila-dpop__badgeInner{
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--rb-dark),var(--rb));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:20px;
}

/* Close */
.borbila-dpop__close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.1);
  background:#fff;
  font-size:20px;
  cursor:pointer;
}

/* Header */
.borbila-dpop__header{
  padding:44px 22px 10px;
  text-align:center;
}

.borbila-dpop__title{
  margin:0;
  font-size:20px;
  font-weight:800;
  color:var(--ink);
}

.borbila-dpop__sub{
  margin:6px 0 0;
  font-size:13px;
  color:rgba(0,0,0,.55);
  font-weight:600;
}

/* Content */
.borbila-dpop__content{
  padding:10px 22px;
  flex:1;
  overflow:auto;
}

.borbila-dpop__p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.8;
  color:#6a7583;
  font-weight:600; /* slightly bold */
  text-align: center;
}

/* Divider */
.borbila-dpop__divider{
  height:1px;
  background:rgba(0,0,0,.1);
  margin:10px 0;
}

/* Action Button */
.borbila-dpop__action{
  padding:0 22px 22px;
}

.borbila-dpop__thanks{
  width:100%;
  padding:10px 14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--rb-dark),var(--rb));
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:all .15s ease;
}

.borbila-dpop__thanks:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(29,78,216,.3);
}

/* Mobile text fit */
@media(max-width:480px){
  .borbila-dpop__title{font-size:18px;}
  .borbila-dpop__p{font-size:13px;}
  .borbila-dpop__thanks{
    padding: 9px 12px;
  }
}