The Best Smartphone Deals In Nepal
Saving Tips | AajakoOffer.com - Best Smartphone Deals in Nepal
:root {
--primary: #007BFF;
--primary-dark: #0056b3;
--accent: #FF6A00;
--accent-light: #ff8533;
--bg: #F8F9FA;
--white: #ffffff;
--text-dark: #1a1a2e;
--text-medium: #4a4a5a;
--text-light: #6c757d;
--border: #e9ecef;
--success: #28a745;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
--shadow-md: 0 8px 30px rgba(0,0,0,0.08);
--shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
--radius-sm: 12px;
--radius-md: 16px;
--radius-lg: 24px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text-dark);
line-height: 1.6;
overflow-x: hidden;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
color: inherit;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
/* Buttons */
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
font-size: 15px;
font-weight: 600;
border-radius: 100px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Inter', sans-serif;
}
.btn-primary {
background: var(--primary);
color: var(--white);
box-shadow: 0 4px 16px rgba(0,123,255,0.3);
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,123,255,0.4);
}
.btn-accent {
background: var(--accent);
color: var(--white);
box-shadow: 0 4px 16px rgba(255,106,0,0.3);
}
.btn-accent:hover {
background: var(--accent-light);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(255,106,0,0.4);
}
.btn-outline {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}
.btn-outline:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-2px);
}
.btn-white {
background: var(--white);
color: var(--primary);
box-shadow: var(--shadow-sm);
}
.btn-white:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-sm {
padding: 10px 20px;
font-size: 13px;
}
/* Section spacing */
section {
padding: 80px 0;
}
/* Fade in animation */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
.animate-fade {
animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
/* ================= HERO SECTION ================= */
.hero {
background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #fff5eb 100%);
padding: 100px 0 120px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 70%);
border-radius: 50%;
}
.hero::after {
content: '';
position: absolute;
bottom: -150px;
left: -150px;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255,106,0,0.06) 0%, transparent 70%);
border-radius: 50%;
}
.hero-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(0,123,255,0.1);
color: var(--primary);
padding: 8px 18px;
border-radius: 100px;
font-size: 13px;
font-weight: 600;
margin-bottom: 24px;
}
.hero-badge i {
font-size: 14px;
}
.hero h1 {
font-size: 52px;
font-weight: 900;
line-height: 1.1;
color: var(--text-dark);
margin-bottom: 20px;
letter-spacing: -0.02em;
}
.hero h1 span {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 18px;
color: var(--text-medium);
margin-bottom: 32px;
line-height: 1.7;
}
.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.hero-image {
position: relative;
}
.hero-image img {
width: 100%;
max-width: 480px;
margin: 0 auto;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
animation: float 4s ease-in-out infinite;
}
.hero-image::before {
content: '';
position: absolute;
inset: -20px;
background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(255,106,0,0.1) 100%);
border-radius: 40px;
z-index: -1;
}
.floating-tag {
position: absolute;
background: var(--white);
padding: 10px 18px;
border-radius: 12px;
box-shadow: var(--shadow-md);
font-size: 13px;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
animation: float 3s ease-in-out infinite;
}
.floating-tag.tag-1 {
top: 20%;
left: -20px;
color: var(--success);
animation-delay: 0s;
}
.floating-tag.tag-2 {
bottom: 25%;
right: -10px;
color: var(--accent);
animation-delay: 1.5s;
}
.floating-tag i {
font-size: 18px;
}
/* ================= ALERT SECTION ================= */
.alert-section {
padding: 0;
margin-top: -40px;
position: relative;
z-index: 2;
}
.alert-box {
background: linear-gradient(135deg, #fff3e6 0%, #ffe8d6 100%);
border: 2px solid var(--accent);
border-radius: var(--radius-md);
padding: 32px 40px;
display: flex;
align-items: center;
gap: 24px;
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
}
.alert-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background: var(--accent);
}
.alert-icon {
width: 64px;
height: 64px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-size: 28px;
flex-shrink: 0;
animation: pulse 2s ease-in-out infinite;
}
.alert-content h3 {
font-size: 22px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 6px;
}
.alert-content p {
color: var(--text-medium);
font-size: 15px;
margin-bottom: 12px;
}
.alert-box .btn {
margin-left: auto;
flex-shrink: 0;
}
/* ================= SAVING TIPS SECTION ================= */
.saving-tips {
background: var(--white);
}
.section-header {
text-align: center;
max-width: 600px;
margin: 0 auto 60px;
}
.section-header h2 {
font-size: 40px;
font-weight: 900;
color: var(--text-dark);
margin-bottom: 16px;
letter-spacing: -0.02em;
}
.section-header p {
font-size: 17px;
color: var(--text-medium);
}
.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}
.tip-card {
background: var(--bg);
border-radius: var(--radius-md);
padding: 32px;
transition: all 0.3s ease;
border: 1px solid var(--border);
position: relative;
overflow: hidden;
}
.tip-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.tip-card:hover::before {
transform: scaleX(1);
}
.tip-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
border-color: transparent;
}
.tip-icon {
width: 56px;
height: 56px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin-bottom: 20px;
}
.tip-icon.blue { background: rgba(0,123,255,0.1); color: var(--primary); }
.tip-icon.orange { background: rgba(255,106,0,0.1); color: var(--accent); }
.tip-icon.green { background: rgba(40,167,69,0.1); color: var(--success); }
.tip-icon.purple { background: rgba(111,66,193,0.1); color: #6f42c1; }
.tip-icon.teal { background: rgba(23,162,184,0.1); color: #17a2b8; }
.tip-icon.red { background: rgba(220,53,69,0.1); color: #dc3545; }
.tip-icon.pink { background: rgba(232,62,140,0.1); color: #e83e8c; }
.tip-card h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 10px;
}
.tip-card p {
font-size: 14px;
color: var(--text-medium);
margin-bottom: 20px;
line-height: 1.6;
}
.tip-card .btn {
padding: 10px 20px;
font-size: 13px;
}
/* ================= FEATURED DEALS ================= */
.featured-deals {
background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.deals-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
}
.deal-card {
background: var(--white);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border);
transition: all 0.3s ease;
}
.deal-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: var(--shadow-lg);
}
.deal-image {
position: relative;
overflow: hidden;
height: 240px;
}
.deal-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.deal-card:hover .deal-image img {
transform: scale(1.1);
}
.deal-badge {
position: absolute;
top: 16px;
left: 16px;
background: var(--accent);
color: var(--white);
padding: 6px 14px;
border-radius: 100px;
font-size: 12px;
font-weight: 700;
}
.deal-info {
padding: 24px;
}
.deal-info h3 {
font-size: 17px;
font-weight: 700;
margin-bottom: 10px;
}
.deal-prices {
display: flex;
align-items: baseline;
gap: 10px;
margin-bottom: 16px;
}
.old-price {
font-size: 14px;
color: var(--text-light);
text-decoration: line-through;
}
.new-price {
font-size: 22px;
font-weight: 800;
color: var(--primary);
}
.discount {
background: rgba(255,106,0,0.1);
color: var(--accent);
padding: 4px 10px;
border-radius: 6px;
font-size: 12px;
font-weight: 700;
}
/* ================= GOLDEN RULE ================= */
.golden-rule {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: var(--white);
padding: 100px 0;
}
.golden-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.golden-content h2 {
font-size: 42px;
font-weight: 900;
margin-bottom: 20px;
line-height: 1.2;
}
.golden-content h2 span {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.golden-content p {
font-size: 17px;
color: rgba(255,255,255,0.7);
margin-bottom: 32px;
line-height: 1.7;
}
.golden-stats {
display: flex;
gap: 32px;
margin-bottom: 32px;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 32px;
font-weight: 900;
color: var(--accent);
}
.stat-label {
font-size: 13px;
color: rgba(255,255,255,0.6);
}
.golden-image {
position: relative;
}
.golden-image img {
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
width: 100%;
}
.golden-image::after {
content: '';
position: absolute;
inset: -15px;
border: 2px solid rgba(0,123,255,0.2);
border-radius: 32px;
z-index: -1;
}
/* ================= URGENCY SECTION ================= */
.urgency {
background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
text-align: center;
position: relative;
overflow: hidden;
}
.urgency::before {
content: '';
position: absolute;
top: -100px;
left: 50%;
transform: translateX(-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255,106,0,0.1) 0%, transparent 70%);
border-radius: 50%;
}
.urgency h2 {
font-size: 40px;
font-weight: 900;
color: var(--text-dark);
margin-bottom: 12px;
}
.urgency > .container > p {
font-size: 17px;
color: var(--text-medium);
margin-bottom: 36px;
}
.countdown {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.countdown-item {
background: var(--white);
padding: 24px 32px;
border-radius: var(--radius-md);
box-shadow: var(--shadow-md);
min-width: 100px;
}
.countdown-value {
font-size: 42px;
font-weight: 900;
color: var(--accent);
line-height: 1;
}
.countdown-label {
font-size: 13px;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 8px;
}
/* ================= QUICK TIPS ================= */
.quick-tips {
background: var(--white);
}
.quick-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 32px;
text-align: center;
}
.quick-item {
padding: 24px;
border-radius: var(--radius-md);
transition: all 0.3s ease;
}
.quick-item:hover {
background: var(--bg);
transform: translateY(-4px);
}
.quick-icon {
width: 72px;
height: 72px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
margin: 0 auto 16px;
transition: transform 0.3s ease;
}
.quick-item:hover .quick-icon {
transform: scale(1.1);
}
.quick-icon.blue { background: rgba(0,123,255,0.1); color: var(--primary); }
.quick-icon.orange { background: rgba(255,106,0,0.1); color: var(--accent); }
.quick-icon.green { background: rgba(40,167,69,0.1); color: var(--success); }
.quick-icon.purple { background: rgba(111,66,193,0.1); color: #6f42c1; }
.quick-icon.teal { background: rgba(23,162,184,0.1); color: #17a2b8; }
.quick-icon.red { background: rgba(220,53,69,0.1); color: #dc3545; }
.quick-item h4 {
font-size: 15px;
font-weight: 700;
color: var(--text-dark);
}
/* ================= FINAL CTA ================= */
.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
color: var(--white);
text-align: center;
position: relative;
overflow: hidden;
}
.final-cta::before {
content: '';
position: absolute;
top: -200px;
right: -200px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
border-radius: 50%;
}
.final-cta h2 {
font-size: 44px;
font-weight: 900;
margin-bottom: 16px;
position: relative;
}
.final-cta p {
font-size: 18px;
opacity: 0.9;
margin-bottom: 36px;
position: relative;
}
.final-cta .btn-white {
margin-right: 12px;
}
.final-cta .btn-accent {
background: var(--accent);
color: var(--white);
}
/* ================= FOOTER ================= */
footer {
background: #1a1a2e;
color: rgba(255,255,255,0.6);
padding: 60px 0 30px;
}
.footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 24px;
}
.footer-brand {
font-size: 22px;
font-weight: 800;
color: var(--white);
}
.footer-brand span {
color: var(--accent);
}
.footer-links {
display: flex;
gap: 32px;
list-style: none;
flex-wrap: wrap;
}
.footer-links a {
font-size: 14px;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--white);
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
margin-top: 40px;
padding-top: 24px;
text-align: center;
font-size: 13px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
.hero-inner {
grid-template-columns: 1fr;
text-align: center;
}
.hero h1 {
font-size: 36px;
}
.hero-buttons {
justify-content: center;
}
.hero-image {
order: -1;
}
.hero-image img {
max-width: 300px;
}
.floating-tag {
display: none;
}
.alert-box {
flex-direction: column;
text-align: center;
padding: 24px;
}
.alert-box .btn {
margin-left: 0;
}
.golden-inner {
grid-template-columns: 1fr;
text-align: center;
}
.golden-content h2 {
font-size: 32px;
}
.golden-stats {
justify-content: center;
}
.golden-image {
order: -1;
}
.countdown-item {
padding: 16px 20px;
min-width: 70px;
}
.countdown-value {
font-size: 28px;
}
.final-cta h2 {
font-size: 32px;
}
section {
padding: 60px 0;
}
.section-header h2 {
font-size: 30px;
}
.footer-inner {
flex-direction: column;
text-align: center;
}
}
Saving Tips That Save You Thousands
Smart strategies to get the best smartphone deals in Nepal. Don't overpay — learn the insider tricks that savvy shoppers use to save big on every purchase.
Wait! Don't Overpay for Your Phone
Most buyers in Nepal miss out on hidden discounts. Prices fluctuate daily — checking deals first can save you up to Rs. 15,000 on premium smartphones.
Smart Saving Strategies
Master these 7 proven tips to become a deal-hunting pro and never overpay for your next smartphone.
Wait Before Buying
Prices drop significantly within 2-3 months of launch. Patience can save you 15-25% on new models.
See Price TrendsAsk for Last Price
Always negotiate. Retailers in Nepal often have unadvertised discounts — just ask for their "best price."
Compare StoresCompare Prices
Same phone, different prices across shops. Use our comparison to find the lowest price instantly.
Compare NowSell Your Old Phone
Trade-in programs and resale can offset 30-50% of your new phone cost. Don't let it sit in a drawer.
Check Resale ValueBuy Based on Needs
Don't pay for flagship specs if you don't need them. Mid-range phones today are incredibly powerful.
Best Value PhonesShop During Sales
Dashera, Tihar, Black Friday, and New Year sales offer the steepest discounts of the year.
Current SalesStack Deals
Combine store discounts, bank offers, exchange bonuses, and EMI deals for maximum savings.
Find Stackable DealsFeatured Mobile Deals
Handpicked smartphones with the biggest discounts available right now in Nepal.
The Golden Rule: Check Deals Before You Buy
Every day, hundreds of smartphone buyers in Nepal overpay simply because they didn't compare. A 5-minute search on AajakoOffer.com can save you thousands of rupees. Make it your first step before every purchase.
Deals Are Ending Soon
Limited-time offers expire soon. Grab the best smartphone deals before they're gone!
Quick Saving Hacks
Instant actions you can take right now to lower your smartphone purchase price.
Compare Prices
Big Sales
Older Models
Trusted Stores
Combo Offers
EMI Deals
Ready to Save on Your Next Phone?
Join thousands of smart shoppers in Nepal who never pay full price.