/*
Theme Name: Digitalboxes Official
Theme URI: https://digitalboxes.net
Author: Jahanzaib Ashfaq
Author URI: https://digitalboxes.net
Description: A fully custom WordPress theme built for Digitalboxes.
Version: 
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digitalboxes-official
/* Basic layout helpers */
:root{
--dbx-primary:#1a73e8; /* adjust to your brand */
--dbx-text:#0f172a;
}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}


/* Make the ElementsKit header stick */
.dbx-ekit-header{
  position: sticky;         /* primary */
  top: 0;
  z-index: 9999;
  background: #fff;
  transition: all .2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
/* Admin bar offsets */
.admin-bar .dbx-ekit-header{ top:32px; }
@media (max-width:782px){
  .admin-bar .dbx-ekit-header{ top:46px; }
}



/* Menu */
.primary-nav .menu{display:flex;flex-wrap:wrap;gap:24px;list-style:none;margin:0;padding:0;}
.primary-nav .menu a{color:var(--dbx-text);text-decoration:none;font-weight:600;}
.primary-nav .menu a:hover{color:var(--dbx-primary);}


/* CTA button in header */
.btn-cta{background:var(--dbx-primary);color:#fff;text-decoration:none;padding:10px 16px;border-radius:10px;font-weight:700;}
.btn-cta:hover{opacity:.92;}


/* Footer */
.site-footer{background:#0b1220;color:#cbd5e1;padding:40px 0;}
.site-footer a{color:#cbd5e1;}


/* Content spacing */
.site-content{padding:40px 0;}


/* Single Blog Post Layout */
.dbx-engagement-box {
  max-width: 780px;
  margin: 45px auto 60px;
  padding: 28px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.dbx-engagement-box h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #111827;
}

.dbx-share-links a {
  display: inline-block;
  margin: 6px;
  padding: 10px 16px;
  background: #2575fc;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.dbx-share-links a:hover {
  background: #125ee8;
}

.dbx-back-top {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  background: #eef4ff;
  color: #2575fc;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}