 :root {
     --bg: #fffdf8;
     --surface: #ffffff;
     --surface2: #f8fafc;
     --border: #e2e8f0;
     --accent: #2874f0;
     --accent2: #2874f0;
     --gold: #eab308;
     --red: #dc2626;
     --green: #16a34a;
     --text: #0f172a;
     --muted: #64748b;
     --card-bg: #ffffff;
     --font: "Plus Jakarta Sans", sans-serif;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: var(--font);
     background: var(--bg);
     color: var(--text);
     min-height: 100vh;
     overflow-x: hidden;
 }



 /* NAV */
 .baalbo-nav {
     position: sticky;
     top: 0;
     z-index: 100;
     background: #ffffff;
     border-bottom: 1px solid var(--border);
     padding: 0 24px;
     height: 60px;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
     display: flex;
     align-items: center;
 }

 .nav-content {
     max-width: 1140px;
     margin: 0 auto;
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .brand-mark {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .brand-icon {
     height: 34px;
     display: flex;
     align-items: center;
 }

 .brand-icon img {
     height: 34px;
     width: auto;
     display: block;
 }

 .brand-name {
     font-weight: 800;
     font-size: 1.05rem;
     color: var(--text);
     letter-spacing: -0.3px;
 }

 .nav-badge {
     display: flex;
     align-items: center;
     gap: 8px;
     background: #f0fdf4;
     border: 1px solid #bbf7d0;
     padding: 5px 13px;
     border-radius: 100px;
     font-size: 0.72rem;
     color: var(--green);
     font-weight: 600;
     letter-spacing: 0.5px;
 }

 .pulse-dot {
     width: 7px;
     height: 7px;
     background: var(--green);
     border-radius: 50%;
     animation: pulse 2s ease infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.4;
         transform: scale(0.8);
     }
 }

 /* HERO */
 .hero {
     text-align: center;
     padding: 60px 20px 20px;
     position: relative;
     z-index: 1;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(40, 116, 240, 0.1);
     border: 1px solid rgba(40, 116, 240, 0.3);
     padding: 6px 16px;
     border-radius: 100px;
     font-size: 0.73rem;
     color: var(--accent2);
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .hero h1 {
     font-size: clamp(1.7rem, 4vw, 2.6rem);
     font-weight: 800;
     letter-spacing: -1px;
     line-height: 1.1;
     margin-bottom: 14px;
 }

 .hero h1 .highlight {
     background: linear-gradient(135deg, var(--accent2), var(--gold));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero p {
     color: var(--muted);
     font-size: 1rem;
     max-width: 460px;
     margin: 0 auto;
 }

 /* MAIN GRID */
 .main-wrapper {
     max-width: 1140px;
     margin: 0 auto;
     padding: 40px 20px 80px;
     position: relative;
     z-index: 1;
 }

 .dashboard-grid {
     display: grid;
     grid-template-columns: 1fr 1.35fr;
     gap: 24px;
     align-items: start;
 }

 /* PANELS */
 .glass-panel {
     background: white;
     border: 1px solid var(--border);
     border-radius: 18px;
     padding: 26px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
 }

 .config-box {
     background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
     border: 1px solid #e2e8f0;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
 }

 .panel-title {
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--muted);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 24px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .panel-title-icon {
     width: 28px;
     height: 28px;
     background: rgba(40, 116, 240, 0.15);
     color: var(--accent);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
 }

 /* FORM */
 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
     margin-bottom: 14px;
 }

 .form-group {
     margin-bottom: 14px;
 }

 .form-group:last-of-type {
     margin-bottom: 0;
 }

 .form-group label {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 0.82rem;
     font-weight: 700;
     color: #1e293b;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     margin-bottom: 10px;
 }

 .input-icon {
     width: 16px;
     height: 16px;
     color: var(--accent);
 }

 .form-group input[type="text"],
 .form-group select {
     width: 100%;
     padding: 14px 16px;
     background: #ffffff;
     border: 2px solid #e2e8f0;
     border-radius: 12px;
     color: var(--text);
     font-family: var(--font);
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     outline: none;
     -webkit-appearance: none;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
 }

 .form-group input[type="text"]:focus,
 .form-group select:focus {
     border-color: var(--accent);
     box-shadow: 0 4px 15px rgba(40, 116, 240, 0.15), 0 0 0 4px rgba(40, 116, 240, 0.1);
     transform: translateY(-2px);
     background: #f8fafc;
 }

 .form-group input::placeholder {
     color: #b0bec5;
 }

 .input-group-flex {
     display: flex;
     align-items: stretch;
     background: #ffffff;
     border: 2px solid #e2e8f0;
     border-radius: 12px;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
     overflow: hidden;
 }

 .input-group-flex:focus-within {
     border-color: var(--accent);
     box-shadow: 0 4px 15px rgba(40, 116, 240, 0.15), 0 0 0 4px rgba(40, 116, 240, 0.1);
 }

 .select-wrap.country-wrap {
     width: 90px;
     flex-shrink: 0;
     background: #f8fafc;
     border-right: 2px solid #e2e8f0;
 }

 .input-group-flex .country-code-select {
     border: none !important;
     box-shadow: none !important;
     background: transparent !important;
     padding-left: 10px !important;
     padding-right: 22px !important;
 }

 .select-wrap.country-wrap::after {
     right: 8px;
 }

 .input-group-flex input[type="text"] {
     border: none !important;
     box-shadow: none !important;
     background: transparent !important;
 }

 .input-group-flex .country-code-select:focus,
 .input-group-flex input[type="text"]:focus {
     transform: none !important;
 }

 .form-group select option {
     background: #f8fafc;
 }

 .select-wrap {
     position: relative;
 }

 .select-wrap::after {
     content: '▼';
     font-size: 0.7rem;
     position: absolute;
     right: 16px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
     color: #64748b;
 }

 /* COLOR PICKER */
 .color-row {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .color-swatch-wrap {
     position: relative;
     width: 46px;
     height: 46px;
     flex-shrink: 0;
 }

 .color-swatch-wrap input[type="color"] {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     cursor: pointer;
     border: none;
     padding: 0;
 }

 .color-preview {
     width: 46px;
     height: 46px;
     border-radius: 12px;
     background: #eab308;
     border: 2px solid rgba(255, 255, 255, 0.1);
     pointer-events: none;
     transition: background 0.15s;
 }

 .color-info {
     flex: 1;
 }

 .color-info .hex-code {
     font-family: monospace;
     font-weight: 700;
     font-size: 1rem;
     color: var(--text);
 }

 .color-info .color-hint {
     font-size: 0.72rem;
     color: var(--muted);
 }

 /* DIVIDER */
 .form-divider {
     height: 1px;
     background: var(--border);
     margin: 18px 0;
 }

 /* BUTTONS */
 .btn {
     width: 100%;
     padding: 15px 20px;
     border: none;
     border-radius: 12px;
     font-family: 'Syne', sans-serif;
     font-weight: 700;
     font-size: 0.9rem;
     cursor: pointer;
     transition: all 0.2s;
     letter-spacing: 0.3px;
     position: relative;
     overflow: hidden;
 }

 .btn::after {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(255, 255, 255, 0);
     transition: background 0.2s;
 }

 .btn:hover::after {
     background: rgba(255, 255, 255, 0.08);
 }

 .btn:active {
     transform: scale(0.98);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent), #1a5fd4);
     color: white;
     box-shadow: 0 4px 20px rgba(40, 116, 240, 0.4);
     margin-top: 20px;
 }

 .btn-success {
     background: linear-gradient(135deg, #16a34a, #15803d);
     color: white;
     box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
     margin-top: 20px;
 }

 .btn-print {
     background: linear-gradient(135deg, #4f46e5, #3730a3);
     color: white;
     box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
     margin-top: 20px;
 }

 .btn-order {
     background: linear-gradient(135deg, #0f172a, #1e293b);
     color: #f8fafc;
     box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25);
     margin-top: 12px;
     border: 1px solid #334155;
 }

 .btn-order .btn-icon {
     color: var(--gold);
 }

 .action-buttons {
     display: flex;
     gap: 12px;
     margin-top: 20px;
 }

 .action-buttons .btn {
     margin-top: 0;
 }

 .btn-icon {
     display: inline-flex;
     align-items: center;
     margin-right: 8px;
 }

 /* PREVIEW PANEL */
 .preview-label {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 20px;
 }

 .live-badge {
     display: flex;
     align-items: center;
     gap: 5px;
     background: rgba(240, 180, 41, 0.12);
     border: 1px solid rgba(240, 180, 41, 0.25);
     padding: 4px 10px;
     border-radius: 100px;
     font-size: 0.68rem;
     color: var(--gold);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 /* THE CARD */
 .card-scroll-zone {
     overflow-x: auto;
     padding-bottom: 4px;
     scrollbar-width: none;
 }

 .card-scroll-zone::-webkit-scrollbar {
     display: none;
 }

 .professional-rect-card {
     width: 520px;
     height: 290px;
     background: white;
     border-radius: 20px;
     display: flex;
     overflow: hidden;
     box-shadow:
         0 2px 0 rgba(255, 255, 255, 0.15) inset,
         0 20px 60px rgba(0, 0, 0, 0.4);
     margin: 0 auto;
     transition: box-shadow 0.3s;
 }

 .professional-rect-card:hover {
     box-shadow:
         0 2px 0 rgba(255, 255, 255, 0.15) inset,
         0 30px 80px rgba(0, 0, 0, 0.5);
 }

 .card-left {
     width: 56%;
     padding: 20px 20px 16px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     background: white;
 }

 .card-logo-area {
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .card-logo-icon {
     height: 22px;
     display: flex;
     align-items: center;
 }

 .card-logo-icon img {
     height: 22px;
     width: auto;
     display: block;
 }

 .card-logo-text {
     font-weight: 800;
     font-size: 0.82rem;
     color: #0f172a;
     letter-spacing: -0.2px;
 }

 .card-headline {
     font-size: 1.45rem;
     font-weight: 800;
     color: #0f172a;
     letter-spacing: -0.8px;
     line-height: 1.1;
     margin: 6px 0 0;
     white-space: nowrap;
 }

 @media (max-width: 540px) {
     .card-headline {
         font-size: 1.25rem;
     }
 }

 .card-sub {
     font-size: 0.65rem;
     color: #94a3b8;
     font-weight: 500;
     margin-top: 2px;
 }

 .vehicle-info-block {
     margin: 0;
 }

 .model-label {
     font-size: 0.7rem;
     font-weight: 700;
     color: #94a3b8;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 5px;
 }

 .id-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 6px 12px;
     border-radius: 8px;
     font-weight: 800;
     font-size: 0.88rem;
     color: white;
     letter-spacing: 0.5px;
     text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
     /* FIX: Ensures text visibility on any background */
 }

 .card-footer-area {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .emergency-alert {
     background: #fef2f2;
     border: 1px solid #fecaca;
     color: #991b1b;
     font-size: 0.6rem;
     font-weight: 800;
     text-align: center;
     padding: 5px 8px;
     border-radius: 6px;
     letter-spacing: 0.3px;
 }

 .card-legal {
     font-size: 0.55rem;
     color: #94a3b8;
     line-height: 1.3;
 }

 /* Card Right */
 /* --- UPDATED CARD RIGHT FOR LARGE QR & DYNAMIC TEXT COLOR --- */

 .card-right {
     width: 44%;
     display: flex;
     flex-direction: column;
     overflow: hidden;
     transition: background-color 0.25s, color 0.25s;
     position: relative;
 }

 /* Dynamic Text Class (JS will toggle this) */
 .card-right.light-text .scan-txt,
 .card-right.light-text .hindi-txt,
 .card-right.light-text .footer-tip {
     color: rgba(255, 255, 255, 0.95) !important;
 }

 .qr-top-zone {
     height: 70%;
     /* QR Area expanded to 70% of the right side */
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 10px 5px 0px 5px;
     /* Tight padding to fill the marked area */
 }

 .qr-frame-large {
     background: white;
     padding: 6px;
     /* Reduced padding for maximum QR size */
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
     width: 90%;
     /* Fill width */
     display: flex;
     justify-content: center;
 }

 #qrcode canvas,
 #qrcode img {
     width: 100% !important;
     /* Forces QR to fill the container */
     height: auto !important;
     max-width: 170px !important;
     /* Maximum scan-friendly size */
     display: block;
 }

 .text-bottom-zone {
     height: 30%;
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 0 10px 10px;
 }

 /* Improved Typography for better visibility */
 .scan-txt {
     font-weight: 800;
     font-size: 0.9rem;
     /* Slightly larger */
     color: rgba(0, 0, 0, 0.85);
     letter-spacing: 0.5px;
 }

 .hindi-txt {
     font-size: 0.65rem;
     font-weight: 700;
     color: rgba(0, 0, 0, 0.65);
     margin-top: 1px;
 }

 .footer-tip {
     font-size: 0.52rem;
     color: rgba(0, 0, 0, 0.5);
     font-weight: 600;
     margin-top: 3px;
 }

 /* STATS ROW */
 .stats-row {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px;
     margin: 30px auto 10px;
     max-width: 1140px;
 }

 .stat-item {
     background: white;
     border: 1px solid var(--border);
     border-radius: 14px;
     padding: 16px 14px;
     text-align: center;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
     transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
     animation: slideUpFade 0.6s ease-out backwards;
 }

 .stat-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .stat-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .stat-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .stat-item:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: 0 12px 24px rgba(40, 116, 240, 0.12);
     border-color: rgba(40, 116, 240, 0.3);
 }

 .stat-number {
     font-family: 'Syne', sans-serif;
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--accent2);
 }

 .stat-label {
     font-size: 0.68rem;
     color: var(--muted);
     font-weight: 500;
     margin-top: 2px;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .nav-links a {
     color: var(--text);
     text-decoration: none;
     font-size: 0.88rem;
     font-weight: 600;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: var(--accent);
 }

 .feature-strip {
     display: grid;
     grid-template-columns: repeat(4, minmax(180px, 1fr));
     gap: 18px;
     margin-bottom: 30px;
 }

 .feature-card {
     background: white;
     border: 1px solid var(--border);
     border-radius: 18px;
     padding: 22px;
     box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .feature-icon {
     font-size: 1.35rem;
 }

 .feature-card h3 {
     font-size: 1rem;
     margin: 0;
     color: var(--text);
 }

 .feature-card p {
     color: var(--muted);
     font-size: 0.92rem;
     line-height: 1.5;
 }

 .blog-section {
     margin-top: 40px;
     padding: 30px 0 0;
 }

 .blog-headline span {
     display: inline-block;
     font-size: 0.8rem;
     color: var(--accent);
     font-weight: 700;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .blog-headline h2 {
     font-size: clamp(2rem, 2.7vw, 2.6rem);
     margin: 10px 0 20px;
     line-height: 1.05;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(220px, 1fr));
     gap: 18px;
 }

 .blog-card {
     background: white;
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 24px;
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
 }

 .blog-card h3 {
     font-size: 1.05rem;
     margin-bottom: 12px;
 }

 .blog-card p {
     color: var(--muted);
     line-height: 1.68;
 }

 .site-footer {
     background: #0f172a;
     color: #e2e8f0;
     padding: 40px 20px 30px;
 }

 .footer-grid {
     max-width: 1140px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(3, minmax(200px, 1fr));
     gap: 24px;
     padding-bottom: 24px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .site-footer h3,
 .site-footer h4 {
     margin-bottom: 14px;
     color: white;
 }

 .site-footer p,
 .site-footer a {
     color: #cbd5e1;
     font-size: 0.95rem;
     line-height: 1.75;
 }

 .site-footer a {
     display: block;
     text-decoration: none;
     margin-bottom: 8px;
 }

 .site-footer a:hover {
     color: white;
 }

 .footer-note {
     max-width: 1140px;
     margin: 20px auto 0;
     text-align: center;
     color: #94a3b8;
     font-size: 0.9rem;
 }

 /* TOAST */
 .toast {
     position: fixed;
     bottom: 28px;
     left: 50%;
     transform: translateX(-50%) translateY(80px);
     background: #0f172a;
     color: white;
     padding: 14px 24px;
     border-radius: 100px;
     font-size: 0.85rem;
     font-weight: 600;
     z-index: 999;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
     transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .toast.show {
     transform: translateX(-50%) translateY(0);
 }

 /* ANIMATE IN */
 .glass-panel {
     animation: fadeUp 0.5s ease both;
 }

 .glass-panel:nth-child(2) {
     animation-delay: 0.1s;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes slideUpFade {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* RESPONSIVE */
 @media (max-width: 900px) {
     .dashboard-grid {
         grid-template-columns: 1fr;
     }

     .feature-strip {
         grid-template-columns: repeat(2, minmax(180px, 1fr));
     }

     .hero {
         padding: 40px 20px 10px;
     }

     .professional-rect-card {
         width: 100%;
         max-width: 100%;
     }

     .card-left,
     .card-right {
         width: 100%;
     }
 }

 @media (max-width: 700px) {
     .professional-rect-card {
         flex-direction: column;
         height: auto;
     }

     .card-left,
     .card-right {
         padding: 18px;
     }

     .qr-top-zone {
         height: auto;
         padding: 16px 0 0;
     }

     .qr-frame-large {
         width: 100%;
     }

     .card-right.light-text .scan-txt,
     .card-right.light-text .hindi-txt,
     .card-right.light-text .footer-tip {
         color: rgba(0, 0, 0, 0.85) !important;
     }
 }

 @media (max-width: 600px) {
     .form-row {
         grid-template-columns: 1fr;
     }

     .glass-panel {
         padding: 20px;
         border-radius: 16px;
     }

     .stats-row {
         gap: 10px;
     }

     .stat-item {
         padding: 14px 8px;
     }

     .stat-number {
         font-size: 1.25rem;
     }

     .stat-label {
         font-size: 0.62rem;
     }

     .nav-links {
         display: none;
     }

     .feature-strip,
     .blog-grid,
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .site-footer {
         text-align: center;
     }

     .card-scroll-zone {
         display: block;
         overflow-x: visible;
     }

     .professional-rect-card {
         width: 100%;
         flex-direction: column;
         height: auto;
         box-shadow: none;
     }

     .card-left,
     .card-right {
         width: 100%;
         min-width: 0;
     }

     .card-right {
         padding-top: 10px;
     }

     .qr-frame-large {
         width: 100%;
     }

     .preview-box .btn {
         width: 100%;
     }
 }

 @media (max-width: 500px) {
     .action-buttons {
         flex-direction: column;
     }
 }

 /* Steps indicator */
 .step-indicator {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 22px;
 }

 .step-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--border);
 }

 .step-dot.active {
     background: var(--accent2);
 }

 .step-text {
     font-size: 0.72rem;
     color: var(--muted);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 /* PAGE HEADER + SEO SECTIONS */
 .top-bar {
     background: #ffffff;
     padding: 24px 16px;
     border-bottom: 1px solid #e5e7eb;
 }

 .header-inner {
     max-width: 1000px;
     margin: auto;
     position: relative;
     text-align: center;
 }

 .brand-logo {
     height: 46px;
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
 }

 .header-text h1 {
     margin: 0;
     font-size: 24px;
     font-weight: 700;
     color: #0B8EDB;
 }

 .header-text p {
     margin-top: 4px;
     font-size: 14px;
     color: #6b7280;
 }

 .tool-wrapper {
     max-width: 1140px;
     margin: 0 auto;
     padding: 30px 20px 50px;
 }

 .related-tools-premium {
     padding: 60px 15px;
     background: #ffffff;
     margin: 0 auto;
     max-width: 1200px;
 }

 .section-heading {
     font-size: 24px;
     font-weight: 800;
     color: #1f2937;
     margin-bottom: 35px;
     text-align: center;
 }

 .tools-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 15px;
 }

 .p-tool-card {
     background: #fff;
     border-radius: 18px;
     padding: 20px 10px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     text-decoration: none;
     border: 1px solid #eef2f6;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
     transition: all 0.3s ease;
 }

 .p-tool-card:hover {
     transform: translateY(-8px);
     border-color: #0B8EDB;
     box-shadow: 0 15px 30px rgba(11, 142, 219, 0.12);
 }

 .tool-icon-wrapper {
     width: 50px;
     height: 50px;
     background: #f0f7ff;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     margin-bottom: 12px;
     transition: 0.3s;
 }

 .p-tool-card:hover .tool-icon-wrapper {
     background: #0B8EDB;
     color: #fff;
     transform: scale(1.1);
 }

 .tool-title {
     font-size: 15px;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: 5px;
 }

 .tool-desc {
     font-size: 12px;
     color: #6b7280;
 }

 .seo-modern-wrapper {
     background: #fff;
     padding: 80px 20px;
     color: #374151;
     line-height: 1.8;
 }

 .container {
     max-width: 1000px;
     margin: auto;
 }

 .premium-features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     margin-bottom: 40px;
 }

 .p-feature-card {
     background: #ffffff;
     border: 1px solid #eef2f6;
     border-radius: 20px;
     padding: 25px;
     display: flex;
     align-items: center;
     gap: 15px;
     box-shadow: 0 10px 30px rgba(11, 142, 219, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .p-feature-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(11, 142, 219, 0.12);
     border-color: #0B8EDB;
 }

 .p-icon {
     font-size: 30px;
     background: #f0f7ff;
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 15px;
     flex-shrink: 0;
 }

 .p-content h4 {
     margin: 0 0 5px 0;
     font-size: 17px;
     color: #1f2937;
     font-weight: 700;
 }

 .p-content p {
     margin: 0;
     font-size: 13px;
     color: #6b7280;
     line-height: 1.4;
 }

 .divider {
     border: 0;
     border-top: 1px solid #eee;
     margin: 50px 0;
 }

 .long-content h2 {
     font-size: 28px;
     color: #111827;
     margin-bottom: 20px;
 }

 .long-content h3 {
     font-size: 22px;
     color: #111827;
     margin-top: 30px;
 }

 .seo-info-card {
     background: linear-gradient(135deg, #0B8EDB, #2563eb);
     color: #fff;
     padding: 30px;
     border-radius: 20px;
     margin: 30px 0;
 }

 .seo-info-card h4 {
     margin-top: 0;
     font-size: 20px;
     color: #ffffff;
 }

 .faq-section h2 {
     text-align: center;
     margin-bottom: 40px;
 }

 .faq-item {
     border-bottom: 1px solid #eee;
     margin-bottom: 10px;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     padding: 18px;
     background: none;
     border: none;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     color: #1f2937;
     transition: 0.3s;
 }

 .faq-question:hover {
     color: #0B8EDB;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: 0.3s ease-out;
     padding: 0 18px;
     font-size: 14px;
     color: #6b7280;
 }

 .faq-answer.open {
     max-height: 220px;
     padding-bottom: 18px;
 }

 .related-blogs {
     background: #ffffff;
     padding: 60px 16px;
     border-top: 1px solid #e5e7eb;
 }

 .related-blogs-inner {
     max-width: 1100px;
     margin: auto;
     text-align: center;
 }

 .related-blogs h2 {
     font-size: 26px;
     font-weight: 700;
     color: #111827;
     margin-bottom: 8px;
 }

 .related-subtitle {
     font-size: 15px;
     color: #6b7280;
     max-width: 620px;
     margin: 0 auto 40px;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 28px;
 }

 .blog-card {
     background: #fff;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     text-align: left;
 }

 .blog-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
 }

 .blog-thumb {
     width: 100%;
     height: 180px;
     object-fit: cover;
 }

 .blog-content {
     padding: 18px 18px 22px;
 }

 .blog-date {
     font-size: 12px;
     color: #6b7280;
     margin-bottom: 6px;
 }

 .blog-title {
     font-size: 18px;
     font-weight: 700;
     color: #111827;
     margin: 6px 0 10px;
     line-height: 1.4;
 }

 .blog-excerpt {
     font-size: 14px;
     color: #4b5563;
     line-height: 1.6;
     margin-bottom: 18px;
 }

 .blog-readmore {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 10px 18px;
     background: linear-gradient(135deg, #0B8EDB, #2563eb);
     color: #ffffff;
     border-radius: 999px;
     font-size: 13px;
     font-weight: 600;
     text-decoration: none;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .blog-readmore:hover {
     transform: translateY(-1px);
     box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
 }

 .footer {
     background: #ffffff;
     border-top: 1px solid #e5e7eb;
     padding: 28px 16px 24px;
     text-align: center;
 }

 .footer-links {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 10px;
     margin-bottom: 14px;
     font-size: 14px;
 }

 .footer-links a {
     color: #0B8EDB;
     text-decoration: none;
     font-weight: 500;
     white-space: nowrap;
 }

 .footer-links span {
     color: #9ca3af;
 }

 .footer-copy {
     font-size: 13px;
     color: #6b7280;
     margin: 0;
 }

 @media (max-width: 1024px) {
     .tools-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 900px) {
     .hero {
         padding: 40px 20px 20px;
     }

     .dashboard-grid {
         grid-template-columns: 1fr;
     }

     .tool-wrapper {
         padding: 20px 15px 40px;
     }

     .related-tools-premium {
         padding: 40px 15px;
     }

     .blog-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 640px) {
     .tools-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
     }

     .p-tool-card {
         padding: 15px 8px;
     }

     .tool-title {
         font-size: 13px;
     }

     .tool-desc {
         font-size: 11px;
     }

     .section-heading {
         font-size: 19px;
     }

     .related-blogs {
         padding: 40px 14px;
     }

     .related-blogs h2 {
         font-size: 22px;
     }

     .brand-logo {
         position: static;
         transform: none;
         margin-bottom: 12px;
     }

     .footer {
         padding: 24px 16px 24px;
     }

     .footer-links {
         gap: 6px;
         font-size: 13px;
     }

     .footer-copy {
         font-size: 12px;
     }
 }

 /* ===============================
   EXPORT MODE FOR HTML2CANVAS
   Ensures card is always desktop size when downloading
================================ */
 .professional-rect-card.export-mode {
     width: 520px !important;
     height: 290px !important;
     flex-direction: row !important;
     max-width: 520px !important;
     box-shadow: none !important;
     border-radius: 20px !important;
 }

 .professional-rect-card.export-mode .card-left {
     width: 56% !important;
     padding: 20px 20px 16px !important;
     display: flex !important;
     flex-direction: column !important;
     justify-content: space-between !important;
 }

 .professional-rect-card.export-mode .card-right {
     width: 44% !important;
     padding: 0 !important;
     display: flex !important;
     flex-direction: column !important;
 }

 .professional-rect-card.export-mode .qr-top-zone {
     height: 70% !important;
     padding: 10px 5px 0px 5px !important;
     width: 100% !important;
     display: flex !important;
     justify-content: center !important;
     align-items: center !important;
 }

 .professional-rect-card.export-mode .qr-frame-large {
     width: 90% !important;
     padding: 6px !important;
 }

 .professional-rect-card.export-mode .text-bottom-zone {
     height: 30% !important;
     padding: 0 10px 10px !important;
     display: flex !important;
     flex-direction: column !important;
     align-items: center !important;
     justify-content: center !important;
 }

 .professional-rect-card.export-mode .card-right.light-text .scan-txt,
 .professional-rect-card.export-mode .card-right.light-text .hindi-txt,
 .professional-rect-card.export-mode .card-right.light-text .footer-tip {
     color: rgba(255, 255, 255, 0.95) !important;
 }

 /* Force proper text rendering for Vehicle Number during export */
 .professional-rect-card.export-mode .id-badge {
     text-shadow: none !important;
     letter-spacing: normal !important;
     transform: translateZ(0) !important;
     -webkit-font-smoothing: antialiased !important;
 }