: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;
	cursor: pointer;
}

.navbar-menu { display: flex; gap: 30px; list-style: none; }
.navbar-menu a { color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 500; cursor: pointer; }
.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;
}


.page.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;
	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);
}

/* ========== BLOG LIST DESIGNS ========== */

/* Design 1: Classic Grid */
.blog-1 { background: white; }
.blog-1-hero { margin-top: 80px; }
.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; cursor: pointer; }
.blog-1-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: var(--primary); }

.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; cursor: pointer; }
.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; cursor: pointer; }
.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-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); cursor: pointer; }
.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-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; cursor: pointer; }
.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; cursor: pointer; }
.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: 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; }

/* ========== DETAIL PAGE ========== */
.detail-hero {  padding: 10px 40px; }
.detail-breadcrumb { max-width: 1200px; margin: 0 auto 24px; font-size: 13px; color: var(--text); }
.detail-breadcrumb a { color: var(--primary); cursor: pointer; text-decoration: none; }
.detail-hero-content { max-width: 1200px; margin: 0 auto; }
.detail-category { display: inline-block; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.detail-title { font-size: 48px; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.detail-meta { display: flex; gap: 24px; font-size: 14px; color: var(--text); flex-wrap: wrap; }
.detail-meta-item { display: flex; align-items: center; gap: 8px; }
.detail-avatar { width: 40px; height: 40px; background: #ffdd22; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: black; font-weight: 700; }

.detail-image { max-width: 1200px; margin: 40px auto; padding: 0 40px; }
.detail-image img { width: 100%; height: auto; border-radius: 12px; }

.detail-content { max-width: 800px; margin: 0 auto; padding: 40px; }
.detail-body { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 40px; }
.detail-body p { margin-bottom: 24px; }
.detail-body h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin: 40px 0 16px; }
.detail-body h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.detail-body ul, .detail-body ol { margin: 20px 0 20px 20px; }
.detail-body li { margin-bottom: 10px; }
.detail-body blockquote { border-left: 4px solid var(--primary); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--text); }

.detail-author-box { background: #f8fafc; padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.detail-author-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.detail-author-avatar { width: 60px; height: 60px; background:#ffdd22; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: black; font-size: 24px; font-weight: 700; }
.detail-author-info h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.detail-author-info p { font-size: 13px; color: var(--text); margin: 0; }
.detail-author-bio { font-size: 14px; color: var(--text); line-height: 1.6; }

.detail-share { display: flex; gap: 12px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.share-btn { width: 40px; height: 40px; background: #f8fafc; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--text); cursor: pointer; transition: all 0.3s; }
.share-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Related Posts */
.related-section { max-width: 1200px; margin: 40px auto; padding: 5px; background: white; border-radius: 12px; }
.related-title { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.related-card { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.3s; }
.related-card:hover { border-color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.related-card-img { width: 100%; height: 180px; object-fit: cover; }
.related-card-content { padding: 16px; }
.related-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.related-card-meta { font-size: 12px; color: var(--text); }


.pricing-banner{
	margin-top:40px;
	margin-bottom:10px;
}
/* Responsive */
@media (max-width: 1024px) {
	.blog-1-grid, .blog-2-grid, .blog-6-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; }
	.detail-title { font-size: 36px; }
	.detail-author-header{flex-direction: column;align-items: center;}
	.detail-body img{width:100%;}
}

@media (max-width: 768px) {
	.navbar-menu { display: none; }
	.design-tabs { padding: 12px 16px; }
	.blog-1-grid, .blog-2-grid, .blog-6-grid, .related-grid { grid-template-columns: 1fr; }
	.blog-4-grid { column-count: 1; }
	.blog-3-item { grid-template-columns: 100px 1fr; gap: 12px; }
	.detail-title { font-size: 28px; }
	.detail-content { padding: 20px; }
	.detail-author-header{flex-direction: column;align-items: center;}
	.detail-body img{width:100%;}
	.detail-body iframe{width:100%;height:30vh;}
	.inner-banner-section-heading{
	  font-size: 24px !important;
	  font-weight: bold;
	}
	.blog-1-hero h1{
	font-size: 24px !important;	
	}
	.inner-banner-heading-wrap{
	  margin-bottom:0px;
	}
}

