:root {
	--primary: #ff6b35;
	--secondary: #ffc107;
	--dark: #0f172a;
	--light: #f8fafc;
	--text: #64748b;
	--border: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }


/* Common */
.navbar-custom {
	background: white;
	border-bottom: 1px solid var(--border);
	padding: 16px 40px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo {
	font-size: 22px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.navbar-menu { display: flex; gap: 30px; list-style: none; }
.navbar-menu a { color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 500; }
.navbar-menu a:hover { color: var(--primary); }

.navbar-cta {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.blog-section { display: none; }
.blog-section.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Design Selector */
.design-tabs {
	background: white;
	border-bottom: 1px solid var(--border);
	padding: 16px 40px;
	position: sticky;
	top: 60px;
	z-index: 99;
	display: flex;
	gap: 12px;
	max-width: 100%;
	overflow-x: auto;
}

.design-tab-btn {
	border: none;
	background: white;
	color: var(--text);
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	border: 1px solid var(--border);
	transition: all 0.3s;
}

.design-tab-btn.active {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	border-color: var(--primary);
}

.design-tab-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

/* ========== DESIGN 1: CLASSIC GRID ========== */
.blog-1 { background: white; }
.blog-1-hero { background: transparent; padding: 60px 40px; text-align: center; }
.blog-1-hero h1 { font-size: 42px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.blog-1-hero p { font-size: 16px; color: var(--text); }

.blog-1-filters { max-width: 1400px; margin: 0 auto; padding: 40px; }
.blog-1-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.blog-1-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-1-btn { padding: 8px 16px; border: 2px solid var(--border); background: white; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; }
.blog-1-btn.active { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border-color: var(--primary); }

.blog-1-grid { max-width: 1400px; margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.blog-1-card { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.blog-1-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }

.blog-1-img { width: 100%; height: 200px; object-fit: cover; }
.blog-1-content { padding: 20px; }
.blog-1-cat { display: inline-block; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; margin-bottom: 10px; }
.blog-1-head { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.blog-1-desc { font-size: 13px; color: var(--text); margin-bottom: 12px; line-height: 1.5; }
.blog-1-meta { font-size: 12px; color: var(--text); display: flex; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border); }

/* ========== DESIGN 2: FEATURED + GRID ========== */
.blog-2 { background: #f8fafc; }
.blog-2-hero { background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); color: white; padding: 60px 40px; text-align: center; }
.blog-2-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.blog-2-hero p { font-size: 16px; opacity: 0.9; }

.blog-2-content { max-width: 1400px; margin: 0 auto; padding: 40px; }
.blog-2-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; align-items: center; background: white; padding: 30px; border-radius: 10px; }
.blog-2-feat-img { width: 100%; height: 300px; object-fit: cover; border-radius: 10px; }
.blog-2-feat-title { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.blog-2-feat-desc { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 20px; }
.blog-2-btn { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border: none; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }

.blog-2-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.blog-2-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.blog-2-card { background: white; border-radius: 10px; overflow: hidden; }
.blog-2-card-img { width: 100%; height: 180px; object-fit: cover; position: relative; }
.blog-2-card-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.6); color: white; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.blog-2-card-content { padding: 16px; }
.blog-2-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.blog-2-card-meta { font-size: 12px; color: var(--text); }

/* ========== DESIGN 3: MINIMAL + SIDEBAR ========== */
.blog-3 { background: white; }
.blog-3-hero { background: linear-gradient(135deg, #fef5f0 0%, #fff9f6 100%); padding: 50px 40px; }
.blog-3-hero h1 { font-size: 36px; font-weight: 800; color: var(--dark); }

.blog-3-wrapper { max-width: 1200px; margin: 0 auto; padding: 40px; display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.blog-3-main { }

.blog-3-list { }
.blog-3-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.blog-3-item:last-child { border-bottom: none; }
.blog-3-item-img { width: 120px; height: 100px; object-fit: cover; border-radius: 6px; }
.blog-3-item-content { }
.blog-3-item-cat { font-size: 11px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.blog-3-item-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.blog-3-item-date { font-size: 12px; color: var(--text); }

.blog-3-sidebar { }
.blog-3-sidebar-card { background: #f8fafc; padding: 20px; border-radius: 8px; margin-bottom: 20px; }
.blog-3-sidebar-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.blog-3-sidebar-item { font-size: 12px; color: var(--text); padding: 8px 0; cursor: pointer; }
.blog-3-sidebar-item:hover { color: var(--primary); }

/* ========== DESIGN 4: MASONRY ========== */
.blog-4 { background: #f8fafc; }
.blog-4-hero { background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); color: white; padding: 60px 40px; text-align: center; }
.blog-4-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; }

.blog-4-content { max-width: 1400px; margin: 0 auto; padding: 40px; }
.blog-4-grid { column-count: 3; column-gap: 24px; }
.blog-4-card { background: white; border-radius: 10px; overflow: hidden; margin-bottom: 24px; break-inside: avoid; }
.blog-4-card-img { width: 100%; height: auto; display: block; }
.blog-4-card-content { padding: 16px; }
.blog-4-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.blog-4-card-desc { font-size: 12px; color: var(--text); margin-bottom: 10px; }
.blog-4-card-footer { font-size: 11px; color: var(--text); display: flex; justify-content: space-between; }

/* ========== DESIGN 5: TIMELINE ========== */
.blog-5 { background: white; }
.blog-5-hero { background: linear-gradient(135deg, #fef5f0 0%, #fff9f6 100%); padding: 60px 40px; text-align: center; }
.blog-5-hero h1 { font-size: 42px; font-weight: 800; color: var(--dark); }

.blog-5-content { max-width: 1000px; margin: 0 auto; padding: 60px 40px; }
.blog-5-item { position: relative; padding-left: 60px; margin-bottom: 40px; }
.blog-5-dot { position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.blog-5-line { position: absolute; left: 20px; top: 40px; width: 1px; height: calc(100% + 20px); background: var(--border); }
.blog-5-item:last-child .blog-5-line { display: none; }
.blog-5-date { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.blog-5-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.blog-5-desc { font-size: 13px; color: var(--text); line-height: 1.6; }

/* ========== DESIGN 6: CARD + OVERLAY ========== */
.blog-6 { background: #f8fafc; }
.blog-6-hero { background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); color: white; padding: 60px 40px; text-align: center; }
.blog-6-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; }

.blog-6-content { max-width: 1400px; margin: 0 auto; padding: 40px; }
.blog-6-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.blog-6-card { position: relative; height: 350px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.blog-6-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-6-card:hover .blog-6-img { transform: scale(1.05); }
.blog-6-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: white; }
.blog-6-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; opacity: 0.8; }
.blog-6-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.blog-6-meta { font-size: 12px; opacity: 0.8; }


/* ========== PAGINATION ========== */
.pagination-section {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 60px;
	padding: 40px;
}

.pagination-btn {
	width: 40px;
	height: 40px;
	border: 1px solid var(--border);
	background: white;
	color: var(--dark);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(255, 107, 53, 0.05);
}

.pagination-btn.active {
	background: #FFDD22;
	color: black;
	border-color: transparent;
}
.pricing-banner{
	margin-top:80px;
	margin-bottom:50px;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	
	.blog-1-grid, .blog-2-grid { grid-template-columns: repeat(2, 1fr); }
	.blog-2-featured { grid-template-columns: 1fr; }
	.blog-3-wrapper { grid-template-columns: 1fr; }
	.blog-4-grid { column-count: 2; }
	.blog-6-grid { grid-template-columns: repeat(2, 1fr); }
	.blog-1-img{
		object-fit: scale-down;
	}
}

@media (max-width: 768px) {
	
	.blog-1-grid, .blog-2-grid, .blog-6-grid { grid-template-columns: 1fr; }
	.blog-2-featured { padding: 20px; }
	.blog-3-item { grid-template-columns: 100px 1fr; gap: 12px; }
	.blog-3-item-img { width: 100px; height: 80px; }
	.blog-4-grid { column-count: 1; }
	.blog-5-content { padding: 40px 20px; }
	.blog-1-hero, .blog-2-hero, .blog-5-hero, .blog-6-hero { padding: 40px 20px; }
	.blog-1-hero h1, .blog-2-hero h1, .blog-5-hero h1, .blog-6-hero h1 { font-size: 28px; }
	.blog-1-img{
		object-fit: scale-down;
	}
}

@media (max-width: 480px) {
	
	.design-tabs { padding: 8px 12px; }
	.blog-1-filters, .blog-2-content, .blog-3-wrapper, .blog-4-content, .blog-5-content { padding: 20px 12px; }
	.blog-2-featured { padding: 16px; }
	.blog-3-item { grid-template-columns: 1fr; }
	.blog-3-item-img { width: 100%; height: 120px; }
	.blog-5-item { padding-left: 50px; }
	.blog-6-card { height: 280px; }
	.blog-1-img{
		object-fit: scale-down;
	}
}