/* =========================================================================
   RNH Technologies — Modern UI Layer (2026 refresh)
   Loaded last; elevates the 2023 template without replacing its structure.
   Brand: Indigo #5076db  •  Emerald #5bc86d
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
	--rnh-ink: #0b1120;
	--rnh-ink-2: #1e293b;
	--rnh-muted: #64748b;
	--rnh-line: #e6eaf2;
	--rnh-bg: #ffffff;
	--rnh-bg-soft: #f6f8fc;

	--rnh-primary: #4f6ef7;
	--rnh-primary-600: #4059d8;
	--rnh-primary-700: #3346b0;
	--rnh-accent: #22c55e;
	--rnh-accent-600: #16a34a;

	--rnh-grad: linear-gradient(120deg, #4f6ef7 0%, #7c3aed 55%, #22c55e 130%);
	--rnh-grad-soft: linear-gradient(120deg, rgba(79,110,247,.12), rgba(34,197,94,.12));

	--rnh-shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
	--rnh-shadow: 0 10px 30px -12px rgba(15,23,42,.18);
	--rnh-shadow-lg: 0 30px 60px -20px rgba(37,55,116,.35);
	--rnh-radius: 16px;
	--rnh-radius-lg: 24px;
	--rnh-ease: cubic-bezier(.22,.61,.36,1);
}

/* -------------------------------------------------------------- Base */
html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	color: var(--rnh-ink-2);
	background: var(--rnh-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	letter-spacing: -.005em;
}

h1, h2, h3, h4, h5, h6,
.global_title, .navbar-brand {
	font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
	color: var(--rnh-ink);
	letter-spacing: -.02em;
}

p { color: var(--rnh-muted); line-height: 1.75; }

::selection { background: rgba(79,110,247,.18); }

img { max-width: 100%; }

/* Nicer focus for keyboard users */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible {
	outline: 3px solid rgba(79,110,247,.45);
	outline-offset: 2px;
	border-radius: 6px;
}

/* -------------------------------------------------- Section headings */
.global_title {
	font-weight: 800;
	font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.9rem);
	line-height: 1.1;
	margin-bottom: 2.4rem;
	position: relative;
}
.global_title:not(.left):not(.white)::after,
.global_title.left::after {
	content: "";
	display: block;
	width: 64px; height: 4px;
	margin: 16px auto 0;
	border-radius: 99px;
	background: var(--rnh-grad);
}
.global_title.left::after { margin-left: 0; }
.global_title.white { color: #fff; }

/* ---------------------------------------------------- Navigation bar */
.nav_sec {
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	background: rgba(255,255,255,.82) !important;
	border-bottom: 1px solid rgba(15,23,42,.06);
	box-shadow: 0 6px 24px -18px rgba(15,23,42,.5);
	transition: box-shadow .3s var(--rnh-ease), background .3s var(--rnh-ease);
}
.nav_sec.is-scrolled {
	background: rgba(255,255,255,.95) !important;
	box-shadow: 0 10px 30px -18px rgba(15,23,42,.45);
}
.nav_sec .navbar { padding-top: .6rem; padding-bottom: .6rem; }
.nav_sec .navbar-nav .nav-link {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: .98rem;
	color: var(--rnh-ink) !important;
	padding: .5rem 1rem !important;
	position: relative;
	transition: color .25s var(--rnh-ease);
}
.nav_sec .navbar-nav .nav-link:hover,
.nav_sec .navbar-nav .nav-link:focus,
.nav_sec .navbar-nav .nav-link.active { color: var(--rnh-primary) !important; }
.nav_sec .navbar-nav .nav-link::before {
	content: "";
	position: absolute; left: 1rem; right: 1rem; bottom: .28rem;
	height: 2px; border-radius: 2px;
	background: var(--rnh-grad);
	transform: scaleX(0); transform-origin: left;
	transition: transform .3s var(--rnh-ease);
}
.nav_sec .navbar-nav .nav-link:hover::before,
.nav_sec .navbar-nav .nav-link.active::before { transform: scaleX(1); }

.nav_sec .dropdown-menu {
	border: 1px solid var(--rnh-line);
	border-radius: 14px;
	box-shadow: var(--rnh-shadow);
	padding: .5rem;
	margin-top: .5rem;
}
.nav_sec .dropdown-item {
	border-radius: 10px;
	font-weight: 500;
	padding: .55rem .85rem;
	transition: background .2s var(--rnh-ease), color .2s var(--rnh-ease);
}
.nav_sec .dropdown-item:hover,
.nav_sec .dropdown-item:focus {
	background: var(--rnh-grad-soft);
	color: var(--rnh-primary) !important;
}

/* ------------------------------------------------------------- Buttons */
.store_btn, .buy_btn, .subscribe_btn, button.buy_btn, .btn-block .buy_btn {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700; font-size: .98rem;
	line-height: 1;
	padding: .95rem 1.7rem;
	border: 0; border-radius: 999px;
	color: #fff !important;
	background: var(--rnh-grad);
	background-size: 160% 160%;
	box-shadow: 0 12px 26px -12px rgba(79,110,247,.6);
	transition: transform .25s var(--rnh-ease), box-shadow .25s var(--rnh-ease), background-position .5s var(--rnh-ease);
	cursor: pointer;
}
.store_btn:hover, .buy_btn:hover, .subscribe_btn:hover {
	transform: translateY(-3px);
	background-position: 100% 0;
	box-shadow: 0 20px 34px -14px rgba(79,110,247,.7);
	color: #fff !important;
}
.store_btn strong { font-weight: 800; }
.store_btn.green { background: linear-gradient(120deg, #22c55e, #0ea5a3); }
/* secondary / ghost variant when two buttons sit together */
.store_btn.green.radial-out {
	box-shadow: 0 12px 26px -12px rgba(34,197,94,.55);
}

/* ---------------------------------------------------------- Hero area */
.slider_sec .caption_info h1 {
	font-weight: 800;
	font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4.1rem);
	line-height: 1.05;
	text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.slider_sec .caption_info .type { display: block; color: #fff; }
.slider_sec .caption_info .typer { color: #7ef0a3; }
.slider_sec .inner { max-width: 820px; }

/* ------------------------------------------------------ About section */
.about_sec .detail h3 {
	font-weight: 700;
	font-size: clamp(1.3rem, 1rem + 1vw, 1.75rem);
	margin-bottom: 1rem;
}
.about_sec .about-img img {
	border-radius: var(--rnh-radius-lg);
	box-shadow: var(--rnh-shadow-lg);
}
.about_sec .detail br { display: none; } /* kill the stacked <br> spacers */
.about_sec .detail { margin-bottom: 1.6rem; }

/* --------------------------------------------------- Service section */
.service_sec { background: var(--rnh-bg-soft); }
.service_block {
	background: #fff;
	border: 1px solid var(--rnh-line);
	border-radius: var(--rnh-radius);
	padding: 2.2rem 1.9rem;
	height: 100%;
	box-shadow: var(--rnh-shadow-sm);
	transition: transform .3s var(--rnh-ease), box-shadow .3s var(--rnh-ease), border-color .3s var(--rnh-ease);
	position: relative; overflow: hidden;
}
.service_block::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
	background: var(--rnh-grad);
	transform: scaleX(0); transform-origin: left;
	transition: transform .35s var(--rnh-ease);
}
.service_block:hover {
	transform: translateY(-8px);
	box-shadow: var(--rnh-shadow-lg);
	border-color: transparent;
}
.service_block:hover::before { transform: scaleX(1); }
.service_block h3 {
	font-weight: 700; font-size: 1.3rem;
	margin: .3rem 0 .7rem;
}
.service_block figure {
	width: 64px; height: 64px; margin-bottom: 1.3rem;
	border-radius: 16px;
	display: grid; place-items: center;
	background-image: none !important;   /* hide template's PNG icon */
	background: var(--rnh-grad-soft);
	color: var(--rnh-primary);
	font-size: 1.7rem;
}
.service_block figure i { color: var(--rnh-primary); }
.service_block .move_link span {
	display: inline-grid; place-items: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--rnh-grad-soft);
	color: var(--rnh-primary);
	font-size: 1.5rem; line-height: 1;
	transition: transform .3s var(--rnh-ease), background .3s var(--rnh-ease), color .3s var(--rnh-ease);
}
.service_block:hover .move_link span {
	background: var(--rnh-grad);
	color: #fff;
	transform: translateX(4px);
}

/* ----------------------------------------------------- Process circles */
.skill_sec { background: #fff; }
.skill_block {
	background: var(--rnh-bg-soft);
	border: 1px solid var(--rnh-line);
	border-radius: var(--rnh-radius);
	padding: 2rem 1.2rem;
	text-align: center; height: 100%;
	transition: transform .3s var(--rnh-ease), box-shadow .3s var(--rnh-ease);
}
.skill_block:hover { transform: translateY(-6px); box-shadow: var(--rnh-shadow); }
.skill_block .progress .fill { stroke: url(#rnhGrad); }
.skill_block h3 { font-weight: 700; margin-top: .4rem; }

/* ------------------------------------------------------- Counter band */
.count_sec {
	background: var(--rnh-ink) !important;
	border: 0 !important;
	border-radius: var(--rnh-radius-lg);
	margin: 0 auto !important;
	max-width: 1140px;
	overflow: hidden; position: relative;
}
.count_sec::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(600px 300px at 15% 0%, rgba(79,110,247,.35), transparent 60%),
				radial-gradient(600px 300px at 100% 100%, rgba(34,197,94,.3), transparent 60%);
}
.count_sec .count_block { position: relative; }
.count_sec .count_block h1,
.count_sec .count_block h3 { color: #fff !important; }
.count_sec .count_block h3 strong {
	display: block;
	font-size: clamp(2.2rem, 1.5rem + 2vw, 3rem);
	background: linear-gradient(120deg,#fff,#a7f3c8);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ------------------------------------------------------ Blog / cards */
.blog_info {
	background: #fff;
	border: 1px solid var(--rnh-line);
	border-radius: var(--rnh-radius);
	overflow: hidden;
	box-shadow: var(--rnh-shadow-sm);
	transition: transform .3s var(--rnh-ease), box-shadow .3s var(--rnh-ease);
	height: 100%;
}
.blog_info:hover { transform: translateY(-6px); box-shadow: var(--rnh-shadow-lg); }
.blog_info .blog_img img { transition: transform .5s var(--rnh-ease); width: 100%; }
.blog_info:hover .blog_img img { transform: scale(1.05); }
.blog_info .detail { padding: 1.4rem 1.4rem 1.6rem; }

.testi_block {
	background: #fff;
	border: 1px solid var(--rnh-line);
	border-radius: var(--rnh-radius);
	padding: 1.8rem;
	box-shadow: var(--rnh-shadow-sm);
	position: relative;
}
.testi_block p { color: var(--rnh-ink-2); font-size: 1.05rem; }

/* ---------------------------------------------------- Work / CTA band */
.work_sec {
	background: var(--rnh-ink);
	position: relative; overflow: hidden;
	border-radius: var(--rnh-radius-lg);
	margin: 4rem auto; max-width: 1140px;
}
.work_sec::before {
	content: ""; position: absolute; inset: 0;
	background: var(--rnh-grad); opacity: .16;
}
.work_sec .container { position: relative; }
.work_sec p { color: rgba(255,255,255,.8); }

/* ------------------------------------------------------------ Forms */
.form_info { background: var(--rnh-bg-soft); }
.form_info .form-control,
.footer_detail .form-control {
	border: 1px solid var(--rnh-line);
	border-radius: 12px;
	background: #fff;
	padding: .9rem 1.1rem;
	font-size: .98rem;
	margin-bottom: 1rem;
	transition: border-color .2s var(--rnh-ease), box-shadow .2s var(--rnh-ease);
	box-shadow: none;
}
.form_info .form-control:focus,
.footer_detail .form-control:focus {
	border-color: var(--rnh-primary);
	box-shadow: 0 0 0 4px rgba(79,110,247,.14);
}
.form_info textarea.form-control { min-height: 148px; resize: vertical; }

/* Form status message (used by the AJAX handler) */
.form-status {
	display: none;
	margin: .25rem auto 0;
	padding: .85rem 1.1rem;
	border-radius: 12px;
	font-weight: 600; font-size: .95rem;
	text-align: center;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(34,197,94,.12); color: var(--rnh-accent-600); }
.form-status.is-error   { background: rgba(239,68,68,.1);  color: #dc2626; }
.form-status.is-loading { background: rgba(79,110,247,.1); color: var(--rnh-primary-600); }
/* honeypot */
.rnh-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------- Footer */
footer .footer_detail { background: var(--rnh-ink); }
footer h3 { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 1.1rem; }
footer .footer_link a,
footer .footer_social a,
footer .add_info .text,
footer .add_info .text a {
	color: rgba(255,255,255,.72);
	transition: color .2s var(--rnh-ease);
}
footer .footer_link a:hover,
footer .footer_social a:hover,
footer .add_info .text a:hover { color: #fff; }
footer .add_info .icon {
	display: inline-grid; place-items: center;
	width: 38px; height: 38px; border-radius: 10px;
	background: rgba(255,255,255,.08);
	color: var(--rnh-accent);
	margin-right: .7rem;
}
footer .copyright { color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.08); }
footer .copyright span { color: #fff; }

#return-to-top {
	background: var(--rnh-grad) !important;
	box-shadow: 0 12px 24px -10px rgba(79,110,247,.6);
	border-radius: 14px !important;
}

/* --------------------------------------------- WhatsApp float button */
.wc-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 900;
	display: inline-flex; align-items: center; gap: .55rem;
	padding: 12px; padding-right: 12px;
	background: linear-gradient(135deg,#25d366,#128c7e);
	color: #fff; border-radius: 999px;
	box-shadow: 0 14px 30px -10px rgba(18,140,126,.7);
	transition: transform .25s var(--rnh-ease), padding .25s var(--rnh-ease);
}
.wc-float i { font-size: 1.7rem; line-height: 1; width: 30px; text-align: center; }
.wc-float .wc-float-label {
	max-width: 0; overflow: hidden; white-space: nowrap;
	font-weight: 600; font-size: .95rem;
	transition: max-width .3s var(--rnh-ease), margin .3s var(--rnh-ease);
}
.wc-float:hover { color: #fff; transform: translateY(-2px); padding-right: 20px; }
.wc-float:hover .wc-float-label { max-width: 160px; margin-right: 4px; }
@media (max-width: 575px) { .wc-float .wc-float-label { display: none; } }

/* ===================================================== EventoKart page */
.ek-badge {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .4rem .9rem; border-radius: 999px;
	background: var(--rnh-grad-soft); color: var(--rnh-primary);
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
	font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
	margin-bottom: 1.1rem;
}
.ek-lead { font-size: 1.15rem; color: var(--rnh-ink-2); max-width: 760px; }
.ek-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
/* ghost button variant for secondary CTAs */
.btn-ghost {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
	padding: .95rem 1.7rem; border-radius: 999px;
	border: 2px solid var(--rnh-primary); color: var(--rnh-primary) !important;
	background: transparent; transition: background .25s var(--rnh-ease), color .25s var(--rnh-ease), transform .25s var(--rnh-ease);
}
.btn-ghost:hover { background: var(--rnh-grad-soft); transform: translateY(-3px); color: var(--rnh-primary-700) !important; }

/* category chips */
.ek-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.ek-cat {
	display: flex; align-items: center; gap: .9rem;
	background: #fff; border: 1px solid var(--rnh-line); border-radius: 14px;
	padding: 1rem 1.2rem; box-shadow: var(--rnh-shadow-sm);
	transition: transform .25s var(--rnh-ease), box-shadow .25s var(--rnh-ease), border-color .25s var(--rnh-ease);
}
.ek-cat:hover { transform: translateY(-4px); box-shadow: var(--rnh-shadow); border-color: transparent; }
.ek-cat i {
	display: grid; place-items: center; flex: 0 0 auto;
	width: 46px; height: 46px; border-radius: 12px;
	background: var(--rnh-grad-soft); color: var(--rnh-primary); font-size: 1.2rem;
}
.ek-cat span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: var(--rnh-ink); }

/* numbered steps */
.ek-steps { counter-reset: ekstep; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.ek-step {
	position: relative; background: var(--rnh-bg-soft);
	border: 1px solid var(--rnh-line); border-radius: var(--rnh-radius);
	padding: 2.4rem 1.4rem 1.6rem; text-align: center;
}
.ek-step::before {
	counter-increment: ekstep; content: counter(ekstep);
	position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
	width: 44px; height: 44px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--rnh-grad); color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
	box-shadow: 0 10px 20px -8px rgba(79,110,247,.6);
}
.ek-step h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin-bottom: .4rem; }
.ek-step p { margin: 0; font-size: .95rem; }

/* ===================================================== Blog article */
.post-section { padding: 4rem 0; background: #fff; }
.post { max-width: 860px; margin: 0 auto; padding: 0 1rem; }
.post-tag {
	display: inline-block; padding: .35rem .85rem; border-radius: 999px;
	background: var(--rnh-grad-soft); color: var(--rnh-primary);
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
	font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
}
.post-title {
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
	font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.8rem);
	line-height: 1.12; margin: 1rem 0 1.2rem;
}
.post-meta {
	display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
	color: var(--rnh-muted); font-size: .95rem; margin-bottom: 2rem;
}
.post-meta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.post-avatar {
	width: 44px; height: 44px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--rnh-grad); color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem;
}
.post-meta .author { font-weight: 700; color: var(--rnh-ink); }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rnh-line); }
.post-hero {
	width: 100%; border-radius: var(--rnh-radius-lg);
	box-shadow: var(--rnh-shadow-lg); margin-bottom: 2.4rem;
	aspect-ratio: 16 / 8; object-fit: cover;
}
.post-body > p { font-size: 1.08rem; margin-bottom: 1.4rem; }
.post-body h2 {
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
	font-size: 1.6rem; margin: 2.6rem 0 1.1rem; padding-left: .9rem;
	border-left: 4px solid transparent;
	border-image: var(--rnh-grad) 1;
}
.post-body .lead { font-size: 1.18rem; color: var(--rnh-ink-2); }

/* platform cards */
.pf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin: 1.2rem 0 1rem; }
.pf-card {
	background: var(--rnh-bg-soft); border: 1px solid var(--rnh-line);
	border-radius: 14px; padding: 1.2rem 1.3rem;
	transition: transform .25s var(--rnh-ease), box-shadow .25s var(--rnh-ease);
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--rnh-shadow); }
.pf-name {
	display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800; margin-bottom: .5rem; color: var(--rnh-primary);
}
.pf-card p { margin: 0; font-size: .96rem; }

/* comparison table */
.compare-wrap { overflow-x: auto; margin: 1.4rem 0 2rem; border-radius: 14px; box-shadow: var(--rnh-shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.compare-table th, .compare-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--rnh-line); font-size: .95rem; }
.compare-table thead th {
	background: var(--rnh-ink); color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
}
.compare-table tbody th { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--rnh-ink); background: var(--rnh-bg-soft); }
.compare-table tbody tr:hover td { background: rgba(79,110,247,.04); }

/* ==================================================== Leadership/Team */
.lead-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.lead-card {
	background: #fff; border: 1px solid var(--rnh-line);
	border-radius: var(--rnh-radius-lg); padding: 2.8rem 2rem;
	box-shadow: var(--rnh-shadow-lg); position: relative; overflow: hidden;
}
.lead-card::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--rnh-grad);
}
.lead-avatar {
	width: 120px; height: 120px; border-radius: 50%; margin: .4rem auto 1.2rem;
	display: grid; place-items: center;
	background: var(--rnh-grad); color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 2.6rem;
	box-shadow: 0 16px 30px -12px rgba(79,110,247,.6);
}
.lead-card h3 { font-weight: 800; font-size: 1.6rem; margin-bottom: .15rem; }
.lead-role { color: var(--rnh-primary); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 1.1rem; }
.lead-card p { max-width: 620px; margin: 0 auto 1rem; }
.lead-social { display: flex; gap: .6rem; justify-content: center; margin-top: 1.3rem; }
.lead-social a {
	width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
	background: var(--rnh-grad-soft); color: var(--rnh-primary); font-size: 1.2rem;
	transition: transform .25s var(--rnh-ease), background .25s var(--rnh-ease), color .25s var(--rnh-ease);
}
.lead-social a:hover { background: var(--rnh-grad); color: #fff; transform: translateY(-3px); }

/* ==================================================== Blog index cards */
.blog-card {
	display: flex; flex-direction: column; height: 100%;
	background: #fff; border: 1px solid var(--rnh-line);
	border-radius: var(--rnh-radius); overflow: hidden;
	box-shadow: var(--rnh-shadow-sm); color: inherit;
	transition: transform .3s var(--rnh-ease), box-shadow .3s var(--rnh-ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--rnh-shadow-lg); color: inherit; text-decoration: none; }
.blog-card-img {
	height: 168px; display: grid; place-items: center; overflow: hidden;
	color: #fff; font-size: 2.6rem; background: var(--rnh-grad);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag {
	align-self: flex-start; font-size: .72rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; color: var(--rnh-primary);
	background: var(--rnh-grad-soft); padding: .28rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.blog-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.18rem; font-weight: 700; line-height: 1.3; margin-bottom: .5rem; color: var(--rnh-ink); }
.blog-card p { font-size: .95rem; flex: 1; margin: 0; }
.blog-card-meta { font-size: .85rem; color: var(--rnh-muted); margin-top: 1rem; }
.mb-gap { margin-bottom: 28px; }

/* gradient article hero (for posts without a photo) */
.post-hero-grad {
	width: 100%; aspect-ratio: 16 / 7; border-radius: var(--rnh-radius-lg);
	box-shadow: var(--rnh-shadow-lg); margin-bottom: 2.4rem;
	display: grid; place-items: center; background: var(--rnh-grad); color: #fff; font-size: 3.6rem;
}

/* ---------------------------------------------------- Motion / a11y */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}

/* ------------------------------------------------------- Responsive */
@media (max-width: 991px) {
	.nav_sec .navbar-collapse {
		background: #fff;
		margin-top: .6rem;
		border: 1px solid var(--rnh-line);
		border-radius: 16px;
		padding: .6rem;
		box-shadow: var(--rnh-shadow);
	}
	.nav_sec .navbar-nav .nav-link::before { display: none; }
	.about_sec .about-img { margin-bottom: 2rem; }
	.count_sec, .work_sec { margin-left: 12px; margin-right: 12px; }
}
