/* ═══════════════ ROOT VARIABLES ═══════════════ */
:root {
–coral: #E8735A;
–coral-light: #F0907A;
–dark: #1A1A1A;
–mid: #6B6B6B;
–light-text: #999;
–bg: #F5F5F5;
–white: #FFFFFF;
–card-bg: rgba(255,255,255,0.65);
–glass: rgba(255,255,255,0.45);
–salmon-grad: linear-gradient(135deg, #E8735A 0%, #F0907A 50%, #F4A896 100%);
}
/* ═══════════════ RESET & BASE ═══════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: ‘DM Sans’, -apple-system, BlinkMacSystemFont, sans-serif;
background: var(–bg);
color: var(–dark);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }
/* ═══════════════ SCROLL REVEAL ═══════════════ */
.reveal {
opacity: 0; transform: translateY(28px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
/* ═══════���═══════ HERO ═══════════════ */
.hero {
position: relative;
min-height: 100vh;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
text-align: center;
padding: 100px 5% 80px;
overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0; z-index: 0;
background: radial-gradient(ellipse 80% 60% at 50% 80%, #0077B6 0%, #4DA8DA 30%, #EFEFEF 70%);
}
.hero-watermark {
position: absolute; bottom: -20px; left: 50%;
transform: translateX(-50%);
font-family: ‘Syne’, sans-serif;
font-weight: 800; font-size: 20vw;
color: rgba(0,119,182,0.10);
white-space: nowrap; pointer-events: none;
letter-spacing: -3px; z-index: 0;
line-height: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.hero-badge {
display: inline-flex; align-items: center; gap: 7px;
background: var(–glass);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.5);
border-radius: 30px;
padding: 7px 16px; font-size: 13px;
color: var(–mid); margin-bottom: 28px;
animation: fadeUp 0.7s ease both;
}
.hero-badge-dot {
width: 7px; height: 7px; border-radius: 50%;
background: #0077B6; display: inline-block;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,100%{opacity:1;transform:scale(1)}
50%{opacity:0.5;transform:scale(1.3)}
}
.hero h1 {
font-family: ‘Syne’, sans-serif;
font-weight: 800; font-size: clamp(40px, 7.5vw, 84px);
line-height: 1.0; letter-spacing: -3px;
color: var(–dark);
animation: fadeUp 0.8s 0.1s ease both;
margin-bottom: 22px;
}
.hero h1 em {
font-style: normal; color: #0077B6;
}
.hero-sub {
font-size: clamp(16px, 2vw, 20px);
color: var(–mid); max-width: 580px;
margin: 0 auto 40px; font-weight: 400;
animation: fadeUp 0.8s 0.2s ease both;
line-height: 1.6;
}
.hero-search {
position: relative; max-width: 580px; margin: 0 auto 20px;
animation: fadeUp 0.8s 0.3s ease both;
}
.hero-search input {
width: 100%; padding: 18px 24px;
background: rgba(255,255,255,0.8);
backdrop-filter: blur(10px);
border: 1.5px solid rgba(255,255,255,0.7);
border-radius: 14px;
font-family: ‘Syne’, sans-serif;
font-size: 15px; color: var(–dark);
outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search input:focus {
border-color: #0077B6;
box-shadow: 0 0 0 3px rgba(0,119,182,0.12);
}
.hero-search input::placeholder { color: #aaa; }
.search-actions {
display: flex; gap: 8px; margin-top: 10px;
justify-content: flex-start;
}
.search-tag {
font-size: 12px; padding: 5px 12px;
background: rgba(255,255,255,0.55);
backdrop-filter: blur(6px);
border: 1px solid rgba(255,255,255,0.6);
border-radius: 20px; cursor: pointer;
color: var(–mid); transition: background 0.2s;
text-decoration: none;
}
.search-tag:hover { background: rgba(255,255,255,0.85); }
.hero-chips {
display: flex; flex-wrap: wrap; gap: 10px;
justify-content: center; margin-top: 14px;
animation: fadeUp 0.8s 0.4s ease both;
}
.hero-chip {
font-size: 13px; padding: 7px 16px;
background: rgba(255,255,255,0.5);
backdrop-filter: blur(6px);
border: 1px solid rgba(255,255,255,0.55);
border-radius: 20px; color: var(–mid);
cursor: pointer; transition: all 0.2s;
text-decoration: none;
}
.hero-chip:hover {
background: rgba(255,255,255,0.85);
color: var(–dark);
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
/* ═══════════════ SECTION BASE ═══════════════ */
section { padding: 90px 5%; }
.section-label {
font-family: ‘Syne’, sans-serif;
font-size: 11px; font-weight: 700;
letter-spacing: 3px; text-transform: uppercase;
color: #0077B6; margin-bottom: 14px;
}
.section-title {
font-family: ‘Syne’, sans-serif;
font-weight: 800; font-size: clamp(36px, 5vw, 64px);
letter-spacing: -2px; line-height: 1.05;
color: var(–dark);
}
.section-title em { font-style: italic; color: #0077B6; }
.section-body {
font-size: 16px; color: var(–mid);
max-width: 560px; line-height: 1.7;
margin-top: 16px;
}
/* ═══════════════ STATS STRIP ═══════════════ */
.stats-strip {
background: var(–dark);
padding: 60px 5%;
display: flex; align-items: center; justify-content: center;
gap: 0; flex-wrap: wrap;
}
.stat-item {
text-align: center; padding: 20px 48px;
border-right: 1px solid rgba(255,255,255,0.08);
flex: 1; min-width: 160px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
font-family: ‘Syne’, sans-serif;
font-weight: 800; font-size: clamp(32px, 4vw, 52px);
letter-spacing: -2px; color: #4DA8DA;
line-height: 1;
}
.stat-label {
font-size: 13px; color: rgba(255,255,255,0.5);
margin-top: 6px; font-weight: 400;
}
/* ═══════════════ INTRO SPLIT ═══════════════ */
.intro-section {
background: var(–white);
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: center;
padding: 100px 8%;
}
.intro-visual { position: relative; }
.sim-card-visual {
background: linear-gradient(135deg, #0077B6 0%, #4DA8DA 50%, #89CFF0 100%);
border-radius: 24px; padding: 36px;
color: #fff; position: relative; overflow: hidden;
box-shadow: 0 30px 80px rgba(0,119,182,0.35);
}
.sim-card-visual::before {
content: ”;
position: absolute; top: -60px; right: -60px;
width: 200px; height: 200px; border-radius: 50%;
background: rgba(255,255,255,0.08);
}
.sim-card-visual::after {
content: ”;
position: absolute; bottom: -40px; left: -40px;
width: 160px; height: 160px; border-radius: 50%;
background: rgba(255,255,255,0.06);
}
.sim-card-label {
font-size: 11px; font-weight: 700;
letter-spacing: 2px; text-transform: uppercase;
opacity: 0.7; margin-bottom: 28px;
}
.sim-card-network {
font-family: ‘Syne’, sans-serif;
font-size: 28px; font-weight: 800;
letter-spacing: -1px; margin-bottom: 8px;
}
.sim-card-sub { font-size: 14px; opacity: 0.75; margin-bottom: 28px; }
.sim-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sim-info-item label {
font-size: 10px; opacity: 0.65;
text-transform: uppercase; letter-spacing: 1.5px;
display: block; margin-bottom: 4px;
}
.sim-info-item span {
font-family: ‘Syne’, sans-serif;
font-size: 15px; font-weight: 700;
}
.floating-badge {
position: absolute; bottom: -20px; right: 24px;
background: var(–white);
border-radius: 12px; padding: 12px 18px;
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
display: flex; align-items: center; gap: 10px;
font-size: 13px; font-weight: 600; color: var(–dark);
}
.floating-badge .check {
width: 28px; height: 28px; border-radius: 50%;
background: #DCFCE7; display: flex;
align-items: center; justify-content: center;
font-size: 14px;
}
/* ═══════════════ BENTO FEATURES ═══════════════ */
.bento-section { background: var(–bg); padding: 80px 5%; }
.bento-heading { text-align: center; margin-bottom: 60px; }
.bento-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 16px;
max-width: 1200px; margin: 0 auto;
}
.bento-card {
background: var(–card-bg);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.7);
border-radius: 20px; padding: 32px;
transition: transform 0.25s, box-shadow 0.25s;
overflow: hidden; position: relative;
}
.bento-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
.bento-c1 { grid-column: span 8; }
.bento-c2 { grid-column: span 4; }
.bento-c3 { grid-column: span 4; }
.bento-c4 { grid-column: span 8; }
.bento-c5 { grid-column: span 12; }
.bento-card.zong-card {
background: linear-gradient(135deg, #0077B6 0%, #4DA8DA 50%, #89CFF0 100%);
color: #fff; border: none;
}
.bento-card.zong-card .bento-card-label,
.bento-card.zong-card .bento-card-title,
.bento-card.zong-card .bento-card-body { color: #fff; }
.bento-card.zong-card .bento-card-body { opacity: 0.85; }
.bento-card-label {
font-family: ‘Syne’, sans-serif;
font-size: 10px; font-weight: 700;
letter-spacing: 2.5px; text-transform: uppercase;
color: #0077B6; margin-bottom: 12px;
}
.bento-card-title {
font-family: ‘Syne’, sans-serif;
font-weight: 800; font-size: clamp(22px, 3vw, 34px);
letter-spacing: -1px; line-height: 1.1;
color: var(–dark); margin-bottom: 14px;
}
.bento-card-body {
font-size: 14px; color: var(–mid);
line-height: 1.7; max-width: 480px;
}
.bento-icon {
width: 48px; height: 48px; border-radius: 12px;
background: rgba(0,119,182,0.12);
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px; font-size: 22px;
}
.zong-card .bento-icon { background: rgba(255,255,255,0.2); }
.bento-start-btn {
display: inline-flex; align-items: center; gap: 8px;
margin-top: 24px; padding: 11px 22px;
background: var(–dark); color: #fff;
border-radius: 10px; font-size: 14px;
font-weight: 600; text-decoration: none;
transition: opacity 0.2s;
}
.bento-start-btn:hover { opacity: 0.8; }
.zong-card .bento-start-btn {
background: rgba(255,255,255,0.2);
border: 1px solid rgba(255,255,255,0.4);
}
/* Mock UI */
.mock-portal {
margin-top: 20px; background: rgba(255,255,255,0.6);
border: 1px solid rgba(255,255,255,0.8);
border-radius: 12px; padding: 16px;
}
.mock-row {
display: flex; align-items: center;
gap: 10px; padding: 8px 0;
border-bottom: 1px solid rgba(0,0,0,0.05);
font-size: 13px;
}
.mock-row:last-child { border-bottom: none; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.blue { background: #0077B6; }
.mock-dot.gray { background: #CCC; }
.mock-label { color: var(–mid); font-weight: 500; flex: 1; }
.mock-val { font-family: ‘Syne’, sans-serif; font-weight: 700; color: var(–dark); font-size: 12px; }
.mock-code {
font-family: ‘Syne’, monospace; font-size: 13px;
background: rgba(0,119,182,0.08); padding: 3px 10px;
border-radius: 6px; color: #0077B6; font-weight: 600;
}
.op-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 10px; margin-top: 20px;
}
.op-badge {
background: rgba(255,255,255,0.5);
border: 1px solid rgba(255,255,255,0.7);
border-radius: 10px; padding: 12px 14px;
font-size: 13px; font-weight: 600; color: var(–dark);
}
.op-badge span {
display: block; font-size: 11px;
font-weight: 400; color: var(–light-text);
margin-top: 2px;
}
/* ═══════════════ METHODS SECTION ═══════════════ */
.methods-section { background: var(–white); padding: 90px 5%; }
.methods-header {
display: flex; justify-content: space-between;
align-items: flex-end; margin-bottom: 50px; gap: 20px;
flex-wrap: wrap; max-width: 1200px; margin-left: auto; margin-right: auto;
margin-bottom: 50px;
}
.methods-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 16px; max-width: 1200px; margin: 0 auto;
}
.method-card {
background: var(–card-bg);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.7);
border-radius: 18px; padding: 28px;
transition: all 0.25s; cursor: default;
}
.method-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 44px rgba(0,0,0,0.09);
}
.method-num {
font-family: ‘Syne’, sans-serif;
font-size: 11px; font-weight: 700;
letter-spacing: 2px; color: #0077B6;
margin-bottom: 14px;
}
.method-title {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 18px;
letter-spacing: -0.5px; margin-bottom: 10px;
color: var(–dark);
}
.method-body { font-size: 14px; color: var(–mid); line-height: 1.65; }
.method-steps {
margin-top: 18px; padding-top: 18px;
border-top: 1px solid rgba(0,0,0,0.06);
display: flex; flex-direction: column; gap: 8px;
}
.step-item {
display: flex; align-items: flex-start; gap: 10px;
font-size: 13px; color: var(–mid);
}
.step-num {
width: 20px; height: 20px; border-radius: 50%;
background: #0077B6; color: #fff;
font-size: 10px; font-weight: 700;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; margin-top: 1px;
}
.method-tag {
display: inline-block; margin-top: 14px;
font-size: 11px; padding: 4px 10px;
background: rgba(0,119,182,0.08); color: #0077B6;
border-radius: 6px; font-weight: 600;
}
/* ═══════════════ PTA DEEP-DIVE (BIOMETRIC-STYLE) ═══════════════ */
.pta-section {
background: var(–dark);
padding: 100px 5%; position: relative; overflow: hidden;
}
.pta-section::before {
content: ”;
position: absolute; top: -200px; right: -200px;
width: 600px; height: 600px; border-radius: 50%;
background: radial-gradient(circle, rgba(0,119,182,0.2) 0%, transparent 70%);
pointer-events: none;
}
.pta-inner {
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: center;
max-width: 1100px; margin: 0 auto;
position: relative; z-index: 1;
}
.pta-text .section-title { color: #fff; }
.pta-text .section-body { color: rgba(255,255,255,0.65); }
.pta-text .section-label { color: #89CFF0; }
.pta-methods {
display: flex; flex-direction: column; gap: 0;
}
.pta-method-item {
display: flex; gap: 18px; position: relative;
}
.pta-method-item::before {
content: ”;
position: absolute; left: 15px; top: 36px;
width: 2px; height: calc(100% – 20px);
background: rgba(255,255,255,0.1);
}
.pta-method-item:last-child::before { display: none; }
.pta-dot {
width: 32px; height: 32px; border-radius: 50%;
background: rgba(0,119,182,0.2);
border: 2px solid #4DA8DA;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; font-size: 14px; z-index: 1;
}
.pta-content { padding-bottom: 28px; }
.pta-title {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 15px;
color: #fff; margin-bottom: 5px;
}
.pta-body { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
/* ═══════════════ TRANSFER & SECURITY (BLOCKING-STYLE) ═══════════════ */
.transfer-section { background: var(–white); padding: 100px 5%; }
.transfer-inner {
max-width: 1100px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: center;
}
.transfer-steps {
display: flex; flex-direction: column; gap: 16px;
}
.transfer-step {
background: var(–bg);
border-radius: 14px; padding: 20px 22px;
display: flex; gap: 16px; align-items: flex-start;
transition: all 0.2s;
}
.transfer-step:hover {
background: #fff;
box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.transfer-step-num {
width: 36px; height: 36px; border-radius: 10px;
background: linear-gradient(135deg, #0077B6, #4DA8DA);
display: flex; align-items: center; justify-content: center;
font-family: ‘Syne’, sans-serif; font-weight: 800;
font-size: 14px; color: #fff; flex-shrink: 0;
}
.transfer-step-content h4 {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 15px;
margin-bottom: 4px;
}
.transfer-step-content p {
font-size: 13px; color: var(–mid); line-height: 1.6;
}
/* Security legal badges */
.legal-badge {
display: flex; align-items: center;
justify-content: space-between;
background: var(–bg); border-radius: 10px;
padding: 10px 16px; margin-bottom: 8px;
font-size: 13px;
}
.legal-badge .lb-icon { font-size: 16px; }
.legal-badge .lb-label { color: var(–mid); flex: 1; margin-left: 10px; }
.legal-badge .lb-status {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 12px; color: #0077B6;
}
/* ═══════════════ SECURITY TIPS ═══════════════ */
.security-section { background: var(–bg); padding: 90px 5%; }
.security-inner { max-width: 1100px; margin: 0 auto; }
.security-cards {
display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 16px; margin-top: 50px;
}
.security-card {
background: var(–card-bg);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.7);
border-radius: 16px; padding: 26px;
transition: all 0.2s;
}
.security-card:hover {
background: #fff;
box-shadow: 0 10px 32px rgba(0,0,0,0.08);
transform: translateY(-3px);
}
.security-card-icon { font-size: 28px; margin-bottom: 14px; }
.security-card h4 {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 15px;
margin-bottom: 8px; letter-spacing: -0.3px;
}
.security-card p {
font-size: 13px; color: var(–mid); line-height: 1.65;
}
/* ═══════════════ ZONG QUICK CODES ═══════════════ */
.codes-section { background: var(–white); padding: 90px 5%; }
.codes-inner { max-width: 1100px; margin: 0 auto; }
.codes-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 16px; margin-top: 50px;
}
.code-card {
background: var(–card-bg);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.7);
border-radius: 18px; padding: 28px 22px;
text-align: center; transition: all 0.25s;
}
.code-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}
.code-icon {
width: 56px; height: 56px; border-radius: 14px;
margin: 0 auto 16px; display: flex;
align-items: center; justify-content: center;
font-size: 24px;
background: rgba(0,119,182,0.1);
}
.code-label {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 17px;
margin-bottom: 6px; letter-spacing: -0.5px;
}
.code-value {
font-family: ‘Syne’, sans-serif;
font-weight: 800; font-size: 22px;
color: #0077B6; margin-bottom: 8px;
}
.code-desc {
font-size: 13px; color: var(–mid); line-height: 1.5;
}
/* ═══════════════ FAQ ═══════════════ */
.faq-section { background: var(–bg); padding: 90px 5%; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 16px; max-width: 1100px; margin: 0 auto;
}
.faq-item {
background: var(–card-bg);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.7);
border-radius: 16px; padding: 24px 26px;
cursor: pointer; transition: all 0.2s;
}
.faq-item:hover {
box-shadow: 0 10px 32px rgba(0,0,0,0.08);
transform: translateY(-2px);
}
.faq-q {
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 15px;
letter-spacing: -0.3px; color: var(–dark);
margin-bottom: 10px; line-height: 1.4;
padding-right: 20px; position: relative;
}
.faq-q::after {
content: ‘+’; position: absolute; right: 0; top: 0;
font-size: 18px; color: #0077B6; font-weight: 300;
}
.faq-a { font-size: 13px; color: var(–mid); line-height: 1.65; }
/* ═══════════════ CTA ═══════════════ */
.cta-section {
background: var(–dark); padding: 100px 5%;
position: relative; overflow: hidden;
}
.cta-section::before {
content: ”;
position: absolute; bottom: -150px; left: -150px;
width: 500px; height: 500px; border-radius: 50%;
background: radial-gradient(circle, rgba(0,119,182,0.18) 0%, transparent 70%);
pointer-events: none;
}
.cta-inner {
max-width: 700px; margin: 0 auto;
text-align: center; position: relative; z-index: 1;
}
.cta-inner .section-title { color: #fff; font-size: clamp(36px, 5vw, 68px); }
.cta-inner .section-body { color: rgba(255,255,255,0.6); margin: 0 auto 36px; }
.cta-btn {
display: inline-flex; align-items: center; gap: 10px;
background: linear-gradient(135deg, #0077B6, #4DA8DA);
color: #fff;
padding: 16px 36px; border-radius: 14px;
font-family: ‘Syne’, sans-serif;
font-weight: 700; font-size: 16px;
text-decoration: none; letter-spacing: -0.3px;
transition: opacity 0.2s, transform 0.2s;
box-shadow: 0 12px 40px rgba(0,119,182,0.4);
}
.cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }
/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
.bento-c1, .bento-c2, .bento-c3, .bento-c4, .bento-c5 { grid-column: span 12; }
.intro-section { grid-template-columns: 1fr; gap: 50px; padding: 60px 5%; }
.pta-inner { grid-template-columns: 1fr; gap: 50px; }
.transfer-inner { grid-template-columns: 1fr; gap: 50px; }
.faq-grid { grid-template-columns: 1fr; }
.codes-grid { grid-template-columns: 1fr 1fr; }
.stats-strip { flex-direction: column; }
.stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.stat-item:last-child { border-bottom: none; }
.methods-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
.codes-grid { grid-template-columns: 1fr; }
.methods-grid { grid-template-columns: 1fr; }
.hero h1 { letter-spacing: -2px; }
.op-grid { grid-template-columns: 1fr; }
}
PTA-Approved Verification Guide · Pakistan 2026
How to Check
Zong SIM Owner
Details
6 official methods to verify Zong SIM ownership — SMS 667, dial *310#, Zong App, PTA portal & more. Free, secure, and completely legal.
📋 PTA Portal
📱 MNP → 667
📞 Dial *310#
📩 SMS to 667
📲 Zong App
🔍 PTA Check
🔄 Transfer SIM
🛡️ Security Tips
❓ FAQs
46M+
Zong Active Subscribers
6
Official Check Methods
30%
Pakistan Market Share
Free
Cost to Verify
Your Zong SIM.
Your Identity.
Every Zong SIM in Pakistan must be registered against a valid CNIC with biometric verification under PTA rules. Checking Zong SIM owner details lets you confirm that a number is correctly registered in your name and helps you detect any unknown Zong SIMs issued on your CNIC.
Zong SIM owner details include your registered name, CNIC number, activation date, package type, balance, biometric verification status, and network information — all linked permanently through NADRA’s Multi-Finger Biometric Verification System (MBVS).
Check on PTA Portal →
PTA Verified SIM Registration
Zong / CMPak
Prepaid · Active · Biometric Verified ✓
Ali Raza
34201-567****
08-Jan-2024
Zong Monthly Max
✅
Biometrically Verified
Consider yourself
protected.
🛡️
Financial Security
Stop Zong SIM fraud
before it starts
Unauthorized Zong SIMs registered on your CNIC can be linked to JazzCash, Easypaisa, and bank accounts — draining funds and bypassing two-factor authentication without your knowledge.
See All 6 Methods →
⚖️
Legal Protection
Stay legally safe
Pakistani law holds CNIC holders responsible for activities on registered numbers. Criminal activity or fraud on unknown Zong SIMs can implicate you.
🔒
Identity
Guard your digital ID
Your CNIC is Pakistan’s primary digital identity. Unauthorized Zong SIM registrations are identity theft — letting criminals impersonate you across services.
📊
Zong Quick Codes
All methods, one glance
Zong provides multiple official channels to verify your SIM ownership — each designed for different needs.
SMS “MNP” to 667
Owner + CNIC
Dial *310#
Account Info
Zong App
Full Details
Call 310
Agent Support
💳
Credit & Finance Risk
Protect your credit score
Unauthorized Zong SIMs linked to fraudulent loans corrupt your financial history. Bank OTP bypasses and mobile wallet compromises take years to repair.
JazzCash Mobile Wallet Risk
Easypaisa Account Compromise
Bank OTPs 2FA Bypass via Zong
Loans/Credit Identity Liability
How to check
Zong SIM owner details
PTA and Zong (CMPak) provide 6 official channels — from instant SMS codes to walk-in service centers.
METHOD 01
SMS “MNP” to 667 — Fastest
The quickest way to check Zong SIM ownership. Returns registered owner name, CNIC (partially masked), and operator status within seconds.
1Insert the Zong SIM into your phone
2Open SMS app and type MNP
3Send to 667
4Receive reply with owner name, CNIC & status
⚡ 5–10 seconds · Standard SMS charges
METHOD 02
Dial *310# — USSD Self-Service
Zong’s self-service menu shows SIM info directly on screen without internet. Works on all Zong SIMs and is free of charge.
1Open your phone dialer
2Dial *310# and press call
3Select “My Account” or “SIM Details”
4View registered name & account info on screen
📱 No internet needed · Free
METHOD 03
Zong Mobile App
The official Zong app gives the most complete view — ownership, CNIC, activation date, package, balance, and ongoing usage control.
1Install Zong App from Play Store / App Store
2Register / login with Zong number (OTP verification)
3Go to Account → Profile → My Details
4View owner name, CNIC, activation date & more
📊 Most detailed · Ongoing control
METHOD 04
Call Zong Helpline — 310
Customer support confirms owner details after verifying your identity. Useful when SMS/USSD aren’t working or you need ownership correction.
1Call 310 from your Zong SIM (free)
2Select language → talk to customer representative
3Verify identity (CNIC, DOB, or address)
4Ask to confirm registered name & CNIC
🗣️ Human support · Free from Zong
METHOD 05
PTA Portal — cnicsimcheck.pk
PTA’s SIM Information System shows how many Zong SIMs (and other operators) are registered on your CNIC — the most authoritative source.
1Visit cnicsimcheck.pk in any browser
2Enter 13-digit CNIC without dashes
3Complete CAPTCHA and submit
4View operator-wise breakdown including Zong count
🌐 All operators · Most authoritative
METHOD 06
Visit Zong Franchise
In-person verification provides official printed documentation — accepted in courts and banks. Required for blocking unauthorized SIMs.
1Bring original CNIC and relevant Zong SIMs
2Visit nearest Zong Franchise / Service Center
3Request ownership verification or unauthorized SIM blocking
4Complete biometric verification & receive official records
🏢 Official documentation · Block unauthorized SIMs
All Zong SIMs
on your
CNIC
PTA’s portal at cnicsimcheck.pk shows every SIM registered under your CNIC — across all operators. If more Zong SIMs appear than you own, take immediate action.
You can also SMS your 13-digit CNIC to 668 for a quick count of all SIMs per operator — no internet required.
🌐
Website — cnicsimcheck.pk
Enter 13-digit CNIC, complete CAPTCHA, and view a table showing active SIMs per network including Zong. Completely free and real-time.
📩
SMS CNIC to 668
Type your 13-digit CNIC (no dashes) and send to 668. Receive an SMS with the count of SIMs per operator — including Zong. Standard SMS rates apply.
⚠️
Unauthorized Zong SIMs Detected?
If PTA shows more Zong SIMs than you actually use, visit a Zong franchise immediately with your original CNIC to block/disown unauthorized numbers via biometric verification.
📋
File PTA Complaint
If the Zong franchise doesn’t cooperate, file a formal complaint at pta.gov.pk. For large-scale fraud (10+ SIMs), visit NADRA directly.
✅
Verify Removal
Re-check via cnicsimcheck.pk or SMS 668 after 3–5 business days to confirm unauthorized Zong SIMs have been removed from your CNIC.
Quick codes
at a glance
All official Zong codes for SIM verification, ownership check, and biometric status.
📩
Owner Check
MNP → 667
Returns owner name, CNIC & operator. 5–10 sec response.
📱
Self-Service
*310#
USSD menu with account info, SIM details & ownership. Free.
🔐
BVS Status
V → 7911
Check biometric verification status of your Zong SIM instantly.
📊
All SIMs Count
CNIC → 668
PTA returns SIM count per operator. No internet needed.
Transfer your
Zong SIM
legally
If a Zong SIM is legitimately being handed over to another person, both parties must complete biometric verification at a Zong franchise.
👥
Both parties must be present
REQUIRED
🪪
Original CNICs (not expired)
REQUIRED
👆