:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --secondary: #7c3aed;
    --secondary-light: #f5f3ff;

    --accent: #06B6D4;
    --accent-light: #ECFEFF;

    --heading: #111827;
    --text: #374151;
    --muted: #6b7280;

    --body-bg: #ffffff;
    --section-bg: #f8fafc;

    --border: #E5E7EB;

    --success: #16A34A;
    --warning: #D97706;
    --danger: #DC2626;

    --dark: #0f172a;
    --dark-light: #1e293b;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  color: var(--text);

  background: #fff;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.tagline {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--danger);
    letter-spacing: 3px;
    margin-top: -6px;
}

.section-padding {
    padding: 80px 0;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}


/* ------- Header Css Start Here ------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.site-header .navbar {
  min-height: 70px;
}

/* ------- Logo ------- */
.navbar-brand {
  color: var(--heading) !important;
  font-size: 23px;
  font-weight: 800;
  display: flex;
  align-items: center;
}
.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  margin-right: 8px;
}

/* ------- Navbar Css Start Here ------- */
.navbar-nav .nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 25px 12px !important;
  transition: 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-menu {
    min-width: 220px;
    padding: 8px;
    margin-top: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  }
  .navbar .dropdown-item {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 13px;
    border-radius: 6px;
    transition: 0.2s ease;
  }
  .navbar .dropdown-item:hover {
    color: var(--primary);
    background: var(--primary-light);
  }
  .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
  }
}

/* ------- Navbar Css Start Here ------- */

/* ------- Search Bar Css Start Here ------- */
.header-search {
  width: 230px;
}
.header-search .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 13px;
}
.header-search .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* ------- TRENDING BAR Css Start Here ------- */
.trending-bar {
  background: var(--dark);
  padding: 13px 0;
}
.trending-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}
.trending-label {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.trending-label i {
  color: #fb923c;
  margin-right: 5px;
}
.trending-items {
  display: flex;
  gap: 25px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.trending-items::-webkit-scrollbar {
  display: none;
}
.trending-item {
  color: #cbd5e1;
  font-size: 12px;
}
.trending-item:hover {
  color: #fff;
}


/* ------- Header Hero Section Css Start Here ------- */
.hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f5f3ff 100%);
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #dbeafe;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-title {
  color: var(--heading);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--primary);
}
.hero-description {
  color: var(--muted);
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary-custom {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.btn-outline-custom {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--heading);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
}



/* ------- Header Css Start Here ------- */




/* ------- Explore Categories Css Start Here ------- */

.category-card {
	display: block;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 22px;
	height: 100%;
	transition: transform .25s ease,
                box-shadow .25s ease,
                border-color .25s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	border-color: #BFDBFE;
	box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
}

.category-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 21px;
	margin-bottom: 18px;
}

.category-icon.ai {
	background: var(--secondary-light);
	color: var(--secondary);
}

.category-icon.tech {
	background: var(--primary-light);
	color: var(--primary);
}

.category-icon.apps {
	background: var(--accent-light);
	color: var(--accent);
}

.category-icon.trending {
	background: #FFF7ED;
	color: #EA580C;
}

.category-icon.seo {
	background: #F0FDF4;
	color: var(--success);
}

.category-icon.howto {
	background: #EEF2FF;
	color: #4F46E5;
}

.category-icon.deals {
	background: #FEF2F2;
	color: var(--danger);
}

.category-icon.business {
	background: #F0FDFA;
	color: #0F766E;
}

.category-title {
	color: var(--heading);
	font-size: 17px;
	font-weight: 750;
	margin-bottom: 7px;
}

.category-text {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 14px;
}

.category-link {
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
}

/* ------- Explore Categories Css Start Here ------- */


/* ------- BLOG CARDS Css Start Here ------- */

.blog-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	height: 100%;
	transition: transform .25s ease,
                box-shadow .25s ease;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
}

.blog-image {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #E5E7EB;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.05);
}

.blog-category {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #fff;
	color: var(--primary);
	padding: 6px 10px;
	border-radius: 5px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.blog-content {
	padding: 20px;
}

.blog-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--muted);
	font-size: 11px;
	margin-bottom: 10px;
}

.blog-title {
	color: var(--heading);
	font-size: 18px;
	font-weight: 750;
	line-height: 1.4;
	margin-bottom: 10px;
}

.blog-title a {
	color: inherit;
}

.blog-title a:hover {
	color: var(--primary);
}

.blog-excerpt {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 15px;
}

.read-more {
	color: var(--primary);
	font-size: 12px;
	font-weight: 750;
}

/* ------- BLOG CARDS Css end Here ------- */

/* ------- FEATURED ARTICLE Css Start Here ------- */

.featured-article {
	background: var(--dark);
	border-radius: 18px;
	overflow: hidden;
}

.featured-image {
	min-height: 360px;
}

.featured-image img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.featured-content {
	padding: 40px;
}

.featured-label {
	color: #60A5FA;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.featured-title {
	color: #fff;
	font-size: 31px;
	line-height: 1.25;
	font-weight: 800;
	margin-bottom: 16px;
}

.featured-text {
	color: #94A3B8;
	line-height: 1.7;
	font-size: 14px;
	margin-bottom: 25px;
}

/* ------- FEATURED ARTICLE Css end Here ------- */


/* ------- SIDEBAR Css Start Here ------- */

.sidebar-box {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 22px;
	margin-bottom: 20px;
}

.sidebar-title {
	color: var(--heading);
	font-size: 17px;
	font-weight: 750;
	padding-bottom: 13px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--border);
}

.popular-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.popular-item:last-child {
	border-bottom: 0;
}

.popular-number {
	color: #CBD5E1;
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.popular-title {
	color: var(--heading);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.popular-title:hover {
	color: var(--primary);
}


.sidebar-category {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
}

.sidebar-category:last-child {
	border-bottom: 0;
}

.sidebar-category:hover {
	color: var(--primary);
}

/* NEWSLETTER */

/* .newsletter-section {
	background: linear-gradient(
                    135deg,
                    #EFF6FF,
                    #F5F3FF
                );
} */

.newsletter-box {
	max-width: 800px;
	margin: auto;
	text-align: center;
}

.newsletter-icon {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	border-radius: 14px;
	background: #fff;
	color: var(--primary);
	font-size: 23px;
}

.newsletter-form {
	max-width: 550px;
	margin: 25px auto 0;
	display: flex;
	gap: 8px;
}

.newsletter-form input {
	flex: 1;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 13px 15px;
	outline: none;
}

.newsletter-form input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-light);
}

/* ------- SIDEBAR Css end Here ------- */


/* ------- OUR VALUES Css Start Here ------- */

.values-box {
	background: linear-gradient(
                    135deg,
                    #EFF6FF,
                    #F5F3FF
                );
	border-radius: 18px;
	padding: 45px;
}

.value-row {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.value-row:last-child {
	margin-bottom: 0;
}

.value-number {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
}

.value-row h3 {
	color: var(--heading);
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 5px;
}

.value-row p {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.7;
	margin: 0;
}

/* ------- OUR VALUES Css end Here ------- */



/* ------- EDITORIAL PROMISE Css Start Here ------- */

.promise-section {
	background: var(--dark);
	padding: 75px 0;
}

.promise-content {
	text-align: center;
	max-width: 820px;
	margin: auto;
}

.promise-content .section-label {
	color: #93C5FD;
}

.promise-content h2 {
	color: #fff;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: -.8px;
	margin-bottom: 18px;
}

.promise-content p {
	color: #94A3B8;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 25px;
}

/* ------- EDITORIAL PROMISE Css end Here ------- */



/* ------- FULL WIDTH ABOUT HERO Css Start Here ------- */

.about-hero {
	min-height: 500px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: var(--dark);
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .38;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
                    90deg,
                    rgba(15,23,42,.97) 0%,
                    rgba(15,23,42,.82) 45%,
                    rgba(37,99,235,.48) 100%
                );
}

.about-hero-content {
	position: relative;
	z-index: 2;
	max-width: 820px;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 50px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-label i {
	color: #93C5FD;
}

.about-hero h1 {
	color: #fff;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.08;
	letter-spacing: -2px;
	font-weight: 800;
	margin-bottom: 20px;
}

.about-hero h1 span {
	color: #93C5FD;
}

.about-hero p {
	max-width: 720px;
	color: #CBD5E1;
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 28px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 19px;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	transition: .2s ease;
}

.hero-btn-primary:hover {
	color: #fff;
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.hero-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.3);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	transition: .2s ease;
}

.hero-btn-outline:hover {
	color: #fff;
	background: rgba(255,255,255,.10);
}

/* ------- FULL WIDTH ABOUT HERO Css end Here ------- */


/* ------- STATS Css Start Here ------- */
.stats-section {
	background: #fff;
	border-bottom: 1px solid var(--border);
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat-item {
	text-align: center;
	padding: 30px 15px;
	border-right: 1px solid var(--border);
}

.stat-item:last-child {
	border-right: 0;
}

.stat-number {
	color: var(--heading);
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 4px;
}

.stat-number span {
	color: var(--primary);
}

.stat-label {
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
}

/* ------- STATS Css end Here ------- */


/* ------- COMMON SECTION Start Here ------- */

.section {
	padding: 75px 0;
}

.section-light {
	background: var(--section-bg);
}

.section-label {
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.section-title {
	color: var(--heading);
	font-size: 34px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -.8px;
	margin-bottom: 15px;
}

.section-text {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.8;
}
/* ------- COMMON SECTION end Here ------- */


/* ------- Our story Here ------- */
.story-image {
	height: 480px;
	position: relative;
	overflow: hidden;
	border-radius: 18px;
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-image-card {
	position: absolute;
	right: 20px;
	bottom: 20px;
	max-width: 250px;
	padding: 18px;
	background: rgba(255,255,255,.96);
	border-radius: 12px;
	box-shadow: 0 15px 40px rgba(15,23,42,.18);
}

.story-image-card strong {
	display: block;
	color: var(--heading);
	font-size: 24px;
	font-weight: 800;
}

.story-image-card span {
	color: var(--muted);
	font-size: 11px;
	line-height: 1.5;
}

.story-content {
	padding-left: 25px;
}

.story-content p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 18px;
}

.story-list {
	list-style: none;
	padding: 0;
	margin: 25px 0 0;
}

.story-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 13px;
}

.story-list i {
	color: var(--primary);
	font-size: 16px;
	margin-top: 1px;
}
/* ------- Our story Here ------- */

/* ------- Our Mission Start Here ------- */
.mission-card {
	height: 100%;
	padding: 30px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	transition: .25s ease;
}

.mission-card:hover {
	transform: translateY(-5px);
	border-color: #BFDBFE;
	box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.mission-icon {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 13px;
	color: var(--primary);
	background: var(--primary-light);
	font-size: 24px;
	margin-bottom: 20px;
}

.mission-card h3 {
	color: var(--heading);
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 10px;
}

.mission-card p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.75;
	margin: 0;
}

/* ------- Our Mission end Here ------- */

/* ------- NEWSLETTER Css Start Here ------- */

.newsletter-section {
	padding: 70px 0;
}

.newsletter-box {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
                    135deg,
                    #EFF6FF,
                    #F5F3FF
                );
	border-radius: 18px;
	padding: 50px;
}

.newsletter-box::after {
	content: "";
	position: absolute;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background: rgba(37,99,235,.07);
	right: -70px;
	top: -70px;
}

.newsletter-content {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.newsletter-box h2 {
	color: var(--heading);
	font-size: 29px;
	font-weight: 800;
	margin-bottom: 10px;
}

.newsletter-box p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 22px;
}

.newsletter-form {
	display: flex;
	gap: 8px;
}

.newsletter-form input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 13px;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-light);
}

.newsletter-form button {
	border: 0;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 700;
}

.newsletter-form button:hover {
	background: var(--primary-dark);
}

/* ------- NEWSLETTER Css end Here ------- */


/* ------- Footer Css Start Here ------- */

.site-footer {
	background: var(--dark);
	color: #94A3B8;
	padding: 60px 0 25px;
}

.footer-brand {
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.footer-description {
	max-width: 350px;
	font-size: 13px;
	line-height: 1.7;
}

.footer-title {
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	margin-bottom: 16px;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 9px;
}

.footer-links a {
	color: #94A3B8;
	font-size: 12px;
}

.footer-links a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid #1E293B;
	margin-top: 40px;
	padding-top: 20px;
	font-size: 11px;
}

/* ------- Footer Css End Here ------- */


@media (max-width: 991px) {
	.navbar-nav .nav-link {
		padding: 10px 0 !important;
	}

	.header-search {
		width: 100%;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.navbar .dropdown-menu {
		border: 0;
		box-shadow: none;
		padding-left: 15px;
	}

	.stats-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat-item:nth-child(2) {
		border-right: 0;
	}

	.stat-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--border);
	}

	.story-content {
		padding-left: 0;
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.about-hero {
		min-height: 500px;
	}

	.about-hero h1 {
		font-size: 40px;
		letter-spacing: -1px;
	}

	.about-hero p {
		font-size: 15px;
	}

	.section {
		padding: 55px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.story-image {
		height: 360px;
	}

	.values-box {
		padding: 28px;
	}

	.newsletter-box {
		padding: 30px 22px;
	}

	.newsletter-form {
		display: block;
	}

	.newsletter-form input {
		width: 100%;
		margin-bottom: 8px;
	}

	.newsletter-form button {
		width: 100%;
	}

	.promise-content h2 {
		font-size: 28px;
	}
}






/* ------- Main  Category Page ------- */

/* =====================================================
           CATEGORY HERO
        ====================================================== */

.category-hero {
	position: relative;
	min-height: 430px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(
                    135deg,
                    rgba(15, 23, 42, .94),
                    rgba(37, 99, 235, .82)
                );
}

.category-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: .35;
}

.category-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
                    90deg,
                    rgba(15,23,42,.96),
                    rgba(15,23,42,.60),
                    rgba(37,99,235,.35)
                );
	z-index: 1;
}

.category-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.category-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 50px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.20);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 18px;
}

.category-hero h1 {
	color: #fff;
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.08;
	letter-spacing: -2px;
	font-weight: 800;
	margin-bottom: 18px;
}

.category-hero p {
	max-width: 700px;
	color: #DBEAFE;
	font-size: 17px;
	line-height: 1.75;
	margin-bottom: 25px;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-stat {
	padding: 9px 14px;
	border-radius: 8px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.15);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}


        /* =====================================================
           CATEGORY NAV
        ====================================================== */

.category-nav {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 70px;
	z-index: 900;
}

.category-nav-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 10px 0;
}

.category-nav-inner::-webkit-scrollbar {
	display: none;
}

.category-nav a {
	white-space: nowrap;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	padding: 8px 13px;
	border-radius: 7px;
	transition: .2s ease;
}

.category-nav a:hover,
        .category-nav a.active {
	color: var(--primary);
	background: var(--primary-light);
}


        /* =====================================================
           MAIN SECTION
        ====================================================== */

.category-section {
	padding: 70px 0;
}

.section-heading {
	margin-bottom: 35px;
}

.section-title {
	color: var(--heading);
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -.7px;
	margin-bottom: 8px;
}

.section-description {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}


        /* =====================================================
           CATEGORY CARDS
        ====================================================== */

.category-card {
	height: 100%;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: .25s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	border-color: #BFDBFE;
	box-shadow: 0 18px 40px rgba(15,23,42,.09);
}

.category-card-image {
	height: 210px;
	position: relative;
	overflow: hidden;
}

.category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s ease;
}

.category-card:hover
        .category-card-image img {
	transform: scale(1.06);
}

.category-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
                    180deg,
                    transparent 30%,
                    rgba(15,23,42,.72)
                );
}

.main_catrgories .category-icon {
	position: absolute;
	left: 20px;
	bottom: 18px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--primary);
	font-size: 21px;
	box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.category-card-body {
	padding: 22px;
}

.category-card-title {
	color: var(--heading);
	font-size: 21px;
	font-weight: 800;
	margin-bottom: 8px;
}

.category-card-title:hover {
	color: var(--primary);
}

.category-card-description {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 17px;
}

.subcategory-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.subcategory {
	color: var(--text);
	background: var(--section-bg);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: 6px 10px;
	font-size: 10px;
	font-weight: 700;
	transition: .2s ease;
}

.subcategory:hover {
	color: var(--primary);
	background: var(--primary-light);
	border-color: #BFDBFE;
}

.category-count {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	padding-top: 15px;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
}

.category-count a {
	color: var(--primary);
	font-weight: 800;
}


        /* =====================================================
           FEATURED ARTICLES
        ====================================================== */

.articles-section {
	background: var(--section-bg);
	padding: 70px 0;
}

.article-card {
	height: 100%;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	transition: .25s ease;
}

.article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(15,23,42,.08);
}

.article-image {
	height: 210px;
	overflow: hidden;
}

.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s ease;
}

.article-card:hover
        .article-image img {
	transform: scale(1.05);
}

.article-body {
	padding: 20px;
}

.article-category {
	color: var(--primary);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.article-title {
	color: var(--heading);
	font-size: 18px;
	line-height: 1.4;
	font-weight: 800;
	margin-bottom: 9px;
}

.article-title:hover {
	color: var(--primary);
}

.article-excerpt {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.7;
	margin-bottom: 15px;
}

.article-meta {
	display: flex;
	gap: 12px;
	color: var(--muted);
	font-size: 10px;
}

/* ------- Main  Category Page ------- */



/* ------- Blog Single Details Page ------- */

/* BREADCRUMB  */
.breadcrumb-custom {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 25px;
	font-size: 12px;
}

.breadcrumb-custom a {
	color: var(--primary-light);
	font-weight: 600;
}

.breadcrumb-custom span {
	color: var(--accent-light);
}


/* META */

.article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	color: var(--primary-light);
	font-size: 12px;
}

.article-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.article-author {
	color: var(--primary-light);
	font-weight: 700;
}


    /* Article */
    .article {
      background: #fff;
      border-radius: 12px;
      padding: 42px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, .04);
    }

    .article p {
      color: #555;
      font-size: 17px;
      margin-bottom: 24px;
    }

    .article h2 {
      font-size: 30px;
      line-height: 1.3;
      margin: 35px 0 15px;
      color: #171a1f;
    }

    .article h3 {
      font-size: 23px;
      margin: 30px 0 12px;
    }

    .article img {
      width: 100%;
      border-radius: 10px;
      margin: 20px 0 28px;
    }

    .quote {
      border-left: 4px solid #2563eb;
      background: #f1f5ff;
      padding: 22px 25px;
      margin: 30px 0;
      font-size: 19px;
      font-style: italic;
      color: #334155;
      border-radius: 0 8px 8px 0;
    }

    /* Tags */
    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      border-top: 1px solid #eee;
      margin-top: 35px;
      padding-top: 25px;
    }

    .tag {
      background: #f1f3f5;
      padding: 7px 13px;
      border-radius: 5px;
      color: #555;
      font-size: 13px;
    }

    /* Sidebar */
	
    .widget {
      background: #fff;
      padding: 27px;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, .04);
    }

    .widget-title {
      font-size: 20px;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid #2563eb;
    }


    /* Recent posts */
    .recent-post {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }

    .recent-post:last-child {
      margin-bottom: 0;
    }

    .recent-post img {
      width: 75px;
      height: 65px;
      object-fit: cover;
      border-radius: 7px;
    }

    .recent-post h4 {
      font-size: 14px;
      line-height: 1.4;
    }

    .recent-post span {
      color: #888;
      display: block;
      font-size: 11px;
      margin-top: 4px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .main {
        grid-template-columns: 1fr;
      }

      .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .nav {
        display: none;
      }

      .hero {
        min-height: 330px;
      }

      .article {
        padding: 25px 20px;
      }

      .article p {
        font-size: 16px;
      }

      .sidebar {
        display: flex;
      }
    }
	
/* ------- Blog Single Details Page ------- */